diff --git a/.clang-tidy b/.clang-tidy index 1b9f8bd07..db4529b8a 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -1,4 +1,4 @@ -Checks: '-*,modernize-use-emplace,modernize-avoid-bind,misc-throw-by-value-catch-by-reference,misc-unconventional-assign-operator,performance-*' +Checks: '-*,modernize-use-emplace,modernize-avoid-bind,misc-throw-by-value-catch-by-reference,misc-unconventional-assign-operator,performance-*,-performance-avoid-endl,performance-inefficient-string-concatenation' WarningsAsErrors: '-*,modernize-use-emplace,performance-type-promotion-in-math-fn,performance-faster-string-find,performance-implicit-cast-in-loop' CheckOptions: - key: performance-unnecessary-value-param.AllowedTypes diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 4edd63207..5c2718366 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -14,7 +14,7 @@ Contributions are welcome! Here's how you can help: [clone](https://help.github.com/articles/cloning-a-repository/) your fork. 2. Before you start coding, consider opening an - [issue at Github](https://github.com/minetest/minetest/issues) to discuss the + [issue on Github](https://github.com/luanti-org/luanti/issues) to discuss the suitability and implementation of your intended contribution with the core developers. @@ -25,16 +25,16 @@ Contributions are welcome! Here's how you can help: the work, to avoid disappointment. You may also benefit from discussing on our IRC development channel - [#minetest-dev](http://www.minetest.net/irc/). Note that a proper IRC client + [#luanti-dev](http://www.luanti.org/irc/). Note that a proper IRC client is required to speak on this channel. 3. Start coding! - Refer to the - [Lua API](https://github.com/minetest/minetest/blob/master/doc/lua_api.md), - [Developer Wiki](http://dev.minetest.net/Main_Page) and other - [documentation](https://github.com/minetest/minetest/tree/master/doc). - - Follow the [C/C++](http://dev.minetest.net/Code_style_guidelines) and - [Lua](http://dev.minetest.net/Lua_code_style_guidelines) code style guidelines. + [Lua API](https://github.com/luanti-org/luanti/blob/master/doc/lua_api.md), + [Developer Wiki](https://dev.luanti.org/) and other + [documentation](https://github.com/luanti-org/luanti/tree/master/doc). + - Follow the [C/C++](https://dev.luanti.org/Code_style_guidelines) and + [Lua](https://dev.luanti.org/Lua_code_style_guidelines) code style guidelines. - Check your code works as expected and document any changes to the Lua API. - To avoid conflicting changes between contributions, do not do the following manually. They will be done before each release. - Run `updatepo.sh` or update `luanti.po{,t}` even if your code adds new translatable strings. @@ -53,7 +53,7 @@ Contributions are welcome! Here's how you can help: - The following lines should describe the commit, starting a new line for each point. 5. Once you are happy with your changes, submit a pull request. - - Open the [pull-request form](https://github.com/minetest/minetest/pull/new/master). + - Open the [pull-request form](https://github.com/luanti-org/luanti/pull/new/master). - Add a description explaining what you've done (or if it's a work-in-progress - what you need to do). - Make sure to fill out the pull request template. @@ -64,8 +64,8 @@ Contributions are welcome! Here's how you can help: picture of the project. 2. It works. 3. It follows the code style for - [C/C++](http://dev.minetest.net/Code_style_guidelines) or - [Lua](http://dev.minetest.net/Lua_code_style_guidelines). + [C/C++](https://dev.luanti.org/Code_style_guidelines) or + [Lua](https://dev.luanti.org/Lua_code_style_guidelines). 4. The code's interfaces are well designed, regardless of other aspects that might need more work in the future. 5. It uses protocols and formats which include the required compatibility. @@ -76,9 +76,9 @@ If you experience an issue, we would like to know the details - especially when a stable release is on the way. 1. Do a quick search on GitHub to check if the issue has already been reported. -2. Is it an issue with the Minetest *engine*? If not, report it - [elsewhere](http://www.minetest.net/development/#reporting-issues). -3. [Open an issue](https://github.com/minetest/minetest/issues/new) and describe +2. Is it an issue with the Luanti *engine*? If not, report it + [elsewhere](http://www.luanti.org/development/#reporting-issues). +3. [Open an issue](https://github.com/luanti-org/luanti/issues/new) and describe the issue you are having - you could include: - Error logs (check the bottom of the `debug.txt` file). - Screenshots. @@ -106,21 +106,21 @@ the project page with a list of current languages Builtin (the component which contains things like server messages, chat command descriptions, privilege descriptions) is translated separately; it needs to be translated by editing a `.tr` text file. See -[Translation](https://dev.minetest.net/Translation) for more information. +[Translation](https://dev.luanti.org/Translation) for more information. ## Donations If you'd like to monetarily support Luanti development, you can find donation -methods on [our website](http://www.minetest.net/development/#donate). +methods on [our website](http://www.luanti.org/development/#donate). # Maintaining * This is a concise version of the - [Rules & Guidelines](http://dev.minetest.net/Category:Rules_and_Guidelines) on the developer wiki.* + [Rules & Guidelines](https://dev.luanti.org/engine-dev-process/) on the developer wiki.* These notes are for those who have push access Luanti (core developers / maintainers). -- See the [project organisation](http://dev.minetest.net/Organisation) for the people involved. +- See the [project organisation](https://dev.luanti.org/Organisation) for the people involved. ## Concept approvals and roadmaps @@ -159,14 +159,14 @@ Submit a :+1: (+1) or "Looks good" comment to show you believe the pull-request - The title should follow the commit guidelines (title starts with a capital letter, present tense, descriptive). - Don't modify history older than 10 minutes. - Use rebase, not merge to get linear history: - - `curl https://github.com/minetest/minetest/pull/1.patch | git am` + - `curl -Ls https://github.com/luanti-org/luanti/pull/1.patch | git am` ## Reviewing issues and feature requests - If an issue does not get a response from its author within 1 month (when requiring more details), it can be closed. - When an issue is a duplicate, refer to the first ones and close the later ones. -- Tag issues with the appropriate [labels](https://github.com/minetest/minetest/labels) for devices, platforms etc. +- Tag issues with the appropriate [labels](https://github.com/luanti-org/luanti/labels) for devices, platforms etc. ## Releasing a new version -*Refer to [dev.minetest.net/Releasing_Luanti](https://dev.minetest.net/Releasing_Luanti)* +*Refer to [dev.luanti.org/Releasing_Luanti](https://dev.luanti.org/Releasing_Luanti)* diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml index ae736d52f..29df88d18 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yaml +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -9,7 +9,7 @@ body: 1. **Please update Luanti to the latest stable or dev version** before submitting bug reports. Make sure the bug is still reproducible on the latest version. 2. This page is for reporting the bugs of **the engine itself**. For bugs in a particular game, please [search for the game in the ContentDB](https://content.luanti.org/packages/?type=game) and submit a bug report in their issue trackers. - * For example, you can submit issues about the Minetest Game [in its own repository](https://github.com/minetest/minetest_game/issues). + * For example, you can submit issues about the Minetest Game [in its own repository](https://github.com/luanti-org/minetest_game/issues). 3. Please provide as many details as possible for us to spot the problem quicker. - type: textarea attributes: diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 502e8e1d7..c6834265d 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,7 +1,7 @@ blank_issues_enabled: true contact_links: - name: Submit issues about Minetest Game - url: https://github.com/minetest/minetest_game/issues/new/choose + url: https://github.com/luanti-org/minetest_game/issues/new about: Only submit issues of the engine in this repository's issue tracker. Submit those of Minetest Game in its own issue tracker. - name: Search for issue trackers of third-party games url: https://content.luanti.org/packages/?type=game diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 0d7c0fb86..60a926039 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -3,7 +3,7 @@ Add compact, short information about your PR for easier understanding: - Goal of the PR - How does the PR work? - Does it resolve any reported issue? -- Does this relate to a goal in [the roadmap](https://github.com/minetest/minetest/blob/master/doc/direction.md)? +- Does this relate to a goal in [the roadmap](https://github.com/luanti-org/luanti/blob/master/doc/direction.md)? - If not a bug fix, why is this PR needed? What usecases does it solve? ## To do diff --git a/.github/SECURITY.md b/.github/SECURITY.md index d5db2751a..22b154458 100644 --- a/.github/SECURITY.md +++ b/.github/SECURITY.md @@ -3,7 +3,7 @@ ## Supported Versions We only support the latest stable version for security issues. -See the [releases page](https://github.com/minetest/minetest/releases). +See the [releases page](https://github.com/luanti-org/luanti/releases). ## Reporting a Vulnerability @@ -11,7 +11,7 @@ We ask that you report vulnerabilities privately, by contacting a core developer to give us time to fix them. You can do that by emailing one of the following addresses: * celeron55@gmail.com -* rubenwardy@minetest.net +* rw@rubenwardy.com Depending on severity, we will either create a private issue for the vulnerability and release a patch version of Luanti, or give you permission to file the issue publicly. diff --git a/.github/workflows/lua_api_deploy.yml b/.github/workflows/lua_api_deploy.yml index e42335a78..68db8316f 100644 --- a/.github/workflows/lua_api_deploy.yml +++ b/.github/workflows/lua_api_deploy.yml @@ -16,7 +16,7 @@ on: jobs: build: - if: github.repository == 'minetest/minetest' + if: github.repository == 'luanti-org/luanti' runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/whitespace_checks.yml b/.github/workflows/whitespace_checks.yml index cc16e7b22..b5fcc02e5 100644 --- a/.github/workflows/whitespace_checks.yml +++ b/.github/workflows/whitespace_checks.yml @@ -14,6 +14,7 @@ on: - '**.sh' - '**.cmake' - '**.glsl' + - '**.lua' pull_request: paths: - '**.txt' @@ -24,6 +25,7 @@ on: - '**.sh' - '**.cmake' - '**.glsl' + - '**.lua' jobs: trailing_whitespaces: @@ -32,7 +34,72 @@ jobs: - uses: actions/checkout@v4 # Line endings are already ensured by .gitattributes - name: Check trailing whitespaces - run: if git ls-files | grep -E '\.txt$|\.md$|\.[ch]$|\.cpp$|\.hpp$|\.sh$|\.cmake$|\.glsl$' | xargs grep -n '\s$'; then echo -e "\033[0;31mFound trailing whitespace"; (exit 1); else (exit 0); fi + run: | + if git ls-files |\ + grep -E '\.txt$|\.md$|\.[ch]$|\.cpp$|\.hpp$|\.sh$|\.cmake$|\.glsl$' |\ + xargs grep -n '\s$';\ + then\ + echo -e "\033[0;31mFound trailing whitespace";\ + (exit 1);\ + else\ + (exit 0);\ + fi + + indent_spaces: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + # Line endings are already ensured by .gitattributes + # Multiple multline comments in one line is not supported by this check + # and there is no reason to use them + # So lines like: "/* */ /*" or "*/ a = 5; /*" will result in error + - name: Check for unsupported multiline comments + run: | + if git ls-files |\ + grep -E '^src/.*\.cpp$|^src/.*\.[ch]$' |\ + xargs grep -n '\*/.*/\*';\ + then + echo -e "\033[0;31mUnsupported combination of multiline comments. New multiline comment should begin on new line.";\ + (exit 1);\ + else\ + (exit 0);\ + fi + if git ls-files |\ + grep -E '\.lua$' |\ + xargs grep -n -e '\]\].*--\[\[';\ + then + echo -e "\033[0;31mUnsupported combination of multiline comments. New multiline comment should begin on new line.";\ + (exit 1);\ + else\ + (exit 0);\ + fi + # This prepare files for final check + # See python script ./util/ci/indent_tab_preprocess.py for details. + - name: Preprocess files + run: | + git ls-files |\ + grep -E '^src/.*\.cpp$|^src/.*\.[ch]$' |\ + xargs -L 1 -P $(($(nproc) + 1)) \ + python3 ./util/ci/indent_tab_preprocess.py "/*" "*/" + git ls-files |\ + grep -E '\.lua$' |\ + xargs -L 1 -P $(($(nproc) + 1)) \ + python3 ./util/ci/indent_tab_preprocess.py "--[[" "]]" + # Check for bad indent. + # This runs over preprocessed files. + # If there is any remaining space on line beginning or after tab, + # error is generated + - name: Check indent spaces + run: | + if git ls-files |\ + grep -E '^src/.*\.cpp$|^src/.*\.[ch]$|\.lua' |\ + xargs grep -n -P '^\t*[ ]';\ + then\ + echo -e "\033[0;31mFound incorrect indent whitespaces";\ + (exit 1);\ + else\ + (exit 0);\ + fi tabs_lua_api_files: runs-on: ubuntu-latest @@ -40,6 +107,12 @@ jobs: - uses: actions/checkout@v4 # Some files should not contain tabs - name: Check tabs in Lua API files - run: if grep -n $'\t' doc/lua_api.md doc/client_lua_api.md; then echo -e "\033[0;31mFound tab in markdown file"; (exit 1); else (exit 0); fi - + run: | + if grep -n $'\t' doc/lua_api.md doc/client_lua_api.md;\ + then\ + echo -e "\033[0;31mFound tab in markdown file";\ + (exit 1);\ + else\ + (exit 0);\ + fi diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index d82b9785d..e9698c93b 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -71,8 +71,8 @@ jobs: name: VS 2019 ${{ matrix.config.arch }}-${{ matrix.type }} runs-on: windows-2019 env: - VCPKG_VERSION: 01f602195983451bc83e72f4214af2cbc495aa94 - # 2024.05.24 + VCPKG_VERSION: d5ec528843d29e3a52d745a64b469f810b2cedbf + # 2025.02.14 vcpkg_packages: zlib zstd curl[winssl] openal-soft libvorbis libogg libjpeg-turbo sqlite3 freetype luajit gmp jsoncpp sdl2 strategy: fail-fast: false @@ -106,10 +106,12 @@ jobs: vcpkgTriplet: ${{ matrix.config.vcpkg_triplet }} - name: CMake + # Note: See #15976 for why CMAKE_POLICY_VERSION_MINIMUM=3.5 is set. run: | cmake ${{matrix.config.generator}} ` -DCMAKE_TOOLCHAIN_FILE="${{ github.workspace }}\vcpkg\scripts\buildsystems\vcpkg.cmake" ` -DCMAKE_BUILD_TYPE=Release ` + -DCMAKE_POLICY_VERSION_MINIMUM=3.5 ` -DENABLE_POSTGRESQL=OFF ` -DENABLE_LUAJIT=TRUE ` -DREQUIRE_LUAJIT=TRUE ` diff --git a/.gitignore b/.gitignore index c7879380b..7fa100ed5 100644 --- a/.gitignore +++ b/.gitignore @@ -49,13 +49,13 @@ AppDir # Nix /result -## Files related to Minetest development cycle +## Files related to Luanti development cycle /*.patch *.diff # GNU Patch reject file *.rej -## Non-static Minetest directories or symlinks to these +## Non-static Luanti directories or symlinks to these /bin/ /games/* !/games/devtest/ @@ -80,7 +80,7 @@ minetest.conf debug.txt debug.txt.1 -## Other files generated by Minetest +## Other files generated by Luanti screenshot_*.png testbm.txt diff --git a/.luacheckrc b/.luacheckrc index 3a4667b4a..de45f0413 100644 --- a/.luacheckrc +++ b/.luacheckrc @@ -10,6 +10,7 @@ ignore = { read_globals = { "ItemStack", "INIT", + "PLATFORM", "DIR_DELIM", "dump", "dump2", "fgettext", "fgettext_ne", @@ -18,10 +19,10 @@ read_globals = { "VoxelManip", "profiler", "Settings", - "PerlinNoise", "PerlinNoiseMap", + "ValueNoise", "ValueNoiseMap", string = {fields = {"split", "trim"}}, - table = {fields = {"copy", "getn", "indexof", "keyof", "insert_all"}}, + table = {fields = {"copy", "copy_with_metatables", "getn", "indexof", "keyof", "insert_all"}}, math = {fields = {"hypot", "round"}}, } @@ -75,10 +76,6 @@ files["builtin/mainmenu"] = { globals = { "gamedata", }, - - read_globals = { - "PLATFORM", - }, } files["builtin/common/tests"] = { diff --git a/CMakeLists.txt b/CMakeLists.txt index de97d49bf..2c48196d2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,7 @@ set(CLANG_MINIMUM_VERSION "7.0.1") # You should not need to edit these manually, use util/bump_version.sh set(VERSION_MAJOR 5) -set(VERSION_MINOR 11) +set(VERSION_MINOR 12) set(VERSION_PATCH 0) set(VERSION_EXTRA "" CACHE STRING "Stuff to append to version string") @@ -48,7 +48,7 @@ endif() # - win32/gcc: fails to link # - win32/clang: works # - macOS on x86: seems to be fine -# - macOS on ARM: crashes, see +# - macOS on ARM: crashes, see # Note: since CMake has no easy architecture detection disabling for Mac entirely #### #### if((WIN32 AND CMAKE_CXX_COMPILER_ID STREQUAL "GNU") OR APPLE) diff --git a/LICENSE.txt b/LICENSE.txt index 503dd62d2..772f86728 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -102,6 +102,9 @@ grorp: using the font "undefined medium" (https://undefined-medium.com/), which is licensed under the SIL Open Font License, Version 1.1 modified by DS + textures/base/pack/dig_btn.png + textures/base/pack/place_btn.png + derived by editing the text in aux1_btn.svg License of Luanti source code ------------------------------- diff --git a/README.md b/README.md index aa8faccd5..33340053a 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,15 @@ -Luanti (formerly Minetest) -========================== - -![Build Status](https://github.com/minetest/minetest/workflows/build/badge.svg) -[![Translation status](https://hosted.weblate.org/widgets/minetest/-/svg-badge.svg)](https://hosted.weblate.org/engage/minetest/?utm_source=widget) -[![License](https://img.shields.io/badge/license-LGPLv2.1%2B-blue.svg)](https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html) +
+ +

Luanti (formerly Minetest)

+ Build Status + Translation status + License +
+
Luanti is a free open-source voxel game engine with easy modding and game creation. -Copyright (C) 2010-2024 Perttu Ahola +Copyright (C) 2010-2025 Perttu Ahola and contributors (see source file comments and the version control log) Table of Contents @@ -28,7 +30,7 @@ Further documentation - Website: https://www.luanti.org/ - Wiki: https://wiki.luanti.org/ - Forum: https://forum.luanti.org/ -- GitHub: https://github.com/minetest/minetest/ +- GitHub: https://github.com/luanti-org/luanti/ - [Developer documentation](doc/developing/) - [doc/](doc/) directory of source distribution diff --git a/android/SDL_Java_RMB_fix.patch b/android/SDL_Java_RMB_fix.patch index cc0eb4772..ef8840dca 100644 --- a/android/SDL_Java_RMB_fix.patch +++ b/android/SDL_Java_RMB_fix.patch @@ -1,5 +1,4 @@ diff --git a/android/app/src/main/java/org/libsdl/app/SDLActivity.java b/android/app/src/main/java/org/libsdl/app/SDLActivity.java -index fd5a056e3..83e3cf657 100644 --- a/android/app/src/main/java/org/libsdl/app/SDLActivity.java +++ b/android/app/src/main/java/org/libsdl/app/SDLActivity.java @@ -1345,7 +1345,12 @@ public class SDLActivity extends Activity implements View.OnSystemUiVisibilityCh @@ -9,7 +8,7 @@ index fd5a056e3..83e3cf657 100644 - if ((source & InputDevice.SOURCE_MOUSE) == InputDevice.SOURCE_MOUSE) { + if ((source & InputDevice.SOURCE_MOUSE) == InputDevice.SOURCE_MOUSE || + /* -+ * CUSTOM ADDITION FOR MINETEST ++ * CUSTOM ADDITION FOR LUANTI + * should be upstreamed + */ + (source & InputDevice.SOURCE_MOUSE_RELATIVE) == InputDevice.SOURCE_MOUSE_RELATIVE) { diff --git a/android/app/src/main/java/org/libsdl/app/SDLActivity.java b/android/app/src/main/java/org/libsdl/app/SDLActivity.java index 393347d43..919640040 100644 --- a/android/app/src/main/java/org/libsdl/app/SDLActivity.java +++ b/android/app/src/main/java/org/libsdl/app/SDLActivity.java @@ -60,8 +60,8 @@ import java.util.Locale; public class SDLActivity extends Activity implements View.OnSystemUiVisibilityChangeListener { private static final String TAG = "SDL"; private static final int SDL_MAJOR_VERSION = 2; - private static final int SDL_MINOR_VERSION = 30; - private static final int SDL_MICRO_VERSION = 8; + private static final int SDL_MINOR_VERSION = 32; + private static final int SDL_MICRO_VERSION = 0; /* // Display InputType.SOURCE/CLASS of events and devices // @@ -790,6 +790,9 @@ public class SDLActivity extends Activity implements View.OnSystemUiVisibilityCh window.clearFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN); SDLActivity.mFullscreenModeActive = false; } + if (Build.VERSION.SDK_INT >= 28 /* Android 9 (Pie) */) { + window.getAttributes().layoutInDisplayCutoutMode = WindowManager.LayoutParams.LAYOUT_IN_DISPLAY_CUTOUT_MODE_SHORT_EDGES; + } } } else { Log.e(TAG, "error handling message, getContext() returned no Activity"); @@ -1347,7 +1350,7 @@ public class SDLActivity extends Activity implements View.OnSystemUiVisibilityCh if ((source & InputDevice.SOURCE_MOUSE) == InputDevice.SOURCE_MOUSE || /* - * CUSTOM ADDITION FOR MINETEST + * CUSTOM ADDITION FOR LUANTI * should be upstreamed */ (source & InputDevice.SOURCE_MOUSE_RELATIVE) == InputDevice.SOURCE_MOUSE_RELATIVE) { diff --git a/android/app/src/main/res/values-fa/strings.xml b/android/app/src/main/res/values-fa/strings.xml new file mode 100644 index 000000000..634b75067 --- /dev/null +++ b/android/app/src/main/res/values-fa/strings.xml @@ -0,0 +1,11 @@ + + + کمتر از 1 دقیقه… + در حال بارگذاری… + انجام شد + لوآنتی + در حال بارگذاری لوآنتی + نوتیفیکیشن عمومی + نوتیفیکیشن از لوآنتی + هیچ مرورگری یافت نشد + diff --git a/android/app/src/main/res/values-fr/strings.xml b/android/app/src/main/res/values-fr/strings.xml new file mode 100644 index 000000000..690965405 --- /dev/null +++ b/android/app/src/main/res/values-fr/strings.xml @@ -0,0 +1,11 @@ + + + Luanti + Chargement… + Notification générale + Notifications de Luanti + Chargement de Luanti + Moins d\'une minute… + Terminé + Aucun navigateur web trouvé + diff --git a/android/app/src/main/res/values-gl/strings.xml b/android/app/src/main/res/values-gl/strings.xml new file mode 100644 index 000000000..89ee1f2bb --- /dev/null +++ b/android/app/src/main/res/values-gl/strings.xml @@ -0,0 +1,11 @@ + + + Luanti + Cargando… + Notificación xeral + Notificacións de Luanti + Cargando Luanti + Menos de 1 minuto… + Feito + Non se atopou ningún navegador web + diff --git a/android/app/src/main/res/values-sv/strings.xml b/android/app/src/main/res/values-sv/strings.xml new file mode 100644 index 000000000..5dcf923eb --- /dev/null +++ b/android/app/src/main/res/values-sv/strings.xml @@ -0,0 +1,11 @@ + + + Luanti + Laddar… + Mindre än 1 minut… + Färdig + Ingen webbläsare kunde hittas + Generell notis + Notiser från Luanti + Laddar Luanti + \ No newline at end of file diff --git a/android/app/src/main/res/values-ta/strings.xml b/android/app/src/main/res/values-ta/strings.xml new file mode 100644 index 000000000..a6b3daec9 --- /dev/null +++ b/android/app/src/main/res/values-ta/strings.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/android/app/src/main/res/values-uk/strings.xml b/android/app/src/main/res/values-uk/strings.xml new file mode 100644 index 000000000..2969e0e53 --- /dev/null +++ b/android/app/src/main/res/values-uk/strings.xml @@ -0,0 +1,11 @@ + + + Luanti + Браузерів не знайдено + Завантаження… + Загальні сповіщення + Luanti завантажується + Менше за 1 хвилину… + Готово + Сповіщення від Luanti + \ No newline at end of file diff --git a/android/app/src/main/res/values-zh-rCN/strings.xml b/android/app/src/main/res/values-zh-rCN/strings.xml new file mode 100644 index 000000000..5441ec322 --- /dev/null +++ b/android/app/src/main/res/values-zh-rCN/strings.xml @@ -0,0 +1,11 @@ + + + Luanti + 加载中… + 一般通知 + Luanti 的通知 + 加载 Luanti 中 + 不到1分钟… + 完成 + 未找到网页浏览器 + diff --git a/android/app/src/main/res/values-zh-rTW/strings.xml b/android/app/src/main/res/values-zh-rTW/strings.xml new file mode 100644 index 000000000..2953aefb8 --- /dev/null +++ b/android/app/src/main/res/values-zh-rTW/strings.xml @@ -0,0 +1,11 @@ + + + 載入中… + 一般通知 + Luanti 的通知 + 不到1分鐘… + 完畢 + 未找到任何網頁瀏覽器 + Luanti + 載入Luanti中 + \ No newline at end of file diff --git a/android/build.gradle b/android/build.gradle index a6b9c512d..61637c2ec 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -1,7 +1,7 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. project.ext.set("versionMajor", 5) // Version Major -project.ext.set("versionMinor", 11) // Version Minor +project.ext.set("versionMinor", 12) // Version Minor project.ext.set("versionPatch", 0) // Version Patch // ^ keep in sync with cmake diff --git a/android/icons/dig_btn.svg b/android/icons/dig_btn.svg new file mode 100644 index 000000000..cbfa69e6f --- /dev/null +++ b/android/icons/dig_btn.svg @@ -0,0 +1,148 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + LMB + + + diff --git a/android/icons/place_btn.svg b/android/icons/place_btn.svg new file mode 100644 index 000000000..b32dfc018 --- /dev/null +++ b/android/icons/place_btn.svg @@ -0,0 +1,148 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + RMB + + + diff --git a/android/native/build.gradle b/android/native/build.gradle index 806dda2f0..b5224c6a0 100644 --- a/android/native/build.gradle +++ b/android/native/build.gradle @@ -52,7 +52,7 @@ if (new File(depsDir, 'armeabi-v7a').exists()) { task downloadDeps(type: Download) { def depsZip = new File(buildDir, 'deps.zip') - src 'https://github.com/minetest/minetest_android_deps/releases/download/latest/deps-lite.zip' + src 'https://github.com/luanti-org/luanti_android_deps/releases/download/latest/deps-lite.zip' dest depsZip overwrite false diff --git a/builtin/async/game.lua b/builtin/async/game.lua index f7c9892c4..6bd369fb1 100644 --- a/builtin/async/game.lua +++ b/builtin/async/game.lua @@ -32,8 +32,8 @@ do all.registered_craftitems = {} all.registered_tools = {} for k, v in pairs(all.registered_items) do - -- Disable further modification - setmetatable(v, {__newindex = {}}) + -- Ignore new keys + setmetatable(v, {__newindex = function() end}) -- Reassemble the other tables if v.type == "node" then getmetatable(v).__index = all.nodedef_default @@ -59,6 +59,9 @@ end local alias_metatable = { __index = function(t, name) return rawget(t, core.registered_aliases[name]) + end, + __newindex = function() + error("table is read-only") end } setmetatable(core.registered_items, alias_metatable) diff --git a/builtin/client/init.lua b/builtin/client/init.lua index 1f83771ea..ee0f267db 100644 --- a/builtin/client/init.lua +++ b/builtin/client/init.lua @@ -2,7 +2,10 @@ local scriptpath = core.get_builtin_path() local clientpath = scriptpath.."client"..DIR_DELIM local commonpath = scriptpath.."common"..DIR_DELIM -dofile(clientpath .. "register.lua") +local builtin_shared = {} + +assert(loadfile(commonpath .. "register.lua"))(builtin_shared) +assert(loadfile(clientpath .. "register.lua"))(builtin_shared) dofile(commonpath .. "after.lua") dofile(commonpath .. "mod_storage.lua") dofile(commonpath .. "chatcommands.lua") diff --git a/builtin/client/register.lua b/builtin/client/register.lua index 61db4a30b..0e3e68fee 100644 --- a/builtin/client/register.lua +++ b/builtin/client/register.lua @@ -1,68 +1,6 @@ -core.callback_origins = {} +local builtin_shared = ... -local getinfo = debug.getinfo -debug.getinfo = nil - ---- Runs given callbacks. --- --- Note: this function is also called from C++ --- @tparam table callbacks a table with registered callbacks, like `core.registered_on_*` --- @tparam number mode a RunCallbacksMode, as defined in src/script/common/c_internal.h --- @param ... arguments for the callback --- @return depends on mode -function core.run_callbacks(callbacks, mode, ...) - assert(type(callbacks) == "table") - local cb_len = #callbacks - if cb_len == 0 then - if mode == 2 or mode == 3 then - return true - elseif mode == 4 or mode == 5 then - return false - end - end - local ret - for i = 1, cb_len do - local cb_ret = callbacks[i](...) - - if mode == 0 and i == 1 or mode == 1 and i == cb_len then - ret = cb_ret - elseif mode == 2 then - if not cb_ret or i == 1 then - ret = cb_ret - end - elseif mode == 3 then - if cb_ret then - return cb_ret - end - ret = cb_ret - elseif mode == 4 then - if (cb_ret and not ret) or i == 1 then - ret = cb_ret - end - elseif mode == 5 and cb_ret then - return cb_ret - end - end - return ret -end - --- --- Callback registration --- - -local function make_registration() - local t = {} - local registerfunc = function(func) - t[#t + 1] = func - core.callback_origins[func] = { - mod = core.get_current_modname() or "??", - name = getinfo(1, "n").name or "??" - } - --local origin = core.callback_origins[func] - --print(origin.name .. ": " .. origin.mod .. " registering cbk " .. tostring(func)) - end - return t, registerfunc -end +local make_registration = builtin_shared.make_registration core.registered_globalsteps, core.register_globalstep = make_registration() core.registered_on_mods_loaded, core.register_on_mods_loaded = make_registration() diff --git a/builtin/common/item_s.lua b/builtin/common/item_s.lua index 5098ef4e6..2761e41dd 100644 --- a/builtin/common/item_s.lua +++ b/builtin/common/item_s.lua @@ -90,7 +90,7 @@ local facedir_to_dir_map = { 1, 4, 3, 2, } function core.facedir_to_dir(facedir) - return facedir_to_dir[facedir_to_dir_map[facedir % 32]] + return vector.copy(facedir_to_dir[facedir_to_dir_map[facedir % 32]]) end function core.dir_to_fourdir(dir) @@ -110,7 +110,7 @@ function core.dir_to_fourdir(dir) end function core.fourdir_to_dir(fourdir) - return facedir_to_dir[facedir_to_dir_map[fourdir % 4]] + return vector.copy(facedir_to_dir[facedir_to_dir_map[fourdir % 4]]) end function core.dir_to_wallmounted(dir) @@ -147,7 +147,7 @@ local wallmounted_to_dir = { vector.new( 0, -1, 0), } function core.wallmounted_to_dir(wallmounted) - return wallmounted_to_dir[wallmounted % 8] + return vector.copy(wallmounted_to_dir[wallmounted % 8]) end function core.dir_to_yaw(dir) diff --git a/builtin/common/misc_helpers.lua b/builtin/common/misc_helpers.lua index ce4179f54..47e0aeabc 100644 --- a/builtin/common/misc_helpers.lua +++ b/builtin/common/misc_helpers.lua @@ -457,18 +457,37 @@ do end end --------------------------------------------------------------------------------- -function table.copy(t, seen) - local n = {} - seen = seen or {} - seen[t] = n - for k, v in pairs(t) do - n[(type(k) == "table" and (seen[k] or table.copy(k, seen))) or k] = - (type(v) == "table" and (seen[v] or table.copy(v, seen))) or v + +local function table_copy(value, preserve_metatables) + local seen = {} + local function copy(val) + if type(val) ~= "table" then + return val + end + local t = val + if seen[t] then + return seen[t] + end + local res = {} + seen[t] = res + for k, v in pairs(t) do + res[copy(k)] = copy(v) + end + if preserve_metatables then + setmetatable(res, getmetatable(t)) + end + return res end - return n + return copy(value) end +function table.copy(value) + return table_copy(value, false) +end + +function table.copy_with_metatables(value) + return table_copy(value, true) +end function table.insert_all(t, other) if table.move then -- LuaJIT diff --git a/builtin/common/register.lua b/builtin/common/register.lua index c300ef90f..cbeac7c64 100644 --- a/builtin/common/register.lua +++ b/builtin/common/register.lua @@ -54,7 +54,8 @@ function builtin_shared.make_registration() local registerfunc = function(func) t[#t + 1] = func core.callback_origins[func] = { - mod = core.get_current_modname() or "??", + -- may be nil or return nil + mod = core.get_current_modname and core.get_current_modname() or "??", name = debug.getinfo(1, "n").name or "??" } end @@ -66,7 +67,8 @@ function builtin_shared.make_registration_reverse() local registerfunc = function(func) table.insert(t, 1, func) core.callback_origins[func] = { - mod = core.get_current_modname() or "??", + -- may be nil or return nil + mod = core.get_current_modname and core.get_current_modname() or "??", name = debug.getinfo(1, "n").name or "??" } end diff --git a/builtin/mainmenu/settings/components.lua b/builtin/common/settings/components.lua similarity index 88% rename from builtin/mainmenu/settings/components.lua rename to builtin/common/settings/components.lua index 64cd27c3c..de7a63fee 100644 --- a/builtin/mainmenu/settings/components.lua +++ b/builtin/common/settings/components.lua @@ -98,6 +98,7 @@ local function make_field(converter, validator, stringifier) local fs = ("field[0,0.3;%f,0.8;%s;%s;%s]"):format( avail_w - 1.5, setting.name, get_label(setting), core.formspec_escape(value)) fs = fs .. ("field_enter_after_edit[%s;true]"):format(setting.name) + fs = fs .. ("field_close_on_enter[%s;false]"):format(setting.name) -- for pause menu env fs = fs .. ("button[%f,0.3;1.5,0.8;%s;%s]"):format(avail_w - 1.5, "set_" .. setting.name, fgettext("Set")) return fs, 1.1 @@ -217,6 +218,8 @@ local function make_path(setting) local fs = ("field[0,0.3;%f,0.8;%s;%s;%s]"):format( avail_w - 3, setting.name, get_label(setting), core.formspec_escape(value)) + fs = fs .. ("field_enter_after_edit[%s;true]"):format(setting.name) + fs = fs .. ("field_close_on_enter[%s;false]"):format(setting.name) -- for pause menu env fs = fs .. ("button[%f,0.3;1.5,0.8;%s;%s]"):format(avail_w - 3, "pick_" .. setting.name, fgettext("Browse")) fs = fs .. ("button[%f,0.3;1.5,0.8;%s;%s]"):format(avail_w - 1.5, "set_" .. setting.name, fgettext("Set")) @@ -249,8 +252,11 @@ local function make_path(setting) } end -if PLATFORM == "Android" then +if PLATFORM == "Android" or INIT == "pause_menu" then -- The Irrlicht file picker doesn't work on Android. + -- Access to the Irrlicht file picker isn't implemented in the pause menu. + -- We want to delete the Irrlicht file picker anyway, so any time spent on + -- that would be wasted. make.path = make.string make.filepath = make.string else @@ -282,6 +288,14 @@ function make.v3f(setting) fs = fs .. ("field[%f,0.6;%f,0.8;%s;%s;%s]"):format( 2 * (field_width + 0.25), field_width, setting.name .. "_z", "Z", value.z) + fs = fs .. ("field_enter_after_edit[%s;true]"):format(setting.name .. "_x") + fs = fs .. ("field_enter_after_edit[%s;true]"):format(setting.name .. "_y") + fs = fs .. ("field_enter_after_edit[%s;true]"):format(setting.name .. "_z") + -- for pause menu env + fs = fs .. ("field_close_on_enter[%s;false]"):format(setting.name .. "_x") + fs = fs .. ("field_close_on_enter[%s;false]"):format(setting.name .. "_y") + fs = fs .. ("field_close_on_enter[%s;false]"):format(setting.name .. "_z") + fs = fs .. ("button[%f,0.6;1,0.8;%s;%s]"):format(avail_w, "set_" .. setting.name, fgettext("Set")) return fs, 1.4 @@ -428,8 +442,22 @@ local function make_noise_params(setting) } end -make.noise_params_2d = make_noise_params -make.noise_params_3d = make_noise_params +if INIT == "pause_menu" then + -- Making the noise parameter dialog work in the pause menu settings would + -- require porting "FSTK" (at least the dialog API) from the mainmenu formspec + -- API to the in-game formspec API. + -- There's no reason you'd want to adjust mapgen noise parameter settings + -- in-game (they only apply to new worlds, hidden as [world_creation]), + -- so there's no reason to implement this. + local empty = function() + return { get_formspec = function() return "", 0 end } + end + make.noise_params_2d = empty + make.noise_params_3d = empty +else + make.noise_params_2d = make_noise_params + make.noise_params_3d = make_noise_params +end return make diff --git a/builtin/mainmenu/settings/dlg_change_mapgen_flags.lua b/builtin/common/settings/dlg_change_mapgen_flags.lua similarity index 100% rename from builtin/mainmenu/settings/dlg_change_mapgen_flags.lua rename to builtin/common/settings/dlg_change_mapgen_flags.lua diff --git a/builtin/mainmenu/settings/dlg_settings.lua b/builtin/common/settings/dlg_settings.lua similarity index 86% rename from builtin/mainmenu/settings/dlg_settings.lua rename to builtin/common/settings/dlg_settings.lua index f1861879a..b43d9ebdc 100644 --- a/builtin/mainmenu/settings/dlg_settings.lua +++ b/builtin/common/settings/dlg_settings.lua @@ -16,11 +16,10 @@ --51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -local component_funcs = dofile(core.get_mainmenu_path() .. DIR_DELIM .. - "settings" .. DIR_DELIM .. "components.lua") +local path = core.get_builtin_path() .. "common" .. DIR_DELIM .. "settings" .. DIR_DELIM -local shadows_component = dofile(core.get_mainmenu_path() .. DIR_DELIM .. - "settings" .. DIR_DELIM .. "shadows_component.lua") +local component_funcs = dofile(path .. "components.lua") +local shadows_component = dofile(path .. "shadows_component.lua") local loaded = false local full_settings @@ -110,8 +109,9 @@ local function load() local change_keys = { query_text = "Controls", requires = { - touch_controls = false, + keyboard_mouse = true, }, + context = "client", get_formspec = function(self, avail_w) local btn_w = math.min(avail_w, 3) return ("button[0,0;%f,0.8;btn_change_keys;%s]"):format(btn_w, fgettext("Controls")), 0.8 @@ -128,6 +128,7 @@ local function load() requires = { touchscreen = true, }, + context = "client", get_formspec = function(self, avail_w) local btn_w = math.min(avail_w, 6) return ("button[0,0;%f,0.8;btn_touch_layout;%s]"):format(btn_w, fgettext("Touchscreen layout")), 0.8 @@ -160,7 +161,6 @@ local function load() { heading = fgettext_ne("Movement") }, "arm_inertia", "view_bobbing_amount", - "fall_bobbing_amount", }, }) @@ -175,18 +175,24 @@ local function load() table.insert(content, idx, shadows_component) idx = table.indexof(content, "enable_auto_exposure") + 1 + local setting_info = get_setting_info("enable_auto_exposure") local note = component_funcs.note(fgettext_ne("(The game will need to enable automatic exposure as well)")) - note.requires = get_setting_info("enable_auto_exposure").requires + note.requires = setting_info.requires + note.context = setting_info.context table.insert(content, idx, note) idx = table.indexof(content, "enable_bloom") + 1 + setting_info = get_setting_info("enable_bloom") note = component_funcs.note(fgettext_ne("(The game will need to enable bloom as well)")) - note.requires = get_setting_info("enable_bloom").requires + note.requires = setting_info.requires + note.context = setting_info.context table.insert(content, idx, note) idx = table.indexof(content, "enable_volumetric_lighting") + 1 + setting_info = get_setting_info("enable_volumetric_lighting") note = component_funcs.note(fgettext_ne("(The game will need to enable volumetric lighting as well)")) - note.requires = get_setting_info("enable_volumetric_lighting").requires + note.requires = setting_info.requires + note.context = setting_info.context table.insert(content, idx, note) end @@ -261,6 +267,17 @@ local function load() ["true"] = fgettext_ne("Enabled"), ["false"] = fgettext_ne("Disabled"), } + + get_setting_info("touch_interaction_style").option_labels = { + ["tap"] = fgettext_ne("Tap"), + ["tap_crosshair"] = fgettext_ne("Tap with crosshair"), + ["buttons_crosshair"] = fgettext("Buttons with crosshair"), + } + + get_setting_info("touch_punch_gesture").option_labels = { + ["short_tap"] = fgettext_ne("Short tap"), + ["long_tap"] = fgettext_ne("Long tap"), + } end @@ -353,7 +370,18 @@ local function update_filtered_pages(query) end -local function check_requirements(name, requires) +local shown_contexts = { + common = true, + client = true, + server = INIT ~= "pause_menu" or core.is_internal_server(), + world_creation = INIT ~= "pause_menu", +} + +local function check_requirements(name, requires, context) + if context and not shown_contexts[context] then + return false + end + if requires == nil then return true end @@ -361,6 +389,7 @@ local function check_requirements(name, requires) local video_driver = core.get_active_driver() local touch_support = core.irrlicht_device_supports_touch() local touch_controls = core.settings:get("touch_controls") + local touch_interaction_style = core.settings:get("touch_interaction_style") local special = { android = PLATFORM == "Android", desktop = PLATFORM ~= "Android", @@ -371,6 +400,7 @@ local function check_requirements(name, requires) keyboard_mouse = not touch_support or (touch_controls == "auto" or not core.is_yes(touch_controls)), opengl = (video_driver == "opengl" or video_driver == "opengl3"), gles = video_driver:sub(1, 5) == "ogles", + touch_interaction_style_tap = touch_interaction_style ~= "buttons_crosshair", } for req_key, req_value in pairs(requires) do @@ -378,6 +408,9 @@ local function check_requirements(name, requires) local required_setting = get_setting_info(req_key) if required_setting == nil then core.log("warning", "Unknown setting " .. req_key .. " required by " .. (name or "???")) + elseif required_setting.type ~= "bool" then + core.log("warning", "Setting " .. req_key .. " of type " .. required_setting.type .. + " used as requirement by " .. (name or "???") .. ", only bool is allowed") end local actual_value = core.settings:get_bool(req_key, required_setting and core.is_yes(required_setting.default)) @@ -409,11 +442,11 @@ function page_has_contents(page, actual_content) elseif type(item) == "string" then local setting = get_setting_info(item) assert(setting, "Unknown setting: " .. item) - if check_requirements(setting.name, setting.requires) then + if check_requirements(setting.name, setting.requires, setting.context) then return true end elseif item.get_formspec then - if check_requirements(item.id, item.requires) then + if check_requirements(item.id, item.requires, item.context) then return true end else @@ -435,20 +468,22 @@ local function build_page_components(page) elseif item.heading then last_heading = item else - local name, requires + local name, requires, context if type(item) == "string" then local setting = get_setting_info(item) assert(setting, "Unknown setting: " .. item) name = setting.name requires = setting.requires + context = setting.context elseif item.get_formspec then name = item.id requires = item.requires + context = item.context else error("Unknown content in page: " .. dump(item)) end - if check_requirements(name, requires) then + if check_requirements(name, requires, context) then if last_heading then content[#content + 1] = last_heading last_heading = nil @@ -514,7 +549,8 @@ local function get_formspec(dialogdata) "box[0,0;", tostring(tabsize.width), ",", tostring(tabsize.height), ";#0000008C]", ("button[0,%f;%f,0.8;back;%s]"):format( - tabsize.height + 0.2, back_w, fgettext("Back")), + tabsize.height + 0.2, back_w, + INIT == "pause_menu" and fgettext("Exit") or fgettext("Back")), ("box[%f,%f;%f,0.8;#0000008C]"):format( back_w + 0.2, tabsize.height + 0.2, checkbox_w), @@ -531,6 +567,7 @@ local function get_formspec(dialogdata) "field[0.25,0.25;", tostring(search_width), ",0.75;search_query;;", core.formspec_escape(dialogdata.query or ""), "]", "field_enter_after_edit[search_query;true]", + "field_close_on_enter[search_query;false]", -- for pause menu env "container[", tostring(search_width + 0.25), ", 0.25]", "image_button[0,0;0.75,0.75;", core.formspec_escape(defaulttexturedir .. "search.png"), ";search;]", "image_button[0.75,0;0.75,0.75;", core.formspec_escape(defaulttexturedir .. "clear.png"), ";search_clear;]", @@ -671,7 +708,8 @@ local function buttonhandler(this, fields) dialogdata.rightscroll = core.explode_scrollbar_event(fields.rightscroll).value or dialogdata.rightscroll dialogdata.query = fields.search_query - if fields.back then + -- "fields.quit" is for the pause menu env + if fields.back or fields.quit then this:delete() return true end @@ -765,11 +803,44 @@ local function eventhandler(event) end -function create_settings_dlg() - load() - local dlg = dialog_create("dlg_settings", get_formspec, buttonhandler, eventhandler) +if INIT == "mainmenu" then + function create_settings_dlg() + load() + local dlg = dialog_create("dlg_settings", get_formspec, buttonhandler, eventhandler) - dlg.data.page_id = update_filtered_pages("") + dlg.data.page_id = update_filtered_pages("") - return dlg + return dlg + end + +else + assert(INIT == "pause_menu") + + local dialog + + core.register_on_formspec_input(function(formname, fields) + if dialog and formname == "__builtin:settings" then + -- buttonhandler returning true means we should update the formspec. + -- dialog is re-checked since the buttonhandler may have closed it. + if buttonhandler(dialog, fields) and dialog then + core.show_formspec("__builtin:settings", get_formspec(dialog.data)) + end + return true + end + end) + + core.open_settings = function() + load() + dialog = {} + dialog.data = {} + dialog.data.page_id = update_filtered_pages("") + dialog.delete = function() + dialog = nil + -- only needed for the "fields.back" case, in the "fields.quit" + -- case it's a no-op + core.show_formspec("__builtin:settings", "") + end + + core.show_formspec("__builtin:settings", get_formspec(dialog.data)) + end end diff --git a/builtin/mainmenu/settings/generate_from_settingtypes.lua b/builtin/common/settings/generate_from_settingtypes.lua similarity index 97% rename from builtin/mainmenu/settings/generate_from_settingtypes.lua rename to builtin/common/settings/generate_from_settingtypes.lua index 52dfe71b1..58f2c3301 100644 --- a/builtin/mainmenu/settings/generate_from_settingtypes.lua +++ b/builtin/common/settings/generate_from_settingtypes.lua @@ -61,7 +61,7 @@ local function create_minetest_conf_example(settings) end end if entry.type == "key" then - local line = "See https://github.com/minetest/irrlicht/blob/master/include/Keycodes.h" + local line = "See https://github.com/luanti-org/luanti/blob/master/irr/include/Keycodes.h" insert(result, "# " .. line .. "\n") end insert(result, "# type: " .. entry.type) diff --git a/builtin/mainmenu/settings/init.lua b/builtin/common/settings/init.lua similarity index 83% rename from builtin/mainmenu/settings/init.lua rename to builtin/common/settings/init.lua index c8615ba34..d475e0c96 100644 --- a/builtin/mainmenu/settings/init.lua +++ b/builtin/common/settings/init.lua @@ -15,11 +15,11 @@ --with this program; if not, write to the Free Software Foundation, Inc., --51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -local path = core.get_mainmenu_path() .. DIR_DELIM .. "settings" +local path = core.get_builtin_path() .. "common" .. DIR_DELIM .. "settings" .. DIR_DELIM -dofile(path .. DIR_DELIM .. "settingtypes.lua") -dofile(path .. DIR_DELIM .. "dlg_change_mapgen_flags.lua") -dofile(path .. DIR_DELIM .. "dlg_settings.lua") +dofile(path .. "settingtypes.lua") +dofile(path .. "dlg_change_mapgen_flags.lua") +dofile(path .. "dlg_settings.lua") -- Uncomment to generate 'minetest.conf.example' and 'settings_translation_file.cpp'. -- For RUN_IN_PLACE the generated files may appear in the 'bin' folder. diff --git a/builtin/mainmenu/settings/settingtypes.lua b/builtin/common/settings/settingtypes.lua similarity index 80% rename from builtin/mainmenu/settings/settingtypes.lua rename to builtin/common/settings/settingtypes.lua index e763535a9..39a50e1f4 100644 --- a/builtin/mainmenu/settings/settingtypes.lua +++ b/builtin/common/settings/settingtypes.lua @@ -40,12 +40,24 @@ local CHAR_CLASSES = { FLAGS = "[%w_%-%.,]", } +local valid_contexts = {common = true, client = true, server = true, world_creation = true} + +local function check_context_annotation(context, force_context) + if force_context then + return "Context annotations are not allowed, context is always " .. force_context + end + if not valid_contexts[context] then + return "Unknown context" + end + return nil +end + local function flags_to_table(flags) return flags:gsub("%s+", ""):split(",", true) -- Remove all spaces and split end -- returns error message, or nil -local function parse_setting_line(settings, line, read_all, base_level, allow_secure) +local function parse_setting_line(settings, line, read_all, base_level, allow_secure, force_context) -- strip carriage returns (CR, /r) line = line:gsub("\r", "") @@ -69,9 +81,32 @@ local function parse_setting_line(settings, line, read_all, base_level, allow_se -- category local stars, category = line:match("^%[([%*]*)([^%]]+)%]$") + local category_context + if not category then + stars, category, category_context = line:match("^%[([%*]*)([^%]]+)%] %[([^%]]+)%]$") + end if category then local category_level = stars:len() + base_level + if settings.current_context_level and + category_level <= settings.current_context_level then + -- The start of this category marks the end of the context annotation's scope. + settings.current_context_level = nil + settings.current_context = nil + end + + if category_context then + local err = check_context_annotation(category_context, force_context) + if err then + return err + end + if settings.current_context_level then + return "Category context annotations cannot be nested" + end + settings.current_context_level = category_level + settings.current_context = category_context + end + if settings.current_hide_level then if settings.current_hide_level < category_level then -- Skip this category, it's inside a hidden category. @@ -102,7 +137,8 @@ local function parse_setting_line(settings, line, read_all, base_level, allow_se end -- settings - local first_part, name, readable_name, setting_type = line:match("^" + local function make_pattern(include_context) + return "^" -- this first capture group matches the whole first part, -- so we can later strip it from the rest of the line .. "(" @@ -110,9 +146,19 @@ local function parse_setting_line(settings, line, read_all, base_level, allow_se .. CHAR_CLASSES.SPACE .. "*" .. "%(([^%)]*)%)" -- readable name .. CHAR_CLASSES.SPACE .. "*" + .. (include_context and ( + "%[([^%]]+)%]" -- context annotation + .. CHAR_CLASSES.SPACE .. "*" + ) or "") .. "(" .. CHAR_CLASSES.VARIABLE .. "+)" -- type .. CHAR_CLASSES.SPACE .. "*" - .. ")") + .. ")" + end + local first_part, name, readable_name, setting_type = line:match(make_pattern(false)) + local setting_context + if not first_part then + first_part, name, readable_name, setting_context, setting_type = line:match(make_pattern(true)) + end if not first_part then return "Invalid line" @@ -122,6 +168,26 @@ local function parse_setting_line(settings, line, read_all, base_level, allow_se return "Tried to add \"secure.\" setting" end + if setting_context then + local err = check_context_annotation(setting_context, force_context) + if err then + return err + end + end + + local context + if force_context then + context = force_context + else + if setting_context then + context = setting_context + elseif settings.current_context_level then + context = settings.current_context + else + return "Missing context annotation" + end + end + local requires = {} local last_line = #current_comment > 0 and current_comment[#current_comment]:trim() if last_line and last_line:lower():sub(1, 9) == "requires:" then @@ -170,6 +236,7 @@ local function parse_setting_line(settings, line, read_all, base_level, allow_se min = min, max = max, requires = requires, + context = context, comment = comment, }) return @@ -193,6 +260,7 @@ local function parse_setting_line(settings, line, read_all, base_level, allow_se type = setting_type, default = default, requires = requires, + context = context, comment = comment, }) return @@ -245,6 +313,7 @@ local function parse_setting_line(settings, line, read_all, base_level, allow_se }, values = values, requires = requires, + context = context, comment = comment, noise_params = true, flags = flags_to_table("defaults,eased,absvalue") @@ -263,6 +332,7 @@ local function parse_setting_line(settings, line, read_all, base_level, allow_se type = "bool", default = remaining_line, requires = requires, + context = context, comment = comment, }) return @@ -290,6 +360,7 @@ local function parse_setting_line(settings, line, read_all, base_level, allow_se min = min, max = max, requires = requires, + context = context, comment = comment, }) return @@ -313,6 +384,7 @@ local function parse_setting_line(settings, line, read_all, base_level, allow_se default = default, values = values:split(",", true), requires = requires, + context = context, comment = comment, }) return @@ -331,6 +403,7 @@ local function parse_setting_line(settings, line, read_all, base_level, allow_se type = setting_type, default = default, requires = requires, + context = context, comment = comment, }) return @@ -361,6 +434,7 @@ local function parse_setting_line(settings, line, read_all, base_level, allow_se default = default, possible = flags_to_table(possible), requires = requires, + context = context, comment = comment, }) return @@ -369,14 +443,14 @@ local function parse_setting_line(settings, line, read_all, base_level, allow_se return "Invalid setting type \"" .. setting_type .. "\"" end -local function parse_single_file(file, filepath, read_all, result, base_level, allow_secure) +local function parse_single_file(file, filepath, read_all, result, base_level, allow_secure, force_context) -- store this helper variable in the table so it's easier to pass to parse_setting_line() result.current_comment = {} result.current_hide_level = nil local line = file:read("*line") while line do - local error_msg = parse_setting_line(result, line, read_all, base_level, allow_secure) + local error_msg = parse_setting_line(result, line, read_all, base_level, allow_secure, force_context) if error_msg then core.log("error", error_msg .. " in " .. filepath .. " \"" .. line .. "\"") end @@ -408,7 +482,17 @@ function settingtypes.parse_config_file(read_all, parse_mods) file:close() end - if parse_mods then + -- TODO: Support game/mod settings in the pause menu too + -- Note that this will need to work different from how it's done in the + -- mainmenu: + -- * ~~Only if in singleplayer / on local server, not on remote servers~~ + -- (done now: context annotations) + -- * Only show settings for the active game and mods + -- (add API function to get them, can return nil if on a remote server) + -- (names are probably not enough, will need paths for uniqueness) + -- This means just making "pkgmgr.lua" work won't get you very far. + + if INIT == "mainmenu" and parse_mods then -- Parse games local games_category_initialized = false for _, game in ipairs(pkgmgr.games) do @@ -432,7 +516,7 @@ function settingtypes.parse_config_file(read_all, parse_mods) type = "category", }) - parse_single_file(file, path, read_all, settings, 2, false) + parse_single_file(file, path, read_all, settings, 2, false, "server") file:close() end @@ -465,7 +549,7 @@ function settingtypes.parse_config_file(read_all, parse_mods) type = "category", }) - parse_single_file(file, path, read_all, settings, 2, false) + parse_single_file(file, path, read_all, settings, 2, false, "server") file:close() end @@ -496,7 +580,7 @@ function settingtypes.parse_config_file(read_all, parse_mods) type = "category", }) - parse_single_file(file, path, read_all, settings, 2, false) + parse_single_file(file, path, read_all, settings, 2, false, "client") file:close() end diff --git a/builtin/mainmenu/settings/shadows_component.lua b/builtin/common/settings/shadows_component.lua similarity index 99% rename from builtin/mainmenu/settings/shadows_component.lua rename to builtin/common/settings/shadows_component.lua index 2d68f9d3d..405517058 100644 --- a/builtin/mainmenu/settings/shadows_component.lua +++ b/builtin/common/settings/shadows_component.lua @@ -84,6 +84,7 @@ return { requires = { opengl = true, }, + context = "client", get_formspec = function(self, avail_w) local labels = table.copy(shadow_levels_labels) local idx = detect_mapping_idx() diff --git a/builtin/common/tests/misc_helpers_spec.lua b/builtin/common/tests/misc_helpers_spec.lua index 10e2bf277..d24fb0c8f 100644 --- a/builtin/common/tests/misc_helpers_spec.lua +++ b/builtin/common/tests/misc_helpers_spec.lua @@ -178,6 +178,35 @@ describe("table", function() assert.equal(2, table.keyof({[2] = "foo", [3] = "bar"}, "foo")) assert.equal(3, table.keyof({[1] = "foo", [3] = "bar"}, "bar")) end) + + describe("copy()", function() + it("strips metatables", function() + local v = vector.new(1, 2, 3) + local w = table.copy(v) + assert.are_not.equal(v, w) + assert.same(v, w) + assert.equal(nil, getmetatable(w)) + end) + it("preserves referential structure", function() + local t = {{}, {}} + t[1][1] = t[2] + t[2][1] = t[1] + local copy = table.copy(t) + assert.same(t, copy) + assert.equal(copy[1][1], copy[2]) + assert.equal(copy[2][1], copy[1]) + end) + end) + + describe("copy_with_metatables()", function() + it("preserves metatables", function() + local v = vector.new(1, 2, 3) + local w = table.copy_with_metatables(v) + assert.equal(getmetatable(v), getmetatable(w)) + assert(vector.check(w)) + assert.equal(v, w) -- vector overrides == + end) + end) end) describe("formspec_escape", function() diff --git a/builtin/common/vector.lua b/builtin/common/vector.lua index fb1d2a7d9..7a8558cbd 100644 --- a/builtin/common/vector.lua +++ b/builtin/common/vector.lua @@ -389,7 +389,7 @@ function vector.random_direction() local x, y, z, l2 repeat -- expected less than two attempts on average (volume sphere vs. cube) x, y, z = math.random() * 2 - 1, math.random() * 2 - 1, math.random() * 2 - 1 - l2 = x*x + y*y + z*z + l2 = x*x + y*y + z*z until l2 <= 1 and l2 >= 1e-6 -- normalize local l = math.sqrt(l2) diff --git a/builtin/emerge/env.lua b/builtin/emerge/env.lua index 5beb6285c..6d3fb0a3b 100644 --- a/builtin/emerge/env.lua +++ b/builtin/emerge/env.lua @@ -33,7 +33,7 @@ function core.get_node(pos) return core.vmanip:get_node_at(pos) end -function core.get_perlin(seed, octaves, persist, spread) +function core.get_value_noise(seed, octaves, persist, spread) local params if type(seed) == "table" then params = table.copy(seed) @@ -47,12 +47,18 @@ function core.get_perlin(seed, octaves, persist, spread) } end params.seed = core.get_seed(params.seed) -- add mapgen seed - return PerlinNoise(params) + return ValueNoise(params) end - -function core.get_perlin_map(params, size) +function core.get_value_noise_map(params, size) local params2 = table.copy(params) params2.seed = core.get_seed(params.seed) -- add mapgen seed - return PerlinNoiseMap(params2, size) + return ValueNoiseMap(params2, size) end + +-- deprecated as of 5.12, as it was not Perlin noise +-- but with no warnings (yet) for compatibility +core.get_perlin = core.get_value_noise +core.get_perlin_map = core.get_value_noise_map +PerlinNoise = ValueNoise +PerlinNoiseMap = ValueNoiseMap diff --git a/builtin/emerge/register.lua b/builtin/emerge/register.lua index 308fe4d7e..a07849c7b 100644 --- a/builtin/emerge/register.lua +++ b/builtin/emerge/register.lua @@ -9,8 +9,8 @@ do all.registered_craftitems = {} all.registered_tools = {} for k, v in pairs(all.registered_items) do - -- Disable further modification - setmetatable(v, {__newindex = {}}) + -- Ignore new keys + setmetatable(v, {__newindex = function() end}) -- Reassemble the other tables if v.type == "node" then getmetatable(v).__index = all.nodedef_default @@ -36,6 +36,9 @@ end local alias_metatable = { __index = function(t, name) return rawget(t, core.registered_aliases[name]) + end, + __newindex = function() + error("table is read-only") end } setmetatable(core.registered_items, alias_metatable) diff --git a/builtin/fstk/buttonbar.lua b/builtin/fstk/buttonbar.lua index ed478af82..577eb7c6d 100644 --- a/builtin/fstk/buttonbar.lua +++ b/builtin/fstk/buttonbar.lua @@ -38,7 +38,7 @@ local function buttonbar_formspec(self) -- `BASE_SPACING` is used as the minimum spacing, like `gap` in CSS Flexbox. -- The number of buttons per page is always calculated as if the scroll - -- buttons were visible. + -- buttons were visible. local avail_space = self.size.x - 2*BASE_SPACING - 2*get_scroll_btn_width() local btns_per_page = math.floor((avail_space - BASE_SPACING) / (btn_size + BASE_SPACING)) diff --git a/builtin/game/chat.lua b/builtin/game/chat.lua index 69c657194..80c9a6e81 100644 --- a/builtin/game/chat.lua +++ b/builtin/game/chat.lua @@ -60,6 +60,8 @@ core.register_on_chat_message(function(name, message) param = param or "" + core.log("verbose", string.format("Handling chat command %q with params %q", cmd, param)) + -- Run core.registered_on_chatcommands callbacks. if core.run_callbacks(core.registered_on_chatcommands, 5, name, cmd, param) then return true @@ -1275,7 +1277,7 @@ core.register_chatcommand("msg", { core.log("action", "DM from " .. name .. " to " .. sendto .. ": " .. message) core.chat_send_player(sendto, S("DM from @1: @2", name, message)) - return true, S("Message sent.") + return true, S("DM sent to @1: @2", sendto, message) end, }) diff --git a/builtin/game/deprecated.lua b/builtin/game/deprecated.lua index 87b785995..48e825ea2 100644 --- a/builtin/game/deprecated.lua +++ b/builtin/game/deprecated.lua @@ -61,3 +61,10 @@ function core.register_on_auth_fail(func) end end) end + +-- deprecated as of 5.12, as it was not Perlin noise +-- but with no warnings (yet) for compatibility +core.get_perlin = core.get_value_noise +core.get_perlin_map = core.get_value_noise_map +PerlinNoise = ValueNoise +PerlinNoiseMap = ValueNoiseMap diff --git a/builtin/game/falling.lua b/builtin/game/falling.lua index 6abd16c58..6a4ed96d5 100644 --- a/builtin/game/falling.lua +++ b/builtin/game/falling.lua @@ -1,5 +1,4 @@ local builtin_shared = ... -local SCALE = 0.667 local facedir_to_euler = { {y = 0, x = 0, z = 0}, @@ -36,9 +35,7 @@ local gravity = tonumber(core.settings:get("movement_gravity")) or 9.81 core.register_entity(":__builtin:falling_node", { initial_properties = { - visual = "item", - visual_size = vector.new(SCALE, SCALE, SCALE), - textures = {}, + visual = "node", physical = true, is_visible = false, collide_with_objects = true, @@ -78,43 +75,17 @@ core.register_entity(":__builtin:falling_node", { self.floats = core.get_item_group(node.name, "float") ~= 0 -- Save liquidtype for falling water - self.liquidtype = def.liquidtype + self.liquidtype = def.liquidtype - -- Set entity visuals - if def.drawtype == "torchlike" or def.drawtype == "signlike" then - local textures - if def.tiles and def.tiles[1] then - local tile = def.tiles[1] - if type(tile) == "table" then - tile = tile.name - end - if def.drawtype == "torchlike" then - textures = { "("..tile..")^[transformFX", tile } - else - textures = { tile, "("..tile..")^[transformFX" } - end - end - local vsize - if def.visual_scale then - local s = def.visual_scale - vsize = vector.new(s, s, s) - end - self.object:set_properties({ - is_visible = true, - visual = "upright_sprite", - visual_size = vsize, - textures = textures, - glow = def.light_source, - }) - elseif def.drawtype ~= "airlike" then - local itemstring = node.name - if core.is_colored_paramtype(def.paramtype2) then - itemstring = core.itemstring_with_palette(itemstring, node.param2) - end - -- FIXME: solution needed for paramtype2 == "leveled" + -- Set up entity visuals + -- For compatibility with older clients we continue to use "item" visual + -- for simple situations. + local drawtypes = {normal=true, glasslike=true, allfaces=true, nodebox=true} + local p2types = {none=true, facedir=true, ["4dir"]=true} + if drawtypes[def.drawtype] and p2types[def.paramtype2] and def.use_texture_alpha ~= "blend" then -- Calculate size of falling node - local s = {} - s.x = (def.visual_scale or 1) * SCALE + local s = vector.zero() + s.x = (def.visual_scale or 1) * 0.667 s.y = s.x s.z = s.x -- Compensate for wield_scale @@ -125,10 +96,31 @@ core.register_entity(":__builtin:falling_node", { end self.object:set_properties({ is_visible = true, - wield_item = itemstring, + visual = "item", + wield_item = node.name, visual_size = s, glow = def.light_source, }) + -- Rotate as needed + if def.paramtype2 == "facedir" then + local fdir = node.param2 % 32 % 24 + local euler = facedir_to_euler[fdir + 1] + if euler then + self.object:set_rotation(euler) + end + elseif def.paramtype2 == "4dir" then + local fdir = node.param2 % 4 + local euler = facedir_to_euler[fdir + 1] + if euler then + self.object:set_rotation(euler) + end + end + elseif def.drawtype ~= "airlike" then + self.object:set_properties({ + is_visible = true, + node = node, + glow = def.light_source, + }) end -- Set collision box (certain nodeboxes only for now) @@ -148,111 +140,6 @@ core.register_entity(":__builtin:falling_node", { }) end end - - -- Rotate entity - if def.drawtype == "torchlike" then - if (def.paramtype2 == "wallmounted" or def.paramtype2 == "colorwallmounted") - and node.param2 % 8 == 7 then - self.object:set_yaw(-math.pi*0.25) - else - self.object:set_yaw(math.pi*0.25) - end - elseif ((node.param2 ~= 0 or def.drawtype == "nodebox" or def.drawtype == "mesh") - and (def.wield_image == "" or def.wield_image == nil)) - or def.drawtype == "signlike" - or def.drawtype == "mesh" - or def.drawtype == "normal" - or def.drawtype == "nodebox" then - if (def.paramtype2 == "facedir" or def.paramtype2 == "colorfacedir") then - local fdir = node.param2 % 32 % 24 - -- Get rotation from a precalculated lookup table - local euler = facedir_to_euler[fdir + 1] - if euler then - self.object:set_rotation(euler) - end - elseif (def.paramtype2 == "4dir" or def.paramtype2 == "color4dir") then - local fdir = node.param2 % 4 - -- Get rotation from a precalculated lookup table - local euler = facedir_to_euler[fdir + 1] - if euler then - self.object:set_rotation(euler) - end - elseif (def.drawtype ~= "plantlike" and def.drawtype ~= "plantlike_rooted" and - (def.paramtype2 == "wallmounted" or def.paramtype2 == "colorwallmounted" or def.drawtype == "signlike")) then - local rot = node.param2 % 8 - if (def.drawtype == "signlike" and def.paramtype2 ~= "wallmounted" and def.paramtype2 ~= "colorwallmounted") then - -- Change rotation to "floor" by default for non-wallmounted paramtype2 - rot = 1 - end - local pitch, yaw, roll = 0, 0, 0 - if def.drawtype == "nodebox" or def.drawtype == "mesh" then - if rot == 0 then - pitch, yaw = math.pi/2, 0 - elseif rot == 1 then - pitch, yaw = -math.pi/2, math.pi - elseif rot == 2 then - pitch, yaw = 0, math.pi/2 - elseif rot == 3 then - pitch, yaw = 0, -math.pi/2 - elseif rot == 4 then - pitch, yaw = 0, math.pi - elseif rot == 6 then - pitch, yaw = math.pi/2, 0 - elseif rot == 7 then - pitch, yaw = -math.pi/2, math.pi - end - else - if rot == 1 then - pitch, yaw = math.pi, math.pi - elseif rot == 2 then - pitch, yaw = math.pi/2, math.pi/2 - elseif rot == 3 then - pitch, yaw = math.pi/2, -math.pi/2 - elseif rot == 4 then - pitch, yaw = math.pi/2, math.pi - elseif rot == 5 then - pitch, yaw = math.pi/2, 0 - elseif rot == 6 then - pitch, yaw = math.pi, -math.pi/2 - elseif rot == 7 then - pitch, yaw = 0, -math.pi/2 - end - end - if def.drawtype == "signlike" then - pitch = pitch - math.pi/2 - if rot == 0 then - yaw = yaw + math.pi/2 - elseif rot == 1 then - yaw = yaw - math.pi/2 - elseif rot == 6 then - yaw = yaw - math.pi/2 - pitch = pitch + math.pi - elseif rot == 7 then - yaw = yaw + math.pi/2 - pitch = pitch + math.pi - end - elseif def.drawtype == "mesh" or def.drawtype == "normal" or def.drawtype == "nodebox" then - if rot == 0 or rot == 1 then - roll = roll + math.pi - elseif rot == 6 or rot == 7 then - if def.drawtype ~= "normal" then - roll = roll - math.pi/2 - end - else - yaw = yaw + math.pi - end - end - self.object:set_rotation({x=pitch, y=yaw, z=roll}) - elseif (def.drawtype == "mesh" and def.paramtype2 == "degrotate") then - local p2 = (node.param2 - (def.place_param2 or 0)) % 240 - local yaw = (p2 / 240) * (math.pi * 2) - self.object:set_yaw(yaw) - elseif (def.drawtype == "mesh" and def.paramtype2 == "colordegrotate") then - local p2 = (node.param2 % 32 - (def.place_param2 or 0) % 32) % 24 - local yaw = (p2 / 24) * (math.pi * 2) - self.object:set_yaw(yaw) - end - end end, get_staticdata = function(self) diff --git a/builtin/game/features.lua b/builtin/game/features.lua index ea80a09fb..4d5e919b4 100644 --- a/builtin/game/features.lua +++ b/builtin/game/features.lua @@ -45,6 +45,7 @@ core.features = { abm_without_neighbors = true, biome_weights = true, particle_blend_clip = true, + remove_item_match_meta = true, } function core.has_feature(arg) diff --git a/builtin/game/item.lua b/builtin/game/item.lua index cc9be44af..5dd5312aa 100644 --- a/builtin/game/item.lua +++ b/builtin/game/item.lua @@ -360,13 +360,12 @@ end function core.item_drop(itemstack, dropper, pos) local dropper_is_player = dropper and dropper:is_player() local p = table.copy(pos) - local cnt = itemstack:get_count() if dropper_is_player then p.y = p.y + 1.2 end - local item = itemstack:take_item(cnt) - local obj = core.add_item(p, item) + local obj = core.add_item(p, ItemStack(itemstack)) if obj then + itemstack:clear() if dropper_is_player then local dir = dropper:get_look_dir() dir.x = dir.x * 2.9 @@ -375,7 +374,7 @@ function core.item_drop(itemstack, dropper, pos) obj:set_velocity(dir) obj:get_luaentity().dropped_by = dropper:get_player_name() end - return itemstack + return itemstack, obj end -- If we reach this, adding the object to the -- environment failed diff --git a/builtin/game/misc_s.lua b/builtin/game/misc_s.lua index 07ab09b37..9433f74bb 100644 --- a/builtin/game/misc_s.lua +++ b/builtin/game/misc_s.lua @@ -36,7 +36,7 @@ end function core.setting_get_pos(name) - return core.settings:get_pos(name) + return core.settings:get_pos(name) end @@ -112,3 +112,26 @@ if core.set_push_moveresult1 then end) core.set_push_moveresult1 = nil end + +-- Protocol version table +-- see also src/network/networkprotocol.cpp +core.protocol_versions = { + ["5.0.0"] = 37, + ["5.1.0"] = 38, + ["5.2.0"] = 39, + ["5.3.0"] = 39, + ["5.4.0"] = 39, + ["5.5.0"] = 40, + ["5.6.0"] = 41, + ["5.7.0"] = 42, + ["5.8.0"] = 43, + ["5.9.0"] = 44, + ["5.9.1"] = 45, + ["5.10.0"] = 46, + ["5.11.0"] = 47, + ["5.12.0"] = 48, +} + +setmetatable(core.protocol_versions, {__newindex = function() + error("core.protocol_versions is read-only") +end}) diff --git a/builtin/game/register.lua b/builtin/game/register.lua index 3e4b9be96..d6ada6920 100644 --- a/builtin/game/register.lua +++ b/builtin/game/register.lua @@ -61,7 +61,7 @@ local function check_modname_prefix(name) return name:sub(2) else -- Enforce that the name starts with the correct mod name. - local expected_prefix = core.get_current_modname() .. ":" + local expected_prefix = (core.get_current_modname() or "") .. ":" if name:sub(1, #expected_prefix) ~= expected_prefix then error("Name " .. name .. " does not follow naming conventions: " .. "\"" .. expected_prefix .. "\" or \":\" prefix required") @@ -95,6 +95,7 @@ function core.register_abm(spec) check_node_list(spec.nodenames, "nodenames") check_node_list(spec.neighbors, "neighbors") assert(type(spec.action) == "function", "Required field 'action' of type function") + core.registered_abms[#core.registered_abms + 1] = spec spec.mod_origin = core.get_current_modname() or "??" end @@ -128,127 +129,51 @@ function core.register_entity(name, prototype) prototype.mod_origin = core.get_current_modname() or "??" end -function core.register_item(name, itemdef) - -- Check name - if name == nil then - error("Unable to register item: Name is nil") +local function preprocess_node(nodedef) + -- Use the nodebox as selection box if it's not set manually + if nodedef.drawtype == "nodebox" and not nodedef.selection_box then + nodedef.selection_box = nodedef.node_box + elseif nodedef.drawtype == "fencelike" and not nodedef.selection_box then + nodedef.selection_box = { + type = "fixed", + fixed = {-1/8, -1/2, -1/8, 1/8, 1/2, 1/8}, + } end - name = check_modname_prefix(tostring(name)) - if forbidden_item_names[name] then - error("Unable to register item: Name is forbidden: " .. name) - end - itemdef.name = name - -- Apply defaults and add to registered_* table - if itemdef.type == "node" then - -- Use the nodebox as selection box if it's not set manually - if itemdef.drawtype == "nodebox" and not itemdef.selection_box then - itemdef.selection_box = itemdef.node_box - elseif itemdef.drawtype == "fencelike" and not itemdef.selection_box then - itemdef.selection_box = { - type = "fixed", - fixed = {-1/8, -1/2, -1/8, 1/8, 1/2, 1/8}, - } - end - if itemdef.light_source and itemdef.light_source > core.LIGHT_MAX then - itemdef.light_source = core.LIGHT_MAX - core.log("warning", "Node 'light_source' value exceeds maximum," .. - " limiting to maximum: " ..name) - end - setmetatable(itemdef, {__index = core.nodedef_default}) - core.registered_nodes[itemdef.name] = itemdef - elseif itemdef.type == "craft" then - setmetatable(itemdef, {__index = core.craftitemdef_default}) - core.registered_craftitems[itemdef.name] = itemdef - elseif itemdef.type == "tool" then - setmetatable(itemdef, {__index = core.tooldef_default}) - core.registered_tools[itemdef.name] = itemdef - elseif itemdef.type == "none" then - setmetatable(itemdef, {__index = core.noneitemdef_default}) - else - error("Unable to register item: Type is invalid: " .. dump(itemdef)) + if nodedef.light_source and nodedef.light_source > core.LIGHT_MAX then + nodedef.light_source = core.LIGHT_MAX + core.log("warning", "Node 'light_source' value exceeds maximum," .. + " limiting it: " .. nodedef.name) end -- Flowing liquid uses param2 - if itemdef.type == "node" and itemdef.liquidtype == "flowing" then - itemdef.paramtype2 = "flowingliquid" + if nodedef.liquidtype == "flowing" then + nodedef.paramtype2 = "flowingliquid" end +end +local function preprocess_craft(itemdef) -- BEGIN Legacy stuff - if itemdef.cookresult_itemstring ~= nil and itemdef.cookresult_itemstring ~= "" then - core.register_craft({ - type="cooking", - output=itemdef.cookresult_itemstring, - recipe=itemdef.name, - cooktime=itemdef.furnace_cooktime - }) - end - if itemdef.furnace_burntime ~= nil and itemdef.furnace_burntime >= 0 then - core.register_craft({ - type="fuel", - recipe=itemdef.name, - burntime=itemdef.furnace_burntime - }) + if itemdef.inventory_image == nil and itemdef.image ~= nil then + core.log("deprecated", "The `image` field in craftitem definitions " .. + "is deprecated. Use `inventory_image` instead. " .. + "Craftitem name: " .. itemdef.name, 3) + itemdef.inventory_image = itemdef.image end -- END Legacy stuff - - itemdef.mod_origin = core.get_current_modname() or "??" - - -- Disable all further modifications - getmetatable(itemdef).__newindex = {} - - --core.log("Registering item: " .. itemdef.name) - core.registered_items[itemdef.name] = itemdef - core.registered_aliases[itemdef.name] = nil - register_item_raw(itemdef) end -function core.unregister_item(name) - if not core.registered_items[name] then - core.log("warning", "Not unregistering item " ..name.. - " because it doesn't exist.") - return - end - -- Erase from registered_* table - local type = core.registered_items[name].type - if type == "node" then - core.registered_nodes[name] = nil - elseif type == "craft" then - core.registered_craftitems[name] = nil - elseif type == "tool" then - core.registered_tools[name] = nil - end - core.registered_items[name] = nil - - - unregister_item_raw(name) -end - -function core.register_node(name, nodedef) - nodedef.type = "node" - core.register_item(name, nodedef) -end - -function core.register_craftitem(name, craftitemdef) - craftitemdef.type = "craft" - - -- BEGIN Legacy stuff - if craftitemdef.inventory_image == nil and craftitemdef.image ~= nil then - craftitemdef.inventory_image = craftitemdef.image - end - -- END Legacy stuff - - core.register_item(name, craftitemdef) -end - -function core.register_tool(name, tooldef) - tooldef.type = "tool" +local function preprocess_tool(tooldef) tooldef.stack_max = 1 -- BEGIN Legacy stuff if tooldef.inventory_image == nil and tooldef.image ~= nil then + core.log("deprecated", "The `image` field in tool definitions " .. + "is deprecated. Use `inventory_image` instead. " .. + "Tool name: " .. tooldef.name, 3) tooldef.inventory_image = tooldef.image end + if tooldef.tool_capabilities == nil and (tooldef.full_punch_interval ~= nil or tooldef.basetime ~= nil or @@ -261,6 +186,9 @@ function core.register_tool(name, tooldef) tooldef.dd_crackiness ~= nil or tooldef.dd_crumbliness ~= nil or tooldef.dd_cuttability ~= nil) then + core.log("deprecated", "Specifying tool capabilities directly in the tool " .. + "definition is deprecated. Use the `tool_capabilities` field instead. " .. + "Tool name: " .. tooldef.name, 3) tooldef.tool_capabilities = { full_punch_interval = tooldef.full_punch_interval, basetime = tooldef.basetime, @@ -277,7 +205,7 @@ function core.register_tool(name, tooldef) end -- END Legacy stuff - -- This isn't just legacy, but more of a convenience feature + -- Automatically set punch_attack_uses as a convenience feature local toolcaps = tooldef.tool_capabilities if toolcaps and toolcaps.punch_attack_uses == nil then for _, cap in pairs(toolcaps.groupcaps or {}) do @@ -288,8 +216,126 @@ function core.register_tool(name, tooldef) end end end +end - core.register_item(name, tooldef) +local default_tables = { + node = core.nodedef_default, + craft = core.craftitemdef_default, + tool = core.tooldef_default, + none = core.noneitemdef_default, +} + +local preprocess_fns = { + node = preprocess_node, + craft = preprocess_craft, + tool = preprocess_tool, +} + +function core.register_item(name, itemdef) + -- Check name + if name == nil then + error("Unable to register item: Name is nil") + end + name = check_modname_prefix(tostring(name)) + if forbidden_item_names[name] then + error("Unable to register item: Name is forbidden: " .. name) + end + + itemdef.name = name + + -- Compatibility stuff depending on type + local fn = preprocess_fns[itemdef.type] + if fn then + fn(itemdef) + end + + -- Apply defaults + local defaults = default_tables[itemdef.type] + if defaults == nil then + error("Unable to register item: Type is invalid: " .. dump(itemdef)) + end + local old_mt = getmetatable(itemdef) + -- TODO most of these checks should become an error after a while (maybe in 2026?) + if old_mt ~= nil and next(old_mt) ~= nil then + -- Note that even registering multiple identical items with the same table + -- is not allowed, due to the 'name' property. + if old_mt.__index == defaults then + core.log("warning", "Item definition table was reused between registrations. ".. + "This is unsupported and broken: " .. name) + else + core.log("warning", "Item definition has a metatable, this is ".. + "unsupported and it will be overwritten: " .. name) + end + end + setmetatable(itemdef, {__index = defaults}) + + -- BEGIN Legacy stuff + if itemdef.cookresult_itemstring ~= nil and itemdef.cookresult_itemstring ~= "" then + core.log("deprecated", "The `cookresult_itemstring` item definition " .. + "field is deprecated. Use `core.register_craft` instead. " .. + "Item name: " .. itemdef.name, 2) + core.register_craft({ + type="cooking", + output=itemdef.cookresult_itemstring, + recipe=itemdef.name, + cooktime=itemdef.furnace_cooktime + }) + end + if itemdef.furnace_burntime ~= nil and itemdef.furnace_burntime >= 0 then + core.log("deprecated", "The `furnace_burntime` item definition " .. + "field is deprecated. Use `core.register_craft` instead. " .. + "Item name: " .. itemdef.name, 2) + core.register_craft({ + type="fuel", + recipe=itemdef.name, + burntime=itemdef.furnace_burntime + }) + end + -- END Legacy stuff + + itemdef.mod_origin = core.get_current_modname() or "??" + + -- Ignore new keys as a failsafe to prevent mistakes + getmetatable(itemdef).__newindex = function() end + + -- Add to registered_* tables + if itemdef.type == "node" then + core.registered_nodes[itemdef.name] = itemdef + elseif itemdef.type == "craft" then + core.registered_craftitems[itemdef.name] = itemdef + elseif itemdef.type == "tool" then + core.registered_tools[itemdef.name] = itemdef + end + core.registered_items[itemdef.name] = itemdef + core.registered_aliases[itemdef.name] = nil + + register_item_raw(itemdef) +end + +local function make_register_item_wrapper(the_type) + return function(name, itemdef) + itemdef.type = the_type + return core.register_item(name, itemdef) + end +end + +core.register_node = make_register_item_wrapper("node") +core.register_craftitem = make_register_item_wrapper("craft") +core.register_tool = make_register_item_wrapper("tool") + +function core.unregister_item(name) + if not core.registered_items[name] then + core.log("warning", "Not unregistering item " ..name.. + " because it doesn't exist.") + return + end + -- Erase from registered_* table + core.registered_nodes[name] = nil + core.registered_craftitems[name] = nil + core.registered_tools[name] = nil + core.registered_items[name] = nil + + unregister_item_raw(name) end function core.register_alias(name, convert_to) @@ -300,7 +346,6 @@ function core.register_alias(name, convert_to) core.log("warning", "Not registering alias, item with same name" .. " is already defined: " .. name .. " -> " .. convert_to) else - --core.log("Registering alias: " .. name .. " -> " .. convert_to) core.registered_aliases[name] = convert_to register_alias_raw(name, convert_to) end @@ -315,7 +360,6 @@ function core.register_alias_force(name, convert_to) core.log("info", "Removed item " ..name.. " while attempting to force add an alias") end - --core.log("Registering alias: " .. name .. " -> " .. convert_to) core.registered_aliases[name] = convert_to register_alias_raw(name, convert_to) end @@ -406,6 +450,7 @@ core.register_item(":", { groups = {not_in_creative_inventory=1}, }) +local itemdefs_finalized = false function core.override_item(name, redefinition, del_fields) if redefinition.name ~= nil then @@ -418,10 +463,16 @@ function core.override_item(name, redefinition, del_fields) if not item then error("Attempt to override non-existent item "..name, 2) end + if itemdefs_finalized then + -- TODO: it's not clear if this needs to be allowed at all? + core.log("warning", "Overriding item " .. name .. " after server startup. " .. + "This is unsupported and can cause problems related to data inconsistency.") + end for k, v in pairs(redefinition) do rawset(item, k, v) end for _, field in ipairs(del_fields or {}) do + assert(field ~= "name" and field ~= "type") rawset(item, field, nil) end register_item_raw(item) @@ -568,13 +619,57 @@ core.registered_on_rightclickplayers, core.register_on_rightclickplayer = make_r core.registered_on_liquid_transformed, core.register_on_liquid_transformed = make_registration() core.registered_on_mapblocks_changed, core.register_on_mapblocks_changed = make_registration() +-- A bunch of registrations are read by the C++ side once on env init, so we cannot +-- allow them to change afterwards (see s_env.cpp). +-- Nodes and items do not have this problem but there are obvious consistency +-- problems if this would be allowed. + +local function freeze_table(t) + -- Freezing a Lua table is not actually possible without some very intrusive + -- metatable hackery, but we can trivially prevent new additions. + local mt = table.copy(getmetatable(t) or {}) + mt.__newindex = function() + error("modification forbidden") + end + setmetatable(t, mt) +end + +local function generic_reg_error(what) + return function(something) + local described = what + if type(something) == "table" and type(something.name) == "string" then + described = what .. " " .. something.name + elseif type(something) == "string" then + described = what .. " " .. something + end + error("Tried to register " .. described .. " after load time!") + end +end + core.register_on_mods_loaded(function() core.after(0, function() - setmetatable(core.registered_on_mapblocks_changed, { - __newindex = function() - error("on_mapblocks_changed callbacks must be registered at load time") - end, - }) + itemdefs_finalized = true + + -- prevent direct modification + freeze_table(core.registered_abms) + freeze_table(core.registered_lbms) + freeze_table(core.registered_items) + freeze_table(core.registered_nodes) + freeze_table(core.registered_craftitems) + freeze_table(core.registered_tools) + freeze_table(core.registered_aliases) + freeze_table(core.registered_on_mapblocks_changed) + + -- neutralize registration functions + core.register_abm = generic_reg_error("ABM") + core.register_lbm = generic_reg_error("LBM") + core.register_item = generic_reg_error("item") + core.unregister_item = function(name) + error("Refusing to unregister item " .. name .. " after load time") + end + core.register_alias = generic_reg_error("alias") + core.register_alias_force = generic_reg_error("alias") + core.register_on_mapblocks_changed = generic_reg_error("on_mapblocks_changed callback") end) end) diff --git a/builtin/init.lua b/builtin/init.lua index 83e8a1df0..59d1558fc 100644 --- a/builtin/init.lua +++ b/builtin/init.lua @@ -78,6 +78,8 @@ elseif INIT == "client" then dofile(scriptdir .. "client" .. DIR_DELIM .. "init.lua") elseif INIT == "emerge" then dofile(scriptdir .. "emerge" .. DIR_DELIM .. "init.lua") +elseif INIT == "pause_menu" then + dofile(scriptdir .. "pause_menu" .. DIR_DELIM .. "init.lua") else error(("Unrecognized builtin initialization type %s!"):format(tostring(INIT))) end diff --git a/builtin/mainmenu/credits.json b/builtin/mainmenu/credits.json index 8a946893c..bd4f0591f 100644 --- a/builtin/mainmenu/credits.json +++ b/builtin/mainmenu/credits.json @@ -1,5 +1,5 @@ { - "#": "https://github.com/orgs/minetest/teams/engine/members", + "#": "https://github.com/orgs/luanti-org/teams/engine/members", "core_developers": [ "Perttu Ahola (celeron55) [Project founder]", "sfan5 ", @@ -15,7 +15,8 @@ "Gregor Parzefall (grorp)", "Lars Müller (luatic)", "cx384", - "sfence" + "sfence", + "y5nw" ], "previous_core_developers": [ "BlockMen", @@ -38,7 +39,7 @@ "Hugues Ross ", "Dmitry Kostenko (x2048) " ], - "#": "Currently only https://github.com/orgs/minetest/teams/triagers/members", + "#": "Currently only https://github.com/orgs/luanti-org/teams/triagers/members", "core_team": [ "Zughy [Issue triager]", "wsor [Issue triager]", @@ -47,23 +48,20 @@ "#": "For updating active/previous contributors, see the script in ./util/gather_git_credits.py", "contributors": [ "JosiahWI", - "1F616EMO", - "y5nw", "Erich Schubert", - "numzero", + "wrrrzr", + "1F616EMO", "red-001 ", - "David Heidelberg", - "Wuzzy", + "veprogames", "paradust7", - "HybridDog", - "Zemtzov7", - "kromka-chleba", "AFCMS", - "chmodsayshello", - "OgelGames" + "siliconsniffer", + "Wuzzy", + "Zemtzov7" ], "previous_contributors": [ "Ælla Chiana Moskopp (erle) [Logo]", + "numzero", "Giuseppe Bilotta", "ClobberXD", "Dániel Juhász (juhdanad) ", diff --git a/builtin/mainmenu/dlg_clients_list.lua b/builtin/mainmenu/dlg_clients_list.lua index 2ea021c5e..0298ac152 100644 --- a/builtin/mainmenu/dlg_clients_list.lua +++ b/builtin/mainmenu/dlg_clients_list.lua @@ -21,7 +21,7 @@ local function clients_list_formspec(dialogdata) "size[6,9.5]", TOUCH_GUI and "padding[0.01,0.01]" or "", "hypertext[0,0;6,1.5;;", - fgettext("This is the list of clients connected to\n$1", + fgettext("Players connected to\n$1", "" .. core.hypertext_escape(servername) .. "") .. "]", "textlist[0.5,1.5;5,6.8;;" .. fmt_formspec_list(clients_list) .. "]", "button[1.5,8.5;3,0.8;quit;OK]" @@ -32,7 +32,7 @@ end local function clients_list_buttonhandler(this, fields) if fields.quit then - this:delete() + this:delete() return true end return false diff --git a/builtin/mainmenu/dlg_config_world.lua b/builtin/mainmenu/dlg_config_world.lua index cb5cdd635..416a4a6f3 100644 --- a/builtin/mainmenu/dlg_config_world.lua +++ b/builtin/mainmenu/dlg_config_world.lua @@ -299,7 +299,7 @@ local function handle_buttons(this, fields) worldfile:set("load_mod_" .. mod.name, mod.virtual_path) was_set[mod.name] = true elseif not was_set[mod.name] then - worldfile:set("load_mod_" .. mod.name, "false") + worldfile:remove("load_mod_" .. mod.name) end elseif mod.enabled then gamedata.errormessage = fgettext_ne("Failed to enable mo" .. diff --git a/builtin/mainmenu/dlg_reinstall_mtg.lua b/builtin/mainmenu/dlg_reinstall_mtg.lua index 85bdedf7b..11b20f637 100644 --- a/builtin/mainmenu/dlg_reinstall_mtg.lua +++ b/builtin/mainmenu/dlg_reinstall_mtg.lua @@ -19,7 +19,7 @@ -- This whole file can be removed after a while. -- It was only directly useful for upgrades from 5.7.0 to 5.8.0, but -- maybe some odd fellow directly upgrades from 5.6.1 to 5.9.0 in the future... --- see in case it's not obvious +-- see in case it's not obvious ---- ---- local SETTING_NAME = "no_mtg_notification" diff --git a/builtin/mainmenu/dlg_server_list_mods.lua b/builtin/mainmenu/dlg_server_list_mods.lua index ad44ac37f..fc392ae06 100644 --- a/builtin/mainmenu/dlg_server_list_mods.lua +++ b/builtin/mainmenu/dlg_server_list_mods.lua @@ -76,7 +76,7 @@ end local function buttonhandler(this, fields) if fields.quit then - this:delete() + this:delete() return true end diff --git a/builtin/mainmenu/init.lua b/builtin/mainmenu/init.lua index 9eceb41a8..ec33f33b3 100644 --- a/builtin/mainmenu/init.lua +++ b/builtin/mainmenu/init.lua @@ -47,7 +47,7 @@ dofile(menupath .. DIR_DELIM .. "game_theme.lua") dofile(menupath .. DIR_DELIM .. "content" .. DIR_DELIM .. "init.lua") dofile(menupath .. DIR_DELIM .. "dlg_config_world.lua") -dofile(menupath .. DIR_DELIM .. "settings" .. DIR_DELIM .. "init.lua") +dofile(basepath .. "common" .. DIR_DELIM .. "settings" .. DIR_DELIM .. "init.lua") dofile(menupath .. DIR_DELIM .. "dlg_create_world.lua") dofile(menupath .. DIR_DELIM .. "dlg_delete_content.lua") dofile(menupath .. DIR_DELIM .. "dlg_delete_world.lua") diff --git a/builtin/mainmenu/tab_online.lua b/builtin/mainmenu/tab_online.lua index bd7f45342..f3f19c50f 100644 --- a/builtin/mainmenu/tab_online.lua +++ b/builtin/mainmenu/tab_online.lua @@ -190,10 +190,10 @@ local function get_formspec(tabview, name, tabdata) local max_clients = 5 if #clients_list > max_clients then retval = retval .. "tooltip[btn_view_clients;" .. - fgettext("Clients:\n$1", table.concat(clients_list, "\n", 1, max_clients)) .. "\n..." .. "]" + fgettext("Players:\n$1", table.concat(clients_list, "\n", 1, max_clients)) .. "\n..." .. "]" else retval = retval .. "tooltip[btn_view_clients;" .. - fgettext("Clients:\n$1", table.concat(clients_list, "\n")) .. "]" + fgettext("Players:\n$1", table.concat(clients_list, "\n")) .. "]" end retval = retval .. "style[btn_view_clients;padding=6]" retval = retval .. "image_button[4.5,1.3;0.5,0.5;" .. core.formspec_escape(defaulttexturedir .. @@ -391,12 +391,15 @@ local function matches_query(server, query) return name_matches and 50 or description_matches and 0 end -local function search_server_list(input) +local function search_server_list(input, tabdata) menudata.search_result = nil if #serverlistmgr.servers < 2 then return end + + tabdata.pre_search_selection = tabdata.pre_search_selection or find_selected_server() + -- setup the search query local query = parse_search_input(input) if not query then @@ -419,10 +422,32 @@ local function search_server_list(input) return end + local current_server = find_selected_server() + table.sort(search_result, function(a, b) return a.points > b.points end) menudata.search_result = search_result + + -- Keep current selection if it's in search results + if current_server then + for _, server in ipairs(search_result) do + if server.address == current_server.address and + server.port == current_server.port then + return + end + end + end + + -- Find first compatible server (favorite or public) + for _, server in ipairs(search_result) do + if is_server_protocol_compat(server.proto_min, server.proto_max) then + set_selected_server(server) + return + end + end + -- If no compatible server found, clear selection + set_selected_server(nil) end local function main_button_handler(tabview, fields, name, tabdata) @@ -462,6 +487,7 @@ local function main_button_handler(tabview, fields, name, tabdata) end if event.type == "CHG" then set_selected_server(server) + tabdata.pre_search_selection = nil return true end end @@ -475,11 +501,9 @@ local function main_button_handler(tabview, fields, name, tabdata) if fields.btn_delete_favorite then local idx = core.get_table_index("servers") if not idx then return end - local server = tabdata.lookup[idx] - if not server then return end - serverlistmgr.delete_favorite(server) - set_selected_server(server) + serverlistmgr.delete_favorite(tabdata.lookup[idx]) + set_selected_server(tabdata.lookup[idx+1]) return true end @@ -507,17 +531,16 @@ local function main_button_handler(tabview, fields, name, tabdata) if fields.btn_mp_clear then tabdata.search_for = "" menudata.search_result = nil + if tabdata.pre_search_selection then + set_selected_server(tabdata.pre_search_selection) + tabdata.pre_search_selection = nil + end return true end if fields.btn_mp_search or fields.key_enter_field == "te_search" then tabdata.search_for = fields.te_search - search_server_list(fields.te_search) - if menudata.search_result then - -- Note: This clears the selection if there are no results - set_selected_server(menudata.search_result[1]) - end - + search_server_list(fields.te_search, tabdata) return true end diff --git a/builtin/pause_menu/init.lua b/builtin/pause_menu/init.lua new file mode 100644 index 000000000..035d2ba99 --- /dev/null +++ b/builtin/pause_menu/init.lua @@ -0,0 +1,12 @@ +local scriptpath = core.get_builtin_path() +local pausepath = scriptpath.."pause_menu"..DIR_DELIM +local commonpath = scriptpath.."common"..DIR_DELIM + +-- we're in-game, so no absolute paths are needed +defaulttexturedir = "" + +local builtin_shared = {} + +assert(loadfile(commonpath .. "register.lua"))(builtin_shared) +assert(loadfile(pausepath .. "register.lua"))(builtin_shared) +dofile(commonpath .. "settings" .. DIR_DELIM .. "init.lua") diff --git a/builtin/pause_menu/register.lua b/builtin/pause_menu/register.lua new file mode 100644 index 000000000..ea97ca281 --- /dev/null +++ b/builtin/pause_menu/register.lua @@ -0,0 +1,5 @@ +local builtin_shared = ... + +local make_registration = builtin_shared.make_registration + +core.registered_on_formspec_input, core.register_on_formspec_input = make_registration() diff --git a/builtin/settingtypes.txt b/builtin/settingtypes.txt index d8afc4b78..cfe5a415a 100644 --- a/builtin/settingtypes.txt +++ b/builtin/settingtypes.txt @@ -2,9 +2,27 @@ # # General format: # name (Readable name) type type_args +# name (Readable name) [context] type type_args # # Note that the parts are separated by exactly one space # +# `context` (optional) is used to document where the setting is read. It can be: +# - common: Read by both client and server. +# - client: Read by the client. +# (Includes settings read by the mainmenu.) +# - server: Read by the server. +# - world_creation: Read at world creation, thus only applied to new worlds. +# (Worlds are commonly created in the mainmenu (part of the client), but +# world creation is conceptually a server-side thing...) +# If not specified, the value is inherited from the context value of the containing +# category instead. +# For the builtin/settingtypes.txt file, every setting needs to have a context defined, +# either via a category containing it or via the setting itself. In game/mod-provided +# settingtypes.txt files, context annotations are invalid. +# Note: For context annotations, it's irrelevant whether changes to a setting +# after startup/game-join will be read. A separate mechanism for declaring that +# is needed. +# # `type` can be: # - int # - string @@ -77,6 +95,8 @@ # Sections are marked by a single line in the format: [Section Name] # Sub-section are marked by adding * in front of the section name: [*Sub-section] # Sub-sub-sections have two * etc. +# A context (see above) can be specified optionally: [Section Name] [context] +# Context annotations on categories cannot be nested. # There shouldn't be too many settings per category. # # The top-level categories "Advanced", "Client and Server" and "Mapgen" are @@ -84,7 +104,7 @@ # They contain settings not intended for the "average user". -[Controls] +[Controls] [client] [*General] @@ -111,6 +131,13 @@ doubletap_jump (Double tap jump for fly) bool false # enabled. always_fly_fast (Always fly fast) bool true +# If enabled, the "Sneak" key will toggle when pressed. +# This functionality is ignored when fly is enabled. +toggle_sneak_key (Toggle Sneak key) bool false + +# If enabled, the "Aux1" key will toggle when pressed. +toggle_aux1_key (Toggle Aux1 key) bool false + # The time in seconds it takes between repeated node placements when holding # the place button. # @@ -160,6 +187,36 @@ invert_hotbar_mouse_wheel (Hotbar: Invert mouse wheel direction) bool false # Requires: touch_support touch_controls (Touchscreen controls) enum auto auto,true,false +# The kind of digging/placing controls used. +# +# * Tap +# Long/short tap anywhere on the screen to interact. +# Interaction happens at finger position. +# +# * Tap with crosshair +# Long/short tap anywhere on the screen to interact. +# Interaction happens at crosshair position. +# +# * Buttons with crosshair +# Use dedicated dig/place buttons to interact. +# Interaction happens at crosshair position. +# +# Requires: touchscreen +touch_interaction_style (Interaction style) enum tap tap,tap_crosshair,buttons_crosshair + +# The gesture for punching players/entities. +# This can be overridden by games and mods. +# +# * Short tap +# Easy to use and well-known from other games that shall not be named. +# +# * Long tap +# Known from the classic Luanti mobile controls. +# Combat is more or less impossible. +# +# Requires: touchscreen, touch_interaction_style_tap +touch_punch_gesture (Punch gesture) enum short_tap short_tap,long_tap + # Touchscreen sensitivity multiplier. # # Requires: touchscreen @@ -175,12 +232,6 @@ touchscreen_threshold (Movement threshold) int 20 0 100 # Requires: touchscreen touch_long_tap_delay (Threshold for long taps) int 400 100 1000 -# Use crosshair to select object instead of whole screen. -# If enabled, a crosshair will be shown and will be used for selecting object. -# -# Requires: touchscreen -touch_use_crosshair (Use crosshair for touch screen) bool false - # Fixes the position of virtual joystick. # If disabled, virtual joystick will center to first-touch's position. # @@ -193,21 +244,7 @@ fixed_virtual_joystick (Fixed virtual joystick) bool false # Requires: touchscreen virtual_joystick_triggers_aux1 (Virtual joystick triggers Aux1 button) bool false -# The gesture for punching players/entities. -# This can be overridden by games and mods. -# -# * short_tap -# Easy to use and well-known from other games that shall not be named. -# -# * long_tap -# Known from the classic Luanti mobile controls. -# Combat is more or less impossible. -# -# Requires: touchscreen -touch_punch_gesture (Punch gesture) enum short_tap short_tap,long_tap - - -[Graphics and Audio] +[Graphics and Audio] [client] [*Graphics] @@ -256,8 +293,8 @@ fps_max (Maximum FPS) int 60 1 4294967295 # Vertical screen synchronization. Your system may still force VSync on even if this is disabled. vsync (VSync) bool false -# Maximum FPS when the window is not focused, or when the game is paused. -fps_max_unfocused (FPS when unfocused or paused) int 20 1 4294967295 +# Maximum FPS when the window is not focused. +fps_max_unfocused (FPS when unfocused) int 10 1 4294967295 # View distance in nodes. viewing_range (Viewing range) int 190 20 4000 @@ -295,10 +332,6 @@ arm_inertia (Arm inertia) bool true # For example: 0 for no view bobbing; 1.0 for normal; 2.0 for double. view_bobbing_amount (View bobbing factor) float 1.0 0.0 7.9 -# Multiplier for fall bobbing. -# For example: 0 for no view bobbing; 1.0 for normal; 2.0 for double. -fall_bobbing_amount (Fall bobbing factor) float 0.03 0.0 100.0 - [**Camera] # Field of view in degrees. @@ -541,8 +574,8 @@ shadow_map_texture_32bit (Shadow map texture in 32 bits) bool true # Requires: enable_dynamic_shadows, opengl shadow_filters (Shadow filter quality) enum 1 0,1,2 -# Enable colored shadows. -# On true translucent nodes cast colored shadows. This is expensive. +# Enable colored shadows for transculent nodes. +# This is expensive. # # Requires: enable_dynamic_shadows, opengl shadow_map_color (Colored shadows) bool false @@ -742,9 +775,6 @@ console_color (Console color) string (0,0,0) # In-game chat console background alpha (opaqueness, between 0 and 255). console_alpha (Console alpha) int 200 0 255 -# Clickable weblinks (middle-click or Ctrl+left-click) enabled in chat console output. -clickable_chat_weblinks (Chat weblinks) bool true - # Optional override for chat weblink color. chat_weblink_color (Weblink color) string #8888FF @@ -777,26 +807,26 @@ contentdb_max_concurrent_downloads (ContentDB Max Concurrent Downloads) int 3 1 [Client and Server] -[*Client] +[*Client] [client] # Save the map received by the client on disk. enable_local_map_saving (Saving map received from server) bool false # URL to the server list displayed in the Multiplayer Tab. -serverlist_url (Serverlist URL) string https://servers.luanti.org +serverlist_url (Serverlist URL) [common] string https://servers.luanti.org -# If enabled, account registration is separate from login in the UI. -# If disabled, new accounts will be registered automatically when logging in. +# If enabled, server account registration is separate from login in the UI. +# If disabled, connecting to a server will automatically register a new account. enable_split_login_register (Enable split login/register) bool true # URL to JSON file which provides information about the newest Luanti release. # If this is empty the engine will never check for updates. -update_information_url (Update information URL) string https://www.minetest.net/release_info.json +update_information_url (Update information URL) string https://www.luanti.org/release_info.json -[*Server] +[*Server] [server] # Name of the player. -# When running a server, clients connecting with this name are admins. +# When running a server, a client connecting with this name is admin. # When starting from the main menu, this is overridden. name (Admin name) string @@ -821,7 +851,7 @@ server_announce (Announce server) bool false server_announce_send_players (Send player names to the server list) bool true # Announce to this serverlist. -serverlist_url (Serverlist URL) string https://servers.luanti.org +serverlist_url (Serverlist URL) [common] string https://servers.luanti.org # Message of the day displayed to players connecting. motd (Message of the day) string @@ -860,12 +890,14 @@ protocol_version_min (Protocol version minimum) int 1 1 65535 # Files that are not present will be fetched the usual way. remote_media (Remote media) string -# Enable/disable running an IPv6 server. +# Enable IPv6 support for server. +# Note that clients will be able to connect with both IPv4 and IPv6. # Ignored if bind_address is set. -# Needs enable_ipv6 to be enabled. -ipv6_server (IPv6 server) bool false +# +# Requires: enable_ipv6 +ipv6_server (IPv6 server) bool true -[*Server Security] +[*Server Security] [server] # New users need to input this password. default_password (Default password) string @@ -925,7 +957,7 @@ chat_message_limit_per_10sec (Chat message count limit) float 8.0 1.0 # Kick players who sent more than X messages per 10 seconds. chat_message_limit_trigger_kick (Chat message kick threshold) int 50 1 65535 -[*Server Gameplay] +[*Server Gameplay] [server] # Controls length of day/night cycle. # Examples: @@ -933,7 +965,7 @@ chat_message_limit_trigger_kick (Chat message kick threshold) int 50 1 65535 time_speed (Time speed) int 72 0 # Time of day when a new world is started, in millihours (0-23999). -world_start_time (World start time) int 6125 0 23999 +world_start_time (World start time) [world_creation] int 6125 0 23999 # Time in seconds for item entity (dropped items) to live. # Setting it to -1 disables the feature. @@ -988,7 +1020,7 @@ movement_liquid_sink (Liquid sinking) float 10.0 movement_gravity (Gravity) float 9.81 -[Mapgen] +[Mapgen] [world_creation] # A chosen map seed for a new map, leave empty for random. # Will be overridden when creating a new world in the main menu. @@ -1004,7 +1036,7 @@ mg_name (Mapgen name) enum v7 v7,valleys,carpathian,v5,flat,fractal,singlenode,v water_level (Water level) int 1 -31000 31000 # From how far blocks are generated for clients, stated in mapblocks (16 nodes). -max_block_generate_distance (Max block generate distance) int 10 1 32767 +max_block_generate_distance (Max block generate distance) [server] int 10 1 32767 # Limit of map generation, in nodes, in all 6 directions from (0, 0, 0). # Only mapchunks completely within the mapgen limit are generated. @@ -1717,12 +1749,12 @@ mgvalleys_np_dungeons (Dungeon noise) noise_params_3d 0.9, 0.5, (500, 500, 500), # Enable Lua modding support on client. # This support is experimental and API can change. -enable_client_modding (Client modding) bool false +enable_client_modding (Client modding) [client] bool false # Replaces the default main menu with a custom one. -main_menu_script (Main menu script) string +main_menu_script (Main menu script) [client] string -[**Mod Security] +[**Mod Security] [server] # Prevent mods from doing insecure things like running shell commands. secure.enable_security (Enable mod security) bool true @@ -1746,33 +1778,33 @@ secure.http_mods (HTTP mods) string # - info # - verbose # - trace -debug_log_level (Debug log level) enum action ,none,error,warning,action,info,verbose,trace +debug_log_level (Debug log level) [common] enum action ,none,error,warning,action,info,verbose,trace # If the file size of debug.txt exceeds the number of megabytes specified in # this setting when it is opened, the file is moved to debug.txt.1, # deleting an older debug.txt.1 if it exists. # debug.txt is only moved if this setting is positive. -debug_log_size_max (Debug log file size threshold) int 50 1 +debug_log_size_max (Debug log file size threshold) [common] int 50 1 # Minimal level of logging to be written to chat. -chat_log_level (Chat log level) enum error ,none,error,warning,action,info,verbose,trace +chat_log_level (Chat log level) [client] enum error ,none,error,warning,action,info,verbose,trace # Handling for deprecated Lua API calls: # - none: Do not log deprecated calls # - log: mimic and log backtrace of deprecated call (default). # - error: abort on usage of deprecated call (suggested for mod developers). -deprecated_lua_api_handling (Deprecated Lua API handling) enum log none,log,error +deprecated_lua_api_handling (Deprecated Lua API handling) [common] enum log none,log,error # Enable random user input (only used for testing). -random_input (Random input) bool false +random_input (Random input) [client] bool false # Enable random mod loading (mainly used for testing). -random_mod_load_order (Random mod load order) bool false +random_mod_load_order (Random mod load order) [server] bool false # Enable mod channels support. -enable_mod_channels (Mod channels) bool false +enable_mod_channels (Mod channels) [server] bool false -[**Mod Profiler] +[**Mod Profiler] [server] # Load the game profiler to collect game profiling data. # Provides a /profiler command to access the compiled profile. @@ -1812,7 +1844,7 @@ instrument.builtin (Builtin) bool false # * Instrument the sampler being used to update the statistics. instrument.profiler (Profiler) bool false -[**Engine Profiler] +[**Engine Profiler] [common] # Print the engine's profiling data in regular intervals (in seconds). # 0 = disable. Useful for developers. @@ -1821,15 +1853,7 @@ profiler_print_interval (Engine profiling data print interval) int 0 0 [*Advanced] -# Enable IPv6 support (for both client and server). -# Required for IPv6 connections to work at all. -enable_ipv6 (IPv6) bool true - -# If enabled, invalid world data won't cause the server to shut down. -# Only enable this if you know what you are doing. -ignore_world_load_errors (Ignore world errors) bool false - -[**Graphics] +[**Graphics] [client] # Enables debug and error-checking in the OpenGL driver. opengl_debug (OpenGL debug) bool false @@ -1866,7 +1890,7 @@ mesh_generation_threads (Mapblock mesh generation threads) int 0 0 8 # All mesh buffers with less than this number of vertices will be merged # during map rendering. This improves rendering performance. -mesh_buffer_min_vertices (Minimum vertex count for mesh buffers) int 100 0 1000 +mesh_buffer_min_vertices (Minimum vertex count for mesh buffers) int 300 0 1000 # True = 256 # False = 128 @@ -1906,8 +1930,8 @@ texture_min_size (Base texture size) int 64 1 32768 client_mesh_chunk (Client Mesh Chunksize) int 1 1 16 # Decide the color depth of the texture used for the post-processing pipeline. -# Reducing this can improve performance, but might cause some effects (e.g. bloom) -# to not work. +# Reducing this can improve performance, but some effects (e.g. debanding) +# require more than 8 bits to work. # # Requires: enable_post_processing post_processing_texture_bits (Color depth for post-processing texture) enum 16 8,10,16 @@ -1918,10 +1942,9 @@ post_processing_texture_bits (Color depth for post-processing texture) enum 16 8 # Requires: enable_dynamic_shadows, opengl shadow_poisson_filter (Poisson filtering) bool true -# Spread a complete update of shadow map over given number of frames. +# Spread a complete update of the shadow map over a given number of frames. # Higher values might make shadows laggy, lower values # will consume more resources. -# Minimum value: 1; maximum value: 16 # # Requires: enable_dynamic_shadows, opengl shadow_update_frames (Map shadows update frames) int 16 1 32 @@ -1934,12 +1957,12 @@ shadow_update_frames (Map shadows update frames) int 16 1 32 # Requires: enable_post_processing, enable_bloom enable_bloom_debug (Enable Bloom Debug) bool false -[**Sound] +[**Sound] [client] # Comma-separated list of AL and ALC extensions that should not be used. # Useful for testing. See al_extensions.[h,cpp] for details. sound_extensions_blacklist (Sound Extensions Blacklist) string -[**Font] +[**Font] [client] font_bold (Font bold by default) bool false @@ -1989,7 +2012,7 @@ mono_font_path_bold_italic (Bold and italic monospace font path) filepath fonts/ # This font will be used for certain languages or if the default font is unavailable. fallback_font_path (Fallback font path) filepath fonts/DroidSansFallbackFull.ttf -[**Lighting] +[**Lighting] [client] # Gradient of light curve at minimum light level. # Controls the contrast of the lowest light levels. @@ -2015,43 +2038,49 @@ lighting_boost_spread (Light curve boost spread) float 0.2 0.0 0.4 [**Networking] +# Enable IPv6 support (for both client and server). +# Required for IPv6 connections to work at all. +enable_ipv6 (IPv6) [common] bool true + # Prometheus listener address. # If Luanti is compiled with ENABLE_PROMETHEUS option enabled, # enable metrics listener for Prometheus on that address. # Metrics can be fetched on http://127.0.0.1:30000/metrics -prometheus_listener_address (Prometheus listener address) string 127.0.0.1:30000 +prometheus_listener_address (Prometheus listener address) [server] string 127.0.0.1:30000 -# Maximum size of the outgoing chat queue. +# Maximum size of the client's outgoing chat queue. # 0 to disable queueing and -1 to make the queue size unlimited. -max_out_chat_queue_size (Maximum size of the outgoing chat queue) int 20 -1 32767 +max_out_chat_queue_size (Maximum size of the client's outgoing chat queue) [client] int 20 -1 32767 # Timeout for client to remove unused map data from memory, in seconds. -client_unload_unused_data_timeout (Mapblock unload timeout) float 600.0 0.0 +client_unload_unused_data_timeout (Mapblock unload timeout) [client] float 600.0 0.0 # Maximum number of mapblocks for client to be kept in memory. -# Set to -1 for unlimited amount. -client_mapblock_limit (Mapblock limit) int 7500 -1 2147483647 +# Note that there is an internal dynamic minimum number of blocks that +# won't be deleted, depending on the current view range. +# Set to -1 for no limit. +client_mapblock_limit (Mapblock limit) [client] int 7500 -1 2147483647 # Maximum number of blocks that are simultaneously sent per client. # The maximum total count is calculated dynamically: # max_total = ceil((#clients + max_users) * per_client / 4) -max_simultaneous_block_sends_per_client (Maximum simultaneous block sends per client) int 40 1 4294967295 +max_simultaneous_block_sends_per_client (Maximum simultaneous block sends per client) [server] int 40 1 4294967295 # To reduce lag, block transfers are slowed down when a player is building something. # This determines how long they are slowed down after placing or removing a node. -full_block_send_enable_min_time_from_building (Delay in sending blocks after building) float 2.0 0.0 +full_block_send_enable_min_time_from_building (Delay in sending blocks after building) [server] float 2.0 0.0 # Maximum number of packets sent per send step in the low-level networking code. # You generally don't need to change this, however busy servers may benefit from a higher number. -max_packets_per_iteration (Max. packets per iteration) int 1024 1 65535 +max_packets_per_iteration (Max. packets per iteration) [common] int 1024 1 65535 # Compression level to use when sending mapblocks to the client. # -1 - use default compression level # 0 - least compression, fastest # 9 - best compression, slowest -map_compression_level_net (Map Compression Level for Network Transfer) int -1 -1 9 +map_compression_level_net (Map Compression Level for Network Transfer) [server] int -1 -1 9 -[**Server] +[**Server] [server] # Format of player chat messages. The following strings are valid placeholders: # @name, @message, @timestamp (optional) @@ -2071,7 +2100,7 @@ kick_msg_crash (Crash message) string This server has experienced an internal er # Set this to true if your server is set up to restart automatically. ask_reconnect_on_crash (Ask to reconnect after crash) bool false -[**Server/Env Performance] +[**Server/Env Performance] [server] # Length of a server tick (the interval at which everything is generally updated), # stated in seconds. @@ -2122,14 +2151,14 @@ max_objects_per_block (Maximum objects per block) int 256 256 65535 active_block_mgmt_interval (Active block management interval) float 2.0 0.0 # Length of time between Active Block Modifier (ABM) execution cycles, stated in seconds. -abm_interval (ABM interval) float 1.0 0.0 +abm_interval (ABM interval) float 1.0 0.1 30.0 # The time budget allowed for ABMs to execute on each step # (as a fraction of the ABM Interval) abm_time_budget (ABM time budget) float 0.2 0.1 0.9 # Length of time between NodeTimer execution cycles, stated in seconds. -nodetimer_interval (NodeTimer interval) float 0.2 0.0 +nodetimer_interval (NodeTimer interval) float 0.2 0.1 1.0 # Max liquids processed per step. liquid_loop_max (Liquid loop max) int 100000 1 4294967295 @@ -2164,7 +2193,7 @@ server_side_occlusion_culling (Server-side occlusion culling) bool true # Stated in MapBlocks (16 nodes). block_cull_optimize_distance (Block cull optimize distance) int 25 2 2047 -[**Mapgen] +[**Mapgen] [server] # Size of mapchunks generated by mapgen, stated in mapblocks (16 nodes). # WARNING: There is no benefit, and there are several dangers, in @@ -2172,7 +2201,7 @@ block_cull_optimize_distance (Block cull optimize distance) int 25 2 2047 # Reducing this value increases cave and dungeon density. # Altering this value is for special usage, leaving it unchanged is # recommended. -chunksize (Chunk size) int 5 1 10 +chunksize (Chunk size) [world_creation] int 5 1 10 # Dump the mapgen debug information. enable_mapgen_debug_info (Mapgen debug) bool false @@ -2200,7 +2229,7 @@ emergequeue_limit_generate (Per-player limit of queued blocks to generate) int 1 # 'on_generated'. For many users the optimum setting may be '1'. num_emerge_threads (Number of emerge threads) int 1 0 32767 -[**cURL] +[**cURL] [common] # Maximum time an interactive request (e.g. server list fetch) may take, stated in milliseconds. curl_timeout (cURL interactive timeout) int 20000 1000 2147483647 @@ -2217,42 +2246,49 @@ curl_file_download_timeout (cURL file download timeout) int 300000 5000 21474836 [**Miscellaneous] +# Clickable weblinks (middle-click or Ctrl+left-click) enabled in chat console output. +clickable_chat_weblinks (Chat weblinks) [client] bool true + +# If enabled, invalid world data won't cause the server to shut down. +# Only enable this if you know what you are doing. +ignore_world_load_errors (Ignore world errors) [server] bool false + # Adjust the detected display density, used for scaling UI elements. -display_density_factor (Display Density Scaling Factor) float 1 0.5 5.0 +display_density_factor (Display Density Scaling Factor) [client] float 1 0.5 5.0 # Windows systems only: Start Luanti with the command line window in the background. # Contains the same information as the file debug.txt (default name). -enable_console (Enable console window) bool false +enable_console (Enable console window) [common] bool false # Number of extra blocks that can be loaded by /clearobjects at once. # This is a trade-off between SQLite transaction overhead and # memory consumption (4096=100MB, as a rule of thumb). -max_clearobjects_extra_loaded_blocks (Max. clearobjects extra blocks) int 4096 0 4294967295 +max_clearobjects_extra_loaded_blocks (Max. clearobjects extra blocks) [server] int 4096 0 4294967295 # World directory (everything in the world is stored here). # Not needed if starting from the main menu. -map-dir (Map directory) path +map-dir (Map directory) [server] path # See https://www.sqlite.org/pragma.html#pragma_synchronous -sqlite_synchronous (Synchronous SQLite) enum 2 0,1,2 +sqlite_synchronous (Synchronous SQLite) [server] enum 2 0,1,2 # Compression level to use when saving mapblocks to disk. # -1 - use default compression level # 0 - least compression, fastest # 9 - best compression, slowest -map_compression_level_disk (Map Compression Level for Disk Storage) int -1 -1 9 +map_compression_level_disk (Map Compression Level for Disk Storage) [server] int -1 -1 9 # Enable usage of remote media server (if provided by server). # Remote servers offer a significantly faster way to download media (e.g. textures) # when connecting to the server. -enable_remote_media_server (Connect to external media server) bool true +enable_remote_media_server (Connect to external media server) [client] bool true # File in client/serverlist/ that contains your favorite servers displayed in the # Multiplayer Tab. -serverlist_file (Serverlist file) string favoriteservers.json +serverlist_file (Serverlist file) [client] string favoriteservers.json -[*Gamepads] +[*Gamepads] [client] # Enable joysticks. Requires a restart to take effect enable_joysticks (Enable joysticks) bool false @@ -2275,7 +2311,7 @@ joystick_deadzone (Joystick dead zone) int 2048 0 65535 joystick_frustum_sensitivity (Joystick frustum sensitivity) float 170.0 0.001 -[*Hide: Temporary Settings] +[*Hide: Temporary Settings] [common] # Path to texture directory. All textures are first searched from here. texture_path (Texture path) path diff --git a/client/shaders/nodes_shader/opengl_vertex.glsl b/client/shaders/nodes_shader/opengl_vertex.glsl index 24f669829..cdadf92b9 100644 --- a/client/shaders/nodes_shader/opengl_vertex.glsl +++ b/client/shaders/nodes_shader/opengl_vertex.glsl @@ -44,8 +44,6 @@ centroid varying float nightRatio; varying float perspective_factor; #endif -varying float area_enable_parallax; - varying highp vec3 eyeVec; varying vec3 sunTint; varying float nightFactor; diff --git a/client/shaders/second_stage/opengl_fragment.glsl b/client/shaders/second_stage/opengl_fragment.glsl index 89cea2a2e..f98287655 100644 --- a/client/shaders/second_stage/opengl_fragment.glsl +++ b/client/shaders/second_stage/opengl_fragment.glsl @@ -70,7 +70,7 @@ vec4 applyBloom(vec4 color, vec2 uv) equation used: ((x * (A * x + C * B) + D * E) / (x * (A * x + B) + D * F)) - E / F */ -// see https://github.com/minetest/minetest/pull/14688 +// highp for GLES, see highp vec3 uncharted2Tonemap(highp vec3 x) { return ((x * (0.22 * x + 0.03) + 0.002) / (x * (0.22 * x + 0.3) + 0.06)) - 0.03333; diff --git a/doc/Doxyfile.in b/doc/Doxyfile.in index ae36fd6bf..98ef36fd6 100644 --- a/doc/Doxyfile.in +++ b/doc/Doxyfile.in @@ -1,7 +1,7 @@ # Project properties PROJECT_NAME = @PROJECT_NAME_CAPITALIZED@ PROJECT_NUMBER = @VERSION_STRING@ -PROJECT_LOGO = @CMAKE_CURRENT_SOURCE_DIR@/misc/minetest.svg +PROJECT_LOGO = @CMAKE_CURRENT_SOURCE_DIR@/misc/luanti.svg # Parsing JAVADOC_AUTOBRIEF = YES diff --git a/doc/breakages.md b/doc/breakages.md index 2d2994385..51387e279 100644 --- a/doc/breakages.md +++ b/doc/breakages.md @@ -10,15 +10,16 @@ This list is largely advisory and items may be reevaluated once the time comes. * `game.conf` name/id mess * remove `depends.txt` / `description.txt` (would simplify ContentDB and Luanti code a little) * rotate moon texture by 180°, making it coherent with the sun - * https://github.com/minetest/minetest/pull/11902 + * https://github.com/luanti-org/luanti/pull/11902 * remove undocumented `set_physics_override(num, num, num)` * remove special handling of `${key}` syntax in metadata values * remove old_move * change physics_override `sneak` to disable the speed change and not just the node clipping - * https://github.com/minetest/minetest/issues/13699 + * https://github.com/luanti-org/luanti/issues/13699 * migrate from player names to UUIDs, this would enable renaming of accounts and unicode player names (if desired) * harmonize use_texture_alpha between entities & nodes, change default to 'opaque' and remove bool compat code * merge `sound` and `sounds` table in itemdef * remove `DIR_DELIM` from Lua * stop reading initial properties from bare entity def * change particle default blend mode to `clip` +* remove built-in knockback and related functions entirely diff --git a/doc/client_lua_api.md b/doc/client_lua_api.md index fe65dd92e..aedf0a4ff 100644 --- a/doc/client_lua_api.md +++ b/doc/client_lua_api.md @@ -1,12 +1,12 @@ -Luanti Lua Client Modding API Reference 5.11.0 +Luanti Lua Client Modding API Reference 5.12.0 ============================================== **WARNING**: if you're looking for the `minetest` namespace (e.g. `minetest.something`), it's now called `core` due to the renaming of Luanti (formerly Minetest). `minetest` will keep existing as an alias, so that old code won't break. -* More information at -* Developer Wiki: +* More information at +* Developer Wiki: Introduction ------------ @@ -23,7 +23,7 @@ Transferring client-sided mods from the server to the client is planned, but not If you see a deficiency in the API, feel free to attempt to add the functionality in the engine and API. You can send such improvements as -source code patches on GitHub (https://github.com/minetest/minetest). +source code patches on GitHub. Programming in Lua ------------------ diff --git a/doc/compiling/linux.md b/doc/compiling/linux.md index 54a44d501..946d88dac 100644 --- a/doc/compiling/linux.md +++ b/doc/compiling/linux.md @@ -70,14 +70,14 @@ For Void users: Download source (this is the URL to the latest of source repository, which might not work at all times) using Git: - git clone --depth 1 https://github.com/minetest/minetest.git - cd minetest + git clone --depth 1 https://github.com/luanti-org/luanti + cd luanti Download source, without using Git: - wget https://github.com/minetest/minetest/archive/master.tar.gz + wget https://github.com/luanti-org/luanti/archive/master.tar.gz tar xf master.tar.gz - cd minetest-master + cd luanti-master ## Build @@ -88,7 +88,7 @@ Build a version that runs directly from the source directory: Run it: - ./bin/minetest + ./bin/luanti - Use `cmake . -LH` to see all CMake options and their current state. - If you want to install it system-wide (or are making a distribution package), diff --git a/doc/compiling/macos.md b/doc/compiling/macos.md index 09452004e..12818a334 100644 --- a/doc/compiling/macos.md +++ b/doc/compiling/macos.md @@ -16,7 +16,7 @@ brew install cmake freetype gettext gmp hiredis jpeg-turbo jsoncpp leveldb libog Download source (this is the URL to the latest of source repository, which might not work at all times) using Git: ```bash -git clone --depth 1 https://github.com/minetest/minetest.git luanti +git clone --depth 1 https://github.com/luanti-org/luanti luanti cd luanti ``` diff --git a/doc/compiling/windows.md b/doc/compiling/windows.md index a4d9699f6..f61a8d677 100644 --- a/doc/compiling/windows.md +++ b/doc/compiling/windows.md @@ -33,8 +33,8 @@ Use `--triplet` to specify the target triplet, e.g. `x64-windows` or `x86-window ### a) Using the vcpkg toolchain and CMake GUI 1. Start up the CMake GUI -2. Select **Browse Source...** and select DIR/minetest -3. Select **Browse Build...** and select DIR/minetest-build +2. Select **Browse Source...** and select DIR/luanti +3. Select **Browse Build...** and select DIR/luanti-build 4. Select **Configure** 5. Choose the right visual Studio version and target platform. It has to match the version of the installed dependencies 6. Choose **Specify toolchain file for cross-compiling** diff --git a/doc/developing/README.md b/doc/developing/README.md index 1aa424b00..419e41edd 100644 --- a/doc/developing/README.md +++ b/doc/developing/README.md @@ -2,15 +2,15 @@ ## Wiki -Some important development docs are found in the wiki: https://dev.minetest.net/ +Some important development docs are found in the wiki: https://dev.luanti.org/ Notable pages: -- [Releasing Luanti](https://dev.minetest.net/Releasing_Minetest) -- [Engine translations](https://dev.minetest.net/Translation#Maintaining_engine_translations) -- [Changelog](https://dev.minetest.net/Changelog) -- [Organisation](https://dev.minetest.net/Organisation) -- [Code style guidelines](https://dev.minetest.net/Code_style_guidelines) +- [Releasing Luanti](https://dev.luanti.org/Releasing_Luanti) +- [Engine translations](https://dev.luanti.org/Translation#Maintaining_engine_translations) +- [Changelog](https://dev.luanti.org/Changelog) +- [Organisation](https://dev.luanti.org/Organisation) +- [Code style guidelines](https://dev.luanti.org/Code_style_guidelines) ## In this folder diff --git a/doc/developing/android.md b/doc/developing/android.md index 5a134d561..285351cf0 100644 --- a/doc/developing/android.md +++ b/doc/developing/android.md @@ -2,7 +2,7 @@ ## Sign the Android APK from CI -The [Github Actions Workflow](https://github.com/minetest/minetest/actions?query=workflow%3Aandroid+event%3Apush) +The [Github Actions Workflow](https://github.com/luanti-org/luanti/actions?query=workflow%3Aandroid+event%3Apush) automatically produces an APK for each architecture. Before installing them onto a device they however need to be signed. diff --git a/doc/developing/misc.md b/doc/developing/misc.md index 9895cc624..5992946cb 100644 --- a/doc/developing/misc.md +++ b/doc/developing/misc.md @@ -9,7 +9,7 @@ To get usable results you need to build Luanti with debug symbols Run the client (or server) like this and do whatever you wanted to test: ```bash -perf record -z --call-graph dwarf -- ./bin/minetest +perf record -z --call-graph dwarf -- ./bin/luanti ``` This will leave a file called "perf.data". diff --git a/doc/direction.md b/doc/direction.md index 85b44f57c..574572516 100644 --- a/doc/direction.md +++ b/doc/direction.md @@ -7,7 +7,7 @@ following documents: * [What is Minetest?](http://c55.me/blog/?p=1491) * [celeron55's roadmap](https://forum.luanti.org/viewtopic.php?t=9177) -* [celeron55's comment in "A clear mission statement for Minetest is missing"](https://github.com/minetest/minetest/issues/3476#issuecomment-167399287) +* [celeron55's comment in "A clear mission statement for Minetest is missing"](https://github.com/luanti-org/luanti/issues/3476#issuecomment-167399287) * [Core developer to-do/wish lists](https://forum.luanti.org/viewforum.php?f=7) ## 2. Medium-term Roadmap @@ -16,7 +16,7 @@ These are the current medium-term goals for Luanti development, in no particular order. These goals were created from the top points in a -[roadmap brainstorm](https://github.com/minetest/minetest/issues/10461). +[roadmap brainstorm](https://github.com/luanti-org/luanti/issues/10461). This should be reviewed approximately yearly, or when goals are achieved. Pull requests that address one of these goals will be labeled as "Roadmap". @@ -32,9 +32,9 @@ Once that is done, fancier features can be worked on, such as water shaders, shadows, and improved lighting. Examples include -[transparency sorting](https://github.com/minetest/minetest/issues/95), -[particle performance](https://github.com/minetest/minetest/issues/1414), -[general view distance](https://github.com/minetest/minetest/issues/7222). +[transparency sorting](https://github.com/luanti-org/luanti/issues/95), +[particle performance](https://github.com/luanti-org/luanti/issues/1414), +[general view distance](https://github.com/luanti-org/luanti/issues/7222). This includes work on maintaining [our Irrlicht fork](https://github.com/minetest/irrlicht), and switching to @@ -43,16 +43,16 @@ alternative libraries to replace Irrlicht functionality as needed ### 2.2 Internal code refactoring To ensure sustainable development, Luanti's code needs to be -[refactored and improved](https://github.com/minetest/minetest/pulls?q=is%3Aopen+sort%3Aupdated-desc+label%3A%22Code+quality%22+). +[refactored and improved](https://github.com/luanti-org/luanti/pulls?q=is%3Aopen+sort%3Aupdated-desc+label%3A%22Code+quality%22). This will remove code rot and allow for more efficient development. ### 2.3 UI Improvements -A [formspec replacement](https://github.com/minetest/minetest/issues/6527) is +A [formspec replacement](https://github.com/luanti-org/luanti/issues/6527) is needed to make GUIs better and easier to create. This replacement could also be a replacement for HUDs, allowing for a unified API. -A [new mainmenu](https://github.com/minetest/minetest/issues/6733) is needed to +A [new mainmenu](https://github.com/luanti-org/luanti/issues/6733) is needed to improve user experience. First impressions matter, and the current main menu doesn't do a very good job at selling Luanti or explaining what it is. A new main menu should promote games to users, allowing Minetest Game to no @@ -65,5 +65,5 @@ an issue for any large changes before spending lots of time. There are still a significant number of issues with objects. Collisions, -[performance](https://github.com/minetest/minetest/issues/6453), +[performance](https://github.com/luanti-org/luanti/issues/6453), API convenience, and discrepancies between players and entities. diff --git a/doc/docker_server.md b/doc/docker_server.md index eebe776b9..c89c4e6f0 100644 --- a/doc/docker_server.md +++ b/doc/docker_server.md @@ -4,22 +4,25 @@ We provide Luanti server Docker images using the GitHub container registry. Images are built on each commit and available using the following tag scheme: -* `ghcr.io/minetest/minetest:master` (latest build) -* `ghcr.io/minetest/minetest:` (specific Git tag) -* `ghcr.io/minetest/minetest:latest` (latest Git tag, which is the stable release) +* `ghcr.io/luanti-org/luanti:master` (latest build) +* `ghcr.io/luanti-org/luanti:` (specific Git tag) +* `ghcr.io/luanti-org/luanti:latest` (latest Git tag, which is the stable release) -See [here](https://github.com/minetest/minetest/pkgs/container/minetest) for all available tags. +See [here](https://github.com/luanti-org/luanti/pkgs/container/luanti) for all available tags. + +Versions released before the project was renamed are available with the same tag scheme at `ghcr.io/minetest/minetest`. +See [here](https://github.com/orgs/minetest/packages/container/package/minetest) for all available tags. For a quick test you can easily run: ```shell -docker run ghcr.io/minetest/minetest:master +docker run ghcr.io/luanti-org/luanti:master ``` To use it in a production environment, you should use volumes bound to the Docker host to persist data and modify the configuration: ```shell -docker create -v /home/minetest/data/:/var/lib/minetest/ -v /home/minetest/conf/:/etc/minetest/ ghcr.io/minetest/minetest:master +docker create -v /home/minetest/data/:/var/lib/minetest/ -v /home/minetest/conf/:/etc/minetest/ ghcr.io/luanti-org/luanti:master ``` You may also want to use [Docker Compose](https://docs.docker.com/compose): @@ -29,7 +32,7 @@ You may also want to use [Docker Compose](https://docs.docker.com/compose): version: "2" services: minetest_server: - image: ghcr.io/minetest/minetest:master + image: ghcr.io/luanti-org/luanti:master restart: always networks: - default diff --git a/doc/lua_api.md b/doc/lua_api.md index eceb11937..60e9705f3 100644 --- a/doc/lua_api.md +++ b/doc/lua_api.md @@ -5,10 +5,10 @@ Luanti Lua Modding API Reference it's now called `core` due to the renaming of Luanti (formerly Minetest). `minetest` will keep existing as an alias, so that old code won't break. -* More information at -* Developer Wiki: +* More information at +* Developer Wiki: * (Unofficial) Minetest Modding Book by rubenwardy: -* Modding tools: +* Modding tools: Introduction ------------ @@ -194,7 +194,8 @@ Mod directory structure │   │   │ └── another_subfolder │   │   └── bar_subfolder │   ├── sounds - │   ├── media + │   ├── fonts + │ ├── media │   ├── locale │   └── └── another @@ -265,7 +266,7 @@ The main Lua script. Running this script should register everything it wants to register. Subsequent execution depends on Luanti calling the registered callbacks. -### `textures`, `sounds`, `media`, `models`, `locale` +### `textures`, `sounds`, `media`, `models`, `locale`, `fonts` Media files (textures, sounds, whatever) that will be transferred to the client and will be available for use by the mod and translation files for @@ -278,6 +279,7 @@ Accepted formats are: images: .png, .jpg, .tga sounds: .ogg vorbis models: .x, .b3d, .obj, (since version 5.10:) .gltf, .glb + fonts: .ttf, .woff (both since version 5.11, see notes below) Other formats won't be sent to the client (e.g. you can store .blend files in a folder for convenience, without the risk that such files are transferred) @@ -325,7 +327,7 @@ Many glTF features are not supported *yet*, including: * Double-sided materials don't work * Alternative means of supplying data * Embedded images. You can use `gltfutil.py` from the - [modding tools](https://github.com/minetest/modtools) to strip or extract embedded images. + [modding tools](https://github.com/luanti-org/modtools) to strip or extract embedded images. * References to files via URIs Textures are supplied solely via the same means as for the other model file formats: @@ -342,6 +344,28 @@ For example, if your model used an emissive material, you should expect that a future version of Luanti may respect this, and thus cause your model to render differently there. +#### Custom fonts + +You can supply custom fonts in TrueType Font (`.ttf`) or Web Open Font Format (`.woff`) format. +The former is supported primarily for convenience. The latter is preferred due to its compression. + +In the future, having multiple custom fonts and the ability to switch between them is planned, +but for now this feature is limited to the ability to override Luanti's default fonts via mods. +It is recommended that this only be used by game mods to set a look and feel. + +The stems (file names without extension) are self-explanatory: + +* Regular variants: + * `regular` + * `bold` + * `italic` + * `bold_italic` +* Monospaced variants: + * `mono` + * `mono_bold` + * `mono_italic` + * `mono_bold_italic` + Naming conventions ------------------ @@ -1460,8 +1484,6 @@ Node drawtypes There are a bunch of different looking node types. -Look for examples in `games/devtest` or `games/minetest_game`. - * `normal` * A node-sized cube. * `airlike` @@ -1500,7 +1522,7 @@ Look for examples in `games/devtest` or `games/minetest_game`. * `allfaces` * Often used for partially-transparent nodes. * External sides of textures, and unlike other drawtypes, the external sides - of other blocks, are visible from the inside. + of other nodes, are visible from the inside. * `allfaces_optional` * Often used for leaves nodes. * This switches between `normal`, `glasslike` and `allfaces` according to @@ -1574,7 +1596,8 @@ Look for examples in `games/devtest` or `games/minetest_game`. Node boxes ---------- -Node selection boxes are defined using "node boxes". +Node selection boxes and collision boxes, and the appearance of the `nodebox` +drawtype, are defined using "node boxes". A nodebox is defined as any of: @@ -1659,7 +1682,9 @@ roughly 1x1x1 meters in size. A 'mapblock' (often abbreviated to 'block') is 16x16x16 nodes and is the fundamental region of a world that is stored in the world database, sent to -clients and handled by many parts of the engine. +clients and handled by many parts of the engine. This size is available as the +constant `core.MAP_BLOCKSIZE` (=16). + 'mapblock' is preferred terminology to 'block' to help avoid confusion with 'node', however 'block' often appears in the API. @@ -1668,6 +1693,38 @@ A 'mapchunk' (sometimes abbreviated to 'chunk') is usually 5x5x5 mapblocks the map generator. The size in mapblocks has been chosen to optimize map generation. +### Mapblock status + +A mapblock being "loaded" means that is in memory. These are the mapblocks that +API functions like `core.get_node` or `core.set_node` can operate on. To reach +this state, the mapblock must first go through the process of being "emerged". +This means that it is loaded from disk, and/or, if it isn't yet generated, +generated by the map generator. + +Mapblocks are loaded in a broad area around each player. They become "unloaded" +again if no player is close enough. The engine commonly represents the contents +of unloaded mapblocks as `"ignore"` nodes. + +A mapblock being "active" means that it is not only in memory, but also affected +by world simulation: + +* Entities are active + * They are in memory as `ServerActiveObject`, exposed to Lua as `ObjectRef` + * They exist in Lua as luaentity tables +* ABMs are executed +* Node timers are executed + +Also, when a mapblock is "activated", LBMs are executed. Mapblocks are active +in a smaller area around each player, and are "deactivated" again if no player +is close enough. + +Related API functions: + +* `core.compare_block_status` +* `core.forceload_block` +* `core.load_area` +* `core.emerge_area` + Coordinates ----------- @@ -1691,7 +1748,7 @@ node position (0,0,0) to node position (15,15,15). To calculate the blockpos of the mapblock that contains the node at 'nodepos', for each axis: -* blockpos = math.floor(nodepos / 16) +* blockpos = math.floor(nodepos / core.MAP_BLOCKSIZE) #### Converting blockpos to min/max node positions @@ -1699,9 +1756,9 @@ To calculate the min/max node positions contained in the mapblock at 'blockpos', for each axis: * Minimum: - nodepos = blockpos * 16 + nodepos = blockpos * core.MAP_BLOCKSIZE * Maximum: - nodepos = blockpos * 16 + 15 + nodepos = (blockpos + 1) * core.MAP_BLOCKSIZE - 1 @@ -2002,6 +2059,21 @@ that acts as tool in a gameplay sense as a craftitem, and vice-versa. Craftitems can be used for items that neither need to be a node nor a tool. +Special Items +------------- +The following items are predefined and have special properties. + +* `"unknown"`: An item that represents every item which has not been registered +* `"air"`: The node which appears everywhere where no other node is +* `"ignore"`: Mapblocks that are not loaded are represented using this node. + * Also used for nodes that have not yet been set by the map generator. + * This is also what appears outside of the map boundary. +* `""`: The player's hand, which is in use whenever the player wields no item. + * Its range and tool capabilities are also used as a fallback for the wielded item. + * It can be overridden to change those properties: + * globally using `core.override_item` + * per-player using the special `"hand"` inventory list + Amount and wear --------------- @@ -3744,7 +3816,8 @@ Player Inventory lists * `craftresult`: list containing the crafted output * `hand`: list containing an override for the empty hand * Is not created automatically, use `InvRef:set_size` - * Is only used to enhance the empty hand's tool capabilities + * Players use the first item in this list as their hand + * It behaves as if the default hand `""` has been overridden for this specific player Custom lists can be added and deleted with `InvRef:set_size(name, size)` like any other inventory. @@ -4120,6 +4193,11 @@ Helper functions * returns time with microsecond precision. May not return wall time. * `table.copy(table)`: returns a table * returns a deep copy of `table` + * strips metatables, but this may change in the future +* `table.copy_with_metatables(table)` + * since 5.12 + * `table` can also be non-table value, which will be returned as-is + * preserves metatables as they are * `table.indexof(list, val)`: returns the smallest numerical index containing the value `val` in the table `list`. Non-numerical indices are ignored. If `val` could not be found, `-1` is returned. `list` must not have @@ -4346,7 +4424,7 @@ Hello @1, how are you today?=Hallo @1, wie geht es dir heute? ``` For old translation files, consider using the script `mod_translation_updater.py` -in the Luanti [modtools](https://github.com/minetest/modtools) repository to +in the Luanti [modtools](https://github.com/luanti-org/modtools) repository to generate and update translation files automatically from the Lua sources. Gettext translation file format @@ -4442,22 +4520,25 @@ textdomain match the mod name, but this isn't required. -Perlin noise -============ +Fractal value noise +=================== + +Value noise creates a continuously-varying value depending on the input values. +It is similar to Perlin noise, but may exhibit more geometric artifacts, +as it interpolates between values and not between gradients as in Perlin noise. -Perlin noise creates a continuously-varying value depending on the input values. Usually in Luanti the input values are either 2D or 3D coordinates in nodes. The result is used during map generation to create the terrain shape, vary heat and humidity to distribute biomes, vary the density of decorations or vary the structure of ores. -Structure of perlin noise -------------------------- +Structure of fractal value noise +-------------------------------- An 'octave' is a simple noise generator that outputs a value between -1 and 1. The smooth wavy noise it generates has a single characteristic scale, almost like a 'wavelength', so on its own does not create fine detail. -Due to this perlin noise combines several octaves to create variation on +Due to this fractal value noise combines several octaves to create variation on multiple scales. Each additional octave has a smaller 'wavelength' than the previous. @@ -4465,7 +4546,7 @@ This combination results in noise varying very roughly between -2.0 and 2.0 and with an average value of 0.0, so `scale` and `offset` are then used to multiply and offset the noise variation. -The final perlin noise variation is created as follows: +The final fractal value noise variation is created as follows: noise = offset + scale * (octave1 + octave2 * persistence + @@ -4583,7 +4664,7 @@ with restraint. #### `absvalue` The absolute value of each octave's noise variation is used when combining the -octaves. The final perlin noise variation is created as follows: +octaves. The final value noise variation is created as follows: noise = offset + scale * (abs(octave1) + abs(octave2) * persistence + @@ -4593,7 +4674,7 @@ noise = offset + scale * (abs(octave1) + ### Format example -For 2D or 3D perlin noise or perlin noise maps: +For 2D or 3D value noise or value noise maps: ```lua np_terrain = { @@ -4628,13 +4709,13 @@ All default ores are of the uniformly-distributed scatter type. Randomly chooses a location and generates a cluster of ore. -If `noise_params` is specified, the ore will be placed if the 3D perlin noise +If `noise_params` is specified, the ore will be placed if the 3D value noise at that point is greater than the `noise_threshold`, giving the ability to create a non-equal distribution of ore. ### `sheet` -Creates a sheet of ore in a blob shape according to the 2D perlin noise +Creates a sheet of ore in a blob shape according to the 2D value noise described by `noise_params` and `noise_threshold`. This is essentially an improved version of the so-called "stratus" ore seen in some unofficial mods. @@ -4667,14 +4748,14 @@ noise parameters `np_puff_top` and `np_puff_bottom`, respectively. ### `blob` -Creates a deformed sphere of ore according to 3d perlin noise described by +Creates a deformed sphere of ore according to 3d value noise described by `noise_params`. The maximum size of the blob is `clust_size`, and `clust_scarcity` has the same meaning as with the `scatter` type. ### `vein` Creates veins of ore varying in density by according to the intersection of two -instances of 3d perlin noise with different seeds, both described by +instances of 3d value noise with different seeds, both described by `noise_params`. `random_factor` varies the influence random chance has on placement of an ore @@ -4709,8 +4790,8 @@ computationally expensive than any other ore. Creates a single undulating ore stratum that is continuous across mapchunk borders and horizontally spans the world. -The 2D perlin noise described by `noise_params` defines the Y coordinate of -the stratum midpoint. The 2D perlin noise described by `np_stratum_thickness` +The 2D value noise described by `noise_params` defines the Y coordinate of +the stratum midpoint. The 2D value noise described by `np_stratum_thickness` defines the stratum's vertical thickness (in units of nodes). Due to being continuous across mapchunk borders the stratum's vertical thickness is unlimited. @@ -4958,7 +5039,7 @@ and the array index for a position p contained completely in p1..p2 is: `(p.Z - p1.Z) * Ny * Nx + (p.Y - p1.Y) * Nx + (p.X - p1.X) + 1` Note that this is the same "flat 3D array" format as -`PerlinNoiseMap:get3dMap_flat()`. +`ValueNoiseMap:get3dMap_flat()`. VoxelArea objects (see section [`VoxelArea`]) can be used to simplify calculation of the index for a single point in a flat VoxelManip array. @@ -5149,7 +5230,7 @@ The coordinates are *inclusive*, like most other things in Luanti. * The position (x, y, z) is not checked for being inside the area volume, being outside can cause an incorrect index result. * Useful for things like `VoxelManip`, raw Schematic specifiers, - `PerlinNoiseMap:get2d`/`3dMap`, and so on. + `ValueNoiseMap:get2d`/`3dMap`, and so on. * `indexp(p)`: same functionality as `index(x, y, z)` but takes a vector. * As with `index(x, y, z)`, the components of `p` must be integers, and `p` is not checked for being inside the area volume. @@ -5556,7 +5637,7 @@ Utilities * It's possible that multiple Luanti instances are running at the same time, which may lead to corruption if you are not careful. * `core.is_singleplayer()` -* `core.features`: Table containing API feature flags +* `core.features`: Table containing *server-side* API feature flags ```lua { @@ -5667,10 +5748,13 @@ Utilities biome_weights = true, -- Particles can specify a "clip" blend mode (5.11.0) particle_blend_clip = true, + -- The `match_meta` optional parameter is available for `InvRef:remove_item()` (5.12.0) + remove_item_match_meta = true, } ``` * `core.has_feature(arg)`: returns `boolean, missing_features` + * checks for *server-side* feature availability * `arg`: string or table in format `{foo=true, bar=true}` * `missing_features`: `{foo=true, bar=true}` * `core.get_player_information(player_name)`: Table containing information @@ -5692,14 +5776,37 @@ Utilities min_jitter = 0.01, -- minimum packet time jitter max_jitter = 0.5, -- maximum packet time jitter avg_jitter = 0.03, -- average packet time jitter + + -- The version information is provided by the client and may be spoofed + -- or inconsistent in engine forks. You must not use this for checking + -- feature availability of clients. Instead, do use the fields + -- `protocol_version` and `formspec_version` where it matters. + -- Use `core.protocol_versions` to map Luanti versions to protocol versions. + -- This version string is only suitable for analysis purposes. + version_string = "0.4.9-git", -- full version string + -- the following information is available in a debug build only!!! -- DO NOT USE IN MODS - --ser_vers = 26, -- serialization version used by client - --major = 0, -- major version number - --minor = 4, -- minor version number - --patch = 10, -- patch version number - --vers_string = "0.4.9-git", -- full version string - --state = "Active" -- current client state + --serialization_version = 26, -- serialization version used by client + --major = 0, -- major version number + --minor = 4, -- minor version number + --patch = 10, -- patch version number + --state = "Active" -- current client state + } + ``` + +* `core.protocol_versions`: + * Table mapping Luanti versions to corresponding protocol versions for modder convenience. + * For example, to check whether a client has at least the feature set + of Luanti 5.8.0 or newer, you could do: + `core.get_player_information(player_name).protocol_version >= core.protocol_versions["5.8.0"]` + * (available since 5.11) + + ```lua + { + [version string] = protocol version at time of release + -- every major and minor version has an entry + -- patch versions only for the first release whose protocol version is not already present in the table } ``` @@ -5840,16 +5947,23 @@ Call these functions only at load time! ### Environment -* `core.register_node(name, node definition)` -* `core.register_craftitem(name, item definition)` -* `core.register_tool(name, item definition)` +* `core.register_node(name, nodedef)` + * register a node with its definition + * Note: you must pass a clean table that hasn't already been used for + another registration to this function, as it will be modified. +* `core.register_craftitem(name, itemdef)` + * register an item with its definition + * Note: (as above) +* `core.register_tool(name, tooldef)` + * register a tool item with its definition + * Note: (as above) * `core.override_item(name, redefinition, del_fields)` * `redefinition` is a table of fields `[name] = new_value`, overwriting fields of or adding fields to the existing definition. * `del_fields` is a list of field names to be set to `nil` ("deleted from") the original definition. * Overrides fields of an item registered with register_node/tool/craftitem. - * Note: Item must already be defined, (opt)depend on the mod defining it. + * Note: Item must already be defined. * Example: `core.override_item("default:mese", {light_source=core.LIGHT_MAX}, {"sounds"})`: Overwrites the `light_source` field, @@ -5857,7 +5971,7 @@ Call these functions only at load time! * `core.unregister_item(name)` * Unregisters the item from the engine, and deletes the entry with key `name` from `core.registered_items` and from the associated item table - according to its nature: `core.registered_nodes`, etc. + according to its nature (e.g. `core.registered_nodes`) * `core.register_entity(name, entity definition)` * `core.register_abm(abm definition)` * `core.register_lbm(lbm definition)` @@ -6401,18 +6515,24 @@ Environment access first value: Table with all node positions second value: Table with the count of each node with the node name as index - * Area volume is limited to 4,096,000 nodes + * Area volume is limited to 150,000,000 nodes * `core.find_nodes_in_area_under_air(pos1, pos2, nodenames)`: returns a list of positions. * `nodenames`: e.g. `{"ignore", "group:tree"}` or `"default:dirt"` * Return value: Table with all node positions with a node air above - * Area volume is limited to 4,096,000 nodes -* `core.get_perlin(noiseparams)` - * Return world-specific perlin noise. + * Area volume is limited to 150,000,000 nodes +* `core.get_value_noise(noiseparams)` + * Return world-specific value noise. * The actual seed used is the noiseparams seed plus the world seed. +* `core.get_value_noise(seeddiff, octaves, persistence, spread)` + * Deprecated: use `core.get_value_noise(noiseparams)` instead. + * Return world-specific value noise +* `core.get_perlin(noiseparams)` + * Deprecated: use `core.get_value_noise(noiseparams)` instead. + * Return world-specific value noise (was not Perlin noise) * `core.get_perlin(seeddiff, octaves, persistence, spread)` - * Deprecated: use `core.get_perlin(noiseparams)` instead. - * Return world-specific perlin noise. + * Deprecated: use `core.get_value_noise(noiseparams)` instead. + * Return world-specific value noise (was not Perlin noise) * `core.get_voxel_manip([pos1, pos2])` * Return voxel manipulator object. * Loads the manipulator from the map if positions are passed. @@ -6889,8 +7009,13 @@ Defaults for the `on_place` and `on_drop` item definition functions * Parameters are the same as in `on_pickup`. * Returns the leftover itemstack. * `core.item_drop(itemstack, dropper, pos)` - * Drop the item - * returns the leftover itemstack + * Converts `itemstack` to an in-world Lua entity. + * `itemstack` (`ItemStack`) is modified (cleared) on success. + * In versions < 5.12.0, `itemstack` was cleared in all cases. + * `dropper` (`ObjectRef`) is optional. + * Returned values on success: + 1. leftover itemstack + 2. `ObjectRef` of the spawned object (provided since 5.12.0) * `core.item_eat(hp_change[, replace_with_item])` * Returns `function(itemstack, user, pointed_thing)` as a function wrapper for `core.do_item_eat`. @@ -6982,8 +7107,8 @@ Classes: * `AreaStore` * `ItemStack` -* `PerlinNoise` -* `PerlinNoiseMap` +* `ValueNoise` +* `ValueNoiseMap` * `PseudoRandom` * `PcgRandom` * `SecureRandom` @@ -6995,8 +7120,8 @@ Classes: Class instances that can be transferred between environments: * `ItemStack` -* `PerlinNoise` -* `PerlinNoiseMap` +* `ValueNoise` +* `ValueNoiseMap` * `VoxelManip` Functions: @@ -7062,8 +7187,8 @@ Classes: * `AreaStore` * `ItemStack` -* `PerlinNoise` -* `PerlinNoiseMap` +* `ValueNoise` +* `ValueNoiseMap` * `PseudoRandom` * `PcgRandom` * `SecureRandom` @@ -7408,7 +7533,8 @@ Misc. * This function can be overridden by mods to change the leave message. * `core.hash_node_position(pos)`: returns a 48-bit integer * `pos`: table {x=number, y=number, z=number}, - * Gives a unique hash number for a node position (16+16+16=48bit) + * Gives a unique numeric encoding for a node position (16+16+16=48bit) + * Despite the name, this is not a hash function (so it doesn't mix or produce collisions). * `core.get_position_from_hash(hash)`: returns a position * Inverse transform of `core.hash_node_position` * `core.get_item_group(name, group)`: returns a rating @@ -7568,6 +7694,8 @@ Misc. * `core.forceload_block(pos[, transient[, limit]])` * forceloads the position `pos`. + * this means that the mapblock containing `pos` will always be kept in the + `"active"` state, regardless of nearby players or server settings. * returns `true` if area could be forceloaded * If `transient` is `false` or absent, the forceload will be persistent (saved between server runs). If `true`, the forceload will be transient @@ -7826,13 +7954,15 @@ An `InvRef` is a reference to an inventory. can be fully added to the list * `contains_item(listname, stack, [match_meta])`: returns `true` if the stack of items can be fully taken from the list. - If `match_meta` is false, only the items' names are compared - (default: `false`). -* `remove_item(listname, stack)`: take as many items as specified from the - list, returns the items that were actually removed (as an `ItemStack`) - -- note that any item metadata is ignored, so attempting to remove a specific - unique item this way will likely remove the wrong one -- to do that use - `set_stack` with an empty `ItemStack`. + * If `match_meta` is `true`, item metadata is also considered when comparing + items. Otherwise, only the items names are compared. Default: `false` + * The method ignores wear. +* `remove_item(listname, stack, [match_meta])`: take as many items as specified from the + list, returns the items that were actually removed (as an `ItemStack`). + * If `match_meta` is `true` (available since feature `remove_item_match_meta`), + item metadata is also considered when comparing items. Otherwise, only the + items names are compared. Default: `false` + * The method ignores wear. * `get_location()`: returns a location compatible to `core.get_inventory(location)`. * returns `{type="undefined"}` in case location is not known @@ -8781,6 +8911,14 @@ child will follow movement and rotation of that bone. Same limits as for `thirdperson_back` apply. Defaults to `thirdperson_back` if unspecified. * `get_eye_offset()`: Returns camera offset vectors as set via `set_eye_offset`. +* `set_camera(params)`: Sets camera parameters. + * `mode`: Defines the camera mode used + - `any`: free choice between all modes (default) + - `first`: first-person camera + - `third`: third-person camera + - `third_front`: third-person camera, looking opposite of movement direction + * Supported by client since 5.12.0. +* `get_camera()`: Returns the camera parameters as a table as above. * `send_mapblock(blockpos)`: * Sends an already loaded mapblock to the player. * Returns `false` if nothing was sent (note that this can also mean that @@ -8895,33 +9033,41 @@ offering very strong randomness. * `get_state()`: return generator state encoded in string * `set_state(state_string)`: restore generator state from encoded string -`PerlinNoise` +`ValueNoise` ------------- -A perlin noise generator. -It can be created via `PerlinNoise()` or `core.get_perlin()`. -For `core.get_perlin()`, the actual seed used is the noiseparams seed +A value noise generator. +It can be created via `ValueNoise()` or `core.get_value_noise()`. +For legacy reasons, it can also be created via `PerlinNoise()` or `core.get_perlin()`, +but the implemented noise is not Perlin noise. +For `core.get_value_noise()`, the actual seed used is the noiseparams seed plus the world seed, to create world-specific noise. -`PerlinNoise(noiseparams)` -`PerlinNoise(seed, octaves, persistence, spread)` (Deprecated). +* `ValueNoise(noiseparams) +* `ValueNoise(seed, octaves, persistence, spread)` (Deprecated) +* `PerlinNoise(noiseparams)` (Deprecated) +* `PerlinNoise(seed, octaves, persistence, spread)` (Deprecated) -`core.get_perlin(noiseparams)` -`core.get_perlin(seeddiff, octaves, persistence, spread)` (Deprecated). +* `core.get_value_noise(noiseparams)` +* `core.get_value_noise(seeddiff, octaves, persistence, spread)` (Deprecated) +* `core.get_perlin(noiseparams)` (Deprecated) +* `core.get_perlin(seeddiff, octaves, persistence, spread)` (Deprecated) ### Methods * `get_2d(pos)`: returns 2D noise value at `pos={x=,y=}` * `get_3d(pos)`: returns 3D noise value at `pos={x=,y=,z=}` -`PerlinNoiseMap` +`ValueNoiseMap` ---------------- -A fast, bulk perlin noise generator. +A fast, bulk noise generator. -It can be created via `PerlinNoiseMap(noiseparams, size)` or -`core.get_perlin_map(noiseparams, size)`. -For `core.get_perlin_map()`, the actual seed used is the noiseparams seed +It can be created via `ValueNoiseMap(noiseparams, size)` or +`core.get_value_noise_map(noiseparams, size)`. +For legacy reasons, it can also be created via `PerlinNoiseMap(noiseparams, size)` +or `core.get_perlin_map(noiseparams, size)`, but it is not Perlin noise. +For `core.get_value_noise_map()`, the actual seed used is the noiseparams seed plus the world seed, to create world-specific noise. Format of `size` is `{x=dimx, y=dimy, z=dimz}`. The `z` component is omitted @@ -8948,7 +9094,7 @@ table. * `get_map_slice(slice_offset, slice_size, buffer)`: In the form of an array, returns a slice of the most recently computed noise results. The result slice begins at coordinates `slice_offset` and takes a chunk of `slice_size`. - E.g. to grab a 2-slice high horizontal 2d plane of noise starting at buffer + E.g., to grab a 2-slice high horizontal 2d plane of noise starting at buffer offset y = 20: `noisevals = noise:get_map_slice({y=20}, {y=2})` It is important to note that `slice_offset` offset coordinates begin at 1, @@ -9194,7 +9340,7 @@ Player properties need to be saved manually. -- Clients older than 5.9.0 interpret `pointable = "blocking"` as `pointable = true`. -- Can be overridden by the `pointabilities` of the held item. - visual = "cube" / "sprite" / "upright_sprite" / "mesh" / "wielditem" / "item", + visual = "", -- "cube" is a node-sized cube. -- "sprite" is a flat texture always facing the player. -- "upright_sprite" is a vertical flat texture. @@ -9216,6 +9362,8 @@ Player properties need to be saved manually. -- Wielditems are scaled a bit. If you want a wielditem to appear -- to be as large as a node, use `0.667` in `visual_size` -- "item" is similar to "wielditem" but ignores the 'wield_image' parameter. + -- "node" looks exactly like a node in-world (supported since 5.12.0) + -- Note that visual effects like waving or liquid reflections will not work. visual_size = {x = 1, y = 1, z = 1}, -- Multipliers for the visual size. If `z` is not specified, `x` will be used @@ -9225,7 +9373,7 @@ Player properties need to be saved manually. -- File name of mesh when using "mesh" visual textures = {}, - -- Number of required textures depends on visual. + -- Number of required textures depends on visual: -- "cube" uses 6 textures just like a node, but all 6 must be defined. -- "sprite" uses 1 texture. -- "upright_sprite" uses 2 textures: {front, back}. @@ -9233,13 +9381,16 @@ Player properties need to be saved manually. -- Deprecated usage of "wielditem" expects 'textures = {itemname}' (see 'visual' above). colors = {}, - -- Number of required colors depends on visual + -- Currently unused. + + node = {name = "ignore", param1=0, param2=0}, + -- Node to show when using the "node" visual use_texture_alpha = false, - -- Use texture's alpha channel. - -- Excludes "upright_sprite" and "wielditem". + -- Use texture's alpha channel for transparency blending. -- Note: currently causes visual issues when viewed through other -- semi-transparent materials such as water. + -- Note: ignored for "item", "wielditem" and "node" visual. spritediv = {x = 1, y = 1}, -- Used with spritesheet textures for animation and/or frame selection @@ -9256,7 +9407,7 @@ Player properties need to be saved manually. -- If false, object is invisible and can't be pointed. makes_footstep_sound = false, - -- If true, is able to make footstep sounds of nodes + -- If true, object is able to make footstep sounds of nodes -- (see node sound definition for details). automatic_rotate = 0, @@ -9279,6 +9430,7 @@ Player properties need to be saved manually. backface_culling = true, -- Set to false to disable backface_culling for model + -- Note: only used by "mesh" and "cube" visual glow = 0, -- Add this much extra lighting when calculating texture color. @@ -9314,6 +9466,7 @@ Player properties need to be saved manually. shaded = true, -- Setting this to 'false' disables diffuse lighting of entity + -- Note: ignored for "item", "wielditem" and "node" visual show_on_minimap = false, -- Defaults to true for players, false for other entities. @@ -9364,6 +9517,10 @@ ABM (ActiveBlockModifier) definition Used by `core.register_abm`. +An active block modifier (ABM) is used to define a function that is continously +and randomly called for specific nodes (defined by `nodenames` and other conditions) +in active mapblocks. + ```lua { label = "Lava cooling", @@ -9420,12 +9577,29 @@ Used by `core.register_lbm`. A loading block modifier (LBM) is used to define a function that is called for specific nodes (defined by `nodenames`) when a mapblock which contains such nodes -gets activated (not loaded!). +gets **activated** (**not loaded!**). -Note: LBMs operate on a "snapshot" of node positions taken once before they are triggered. +*Note*: LBMs operate on a "snapshot" of node positions taken once before they are triggered. That means if an LBM callback adds a node, it won't be taken into account. -However the engine guarantees that when the callback is called that all given position(s) -contain a matching node. +However the engine guarantees that at the point in time when the callback is called +that all given positions contain a matching node. + +For `run_at_every_load = false` to work, both mapblocks and LBMs have timestamps +associated with them: + +* Each mapblock has a "last active" timestamp. It is also updated when the + mapblock is generated. +* For each LBM, an introduction timestamp is stored in the world data, identified + by the LBM's `name` field. If an LBM disappears, the corresponding timestamp + is cleared. + +When a mapblock is activated, only LBMs whose introduction timestamp is newer +than the mapblock's timestamp are run. + +*Note*: For maps generated in 5.11.0 or older, many newly generated mapblocks +did not get a timestamp set. This means LBMs introduced between generation time +and time of first activation will never run. +Currently the only workaround is to use `run_at_every_load = true`. ```lua { @@ -9442,14 +9616,17 @@ contain a matching node. -- will work as well. run_at_every_load = false, - -- Whether to run the LBM's action every time a block gets activated, - -- and not only the first time the block gets activated after the LBM - -- was introduced. + -- If `false`: The LBM only runs on mapblocks the first time they are + -- activated after the LBM was introduced. + -- It never runs on mapblocks generated after the LBM's introduction. + -- See above for details. + -- + -- If `true`: The LBM runs every time a mapblock is activated. action = function(pos, node, dtime_s) end, -- Function triggered for each qualifying node. - -- `dtime_s` is the in-game time (in seconds) elapsed since the block - -- was last active. + -- `dtime_s` is the in-game time (in seconds) elapsed since the mapblock + -- was last active (available since 5.7.0). bulk_action = function(pos_list, dtime_s) end, -- Function triggered with a list of all applicable node positions at once. @@ -10605,7 +10782,7 @@ See [Ores] section above for essential information. octaves = 3, persistence = 0.7 }, - -- NoiseParams structure describing one of the perlin noises used for + -- NoiseParams structure describing one of the noises used for -- ore distribution. -- Needed by "sheet", "puff", "blob" and "vein" ores. -- Omit from "scatter" ore for a uniform ore distribution. @@ -10792,7 +10969,7 @@ See [Decoration types]. Used by `core.register_decoration`. lacunarity = 2.0, flags = "absvalue" }, - -- NoiseParams structure describing the perlin noise used for decoration + -- NoiseParams structure describing the noise used for decoration -- distribution. -- A noise value is calculated for each square division and determines -- 'decorations per surface node' within each division. diff --git a/doc/lua_api.txt b/doc/lua_api.txt index 95bc7f1f6..df7b12d4d 100644 --- a/doc/lua_api.txt +++ b/doc/lua_api.txt @@ -1,3 +1,3 @@ Moved to lua_api.md -URL: https://github.com/minetest/minetest/blob/master/doc/lua_api.md +URL: https://github.com/luanti-org/luanti/blob/master/doc/lua_api.md diff --git a/doc/luanti.6 b/doc/luanti.6 index 0eb5b630e..587af24fc 100644 --- a/doc/luanti.6 +++ b/doc/luanti.6 @@ -124,7 +124,7 @@ Colon delimited list of directories to search for mods. Path to Luanti user data directory. .SH BUGS -Please report all bugs at https://github.com/minetest/minetest/issues. +Please report all bugs at https://github.com/luanti-org/luanti/issues. .SH AUTHOR .PP @@ -134,4 +134,4 @@ This man page was originally written by Juhani Numminen . .SH WWW -http://www.minetest.net/ +http://www.luanti.org/ diff --git a/doc/main_page.dox b/doc/main_page.dox index 8211d9cae..f000d0638 100644 --- a/doc/main_page.dox +++ b/doc/main_page.dox @@ -1,7 +1,7 @@ -/** @mainpage The Minetest engine internal documentation +/** @mainpage The Luanti engine internal documentation -Welcome to the Minetest engine Doxygen documentation site!\n -This page documents the internal structure of the Minetest engine's C++ code.\n +Welcome to the Luanti engine Doxygen documentation site!\n +This page documents the internal structure of the Luanti engine's C++ code.\n Use the tree view at the left to navigate. */ diff --git a/doc/menu_lua_api.md b/doc/menu_lua_api.md index b17e4b1c8..0fccf37a3 100644 --- a/doc/menu_lua_api.md +++ b/doc/menu_lua_api.md @@ -1,4 +1,4 @@ -Luanti Lua Mainmenu API Reference 5.11.0 +Luanti Lua Mainmenu API Reference 5.12.0 ======================================== Introduction @@ -105,11 +105,6 @@ of manually putting one, as different OSs use different delimiters. E.g. * `spec` = `SimpleSoundSpec` (see `lua_api.md`) * `looped` = bool * `handle:stop()` or `core.sound_stop(handle)` -* `core.get_video_drivers()` - * get list of video drivers supported by engine (not all modes are guaranteed to work) - * returns list of available video drivers' settings name and 'friendly' display name - e.g. `{ {name="opengl", friendly_name="OpenGL"}, {name="software", friendly_name="Software Renderer"} }` - * first element of returned list is guaranteed to be the NULL driver * `core.get_mapgen_names([include_hidden=false])` -> table of map generator algorithms registered in the core (possible in async calls) * `core.get_cache_path()` -> path of cache @@ -336,7 +331,7 @@ Package - content which is downloadable from the content db, may or may not be i ```lua { name = "technical_id", - type = "mod" or "modpack" or "game" or "txp", + type = "mod" or "modpack" or "game" or "txp" or "unknown", title = "Human readable title", description = "description", author = "author", @@ -387,7 +382,7 @@ Settings * `core.settings:save()` -> nil, save all settings to config file For a complete list of methods of the `Settings` object see -[lua_api.md](https://github.com/minetest/minetest/blob/master/doc/lua_api.md) +[lua_api.md](./lua_api.md) Worlds diff --git a/doc/texture_packs.md b/doc/texture_packs.md index 256915b81..bde5eecfd 100644 --- a/doc/texture_packs.md +++ b/doc/texture_packs.md @@ -22,6 +22,11 @@ This is a directory containing the entire contents of a single texture pack. It can be chosen more or less freely and will also become the name of the texture pack. The name must not be “base”. +### The "server" texture pack +If a texture pack named `server` exists, the textures in it will replace textures +sent to clients. +It's independent of the client's texture pack, which will take precedence as usual. + ### `texture_pack.conf` A key-value config file with the following keys: @@ -139,21 +144,34 @@ are placeholders intended to be overwritten by the game. ### Android textures -* `drop_btn.png` -* `fast_btn.png` -* `fly_btn.png` -* `jump_btn.png` -* `noclip_btn.png` +* `dig_btn.png` +* `place_btn.png` + +* `jump_btn.png` +* `down.png` +* `zoom.png` +* `aux1_btn.png` +* `overflow_btn.png` -* `camera_btn.png` * `chat_btn.png` * `inventory_btn.png` -* `rangeview_btn.png` - -* `debug_btn.png` -* `overflow_btn.png` +* `drop_btn.png` * `exit_btn.png` +* `fly_btn.png` +* `fast_btn.png` +* `noclip_btn.png` +* `debug_btn.png` +* `camera_btn.png` +* `rangeview_btn.png` +* `minimap_btn.png` +* `chat_hide_btn.png` +* `chat_show_btn.png` + +* `joystick_off.png` +* `joystick_bg.png` +* `joystick_center.png` + Texture Overrides ----------------- diff --git a/doc/world_format.md b/doc/world_format.md index 94dface89..c519361d9 100644 --- a/doc/world_format.md +++ b/doc/world_format.md @@ -281,46 +281,61 @@ storing coordinates separately), but the format has been kept unchanged for that part. ## `map.sqlite` -`map.sqlite` is a `SQLite3` database, containing a single table, called +`map.sqlite` is an `SQLite3` database, containing a single table, called `blocks`. It looks like this: +```sql +CREATE TABLE `blocks` ( + `x` INTEGER, `y` INTEGER, `z` INTEGER, + `data` BLOB NOT NULL, + PRIMARY KEY (`x`, `z`, `y`) +); +``` + +Before 5.12.0 it looked like this: + ```sql CREATE TABLE `blocks` (`pos` INT NOT NULL PRIMARY KEY, `data` BLOB); ``` -## Position Hashing +## Position Encoding -`pos` (a node position hash) is created from the three coordinates of a -`MapBlock` using this algorithm, defined here in Python: +Applies to the pre-5.12.0 schema: -```python -def getBlockAsInteger(p): - return int64(p[2]*16777216 + p[1]*4096 + p[0]) +`pos` (a node position encoding) is created from the three coordinates of a +`MapBlock` using the following simple equation: -def int64(u): - while u >= 2**63: - u -= 2**64 - while u <= -2**63: - u += 2**64 - return u +```C +pos = (z << 24) + (y << 12) + x; +``` +or, equivalently, `pos = (z * 0x1000000) + (y * 0x1000) + x`. + +A position can be decoded using: + +```C +pos = pos + 0x800800800; +x = (pos & 0xFFF) - 0x800; +y = ((pos >> 12) & 0xFFF) - 0x800; +z = ((pos >> 24) & 0xFFF) - 0x800; ``` -It can be converted the other way by using this code: +Positions are sequential along the x axis (as easily seen from the position equation above). +It is possible to retrieve all blocks from an interval using the following SQL statement: -```python -def getIntegerAsBlock(i): - x = unsignedToSigned(i % 4096, 2048) - i = int((i - x) / 4096) - y = unsignedToSigned(i % 4096, 2048) - i = int((i - y) / 4096) - z = unsignedToSigned(i % 4096, 2048) - return x,y,z - -def unsignedToSigned(i, max_positive): - if i < max_positive: - return i - else: - return i - 2*max_positive +```sql +SELECT +`pos`, +`data`, +( (`pos` + 0x800800800) & 0xFFF) - 0x800 as x, +(((`pos` + 0x800800800) >> 12) & 0xFFF) - 0x800 as y, +(((`pos` + 0x800800800) >> 24) & 0xFFF) - 0x800 as z +FROM `blocks` WHERE +( (`pos` + 0x800800800) & 0xFFF) - 0x800 >= ? AND -- minx +( (`pos` + 0x800800800) & 0xFFF) - 0x800 <= ? AND -- maxx +(((`pos` + 0x800800800) >> 12) & 0xFFF) - 0x800 >= ? AND -- miny +(((`pos` + 0x800800800) >> 12) & 0xFFF) - 0x800 <= ? AND -- maxy +`pos` >= (? << 24) - 0x800800 AND -- minz +`pos` <= (? << 24) + 0x7FF7FF; -- maxz ``` ## Blob @@ -335,8 +350,8 @@ See below for description. > * NOTE: Byte order is MSB first (big-endian). > * NOTE: Zlib data is in such a format that Python's `zlib` at least can > directly decompress. -> * NOTE: Since version 29 zstd is used instead of zlib. In addition, the entire -> block is first serialized and then compressed (except the version byte). +> * NOTE: Since version 29 zstd is used instead of zlib. In addition, the +> **entire block** is first serialized and then compressed (except version byte). `u8` version * map format version number, see serialization.h for the latest number diff --git a/games/devtest/.luacheckrc b/games/devtest/.luacheckrc index c5a7119a4..2ef36d209 100644 --- a/games/devtest/.luacheckrc +++ b/games/devtest/.luacheckrc @@ -31,7 +31,7 @@ read_globals = { "PcgRandom", string = {fields = {"split", "trim"}}, - table = {fields = {"copy", "getn", "indexof", "insert_all"}}, + table = {fields = {"copy", "getn", "indexof", "insert_all", "key_value_swap"}}, math = {fields = {"hypot", "round"}}, } diff --git a/games/devtest/mods/basenodes/init.lua b/games/devtest/mods/basenodes/init.lua index a6cc680b4..532fca633 100644 --- a/games/devtest/mods/basenodes/init.lua +++ b/games/devtest/mods/basenodes/init.lua @@ -22,11 +22,15 @@ core.register_node("basenodes:desert_stone", { core.register_node("basenodes:dirt_with_grass", { description = "Dirt with Grass", - tiles ={"default_grass.png", + -- Using overlays here has no real merit here but we do it anyway so + -- overlay-related bugs become more apparent in devtest. + tiles = {"default_dirt.png"}, + overlay_tiles = { + "default_grass.png", -- a little dot on the bottom to distinguish it from dirt - "default_dirt.png^basenodes_dirt_with_grass_bottom.png", - {name = "default_dirt.png^default_grass_side.png", - tileable_vertical = false}}, + "basenodes_dirt_with_grass_bottom.png", + {name = "default_grass_side.png", tileable_vertical = false}, + }, groups = {crumbly=3, soil=1}, }) diff --git a/games/devtest/mods/soundstuff/racecar.lua b/games/devtest/mods/soundstuff/racecar.lua index 916279231..92adc7509 100644 --- a/games/devtest/mods/soundstuff/racecar.lua +++ b/games/devtest/mods/soundstuff/racecar.lua @@ -4,14 +4,14 @@ local drive_distance = 30 core.register_entity("soundstuff:racecar", { initial_properties = { - physical = false, - collisionbox = {-0.5, -0.5, -0.5, 0.5, 0.5, 0.5}, - selectionbox = {-0.5, -0.5, -0.5, 0.5, 0.5, 0.5}, - visual = "upright_sprite", - visual_size = {x = 1, y = 1, z = 1}, - textures = {"soundstuff_racecar.png", "soundstuff_racecar.png^[transformFX"}, - static_save = false, - }, + physical = false, + collisionbox = {-0.5, -0.5, -0.5, 0.5, 0.5, 0.5}, + selectionbox = {-0.5, -0.5, -0.5, 0.5, 0.5, 0.5}, + visual = "upright_sprite", + visual_size = {x = 1, y = 1, z = 1}, + textures = {"soundstuff_racecar.png", "soundstuff_racecar.png^[transformFX"}, + static_save = false, + }, on_activate = function(self, _staticdata, _dtime_s) self.min_x = self.object:get_pos().x - drive_distance * 0.5 diff --git a/games/devtest/mods/testentities/selectionbox.lua b/games/devtest/mods/testentities/selectionbox.lua index 8885a2a95..eb8761a2b 100644 --- a/games/devtest/mods/testentities/selectionbox.lua +++ b/games/devtest/mods/testentities/selectionbox.lua @@ -68,7 +68,7 @@ core.register_globalstep(function() hud_ids[pname] = hud_id or player:hud_add({ type = "text", -- See HUD element types position = {x=0.5, y=0.5}, - text = "X", + text = "X", number = 0xFF0000, alignment = {x=0, y=0}, }) diff --git a/games/devtest/mods/testentities/visuals.lua b/games/devtest/mods/testentities/visuals.lua index 6bb1b8282..dfbf655ea 100644 --- a/games/devtest/mods/testentities/visuals.lua +++ b/games/devtest/mods/testentities/visuals.lua @@ -66,6 +66,15 @@ core.register_entity("testentities:mesh_unshaded", { }, }) +core.register_entity("testentities:node", { + initial_properties = { + visual = "node", + node = { name = "stairs:stair_stone" }, + }, +}) + +-- More complex meshes + core.register_entity("testentities:sam", { initial_properties = { visual = "mesh", diff --git a/games/devtest/mods/testitems/init.lua b/games/devtest/mods/testitems/init.lua index 71a85ef6d..90407109a 100644 --- a/games/devtest/mods/testitems/init.lua +++ b/games/devtest/mods/testitems/init.lua @@ -110,15 +110,15 @@ core.register_craftitem("testitems:telescope_stick", { -- Tree spawners local tree_def={ - axiom="Af", - rules_a="TT[&GB][&+GB][&++GB][&+++GB]A", - rules_b="[+GB]fB", - trunk="basenodes:tree", - leaves="basenodes:leaves", - angle=90, - iterations=4, - trunk_type="single", - thin_branches=true, + axiom="Af", + rules_a="TT[&GB][&+GB][&++GB][&+++GB]A", + rules_b="[+GB]fB", + trunk="basenodes:tree", + leaves="basenodes:leaves", + angle=90, + iterations=4, + trunk_type="single", + thin_branches=true, } core.register_craftitem("testitems:tree_spawner", { diff --git a/games/devtest/mods/tiled/init.lua b/games/devtest/mods/tiled/init.lua index 51e1fda21..ea34ea1b1 100644 --- a/games/devtest/mods/tiled/init.lua +++ b/games/devtest/mods/tiled/init.lua @@ -2,37 +2,38 @@ local align_help = "Texture spans over a space of 8×8 nodes" local align_help_n = "Tiles looks the same for every node" core.register_node("tiled:tiled", { - description = "Tiled Node (world-aligned)".."\n"..align_help, - tiles = {{ - name = "tiled_tiled.png", - align_style = "world", - scale = 8, - }}, - groups = {cracky=3}, + description = "Tiled Node (world-aligned)".."\n"..align_help, + tiles = {{ + name = "tiled_tiled.png", + align_style = "world", + scale = 8, + }}, + groups = {cracky=3}, }) core.register_node("tiled:tiled_rooted", { - description = "Tiled 'plantlike_rooted' Node (world-aligned)".."\n".. - "Base node texture spans over a space of 8×8 nodes".."\n".. - "A plantlike thing grows on top", - paramtype = "light", - drawtype = "plantlike_rooted", - tiles = {{ - name = "tiled_tiled.png", - align_style = "world", - scale = 8, - }}, - special_tiles = {"tiled_tiled_node.png"}, - groups = {cracky=3}, + description = + "Tiled 'plantlike_rooted' Node (world-aligned)".."\n".. + "Base node texture spans over a space of 8×8 nodes".."\n".. + "A plantlike thing grows on top", + paramtype = "light", + drawtype = "plantlike_rooted", + tiles = {{ + name = "tiled_tiled.png", + align_style = "world", + scale = 8, + }}, + special_tiles = {"tiled_tiled_node.png"}, + groups = {cracky=3}, }) core.register_node("tiled:tiled_n", { - description = "Tiled Node (node-aligned)".."\n"..align_help_n, - tiles = {{ - name = "tiled_tiled_node.png", - align_style = "node", - }}, - groups = {cracky=3}, + description = "Tiled Node (node-aligned)".."\n"..align_help_n, + tiles = {{ + name = "tiled_tiled_node.png", + align_style = "node", + }}, + groups = {cracky=3}, }) stairs.register_stair_and_slab("tiled_n", "tiled:tiled_n", diff --git a/games/devtest/mods/unittests/color.lua b/games/devtest/mods/unittests/color.lua index 86154445c..116417ed4 100644 --- a/games/devtest/mods/unittests/color.lua +++ b/games/devtest/mods/unittests/color.lua @@ -1,17 +1,17 @@ local function assert_colors_equal(c1, c2) - if type(c1) == "table" and type(c2) == "table" then - assert(c1.r == c2.r and c1.g == c2.g and c1.b == c2.b and c1.a == c2.a) - else - assert(c1 == c2) - end + if type(c1) == "table" and type(c2) == "table" then + assert(c1.r == c2.r and c1.g == c2.g and c1.b == c2.b and c1.a == c2.a) + else + assert(c1 == c2) + end end local function test_color_conversion() - assert_colors_equal(core.colorspec_to_table("#fff"), {r = 255, g = 255, b = 255, a = 255}) - assert_colors_equal(core.colorspec_to_table(0xFF00FF00), {r = 0, g = 255, b = 0, a = 255}) - assert_colors_equal(core.colorspec_to_table("#00000000"), {r = 0, g = 0, b = 0, a = 0}) - assert_colors_equal(core.colorspec_to_table("green"), {r = 0, g = 128, b = 0, a = 255}) - assert_colors_equal(core.colorspec_to_table("gren"), nil) + assert_colors_equal(core.colorspec_to_table("#fff"), {r = 255, g = 255, b = 255, a = 255}) + assert_colors_equal(core.colorspec_to_table(0xFF00FF00), {r = 0, g = 255, b = 0, a = 255}) + assert_colors_equal(core.colorspec_to_table("#00000000"), {r = 0, g = 0, b = 0, a = 0}) + assert_colors_equal(core.colorspec_to_table("green"), {r = 0, g = 128, b = 0, a = 255}) + assert_colors_equal(core.colorspec_to_table("gren"), nil) end unittests.register("test_color_conversion", test_color_conversion) diff --git a/games/devtest/mods/unittests/entity.lua b/games/devtest/mods/unittests/entity.lua index af91a2a94..fad7d52e9 100644 --- a/games/devtest/mods/unittests/entity.lua +++ b/games/devtest/mods/unittests/entity.lua @@ -234,3 +234,24 @@ local function test_get_bone_rot(_, pos) end end unittests.register("test_get_bone_rot", test_get_bone_rot, {map=true}) + +--------- + +-- Spawn an entity from an ItemStack +local function test_item_drop(_, pos) + local itemstack_src, itemstack_ret, obj + + -- Try to place something that does not exist (placement fails) + itemstack_src = ItemStack("n_np_solution 1") + itemstack_ret, obj = core.item_drop(itemstack_src, nil, pos) + assert(obj == nil) + assert(itemstack_ret == nil) + + -- Test known item (placement successful) + itemstack_src = ItemStack("testnodes:normal 69") + itemstack_ret, obj = core.item_drop(itemstack_src, nil, pos) + assert(obj:get_hp() ~= nil) + assert(itemstack_ret and itemstack_ret:is_empty()) + assert(itemstack_ret:equals(itemstack_src)) +end +unittests.register("test_item_drop", test_item_drop, {map=true}) diff --git a/games/devtest/mods/unittests/get_version.lua b/games/devtest/mods/unittests/get_version.lua deleted file mode 100644 index 7ef78257d..000000000 --- a/games/devtest/mods/unittests/get_version.lua +++ /dev/null @@ -1,16 +0,0 @@ - -unittests.register("test_get_version", function() - local version = core.get_version() - assert(type(version) == "table") - assert(type(version.project) == "string") - assert(type(version.string) == "string") - assert(type(version.proto_min) == "number") - assert(type(version.proto_max) == "number") - assert(version.proto_max >= version.proto_min) - assert(type(version.is_dev) == "boolean") - if version.is_dev then - assert(type(version.hash) == "string") - else - assert(version.hash == nil) - end -end) diff --git a/games/devtest/mods/unittests/init.lua b/games/devtest/mods/unittests/init.lua index a971632c9..22057f26a 100644 --- a/games/devtest/mods/unittests/init.lua +++ b/games/devtest/mods/unittests/init.lua @@ -192,7 +192,7 @@ dofile(modpath .. "/crafting.lua") dofile(modpath .. "/itemdescription.lua") dofile(modpath .. "/async_env.lua") dofile(modpath .. "/entity.lua") -dofile(modpath .. "/get_version.lua") +dofile(modpath .. "/version.lua") dofile(modpath .. "/itemstack_equals.lua") dofile(modpath .. "/content_ids.lua") dofile(modpath .. "/metadata.lua") diff --git a/games/devtest/mods/unittests/inventory.lua b/games/devtest/mods/unittests/inventory.lua index cffcba490..e010a417c 100644 --- a/games/devtest/mods/unittests/inventory.lua +++ b/games/devtest/mods/unittests/inventory.lua @@ -1,10 +1,11 @@ - -local item_with_meta = ItemStack({name = "air", meta = {test = "abc"}}) +local function get_stack_with_meta(count) + return ItemStack({name = "air", count = count, meta = {test = "abc"}}) +end local test_list = { ItemStack("air"), ItemStack(""), - ItemStack(item_with_meta), + ItemStack(get_stack_with_meta(1)), } local function compare_lists(a, b) @@ -34,12 +35,12 @@ local function test_inventory() assert(not inv:set_width("test", -1)) inv:set_stack("test", 1, "air") - inv:set_stack("test", 3, item_with_meta) + inv:set_stack("test", 3, get_stack_with_meta(1)) assert(not inv:is_empty("test")) assert(compare_lists(inv:get_list("test"), test_list)) assert(inv:add_item("test", "air") == ItemStack()) - assert(inv:add_item("test", item_with_meta) == ItemStack()) + assert(inv:add_item("test", get_stack_with_meta(1)) == ItemStack()) assert(inv:get_stack("test", 1) == ItemStack("air 2")) assert(inv:room_for_item("test", "air 99")) @@ -48,16 +49,28 @@ local function test_inventory() inv:set_stack("test", 2, "") assert(inv:contains_item("test", "air")) + assert(inv:contains_item("test", "air 4")) + assert(not inv:contains_item("test", "air 5")) assert(not inv:contains_item("test", "air 99")) - assert(inv:contains_item("test", item_with_meta, true)) + assert(inv:contains_item("test", "air 2", true)) + assert(not inv:contains_item("test", "air 3", true)) + assert(inv:contains_item("test", get_stack_with_meta(2), true)) + assert(not inv:contains_item("test", get_stack_with_meta(3), true)) -- Items should be removed in reverse and combine with first stack removed - assert(inv:remove_item("test", "air") == item_with_meta) - item_with_meta:set_count(2) - assert(inv:remove_item("test", "air 2") == item_with_meta) + assert(inv:remove_item("test", "air") == get_stack_with_meta(1)) + assert(inv:remove_item("test", "air 2") == get_stack_with_meta(2)) assert(inv:remove_item("test", "air") == ItemStack("air")) assert(inv:is_empty("test")) + inv:set_stack("test", 1, "air 3") + inv:set_stack("test", 3, get_stack_with_meta(2)) + assert(inv:remove_item("test", "air 4", true) == ItemStack("air 3")) + inv:set_stack("test", 1, "air 3") + assert(inv:remove_item("test", get_stack_with_meta(3), true) == get_stack_with_meta(2)) + assert(inv:remove_item("test", "air 3", true) == ItemStack("air 3")) + assert(inv:is_empty("test")) + -- Failure of set_list(s) should not change inventory local before = inv:get_list("test") pcall(inv.set_lists, inv, {test = true}) diff --git a/games/devtest/mods/unittests/misc.lua b/games/devtest/mods/unittests/misc.lua index d01eed17d..65dc3259e 100644 --- a/games/devtest/mods/unittests/misc.lua +++ b/games/devtest/mods/unittests/misc.lua @@ -189,6 +189,29 @@ local function test_write_json() end unittests.register("test_write_json", test_write_json) +local function lint_json_files() + -- Check that files we ship with Luanti are valid JSON + local stack = {core.get_builtin_path()} + local checked = 0 + while #stack > 0 do + local path = table.remove(stack) + for _, name in ipairs(core.get_dir_list(path, true)) do + stack[#stack+1] = path .. "/" .. name + end + for _, name in ipairs(core.get_dir_list(path, false)) do + if name:match("%.json$") then + local f = io.open(path .. "/" .. name, "rb") + print(path .. "/" .. name) + assert(core.parse_json(f:read("*all"), -1) ~= nil) + f:close() + checked = checked + 1 + end + end + end + assert(checked > 0, "no files found?!") +end +unittests.register("lint_json_files", lint_json_files) + local function test_game_info() local info = core.get_game_info() local game_conf = Settings(info.path .. "/game.conf") diff --git a/games/devtest/mods/unittests/raycast.lua b/games/devtest/mods/unittests/raycast.lua index 1dc196cc5..0c0584530 100644 --- a/games/devtest/mods/unittests/raycast.lua +++ b/games/devtest/mods/unittests/raycast.lua @@ -1,36 +1,36 @@ local function raycast_with_pointabilities(start_pos, end_pos, pointabilities) local ray = core.raycast(start_pos, end_pos, nil, nil, pointabilities) for hit in ray do - if hit.type == "node" then - return hit.under - end + if hit.type == "node" then + return hit.under + end end - return nil + return nil end local function test_raycast_pointabilities(player, pos1) - local pos2 = pos1:offset(0, 0, 1) - local pos3 = pos1:offset(0, 0, 2) + local pos2 = pos1:offset(0, 0, 1) + local pos3 = pos1:offset(0, 0, 2) - local oldnode1 = core.get_node(pos1) - local oldnode2 = core.get_node(pos2) - local oldnode3 = core.get_node(pos3) - core.swap_node(pos1, {name = "air"}) - core.swap_node(pos2, {name = "testnodes:not_pointable"}) - core.swap_node(pos3, {name = "testnodes:pointable"}) + local oldnode1 = core.get_node(pos1) + local oldnode2 = core.get_node(pos2) + local oldnode3 = core.get_node(pos3) + core.swap_node(pos1, {name = "air"}) + core.swap_node(pos2, {name = "testnodes:not_pointable"}) + core.swap_node(pos3, {name = "testnodes:pointable"}) - local p = nil - assert(raycast_with_pointabilities(pos1, pos3, p) == pos3) + local p = nil + assert(raycast_with_pointabilities(pos1, pos3, p) == pos3) - p = core.registered_items["testtools:blocked_pointing_staff"].pointabilities - assert(raycast_with_pointabilities(pos1, pos3, p) == nil) + p = core.registered_items["testtools:blocked_pointing_staff"].pointabilities + assert(raycast_with_pointabilities(pos1, pos3, p) == nil) - p = core.registered_items["testtools:ultimate_pointing_staff"].pointabilities - assert(raycast_with_pointabilities(pos1, pos3, p) == pos2) + p = core.registered_items["testtools:ultimate_pointing_staff"].pointabilities + assert(raycast_with_pointabilities(pos1, pos3, p) == pos2) - core.swap_node(pos1, oldnode1) - core.swap_node(pos2, oldnode2) - core.swap_node(pos3, oldnode3) + core.swap_node(pos1, oldnode1) + core.swap_node(pos2, oldnode2) + core.swap_node(pos3, oldnode3) end unittests.register("test_raycast_pointabilities", test_raycast_pointabilities, {map=true}) diff --git a/games/devtest/mods/unittests/version.lua b/games/devtest/mods/unittests/version.lua new file mode 100644 index 000000000..73b4e5a11 --- /dev/null +++ b/games/devtest/mods/unittests/version.lua @@ -0,0 +1,40 @@ +unittests.register("test_get_version", function() + local version = core.get_version() + assert(type(version) == "table") + assert(type(version.project) == "string") + assert(type(version.string) == "string") + assert(type(version.proto_min) == "number") + assert(type(version.proto_max) == "number") + assert(version.proto_max >= version.proto_min) + assert(type(version.is_dev) == "boolean") + if version.is_dev then + assert(type(version.hash) == "string") + else + assert(version.hash == nil) + end +end) + +unittests.register("test_protocol_version", function(player) + local info = core.get_player_information(player:get_player_name()) + + local maxver = 0 + for _, v in pairs(core.protocol_versions) do + maxver = math.max(maxver, v) + end + assert(maxver > 0) -- table must contain something valid + + -- If the client is older than a known version then it's pointless. + if info.protocol_version < maxver then + core.log("warning", "test_protocol_version: client is outdated, skipping test!") + return + end + local info_server = core.get_version() + if info.version_string ~= (info_server.hash or info_server.string) then + core.log("warning", "test_protocol_version: client is not the same version. False-positive possible.") + end + + -- The protocol version the client and server agreed on must exist in the table. + local match = table.key_value_swap(core.protocol_versions)[info.protocol_version] + print(string.format("client proto matched: %s sent: %s", match, info.version_string)) + assert(match ~= nil) +end, {player = true}) diff --git a/games/devtest/mods/util_commands/init.lua b/games/devtest/mods/util_commands/init.lua index 8341901a8..a413e7fa7 100644 --- a/games/devtest/mods/util_commands/init.lua +++ b/games/devtest/mods/util_commands/init.lua @@ -234,10 +234,10 @@ core.register_chatcommand("dump_wear_bar", { }) core.register_chatcommand("set_saturation", { - params = "", - description = "Set the saturation for current player.", - func = function(player_name, param) - local saturation = tonumber(param) - core.get_player_by_name(player_name):set_lighting({saturation = saturation }) - end + params = "", + description = "Set the saturation for current player.", + func = function(player_name, param) + local saturation = tonumber(param) + core.get_player_by_name(player_name):set_lighting({saturation = saturation }) + end }) diff --git a/irr/include/EDriverFeatures.h b/irr/include/EDriverFeatures.h index 0a35161cf..c1fcd464d 100644 --- a/irr/include/EDriverFeatures.h +++ b/irr/include/EDriverFeatures.h @@ -132,6 +132,9 @@ enum E_VIDEO_DRIVER_FEATURE //! Support for multisample textures. EVDF_TEXTURE_MULTISAMPLE, + //! Support for 2D array textures. + EVDF_TEXTURE_2D_ARRAY, + //! Only used for counting the elements of this enum EVDF_COUNT }; diff --git a/irr/include/IFileArchive.h b/irr/include/IFileArchive.h index fb77b48c4..5f505ae91 100644 --- a/irr/include/IFileArchive.h +++ b/irr/include/IFileArchive.h @@ -26,12 +26,6 @@ enum E_FILE_ARCHIVE_TYPE //! A PKZIP archive EFAT_ZIP = MAKE_IRR_ID('Z', 'I', 'P', 0), - //! A gzip archive - EFAT_GZIP = MAKE_IRR_ID('g', 'z', 'i', 'p'), - - //! An Android asset file archive - EFAT_ANDROID_ASSET = MAKE_IRR_ID('A', 'S', 'S', 'E'), - //! The type of this archive is unknown EFAT_UNKNOWN = MAKE_IRR_ID('u', 'n', 'k', 'n') }; @@ -73,13 +67,6 @@ public: but checks if file exists will fail. */ virtual void addDirectoryToFileList(const io::path &filename) {} - - //! An optionally used password string - /** This variable is publicly accessible from the interface in order to - avoid single access patterns to this place, and hence allow some more - obscurity. - */ - core::stringc Password; }; //! Class which is able to create an archive from a file. diff --git a/irr/include/IImage.h b/irr/include/IImage.h index a303201a9..ef8f6934b 100644 --- a/irr/include/IImage.h +++ b/irr/include/IImage.h @@ -25,7 +25,7 @@ class IImage : public virtual IReferenceCounted public: //! constructor IImage(ECOLOR_FORMAT format, const core::dimension2d &size, bool deleteMemory) : - Format(format), Size(size), Data(0), MipMapsData(0), BytesPerPixel(0), Pitch(0), DeleteMemory(deleteMemory), DeleteMipMapsMemory(false) + Format(format), Size(size), Data(0), BytesPerPixel(0), Pitch(0), DeleteMemory(deleteMemory) { BytesPerPixel = getBitsPerPixelFromFormat(Format) / 8; Pitch = BytesPerPixel * Size.Width; @@ -36,9 +36,6 @@ public: { if (DeleteMemory) delete[] Data; - - if (DeleteMipMapsMemory) - delete[] MipMapsData; } //! Returns the color format @@ -56,7 +53,6 @@ public: //! Returns bits per pixel. u32 getBitsPerPixel() const { - return getBitsPerPixelFromFormat(Format); } @@ -189,87 +185,6 @@ public: return result; } - //! Get mipmaps data. - /** Note that different mip levels are just behind each other in memory block. - So if you just get level 1 you also have the data for all other levels. - There is no level 0 - use getData to get the original image data. - */ - void *getMipMapsData(irr::u32 mipLevel = 1) const - { - if (MipMapsData && mipLevel > 0) { - size_t dataSize = 0; - core::dimension2du mipSize(Size); - u32 i = 1; // We want the start of data for this level, not end. - - while (i != mipLevel) { - if (mipSize.Width > 1) - mipSize.Width >>= 1; - - if (mipSize.Height > 1) - mipSize.Height >>= 1; - - dataSize += getDataSizeFromFormat(Format, mipSize.Width, mipSize.Height); - - ++i; - if (mipSize.Width == 1 && mipSize.Height == 1 && i < mipLevel) - return 0; - } - - return MipMapsData + dataSize; - } - - return 0; - } - - //! Set mipmaps data. - /** This method allows you to put custom mipmaps data for - image. - \param data A byte array with pixel color information - \param ownForeignMemory If true, the image will use the data - pointer directly and own it afterward. If false, the memory - will by copied internally. - \param deleteMemory Whether the memory is deallocated upon - destruction. */ - void setMipMapsData(void *data, bool ownForeignMemory) - { - if (data != MipMapsData) { - if (DeleteMipMapsMemory) { - delete[] MipMapsData; - - DeleteMipMapsMemory = false; - } - - if (data) { - if (ownForeignMemory) { - MipMapsData = static_cast(data); - - DeleteMipMapsMemory = false; - } else { - u32 dataSize = 0; - u32 width = Size.Width; - u32 height = Size.Height; - - do { - if (width > 1) - width >>= 1; - - if (height > 1) - height >>= 1; - - dataSize += getDataSizeFromFormat(Format, width, height); - } while (width != 1 || height != 1); - - MipMapsData = new u8[dataSize]; - memcpy(MipMapsData, data, dataSize); - - DeleteMipMapsMemory = true; - } - } else { - MipMapsData = 0; - } - } - } - //! Returns a pixel virtual SColor getPixel(u32 x, u32 y) const = 0; @@ -277,30 +192,24 @@ public: virtual void setPixel(u32 x, u32 y, const SColor &color, bool blend = false) = 0; //! Copies this surface into another, if it has the exact same size and format. - /** NOTE: mipmaps are ignored - \return True if it was copied, false otherwise. + /** \return True if it was copied, false otherwise. */ virtual bool copyToNoScaling(void *target, u32 width, u32 height, ECOLOR_FORMAT format = ECF_A8R8G8B8, u32 pitch = 0) const = 0; //! Copies the image into the target, scaling the image to fit - /** NOTE: mipmaps are ignored */ virtual void copyToScaling(void *target, u32 width, u32 height, ECOLOR_FORMAT format = ECF_A8R8G8B8, u32 pitch = 0) = 0; //! Copies the image into the target, scaling the image to fit - /** NOTE: mipmaps are ignored */ virtual void copyToScaling(IImage *target) = 0; //! copies this surface into another - /** NOTE: mipmaps are ignored */ virtual void copyTo(IImage *target, const core::position2d &pos = core::position2d(0, 0)) = 0; //! copies this surface into another - /** NOTE: mipmaps are ignored */ virtual void copyTo(IImage *target, const core::position2d &pos, const core::rect &sourceRect, const core::rect *clipRect = 0) = 0; //! copies this surface into another, using the alpha mask and cliprect and a color to add with - /** NOTE: mipmaps are ignored - \param combineAlpha - When true then combine alpha channels. When false replace target image alpha with source image alpha. + /** \param combineAlpha - When true then combine alpha channels. When false replace target image alpha with source image alpha. */ virtual void copyToWithAlpha(IImage *target, const core::position2d &pos, const core::rect &sourceRect, const SColor &color, @@ -308,7 +217,6 @@ public: bool combineAlpha = false) = 0; //! copies this surface into another, scaling it to fit, applying a box filter - /** NOTE: mipmaps are ignored */ virtual void copyToScalingBoxFilter(IImage *target, s32 bias = 0, bool blend = false) = 0; //! fills the surface with given color @@ -416,13 +324,11 @@ protected: core::dimension2d Size; u8 *Data; - u8 *MipMapsData; u32 BytesPerPixel; u32 Pitch; bool DeleteMemory; - bool DeleteMipMapsMemory; }; } // end namespace video diff --git a/irr/include/IMeshSceneNode.h b/irr/include/IMeshSceneNode.h index 89b26dce1..1fb005405 100644 --- a/irr/include/IMeshSceneNode.h +++ b/irr/include/IMeshSceneNode.h @@ -34,16 +34,16 @@ public: /** \return Pointer to mesh which is displayed by this node. */ virtual IMesh *getMesh(void) = 0; - //! Sets if the scene node should not copy the materials of the mesh but use them in a read only style. + //! Sets if the scene node should not copy the materials of the mesh but use them directly. /** In this way it is possible to change the materials of a mesh causing all mesh scene nodes referencing this mesh to change, too. - \param readonly Flag if the materials shall be read-only. */ - virtual void setReadOnlyMaterials(bool readonly) = 0; + \param shared Flag if the materials shall be shared. */ + virtual void setSharedMaterials(bool shared) = 0; - //! Check if the scene node should not copy the materials of the mesh but use them in a read only style - /** This flag can be set by setReadOnlyMaterials(). - \return Whether the materials are read-only. */ - virtual bool isReadOnlyMaterials() const = 0; + //! Check if the scene node does not copy the materials of the mesh but uses them directly. + /** This flag can be set by setSharedMaterials(). + \return Whether the materials are shared. */ + virtual bool isSharedMaterials() const = 0; }; } // end namespace scene diff --git a/irr/include/ISceneNode.h b/irr/include/ISceneNode.h index 897cfb350..c80ff4b48 100644 --- a/irr/include/ISceneNode.h +++ b/irr/include/ISceneNode.h @@ -310,7 +310,11 @@ public: \return The material at that index. */ virtual video::SMaterial &getMaterial(u32 num) { - return video::IdentityMaterial; + // We return a default material since a reference can't be null, + // but note that writing to this is a mistake either by a child class + // or the caller, because getMaterialCount() is zero. + // Doing so will helpfully cause a segfault. + return const_cast(video::IdentityMaterial); } //! Get amount of materials used by this scene node. diff --git a/irr/include/ITexture.h b/irr/include/ITexture.h index 869a325e0..bdbb72727 100644 --- a/irr/include/ITexture.h +++ b/irr/include/ITexture.h @@ -68,30 +68,12 @@ enum E_TEXTURE_CREATION_FLAG not recommended to enable this flag. */ ETCF_NO_ALPHA_CHANNEL = 0x00000020, - //! Allow the Driver to use Non-Power-2-Textures - /** BurningVideo can handle Non-Power-2 Textures in 2D (GUI), but not in 3D. */ - ETCF_ALLOW_NON_POWER_2 = 0x00000040, - //! Allow the driver to keep a copy of the texture in memory /** Enabling this makes calls to ITexture::lock a lot faster, but costs main memory. This is disabled by default. */ ETCF_ALLOW_MEMORY_COPY = 0x00000080, - //! Enable automatic updating mip maps when the base texture changes. - /** Default is true. - This flag is only used when ETCF_CREATE_MIP_MAPS is also enabled and if the driver supports it. - Please note: - - On D3D (and maybe older OGL?) you can no longer manually set mipmap data when enabled - (for example mips from image loading will be ignored). - - On D3D (and maybe older OGL?) texture locking for mipmap levels usually won't work anymore. - - On new OGL this flag is ignored. - - When disabled you do _not_ get hardware mipmaps on D3D, so mipmap generation can be slower. - - When disabled you can still update your mipmaps when the texture changed by manually calling regenerateMipMapLevels. - - You can still call regenerateMipMapLevels when this flag is enabled (it will be a hint on d3d to update mips immediately) - */ - ETCF_AUTO_GENERATE_MIP_MAPS = 0x00000100, - /** This flag is never used, it only forces the compiler to compile these enumeration values to 32 bit. */ ETCF_FORCE_32_BIT_DO_NOT_USE = 0x7fffffff @@ -137,19 +119,6 @@ enum E_TEXTURE_LOCK_FLAGS ETLF_FLIP_Y_UP_RTT = 1 }; -//! Where did the last IVideoDriver::getTexture call find this texture -enum E_TEXTURE_SOURCE -{ - //! IVideoDriver::getTexture was never called (texture created otherwise) - ETS_UNKNOWN, - - //! Texture has been found in cache - ETS_FROM_CACHE, - - //! Texture had to be loaded - ETS_FROM_FILE -}; - //! Enumeration describing the type of ITexture. enum E_TEXTURE_TYPE { @@ -160,7 +129,10 @@ enum E_TEXTURE_TYPE ETT_2D_MS, //! Cubemap texture. - ETT_CUBEMAP + ETT_CUBEMAP, + + //! 2D array texture + ETT_2D_ARRAY }; //! Interface of a Video Driver dependent Texture. @@ -178,7 +150,7 @@ public: //! constructor ITexture(const io::path &name, E_TEXTURE_TYPE type) : NamedPath(name), DriverType(EDT_NULL), OriginalColorFormat(ECF_UNKNOWN), - ColorFormat(ECF_UNKNOWN), Pitch(0), HasMipMaps(false), IsRenderTarget(false), Source(ETS_UNKNOWN), Type(type) + ColorFormat(ECF_UNKNOWN), Pitch(0), HasMipMaps(false), IsRenderTarget(false), Type(type) { } @@ -197,9 +169,7 @@ public: only mode or read from in write only mode. Support for this feature depends on the driver, so don't rely on the texture being write-protected when locking with read-only, etc. - \param mipmapLevel NOTE: Currently broken, sorry, we try if we can repair it for 1.9 release. - Number of the mipmapLevel to lock. 0 is main texture. - Non-existing levels will silently fail and return 0. + \param mipmapLevel Number of the mipmapLevel to lock. 0 is main texture. \param layer It determines which cubemap face or texture array layer should be locked. \param lockFlags See E_TEXTURE_LOCK_FLAGS documentation. \return Returns a pointer to the pixel data. The format of the pixel can @@ -215,14 +185,9 @@ public: //! Regenerates the mip map levels of the texture. /** Required after modifying the texture, usually after calling unlock(). - \param data Optional parameter to pass in image data which will be - used instead of the previously stored or automatically generated mipmap - data. The data has to be a continuous pixel data for all mipmaps until - 1x1 pixel. Each mipmap has to be half the width and height of the previous - level. At least one pixel will be always kept. \param layer It informs a texture about which cubemap or texture array layer needs mipmap regeneration. */ - virtual void regenerateMipMapLevels(void *data = 0, u32 layer = 0) = 0; + virtual void regenerateMipMapLevels(u32 layer = 0) = 0; //! Get original size of the texture. /** The texture is usually scaled, if it was created with an unoptimal @@ -275,12 +240,6 @@ public: //! Get name of texture (in most cases this is the filename) const io::SNamedPath &getName() const { return NamedPath; } - //! Check where the last IVideoDriver::getTexture found this texture - E_TEXTURE_SOURCE getSource() const { return Source; } - - //! Used internally by the engine to update Source status on IVideoDriver::getTexture calls. - void updateSource(E_TEXTURE_SOURCE source) { Source = source; } - //! Returns if the texture has an alpha channel bool hasAlpha() const { @@ -329,7 +288,6 @@ protected: u32 Pitch; bool HasMipMaps; bool IsRenderTarget; - E_TEXTURE_SOURCE Source; E_TEXTURE_TYPE Type; }; diff --git a/irr/include/IVideoDriver.h b/irr/include/IVideoDriver.h index 29ce8678a..950723941 100644 --- a/irr/include/IVideoDriver.h +++ b/irr/include/IVideoDriver.h @@ -232,6 +232,15 @@ public: information. */ virtual ITexture *addTexture(const io::path &name, IImage *image) = 0; + /** + * Creates an array texture from IImages. + * @param name A name for the texture. + * @param images Pointer to array of images + * @param count Number of images (must be at least 1) + * @return Pointer to the newly created texture + */ + virtual ITexture *addArrayTexture(const io::path &name, IImage **images, u32 count) = 0; + //! Creates a cubemap texture from loaded IImages. /** \param name A name for the texture. Later calls of getTexture() with this name will return this texture. The name can _not_ be empty. diff --git a/irr/include/IrrlichtDevice.h b/irr/include/IrrlichtDevice.h index edc6ead61..6ae21a212 100644 --- a/irr/include/IrrlichtDevice.h +++ b/irr/include/IrrlichtDevice.h @@ -16,6 +16,7 @@ #include "IrrCompileConfig.h" #include "position2d.h" #include "SColor.h" // video::ECOLOR_FORMAT +#include namespace irr { @@ -342,6 +343,27 @@ public: { return video::isDriverSupported(driver); } + + //! Get the corresponding scancode for the keycode. + /** + \param key The keycode to convert. + \return The implementation-dependent scancode for the key (represented by the u32 component) or, if a scancode is not + available, the corresponding Irrlicht keycode (represented by the EKEY_CODE component). + */ + virtual std::variant getScancodeFromKey(const Keycode &key) const { + if (auto pv = std::get_if(&key)) + return *pv; + return (u32)std::get(key); + } + + //! Get the corresponding keycode for the scancode. + /** + \param scancode The implementation-dependent scancode for the key. + \return The corresponding keycode. + */ + virtual Keycode getKeyFromScancode(const u32 scancode) const { + return Keycode(KEY_UNKNOWN, (wchar_t)scancode); + } }; } // end namespace irr diff --git a/irr/include/Keycodes.h b/irr/include/Keycodes.h index cdc90d198..a6a0a5dae 100644 --- a/irr/include/Keycodes.h +++ b/irr/include/Keycodes.h @@ -3,6 +3,7 @@ // For conditions of distribution and use, see copyright notice in irrlicht.h #pragma once +#include namespace irr { @@ -182,4 +183,30 @@ enum EKEY_CODE KEY_KEY_CODES_COUNT = 0x100 // this is not a key, but the amount of keycodes there are. }; +// A Keycode is either a character produced by the key or one of Irrlicht's codes (EKEY_CODE) +class Keycode : public std::variant { + using super = std::variant; +public: + Keycode() : Keycode(KEY_KEY_CODES_COUNT, L'\0') {} + + Keycode(EKEY_CODE code, wchar_t ch) + { + emplace(code, ch); + } + + using super::emplace; + void emplace(EKEY_CODE code, wchar_t ch) + { + if (isValid(code)) + emplace(code); + else + emplace(ch); + } + + static bool isValid(EKEY_CODE code) + { + return code > 0 && code < KEY_KEY_CODES_COUNT; + } +}; + } // end namespace irr diff --git a/irr/include/SMaterial.h b/irr/include/SMaterial.h index 3bbc6e946..d5b9341f4 100644 --- a/irr/include/SMaterial.h +++ b/irr/include/SMaterial.h @@ -472,7 +472,7 @@ public: }; //! global const identity Material -IRRLICHT_API extern SMaterial IdentityMaterial; +IRRLICHT_API extern const SMaterial IdentityMaterial; } // end namespace video } // end namespace irr @@ -483,9 +483,15 @@ struct std::hash /// @brief std::hash specialization for video::SMaterial std::size_t operator()(const irr::video::SMaterial &m) const noexcept { - // basic implementation that hashes the two things most likely to differ - auto h1 = std::hash{}(m.getTexture(0)); - auto h2 = std::hash{}(m.MaterialType); - return (h1 << 1) ^ h2; + std::size_t ret = 0; + for (auto h : { // the three members most likely to differ + std::hash{}(m.getTexture(0)), + std::hash{}(m.MaterialType), + std::hash{}(m.ColorParam.color) + }) { + ret += h; + ret ^= (ret << 6) + (ret >> 2); // distribute bits + } + return ret; } }; diff --git a/irr/include/irrMath.h b/irr/include/irrMath.h index 3a1471a02..e11d47360 100644 --- a/irr/include/irrMath.h +++ b/irr/include/irrMath.h @@ -18,47 +18,38 @@ namespace core //! Rounding error constant often used when comparing f32 values. -const f32 ROUNDING_ERROR_f32 = 0.000001f; -const f64 ROUNDING_ERROR_f64 = 0.00000001; +constexpr f32 ROUNDING_ERROR_f32 = 0.000001f; +constexpr f64 ROUNDING_ERROR_f64 = 0.00000001; #ifdef PI // make sure we don't collide with a define #undef PI #endif //! Constant for PI. -const f32 PI = 3.14159265359f; - -//! Constant for reciprocal of PI. -const f32 RECIPROCAL_PI = 1.0f / PI; - -//! Constant for half of PI. -const f32 HALF_PI = PI / 2.0f; +constexpr f32 PI = M_PI; #ifdef PI64 // make sure we don't collide with a define #undef PI64 #endif //! Constant for 64bit PI. -const f64 PI64 = 3.1415926535897932384626433832795028841971693993751; - -//! Constant for 64bit reciprocal of PI. -const f64 RECIPROCAL_PI64 = 1.0 / PI64; +constexpr f64 PI64 = M_PI; //! 32bit Constant for converting from degrees to radians -const f32 DEGTORAD = PI / 180.0f; +constexpr f32 DEGTORAD = PI / 180.0f; //! 32bit constant for converting from radians to degrees (formally known as GRAD_PI) -const f32 RADTODEG = 180.0f / PI; +constexpr f32 RADTODEG = 180.0f / PI; //! 64bit constant for converting from degrees to radians (formally known as GRAD_PI2) -const f64 DEGTORAD64 = PI64 / 180.0; +constexpr f64 DEGTORAD64 = PI64 / 180.0; //! 64bit constant for converting from radians to degrees -const f64 RADTODEG64 = 180.0 / PI64; +constexpr f64 RADTODEG64 = 180.0 / PI64; //! Utility function to convert a radian value to degrees /** Provided as it can be clearer to write radToDeg(X) than RADTODEG * X \param radians The radians value to convert to degrees. */ -inline f32 radToDeg(f32 radians) +inline constexpr f32 radToDeg(f32 radians) { return RADTODEG * radians; } @@ -67,7 +58,7 @@ inline f32 radToDeg(f32 radians) /** Provided as it can be clearer to write radToDeg(X) than RADTODEG * X \param radians The radians value to convert to degrees. */ -inline f64 radToDeg(f64 radians) +inline constexpr f64 radToDeg(f64 radians) { return RADTODEG64 * radians; } @@ -76,7 +67,7 @@ inline f64 radToDeg(f64 radians) /** Provided as it can be clearer to write degToRad(X) than DEGTORAD * X \param degrees The degrees value to convert to radians. */ -inline f32 degToRad(f32 degrees) +inline constexpr f32 degToRad(f32 degrees) { return DEGTORAD * degrees; } @@ -85,44 +76,44 @@ inline f32 degToRad(f32 degrees) /** Provided as it can be clearer to write degToRad(X) than DEGTORAD * X \param degrees The degrees value to convert to radians. */ -inline f64 degToRad(f64 degrees) +inline constexpr f64 degToRad(f64 degrees) { return DEGTORAD64 * degrees; } -//! returns minimum of two values. Own implementation to get rid of the STL (VS6 problems) +//! returns minimum of two values. template inline const T &min_(const T &a, const T &b) { return a < b ? a : b; } -//! returns minimum of three values. Own implementation to get rid of the STL (VS6 problems) +//! returns minimum of three values. template inline const T &min_(const T &a, const T &b, const T &c) { return a < b ? min_(a, c) : min_(b, c); } -//! returns maximum of two values. Own implementation to get rid of the STL (VS6 problems) +//! returns maximum of two values. template inline const T &max_(const T &a, const T &b) { return a < b ? b : a; } -//! returns maximum of three values. Own implementation to get rid of the STL (VS6 problems) +//! returns maximum of three values. template inline const T &max_(const T &a, const T &b, const T &c) { return a < b ? max_(b, c) : max_(a, c); } -//! returns abs of two values. Own implementation to get rid of STL (VS6 problems) +//! returns abs of two values. template inline T abs_(const T &a) { - return a < (T)0 ? -a : a; + return std::abs(a); } //! returns linear interpolation of a and b with ratio t @@ -140,19 +131,6 @@ inline const T clamp(const T &value, const T &low, const T &high) return min_(max_(value, low), high); } -//! swaps the content of the passed parameters -// Note: We use the same trick as boost and use two template arguments to -// avoid ambiguity when swapping objects of an Irrlicht type that has not -// it's own swap overload. Otherwise we get conflicts with some compilers -// in combination with stl. -template -inline void swap(T1 &a, T2 &b) -{ - T1 c(a); - a = b; - b = c; -} - template inline T roundingError(); @@ -305,6 +283,17 @@ inline s32 s32_clamp(s32 value, s32 low, s32 high) return clamp(value, low, high); } +// integer log2 of an integer. returning 0 if denormal +inline s32 u32_log2(u32 in) +{ + s32 ret = 0; + while (in > 1) { + in >>= 1; + ret++; + } + return ret; +} + /* float IEEE-754 bit representation diff --git a/irr/include/irrTypes.h b/irr/include/irrTypes.h index 6c0ee661c..910991689 100644 --- a/irr/include/irrTypes.h +++ b/irr/include/irrTypes.h @@ -85,6 +85,22 @@ typedef char fschar_t; /** prefer to use the override keyword for new code */ #define _IRR_OVERRIDE_ override +// Invokes undefined behavior for unreachable code optimization +// Note: an assert(false) is included first to catch this in debug builds +#if defined(__cpp_lib_unreachable) +#include +#define IRR_CODE_UNREACHABLE() do { _IRR_DEBUG_BREAK_IF(1) std::unreachable(); } while(0) +#elif defined(__has_builtin) +#if __has_builtin(__builtin_unreachable) +#define IRR_CODE_UNREACHABLE() do { _IRR_DEBUG_BREAK_IF(1) __builtin_unreachable(); } while(0) +#endif +#elif defined(_MSC_VER) +#define IRR_CODE_UNREACHABLE() do { _IRR_DEBUG_BREAK_IF(1) __assume(false); } while(0) +#endif +#ifndef IRR_CODE_UNREACHABLE +#define IRR_CODE_UNREACHABLE() (void)0 +#endif + //! creates four CC codes used in Irrlicht for simple ids /** some compilers can create those by directly writing the code like 'code', but some generate warnings so we use this macro here */ diff --git a/irr/include/matrix4.h b/irr/include/matrix4.h index ed74dc9d2..40fb41e57 100644 --- a/irr/include/matrix4.h +++ b/irr/include/matrix4.h @@ -162,21 +162,12 @@ public: //! Returns true if the matrix is the identity matrix inline bool isIdentity() const; - //! Returns true if the matrix is orthogonal - inline bool isOrthogonal() const; - - //! Returns true if the matrix is the identity matrix - bool isIdentity_integer_base() const; - //! Set the translation of the current matrix. Will erase any previous values. CMatrix4 &setTranslation(const vector3d &translation); //! Gets the current translation vector3d getTranslation() const; - //! Set the inverse translation of the current matrix. Will erase any previous values. - CMatrix4 &setInverseTranslation(const vector3d &translation); - //! Make a rotation matrix from Euler angles. The 4th row and column are unmodified. //! NOTE: Rotation order is ZYX. This means that vectors are //! first rotated around the X, then the Y, and finally the Z axis. @@ -188,9 +179,7 @@ public: CMatrix4 &setRotationDegrees(const vector3d &rotation); //! Get the rotation, as set by setRotation() when you already know the scale used to create the matrix - /** NOTE: The scale needs to be the correct one used to create this matrix. - You can _not_ use the result of getScale(), but have to save your scale - variable in another place (like ISceneNode does). + /** NOTE: No scale value can be 0 or the result is undefined. NOTE: It does not necessarily return the *same* Euler angles as those set by setRotationDegrees(), but the rotation will be equivalent, i.e. will have the same result when used to rotate a vector or node. @@ -198,24 +187,18 @@ public: WARNING: There have been troubles with this function over the years and we may still have missed some corner cases. It's generally safer to keep the rotation and scale you used to create the matrix around and work with those. */ - core::vector3d getRotationDegrees(const vector3d &scale) const; + vector3d getRotationRadians(const vector3d &scale) const; //! Returns the rotation, as set by setRotation(). /** NOTE: You will have the same end-rotation as used in setRotation, but it might not use the same axis values. - NOTE: This only works correct if no other matrix operations have been done on the inner 3x3 matrix besides - setting rotation (so no scale/shear). Thought it (probably) works as long as scale doesn't flip handedness. + NOTE: This only works correctly for TRS matrix products where S is a positive, component-wise scaling (see setScale). NOTE: It does not necessarily return the *same* Euler angles as those set by setRotationDegrees(), - but the rotation will be equivalent, i.e. will have the same result when used to rotate a vector or node. + but the rotation will be equivalent, i.e. will have the same result when used to rotate a vector or node. */ - core::vector3d getRotationDegrees() const; + vector3d getRotationRadians() const; - //! Make an inverted rotation matrix from Euler angles. - /** The 4th row and column are unmodified. */ - inline CMatrix4 &setInverseRotationRadians(const vector3d &rotation); - - //! Make an inverted rotation matrix from Euler angles. - /** The 4th row and column are unmodified. */ - inline CMatrix4 &setInverseRotationDegrees(const vector3d &rotation); + //! Same as getRotationRadians, but returns degrees. + vector3d getRotationDegrees() const; //! Make a rotation matrix from angle and axis, assuming left handed rotation. /** The 4th row and column are unmodified. */ @@ -225,10 +208,10 @@ public: CMatrix4 &setScale(const vector3d &scale); //! Set Scale - CMatrix4 &setScale(const T scale) { return setScale(core::vector3d(scale, scale, scale)); } + CMatrix4 &setScale(const T scale) { return setScale(vector3d(scale, scale, scale)); } //! Get Scale - core::vector3d getScale() const; + vector3d getScale() const; //! Translate a vector by the inverse of the translation part of this matrix. void inverseTranslateVect(vector3df &vect) const; @@ -259,7 +242,7 @@ public: //! An alternate transform vector method, writing into an array of 4 floats /** This operation is performed as if the vector was 4d with the 4th component =1. NOTE: out[3] will be written to (4th vector component)*/ - void transformVect(T *out, const core::vector3df &in) const; + void transformVect(T *out, const vector3df &in) const; //! An alternate transform vector method, reading from and writing to an array of 3 floats /** This operation is performed as if the vector was 4d with the 4th component =1 @@ -274,13 +257,13 @@ public: void translateVect(vector3df &vect) const; //! Transforms a plane by this matrix - void transformPlane(core::plane3d &plane) const; + void transformPlane(plane3d &plane) const; //! Transforms a plane by this matrix - void transformPlane(const core::plane3d &in, core::plane3d &out) const; + void transformPlane(const plane3d &in, plane3d &out) const; //! Transforms a axis aligned bounding box - void transformBoxEx(core::aabbox3d &box) const; + void transformBoxEx(aabbox3d &box) const; //! Multiplies this matrix by a 1x4 matrix void multiplyWith1x4Matrix(T *matrix) const; @@ -338,16 +321,16 @@ public: \param plane: plane into which the geometry if flattened into \param point: value between 0 and 1, describing the light source. If this is 1, it is a point light, if it is 0, it is a directional light. */ - CMatrix4 &buildShadowMatrix(const core::vector3df &light, core::plane3df plane, f32 point = 1.0f); + CMatrix4 &buildShadowMatrix(const vector3df &light, plane3df plane, f32 point = 1.0f); //! Builds a matrix which transforms a normalized Device Coordinate to Device Coordinates. /** Used to scale <-1,-1><1,1> to viewport, for example from <-1,-1> <1,1> to the viewport <0,0><0,640> */ - CMatrix4 &buildNDCToDCMatrix(const core::rect &area, f32 zScale); + CMatrix4 &buildNDCToDCMatrix(const rect &area, f32 zScale); //! Creates a new matrix as interpolated matrix from two other ones. /** \param b: other matrix to interpolate with \param time: Must be a value between 0 and 1. */ - CMatrix4 interpolate(const core::CMatrix4 &b, f32 time) const; + CMatrix4 interpolate(const CMatrix4 &b, f32 time) const; //! Gets transposed matrix CMatrix4 getTransposed() const; @@ -359,13 +342,13 @@ public: /** \param from: vector to rotate from \param to: vector to rotate to */ - CMatrix4 &buildRotateFromTo(const core::vector3df &from, const core::vector3df &to); + CMatrix4 &buildRotateFromTo(const vector3df &from, const vector3df &to); //! Builds a combined matrix which translates to a center before rotation and translates from origin afterwards /** \param center Position to rotate around \param translate Translation applied after the rotation */ - void setRotationCenter(const core::vector3df ¢er, const core::vector3df &translate); + void setRotationCenter(const vector3df ¢er, const vector3df &translate); //! Builds a matrix which rotates a source vector to a look vector over an arbitrary axis /** \param camPos: viewer position in world coo @@ -374,11 +357,11 @@ public: \param axis: axis to rotate about \param from: source vector to rotate from */ - void buildAxisAlignedBillboard(const core::vector3df &camPos, - const core::vector3df ¢er, - const core::vector3df &translation, - const core::vector3df &axis, - const core::vector3df &from); + void buildAxisAlignedBillboard(const vector3df &camPos, + const vector3df ¢er, + const vector3df &translation, + const vector3df &axis, + const vector3df &from); /* construct 2D Texture transformations @@ -386,9 +369,9 @@ public: */ //! Set to a texture transformation matrix with the given parameters. CMatrix4 &buildTextureTransform(f32 rotateRad, - const core::vector2df &rotatecenter, - const core::vector2df &translate, - const core::vector2df &scale); + const vector2df &rotatecenter, + const vector2df &translate, + const vector2df &scale); //! Set texture transformation rotation /** Rotate about z axis, recenter at (0.5,0.5). @@ -439,9 +422,12 @@ public: CMatrix4 &setM(const T *data); //! Compare two matrices using the equal method - bool equals(const core::CMatrix4 &other, const T tolerance = (T)ROUNDING_ERROR_f64) const; + bool equals(const CMatrix4 &other, const T tolerance = (T)ROUNDING_ERROR_f64) const; private: + template + vector3d getRotation(const vector3d &scale) const; + //! Matrix data, stored in row-major order T M[16]; }; @@ -645,21 +631,8 @@ inline CMatrix4 &CMatrix4::operator*=(const T &scalar) template inline CMatrix4 &CMatrix4::operator*=(const CMatrix4 &other) { -#if defined(USE_MATRIX_TEST) - // do checks on your own in order to avoid copy creation - if (!other.isIdentity()) { - if (this->isIdentity()) { - return (*this = other); - } else { - CMatrix4 temp(*this); - return setbyproduct_nocheck(temp, other); - } - } - return *this; -#else CMatrix4 temp(*this); return setbyproduct_nocheck(temp, other); -#endif } //! multiply by another matrix @@ -699,30 +672,13 @@ inline CMatrix4 &CMatrix4::setbyproduct_nocheck(const CMatrix4 &other_a template inline CMatrix4 &CMatrix4::setbyproduct(const CMatrix4 &other_a, const CMatrix4 &other_b) { -#if defined(USE_MATRIX_TEST) - if (other_a.isIdentity()) - return (*this = other_b); - else if (other_b.isIdentity()) - return (*this = other_a); - else - return setbyproduct_nocheck(other_a, other_b); -#else return setbyproduct_nocheck(other_a, other_b); -#endif } //! multiply by another matrix template inline CMatrix4 CMatrix4::operator*(const CMatrix4 &m2) const { -#if defined(USE_MATRIX_TEST) - // Testing purpose.. - if (this->isIdentity()) - return m2; - if (m2.isIdentity()) - return *this; -#endif - CMatrix4 m3(EM4CONST_NOTHING); const T *m1 = M; @@ -764,15 +720,6 @@ inline CMatrix4 &CMatrix4::setTranslation(const vector3d &translation) return *this; } -template -inline CMatrix4 &CMatrix4::setInverseTranslation(const vector3d &translation) -{ - M[12] = -translation.X; - M[13] = -translation.Y; - M[14] = -translation.Z; - return *this; -} - template inline CMatrix4 &CMatrix4::setScale(const vector3d &scale) { @@ -782,7 +729,7 @@ inline CMatrix4 &CMatrix4::setScale(const vector3d &scale) return *this; } -//! Returns the absolute values of the scales of the matrix. +//! Returns the absolute values of the scales of the 3x3 submatrix. /** Note: You only get back original values if the matrix only set the scale. Otherwise the result is a scale you can use to normalize the matrix axes, @@ -791,31 +738,21 @@ but it's usually no longer what you did set with setScale. template inline vector3d CMatrix4::getScale() const { - // See http://www.robertblum.com/articles/2005/02/14/decomposing-matrices - - // Deal with the 0 rotation case first - // Prior to Irrlicht 1.6, we always returned this value. - if (core::iszero(M[1]) && core::iszero(M[2]) && - core::iszero(M[4]) && core::iszero(M[6]) && - core::iszero(M[8]) && core::iszero(M[9])) - return vector3d(M[0], M[5], M[10]); - - // We have to do the full calculation. - return vector3d(sqrtf(M[0] * M[0] + M[1] * M[1] + M[2] * M[2]), - sqrtf(M[4] * M[4] + M[5] * M[5] + M[6] * M[6]), - sqrtf(M[8] * M[8] + M[9] * M[9] + M[10] * M[10])); + auto row_vector_length = [this](int col) { + int i = 4 * col; + return sqrtf(M[i] * M[i] + M[i+1] * M[i+1] + M[i+2] * M[i+2]); + }; + return { + row_vector_length(0), + row_vector_length(1), + row_vector_length(2), + }; } template inline CMatrix4 &CMatrix4::setRotationDegrees(const vector3d &rotation) { - return setRotationRadians(rotation * core::DEGTORAD); -} - -template -inline CMatrix4 &CMatrix4::setInverseRotationDegrees(const vector3d &rotation) -{ - return setInverseRotationRadians(rotation * core::DEGTORAD); + return setRotationRadians(rotation * DEGTORAD); } template @@ -845,105 +782,60 @@ inline CMatrix4 &CMatrix4::setRotationRadians(const vector3d &rotation) return *this; } -//! Returns a rotation which (mostly) works in combination with the given scale -/** -This code was originally written by by Chev (assuming no scaling back then, -we can be blamed for all problems added by regarding scale) -*/ template -inline core::vector3d CMatrix4::getRotationDegrees(const vector3d &scale_) const +template +inline vector3d CMatrix4::getRotation(const vector3d &scale_) const { + // Based on code by Chev const CMatrix4 &mat = *this; - const core::vector3d scale(core::iszero(scale_.X) ? FLT_MAX : scale_.X, core::iszero(scale_.Y) ? FLT_MAX : scale_.Y, core::iszero(scale_.Z) ? FLT_MAX : scale_.Z); - const core::vector3d invScale(core::reciprocal(scale.X), core::reciprocal(scale.Y), core::reciprocal(scale.Z)); + const vector3d scale(iszero(scale_.X) ? FLT_MAX : scale_.X, iszero(scale_.Y) ? FLT_MAX : scale_.Y, iszero(scale_.Z) ? FLT_MAX : scale_.Z); + const vector3d invScale(reciprocal(scale.X), reciprocal(scale.Y), reciprocal(scale.Z)); - f64 Y = -asin(core::clamp(mat[2] * invScale.X, -1.0, 1.0)); - const f64 C = cos(Y); - Y *= RADTODEG64; + f64 a = clamp(mat[2] * invScale.X, -1.0, 1.0); + f64 Y = -asin(a); f64 rotx, roty, X, Z; - if (!core::iszero((T)C)) { - const f64 invC = core::reciprocal(C); - rotx = mat[10] * invC * invScale.Z; - roty = mat[6] * invC * invScale.Y; - X = atan2(roty, rotx) * RADTODEG64; - rotx = mat[0] * invC * invScale.X; - roty = mat[1] * invC * invScale.X; - Z = atan2(roty, rotx) * RADTODEG64; + if (!core::equals(std::abs(a), 1.0)) { + // abs(a) = abs(sin(Y)) = 1 <=> cos(Y) = 0 + rotx = mat[10] * invScale.Z; + roty = mat[6] * invScale.Y; + X = atan2(roty, rotx); + rotx = mat[0] * invScale.X; + roty = mat[1] * invScale.X; + Z = atan2(roty, rotx); } else { X = 0.0; - rotx = mat[5] * invScale.Y; - roty = -mat[4] * invScale.Y; - Z = atan2(roty, rotx) * RADTODEG64; + rotx = mat[5]; + roty = -mat[4]; + Z = atan2(roty, rotx); } - // fix values that get below zero - if (X < 0.0) - X += 360.0; - if (Y < 0.0) - Y += 360.0; - if (Z < 0.0) - Z += 360.0; + if (degrees) { + X *= core::RADTODEG64; + Y *= core::RADTODEG64; + Z *= core::RADTODEG64; + } return vector3d((T)X, (T)Y, (T)Z); } -//! Returns a rotation that is equivalent to that set by setRotationDegrees(). template -inline core::vector3d CMatrix4::getRotationDegrees() const +inline vector3d CMatrix4::getRotationRadians(const vector3d &scale) const { - // Note: Using getScale() here make it look like it could do matrix decomposition. - // It can't! It works (or should work) as long as rotation doesn't flip the handedness - // aka scale swapping 1 or 3 axes. (I think we could catch that as well by comparing - // crossproduct of first 2 axes to direction of third axis, but TODO) - // And maybe it should also offer the solution for the simple calculation - // without regarding scaling as Irrlicht did before 1.7 - core::vector3d scale(getScale()); - - // We assume the matrix uses rotations instead of negative scaling 2 axes. - // Otherwise it fails even for some simple cases, like rotating around - // 2 axes by 180° which getScale thinks is a negative scaling. - if (scale.Y < 0 && scale.Z < 0) { - scale.Y = -scale.Y; - scale.Z = -scale.Z; - } else if (scale.X < 0 && scale.Z < 0) { - scale.X = -scale.X; - scale.Z = -scale.Z; - } else if (scale.X < 0 && scale.Y < 0) { - scale.X = -scale.X; - scale.Y = -scale.Y; - } - - return getRotationDegrees(scale); + return getRotation(scale); } -//! Sets matrix to rotation matrix of inverse angles given as parameters template -inline CMatrix4 &CMatrix4::setInverseRotationRadians(const vector3d &rotation) +inline vector3d CMatrix4::getRotationRadians() const { - f64 cPitch = cos(rotation.X); - f64 sPitch = sin(rotation.X); - f64 cYaw = cos(rotation.Y); - f64 sYaw = sin(rotation.Y); - f64 cRoll = cos(rotation.Z); - f64 sRoll = sin(rotation.Z); + return getRotationRadians(getScale()); +} - M[0] = (T)(cYaw * cRoll); - M[4] = (T)(cYaw * sRoll); - M[8] = (T)(-sYaw); - - f64 sPitch_sYaw = sPitch * sYaw; - f64 cPitch_sYaw = cPitch * sYaw; - - M[1] = (T)(sPitch_sYaw * cRoll - cPitch * sRoll); - M[5] = (T)(sPitch_sYaw * sRoll + cPitch * cRoll); - M[9] = (T)(sPitch * cYaw); - - M[2] = (T)(cPitch_sYaw * cRoll + sPitch * sRoll); - M[6] = (T)(cPitch_sYaw * sRoll - sPitch * cRoll); - M[10] = (T)(cPitch * cYaw); - return *this; +template +inline vector3d CMatrix4::getRotationDegrees() const +{ + return getRotation(getScale()); } //! Sets matrix to rotation matrix defined by axis and angle, assuming LH rotation @@ -977,8 +869,6 @@ inline CMatrix4 &CMatrix4::setRotationAxisRadians(const T &angle, const ve return *this; } -/*! - */ template inline CMatrix4 &CMatrix4::makeIdentity() { @@ -1020,77 +910,6 @@ inline bool CMatrix4::isIdentity() const return true; } -/* Check orthogonality of matrix. */ -template -inline bool CMatrix4::isOrthogonal() const -{ - T dp = M[0] * M[4] + M[1] * M[5] + M[2] * M[6] + M[3] * M[7]; - if (!iszero(dp)) - return false; - dp = M[0] * M[8] + M[1] * M[9] + M[2] * M[10] + M[3] * M[11]; - if (!iszero(dp)) - return false; - dp = M[0] * M[12] + M[1] * M[13] + M[2] * M[14] + M[3] * M[15]; - if (!iszero(dp)) - return false; - dp = M[4] * M[8] + M[5] * M[9] + M[6] * M[10] + M[7] * M[11]; - if (!iszero(dp)) - return false; - dp = M[4] * M[12] + M[5] * M[13] + M[6] * M[14] + M[7] * M[15]; - if (!iszero(dp)) - return false; - dp = M[8] * M[12] + M[9] * M[13] + M[10] * M[14] + M[11] * M[15]; - return (iszero(dp)); -} - -/* - doesn't solve floating range problems.. - but takes care on +/- 0 on translation because we are changing it.. - reducing floating point branches - but it needs the floats in memory.. -*/ -template -inline bool CMatrix4::isIdentity_integer_base() const -{ - if (IR(M[0]) != F32_VALUE_1) - return false; - if (IR(M[1]) != 0) - return false; - if (IR(M[2]) != 0) - return false; - if (IR(M[3]) != 0) - return false; - - if (IR(M[4]) != 0) - return false; - if (IR(M[5]) != F32_VALUE_1) - return false; - if (IR(M[6]) != 0) - return false; - if (IR(M[7]) != 0) - return false; - - if (IR(M[8]) != 0) - return false; - if (IR(M[9]) != 0) - return false; - if (IR(M[10]) != F32_VALUE_1) - return false; - if (IR(M[11]) != 0) - return false; - - if (IR(M[12]) != 0) - return false; - if (IR(M[13]) != 0) - return false; - if (IR(M[13]) != 0) - return false; - if (IR(M[15]) != F32_VALUE_1) - return false; - - return true; -} - template inline vector3d CMatrix4::rotateAndScaleVect(const vector3d &v) const { @@ -1122,7 +941,7 @@ inline vector3d CMatrix4::transformVect(const vector3d &v) const } template -inline void CMatrix4::transformVect(T *out, const core::vector3df &in) const +inline void CMatrix4::transformVect(T *out, const vector3df &in) const { out[0] = in.X * M[0] + in.Y * M[4] + in.Z * M[8] + M[12]; out[1] = in.X * M[1] + in.Y * M[5] + in.Z * M[9] + M[13]; @@ -1149,7 +968,7 @@ inline void CMatrix4::transformVec4(T *out, const T *in) const //! Transforms a plane by this matrix template -inline void CMatrix4::transformPlane(core::plane3d &plane) const +inline void CMatrix4::transformPlane(plane3d &plane) const { vector3df member; // Transform the plane member point, i.e. rotate, translate and scale it. @@ -1163,7 +982,7 @@ inline void CMatrix4::transformPlane(core::plane3d &plane) const //! Transforms a plane by this matrix template -inline void CMatrix4::transformPlane(const core::plane3d &in, core::plane3d &out) const +inline void CMatrix4::transformPlane(const plane3d &in, plane3d &out) const { out = in; transformPlane(out); @@ -1171,13 +990,8 @@ inline void CMatrix4::transformPlane(const core::plane3d &in, core::plan //! Transforms a axis aligned bounding box more accurately than transformBox() template -inline void CMatrix4::transformBoxEx(core::aabbox3d &box) const +inline void CMatrix4::transformBoxEx(aabbox3d &box) const { -#if defined(USE_MATRIX_TEST) - if (isIdentity()) - return; -#endif - const f32 Amin[3] = {box.MinEdge.X, box.MinEdge.Y, box.MinEdge.Z}; const f32 Amax[3] = {box.MaxEdge.X, box.MaxEdge.Y, box.MaxEdge.Z}; @@ -1260,12 +1074,6 @@ inline bool CMatrix4::getInverse(CMatrix4 &out) const /// The inverse is calculated using Cramers rule. /// If no inverse exists then 'false' is returned. -#if defined(USE_MATRIX_TEST) - if (this->isIdentity()) { - out = *this; - return true; - } -#endif const CMatrix4 &m = *this; f32 d = (m[0] * m[5] - m[1] * m[4]) * (m[10] * m[15] - m[11] * m[14]) - @@ -1275,10 +1083,10 @@ inline bool CMatrix4::getInverse(CMatrix4 &out) const (m[1] * m[7] - m[3] * m[5]) * (m[8] * m[14] - m[10] * m[12]) + (m[2] * m[7] - m[3] * m[6]) * (m[8] * m[13] - m[9] * m[12]); - if (core::iszero(d, FLT_MIN)) + if (iszero(d, FLT_MIN)) return false; - d = core::reciprocal(d); + d = reciprocal(d); out[0] = d * (m[5] * (m[10] * m[15] - m[11] * m[14]) + m[6] * (m[11] * m[13] - m[9] * m[15]) + @@ -1660,7 +1468,7 @@ inline CMatrix4 &CMatrix4::buildProjectionMatrixPerspectiveLH( // Builds a matrix that flattens geometry into a plane. template -inline CMatrix4 &CMatrix4::buildShadowMatrix(const core::vector3df &light, core::plane3df plane, f32 point) +inline CMatrix4 &CMatrix4::buildShadowMatrix(const vector3df &light, plane3df plane, f32 point) { plane.Normal.normalize(); const f32 d = plane.Normal.dotProduct(light); @@ -1766,7 +1574,7 @@ inline CMatrix4 &CMatrix4::buildCameraLookAtMatrixRH( // creates a new matrix as interpolated matrix from this and the passed one. template -inline CMatrix4 CMatrix4::interpolate(const core::CMatrix4 &b, f32 time) const +inline CMatrix4 CMatrix4::interpolate(const CMatrix4 &b, f32 time) const { CMatrix4 mat(EM4CONST_NOTHING); @@ -1815,7 +1623,7 @@ inline void CMatrix4::getTransposed(CMatrix4 &o) const // used to scale <-1,-1><1,1> to viewport template -inline CMatrix4 &CMatrix4::buildNDCToDCMatrix(const core::rect &viewport, f32 zScale) +inline CMatrix4 &CMatrix4::buildNDCToDCMatrix(const rect &viewport, f32 zScale) { const f32 scaleX = (viewport.getWidth() - 0.75f) * 0.5f; const f32 scaleY = -(viewport.getHeight() - 0.75f) * 0.5f; @@ -1826,7 +1634,7 @@ inline CMatrix4 &CMatrix4::buildNDCToDCMatrix(const core::rect &viewp makeIdentity(); M[12] = (T)dx; M[13] = (T)dy; - return setScale(core::vector3d((T)scaleX, (T)scaleY, (T)zScale)); + return setScale(vector3d((T)scaleX, (T)scaleY, (T)zScale)); } //! Builds a matrix that rotates from one vector to another @@ -1836,25 +1644,25 @@ inline CMatrix4 &CMatrix4::buildNDCToDCMatrix(const core::rect &viewp http://www.euclideanspace.com/maths/geometry/rotations/conversions/angleToMatrix/index.htm */ template -inline CMatrix4 &CMatrix4::buildRotateFromTo(const core::vector3df &from, const core::vector3df &to) +inline CMatrix4 &CMatrix4::buildRotateFromTo(const vector3df &from, const vector3df &to) { // unit vectors - core::vector3df f(from); - core::vector3df t(to); + vector3df f(from); + vector3df t(to); f.normalize(); t.normalize(); // axis multiplication by sin - core::vector3df vs(t.crossProduct(f)); + vector3df vs(t.crossProduct(f)); // axis of rotation - core::vector3df v(vs); + vector3df v(vs); v.normalize(); // cosine angle T ca = f.dotProduct(t); - core::vector3df vt(v * (1 - ca)); + vector3df vt(v * (1 - ca)); M[0] = vt.X * v.X + ca; M[5] = vt.Y * v.Y + ca; @@ -1893,29 +1701,29 @@ inline CMatrix4 &CMatrix4::buildRotateFromTo(const core::vector3df &from, */ template inline void CMatrix4::buildAxisAlignedBillboard( - const core::vector3df &camPos, - const core::vector3df ¢er, - const core::vector3df &translation, - const core::vector3df &axis, - const core::vector3df &from) + const vector3df &camPos, + const vector3df ¢er, + const vector3df &translation, + const vector3df &axis, + const vector3df &from) { // axis of rotation - core::vector3df up = axis; + vector3df up = axis; up.normalize(); - const core::vector3df forward = (camPos - center).normalize(); - const core::vector3df right = up.crossProduct(forward).normalize(); + const vector3df forward = (camPos - center).normalize(); + const vector3df right = up.crossProduct(forward).normalize(); // correct look vector - const core::vector3df look = right.crossProduct(up); + const vector3df look = right.crossProduct(up); // rotate from to // axis multiplication by sin - const core::vector3df vs = look.crossProduct(from); + const vector3df vs = look.crossProduct(from); // cosine angle const f32 ca = from.dotProduct(look); - core::vector3df vt(up * (1.f - ca)); + vector3df vt(up * (1.f - ca)); M[0] = static_cast(vt.X * up.X + ca); M[5] = static_cast(vt.Y * up.Y + ca); @@ -1942,7 +1750,7 @@ inline void CMatrix4::buildAxisAlignedBillboard( //! Builds a combined matrix which translate to a center before rotation and translate afterward template -inline void CMatrix4::setRotationCenter(const core::vector3df ¢er, const core::vector3df &translation) +inline void CMatrix4::setRotationCenter(const vector3df ¢er, const vector3df &translation) { M[12] = -M[0] * center.X - M[4] * center.Y - M[8] * center.Z + (center.X - translation.X); M[13] = -M[1] * center.X - M[5] * center.Y - M[9] * center.Z + (center.Y - translation.Y); @@ -1963,9 +1771,9 @@ inline void CMatrix4::setRotationCenter(const core::vector3df ¢er, const template inline CMatrix4 &CMatrix4::buildTextureTransform(f32 rotateRad, - const core::vector2df &rotatecenter, - const core::vector2df &translate, - const core::vector2df &scale) + const vector2df &rotatecenter, + const vector2df &translate, + const vector2df &scale) { const f32 c = cosf(rotateRad); const f32 s = sinf(rotateRad); @@ -2070,7 +1878,7 @@ inline CMatrix4 &CMatrix4::setM(const T *data) //! Compare two matrices using the equal method template -inline bool CMatrix4::equals(const core::CMatrix4 &other, const T tolerance) const +inline bool CMatrix4::equals(const CMatrix4 &other, const T tolerance) const { for (s32 i = 0; i < 16; ++i) if (!core::equals(M[i], other.M[i], tolerance)) diff --git a/irr/include/vector2d.h b/irr/include/vector2d.h index 182965295..63be1f246 100644 --- a/irr/include/vector2d.h +++ b/irr/include/vector2d.h @@ -131,16 +131,20 @@ public: T &operator[](u32 index) { - _IRR_DEBUG_BREAK_IF(index > 1) // access violation - - return *(&X + index); + switch (index) { + case 0: return X; + case 1: return Y; + default: IRR_CODE_UNREACHABLE(); + } } const T &operator[](u32 index) const { - _IRR_DEBUG_BREAK_IF(index > 1) // access violation - - return *(&X + index); + switch (index) { + case 0: return X; + case 1: return Y; + default: IRR_CODE_UNREACHABLE(); + } } //! sort in order X, Y. diff --git a/irr/include/vector3d.h b/irr/include/vector3d.h index a69f17e16..780686c7a 100644 --- a/irr/include/vector3d.h +++ b/irr/include/vector3d.h @@ -7,6 +7,7 @@ #include "irrMath.h" #include +#include namespace irr { @@ -32,6 +33,15 @@ public: //! Constructor with the same value for all elements explicit constexpr vector3d(T n) : X(n), Y(n), Z(n) {} + //! Array - vector conversion + constexpr vector3d(const std::array &arr) : + X(arr[0]), Y(arr[1]), Z(arr[2]) {} + + template + constexpr static vector3d from(const vector3d &other) + { + return {static_cast(other.X), static_cast(other.Y), static_cast(other.Z)}; + } // operators @@ -107,16 +117,22 @@ public: T &operator[](u32 index) { - _IRR_DEBUG_BREAK_IF(index > 2) // access violation - - return *(&X + index); + switch (index) { + case 0: return X; + case 1: return Y; + case 2: return Z; + default: IRR_CODE_UNREACHABLE(); + } } const T &operator[](u32 index) const { - _IRR_DEBUG_BREAK_IF(index > 2) // access violation - - return *(&X + index); + switch (index) { + case 0: return X; + case 1: return Y; + case 2: return Z; + default: IRR_CODE_UNREACHABLE(); + } } //! sort in order X, Y, Z. @@ -181,6 +197,8 @@ public: return *this; } + std::array toArray() const { return {X, Y, Z}; } + //! Get length of the vector. T getLength() const { return core::squareroot(X * X + Y * Y + Z * Z); } @@ -452,26 +470,6 @@ public: forwards.Z * pseudoMatrix[8])); } - //! Fills an array of 4 values with the vector data (usually floats). - /** Useful for setting in shader constants for example. The fourth value - will always be 0. */ - void getAs4Values(T *array) const - { - array[0] = X; - array[1] = Y; - array[2] = Z; - array[3] = 0; - } - - //! Fills an array of 3 values with the vector data (usually floats). - /** Useful for setting in shader constants for example.*/ - void getAs3Values(T *array) const - { - array[0] = X; - array[1] = Y; - array[2] = Z; - } - //! X coordinate of the vector T X; diff --git a/irr/src/CAnimatedMeshSceneNode.cpp b/irr/src/CAnimatedMeshSceneNode.cpp index 6facfcd06..09d83038b 100644 --- a/irr/src/CAnimatedMeshSceneNode.cpp +++ b/irr/src/CAnimatedMeshSceneNode.cpp @@ -619,7 +619,7 @@ void CAnimatedMeshSceneNode::animateJoints(bool CalculateAbsolutePositions) // Code is slow, needs to be fixed up - const core::quaternion RotationStart(PretransitingSave[n].getRotationDegrees() * core::DEGTORAD); + const core::quaternion RotationStart(PretransitingSave[n].getRotationRadians()); const core::quaternion RotationEnd(JointChildSceneNodes[n]->getRotation() * core::DEGTORAD); core::quaternion QRotation; diff --git a/irr/src/CGLTFMeshFileLoader.cpp b/irr/src/CGLTFMeshFileLoader.cpp index 4e653fbf8..b32ba5692 100644 --- a/irr/src/CGLTFMeshFileLoader.cpp +++ b/irr/src/CGLTFMeshFileLoader.cpp @@ -546,16 +546,6 @@ void SelfType::MeshExtractor::deferAddMesh( }); } -// Base transformation between left & right handed coordinate systems. -// This just inverts the Z axis. -static const core::matrix4 leftToRight = core::matrix4( - 1, 0, 0, 0, - 0, 1, 0, 0, - 0, 0, -1, 0, - 0, 0, 0, 1 -); -static const core::matrix4 rightToLeft = leftToRight; - static core::matrix4 loadTransform(const tiniergltf::Node::Matrix &m, SkinnedMesh::SJoint *joint) { // Note: Under the hood, this casts these doubles to floats. @@ -570,14 +560,7 @@ static core::matrix4 loadTransform(const tiniergltf::Node::Matrix &m, SkinnedMes auto scale = mat.getScale(); joint->Animatedscale = scale; - core::matrix4 inverseScale; - inverseScale.setScale(core::vector3df( - scale.X == 0 ? 0 : 1 / scale.X, - scale.Y == 0 ? 0 : 1 / scale.Y, - scale.Z == 0 ? 0 : 1 / scale.Z)); - - core::matrix4 axisNormalizedMat = inverseScale * mat; - joint->Animatedrotation = axisNormalizedMat.getRotationDegrees(); + joint->Animatedrotation = mat.getRotationRadians(scale); // Invert the rotation because it is applied using `getMatrix_transposed`, // which again inverts. joint->Animatedrotation.makeInverse(); diff --git a/irr/src/CGUIFont.cpp b/irr/src/CGUIFont.cpp index 951304476..9d8b1d488 100644 --- a/irr/src/CGUIFont.cpp +++ b/irr/src/CGUIFont.cpp @@ -71,18 +71,16 @@ void CGUIFont::setMaxHeight() void CGUIFont::pushTextureCreationFlags(bool (&flags)[3]) { - flags[0] = Driver->getTextureCreationFlag(video::ETCF_ALLOW_NON_POWER_2); + flags[0] = false; flags[1] = Driver->getTextureCreationFlag(video::ETCF_CREATE_MIP_MAPS); flags[2] = Driver->getTextureCreationFlag(video::ETCF_ALLOW_MEMORY_COPY); - Driver->setTextureCreationFlag(video::ETCF_ALLOW_NON_POWER_2, true); Driver->setTextureCreationFlag(video::ETCF_CREATE_MIP_MAPS, false); Driver->setTextureCreationFlag(video::ETCF_ALLOW_MEMORY_COPY, true); } void CGUIFont::popTextureCreationFlags(const bool (&flags)[3]) { - Driver->setTextureCreationFlag(video::ETCF_ALLOW_NON_POWER_2, flags[0]); Driver->setTextureCreationFlag(video::ETCF_CREATE_MIP_MAPS, flags[1]); Driver->setTextureCreationFlag(video::ETCF_ALLOW_MEMORY_COPY, flags[2]); } diff --git a/irr/src/CImage.cpp b/irr/src/CImage.cpp index 0c6d705f3..29c115c8a 100644 --- a/irr/src/CImage.cpp +++ b/irr/src/CImage.cpp @@ -20,7 +20,10 @@ CImage::CImage(ECOLOR_FORMAT format, const core::dimension2d &size, void *d IImage(format, size, deleteMemory) { if (ownForeignMemory) { - Data = (u8 *)data; + _IRR_DEBUG_BREAK_IF(!data) + Data = reinterpret_cast(data); + if (reinterpret_cast(data) % sizeof(u32) != 0) + os::Printer::log("CImage created with foreign memory that's not aligned", ELL_WARNING); } else { const u32 dataSize = getDataSizeFromFormat(Format, Size.Width, Size.Height); const u32 allocSize = align_next(dataSize, 16); @@ -360,7 +363,7 @@ inline SColor CImage::getPixelBox(s32 x, s32 y, s32 fx, s32 fy, s32 bias) const } } - s32 sdiv = s32_log2_s32(fx * fy); + s32 sdiv = core::u32_log2(fx * fy); a = core::s32_clamp((a >> sdiv) + bias, 0, 255); r = core::s32_clamp((r >> sdiv) + bias, 0, 255); diff --git a/irr/src/CIrrDeviceSDL.cpp b/irr/src/CIrrDeviceSDL.cpp index f7974202f..536eda96e 100644 --- a/irr/src/CIrrDeviceSDL.cpp +++ b/irr/src/CIrrDeviceSDL.cpp @@ -27,6 +27,21 @@ #include "CSDLManager.h" +// Since SDL doesn't have mouse keys as keycodes we need to fall back to EKEY_CODE in some cases. +static inline bool is_fake_key(irr::EKEY_CODE key) { + switch (key) { + case irr::KEY_LBUTTON: + case irr::KEY_MBUTTON: + case irr::KEY_RBUTTON: + case irr::KEY_XBUTTON1: + case irr::KEY_XBUTTON2: + return true; + + default: + return false; + } +} + static int SDLDeviceInstances = 0; namespace irr @@ -220,6 +235,35 @@ int CIrrDeviceSDL::findCharToPassToIrrlicht(uint32_t sdlKey, EKEY_CODE irrlichtK } } +std::variant CIrrDeviceSDL::getScancodeFromKey(const Keycode &key) const +{ + u32 keynum = 0; + if (const auto *keycode = std::get_if(&key)) { + // Fake keys (e.g. mouse buttons): use EKEY_CODE since there is no corresponding scancode. + if (is_fake_key(*keycode)) + return *keycode; + // Try to convert the EKEY_CODE to a SDL scancode. + for (const auto &entry: KeyMap) { + if (entry.second == *keycode) { + keynum = entry.first; + break; + } + } + } else { + keynum = std::get(key); + } + return (u32)SDL_GetScancodeFromKey(keynum); +} + +Keycode CIrrDeviceSDL::getKeyFromScancode(const u32 scancode) const +{ + auto keycode = SDL_GetKeyFromScancode((SDL_Scancode)scancode); + const auto &keyentry = KeyMap.find(keycode); + auto irrcode = keyentry != KeyMap.end() ? keyentry->second : KEY_UNKNOWN; + auto keychar = findCharToPassToIrrlicht(keycode, irrcode, false); + return Keycode(irrcode, keychar); +} + void CIrrDeviceSDL::resetReceiveTextInputEvents() { gui::IGUIElement *elem = GUIEnvironment->getFocus(); @@ -256,7 +300,7 @@ CIrrDeviceSDL::CIrrDeviceSDL(const SIrrlichtCreationParameters ¶m) : if (++SDLDeviceInstances == 1) { #ifdef __ANDROID__ // Blocking on pause causes problems with multiplayer. - // See https://github.com/minetest/minetest/issues/10842. + // see SDL_SetHint(SDL_HINT_ANDROID_BLOCK_ON_PAUSE, "0"); SDL_SetHint(SDL_HINT_ANDROID_BLOCK_ON_PAUSE_PAUSEAUDIO, "0"); @@ -270,7 +314,7 @@ CIrrDeviceSDL::CIrrDeviceSDL(const SIrrlichtCreationParameters ¶m) : SDL_SetHint(SDL_HINT_NO_SIGNAL_HANDLERS, "1"); // Disabling the compositor is not a good idea in windowed mode. - // See https://github.com/minetest/minetest/issues/14596 + // see SDL_SetHint(SDL_HINT_VIDEO_X11_NET_WM_BYPASS_COMPOSITOR, "0"); #if defined(_IRR_COMPILE_WITH_JOYSTICK_EVENTS_) @@ -308,8 +352,6 @@ CIrrDeviceSDL::CIrrDeviceSDL(const SIrrlichtCreationParameters ¶m) : if (SDL_Init(flags) < 0) { os::Printer::log("Unable to initialize SDL", SDL_GetError(), ELL_ERROR); Close = true; - } else { - os::Printer::log("SDL initialized", ELL_INFORMATION); } } @@ -324,21 +366,27 @@ CIrrDeviceSDL::CIrrDeviceSDL(const SIrrlichtCreationParameters ¶m) : } } - SDL_VERSION(&Info.version); + core::stringc sdlver = "SDL "; + { + SDL_version v{}; + SDL_GetVersion(&v); + sdlver += v.major; + sdlver += "."; + sdlver += v.minor; + sdlver += "."; + sdlver += v.patch; + // the SDL team seems to intentionally number sdl2-compat this way: + // + if (v.patch >= 50) + sdlver += " (compat)"; -#ifndef _IRR_EMSCRIPTEN_PLATFORM_ - SDL_GetWindowWMInfo(Window, &Info); -#endif //_IRR_EMSCRIPTEN_PLATFORM_ - core::stringc sdlversion = "SDL Version "; - sdlversion += Info.version.major; - sdlversion += "."; - sdlversion += Info.version.minor; - sdlversion += "."; - sdlversion += Info.version.patch; + sdlver += " on "; + sdlver += SDL_GetPlatform(); + } - Operator = new COSOperator(sdlversion); + Operator = new COSOperator(sdlver); if (SDLDeviceInstances == 1) { - os::Printer::log(sdlversion.c_str(), ELL_INFORMATION); + os::Printer::log(sdlver.c_str(), ELL_INFORMATION); } // create cursor control @@ -706,6 +754,10 @@ bool CIrrDeviceSDL::run() irrevent.MouseInput.X = MouseX; irrevent.MouseInput.Y = MouseY; + // wheel y can be 0 if scrolling sideways + if (irrevent.MouseInput.Wheel == 0.0f) + break; + postEventFromUser(irrevent); break; } @@ -814,18 +866,20 @@ bool CIrrDeviceSDL::run() case SDL_KEYDOWN: case SDL_KEYUP: { - SKeyMap mp; - mp.SDLKey = SDL_event.key.keysym.sym; - s32 idx = KeyMap.binary_search(mp); + auto keysym = SDL_event.key.keysym.sym; + auto scancode = SDL_event.key.keysym.scancode; - EKEY_CODE key; - if (idx == -1) - key = (EKEY_CODE)0; - else - key = (EKEY_CODE)KeyMap[idx].Win32Key; + // Treat AC_BACK as the Escape key + if (scancode == SDL_SCANCODE_AC_BACK) { + scancode = SDL_SCANCODE_ESCAPE; + keysym = SDLK_ESCAPE; + } - if (key == (EKEY_CODE)0) - os::Printer::log("keycode not mapped", core::stringc(mp.SDLKey), ELL_DEBUG); + const auto &entry = KeyMap.find(keysym); + auto key = entry == KeyMap.end() ? KEY_UNKNOWN : entry->second; + + if (!Keycode::isValid(key)) + os::Printer::log("keycode not mapped", core::stringc(keysym), ELL_DEBUG); // Make sure to only input special characters if something is in focus, as SDL_TEXTINPUT handles normal unicode already if (SDL_IsTextInputActive() && !keyIsKnownSpecial(key) && (SDL_event.key.keysym.mod & KMOD_CTRL) == 0) @@ -836,8 +890,10 @@ bool CIrrDeviceSDL::run() irrevent.KeyInput.PressedDown = (SDL_event.type == SDL_KEYDOWN); irrevent.KeyInput.Shift = (SDL_event.key.keysym.mod & KMOD_SHIFT) != 0; irrevent.KeyInput.Control = (SDL_event.key.keysym.mod & KMOD_CTRL) != 0; - irrevent.KeyInput.Char = findCharToPassToIrrlicht(mp.SDLKey, key, + irrevent.KeyInput.Char = findCharToPassToIrrlicht(keysym, key, (SDL_event.key.keysym.mod & KMOD_NUM) != 0); + irrevent.KeyInput.SystemKeyCode = scancode; + postEventFromUser(irrevent); } break; @@ -1302,142 +1358,135 @@ void CIrrDeviceSDL::createKeyMap() // the lookuptable, but I'll leave it like that until // I find a better version. - KeyMap.reallocate(105); - // buttons missing - // Android back button = ESC - KeyMap.push_back(SKeyMap(SDLK_AC_BACK, KEY_ESCAPE)); - - KeyMap.push_back(SKeyMap(SDLK_BACKSPACE, KEY_BACK)); - KeyMap.push_back(SKeyMap(SDLK_TAB, KEY_TAB)); - KeyMap.push_back(SKeyMap(SDLK_CLEAR, KEY_CLEAR)); - KeyMap.push_back(SKeyMap(SDLK_RETURN, KEY_RETURN)); + KeyMap.emplace(SDLK_BACKSPACE, KEY_BACK); + KeyMap.emplace(SDLK_TAB, KEY_TAB); + KeyMap.emplace(SDLK_CLEAR, KEY_CLEAR); + KeyMap.emplace(SDLK_RETURN, KEY_RETURN); // combined modifiers missing - KeyMap.push_back(SKeyMap(SDLK_PAUSE, KEY_PAUSE)); - KeyMap.push_back(SKeyMap(SDLK_CAPSLOCK, KEY_CAPITAL)); + KeyMap.emplace(SDLK_PAUSE, KEY_PAUSE); + KeyMap.emplace(SDLK_CAPSLOCK, KEY_CAPITAL); // asian letter keys missing - KeyMap.push_back(SKeyMap(SDLK_ESCAPE, KEY_ESCAPE)); + KeyMap.emplace(SDLK_ESCAPE, KEY_ESCAPE); // asian letter keys missing - KeyMap.push_back(SKeyMap(SDLK_SPACE, KEY_SPACE)); - KeyMap.push_back(SKeyMap(SDLK_PAGEUP, KEY_PRIOR)); - KeyMap.push_back(SKeyMap(SDLK_PAGEDOWN, KEY_NEXT)); - KeyMap.push_back(SKeyMap(SDLK_END, KEY_END)); - KeyMap.push_back(SKeyMap(SDLK_HOME, KEY_HOME)); - KeyMap.push_back(SKeyMap(SDLK_LEFT, KEY_LEFT)); - KeyMap.push_back(SKeyMap(SDLK_UP, KEY_UP)); - KeyMap.push_back(SKeyMap(SDLK_RIGHT, KEY_RIGHT)); - KeyMap.push_back(SKeyMap(SDLK_DOWN, KEY_DOWN)); + KeyMap.emplace(SDLK_SPACE, KEY_SPACE); + KeyMap.emplace(SDLK_PAGEUP, KEY_PRIOR); + KeyMap.emplace(SDLK_PAGEDOWN, KEY_NEXT); + KeyMap.emplace(SDLK_END, KEY_END); + KeyMap.emplace(SDLK_HOME, KEY_HOME); + KeyMap.emplace(SDLK_LEFT, KEY_LEFT); + KeyMap.emplace(SDLK_UP, KEY_UP); + KeyMap.emplace(SDLK_RIGHT, KEY_RIGHT); + KeyMap.emplace(SDLK_DOWN, KEY_DOWN); // select missing - KeyMap.push_back(SKeyMap(SDLK_PRINTSCREEN, KEY_PRINT)); + KeyMap.emplace(SDLK_PRINTSCREEN, KEY_PRINT); // execute missing - KeyMap.push_back(SKeyMap(SDLK_PRINTSCREEN, KEY_SNAPSHOT)); + KeyMap.emplace(SDLK_PRINTSCREEN, KEY_SNAPSHOT); - KeyMap.push_back(SKeyMap(SDLK_INSERT, KEY_INSERT)); - KeyMap.push_back(SKeyMap(SDLK_DELETE, KEY_DELETE)); - KeyMap.push_back(SKeyMap(SDLK_HELP, KEY_HELP)); + KeyMap.emplace(SDLK_INSERT, KEY_INSERT); + KeyMap.emplace(SDLK_DELETE, KEY_DELETE); + KeyMap.emplace(SDLK_HELP, KEY_HELP); - KeyMap.push_back(SKeyMap(SDLK_0, KEY_KEY_0)); - KeyMap.push_back(SKeyMap(SDLK_1, KEY_KEY_1)); - KeyMap.push_back(SKeyMap(SDLK_2, KEY_KEY_2)); - KeyMap.push_back(SKeyMap(SDLK_3, KEY_KEY_3)); - KeyMap.push_back(SKeyMap(SDLK_4, KEY_KEY_4)); - KeyMap.push_back(SKeyMap(SDLK_5, KEY_KEY_5)); - KeyMap.push_back(SKeyMap(SDLK_6, KEY_KEY_6)); - KeyMap.push_back(SKeyMap(SDLK_7, KEY_KEY_7)); - KeyMap.push_back(SKeyMap(SDLK_8, KEY_KEY_8)); - KeyMap.push_back(SKeyMap(SDLK_9, KEY_KEY_9)); + KeyMap.emplace(SDLK_0, KEY_KEY_0); + KeyMap.emplace(SDLK_1, KEY_KEY_1); + KeyMap.emplace(SDLK_2, KEY_KEY_2); + KeyMap.emplace(SDLK_3, KEY_KEY_3); + KeyMap.emplace(SDLK_4, KEY_KEY_4); + KeyMap.emplace(SDLK_5, KEY_KEY_5); + KeyMap.emplace(SDLK_6, KEY_KEY_6); + KeyMap.emplace(SDLK_7, KEY_KEY_7); + KeyMap.emplace(SDLK_8, KEY_KEY_8); + KeyMap.emplace(SDLK_9, KEY_KEY_9); - KeyMap.push_back(SKeyMap(SDLK_a, KEY_KEY_A)); - KeyMap.push_back(SKeyMap(SDLK_b, KEY_KEY_B)); - KeyMap.push_back(SKeyMap(SDLK_c, KEY_KEY_C)); - KeyMap.push_back(SKeyMap(SDLK_d, KEY_KEY_D)); - KeyMap.push_back(SKeyMap(SDLK_e, KEY_KEY_E)); - KeyMap.push_back(SKeyMap(SDLK_f, KEY_KEY_F)); - KeyMap.push_back(SKeyMap(SDLK_g, KEY_KEY_G)); - KeyMap.push_back(SKeyMap(SDLK_h, KEY_KEY_H)); - KeyMap.push_back(SKeyMap(SDLK_i, KEY_KEY_I)); - KeyMap.push_back(SKeyMap(SDLK_j, KEY_KEY_J)); - KeyMap.push_back(SKeyMap(SDLK_k, KEY_KEY_K)); - KeyMap.push_back(SKeyMap(SDLK_l, KEY_KEY_L)); - KeyMap.push_back(SKeyMap(SDLK_m, KEY_KEY_M)); - KeyMap.push_back(SKeyMap(SDLK_n, KEY_KEY_N)); - KeyMap.push_back(SKeyMap(SDLK_o, KEY_KEY_O)); - KeyMap.push_back(SKeyMap(SDLK_p, KEY_KEY_P)); - KeyMap.push_back(SKeyMap(SDLK_q, KEY_KEY_Q)); - KeyMap.push_back(SKeyMap(SDLK_r, KEY_KEY_R)); - KeyMap.push_back(SKeyMap(SDLK_s, KEY_KEY_S)); - KeyMap.push_back(SKeyMap(SDLK_t, KEY_KEY_T)); - KeyMap.push_back(SKeyMap(SDLK_u, KEY_KEY_U)); - KeyMap.push_back(SKeyMap(SDLK_v, KEY_KEY_V)); - KeyMap.push_back(SKeyMap(SDLK_w, KEY_KEY_W)); - KeyMap.push_back(SKeyMap(SDLK_x, KEY_KEY_X)); - KeyMap.push_back(SKeyMap(SDLK_y, KEY_KEY_Y)); - KeyMap.push_back(SKeyMap(SDLK_z, KEY_KEY_Z)); + KeyMap.emplace(SDLK_a, KEY_KEY_A); + KeyMap.emplace(SDLK_b, KEY_KEY_B); + KeyMap.emplace(SDLK_c, KEY_KEY_C); + KeyMap.emplace(SDLK_d, KEY_KEY_D); + KeyMap.emplace(SDLK_e, KEY_KEY_E); + KeyMap.emplace(SDLK_f, KEY_KEY_F); + KeyMap.emplace(SDLK_g, KEY_KEY_G); + KeyMap.emplace(SDLK_h, KEY_KEY_H); + KeyMap.emplace(SDLK_i, KEY_KEY_I); + KeyMap.emplace(SDLK_j, KEY_KEY_J); + KeyMap.emplace(SDLK_k, KEY_KEY_K); + KeyMap.emplace(SDLK_l, KEY_KEY_L); + KeyMap.emplace(SDLK_m, KEY_KEY_M); + KeyMap.emplace(SDLK_n, KEY_KEY_N); + KeyMap.emplace(SDLK_o, KEY_KEY_O); + KeyMap.emplace(SDLK_p, KEY_KEY_P); + KeyMap.emplace(SDLK_q, KEY_KEY_Q); + KeyMap.emplace(SDLK_r, KEY_KEY_R); + KeyMap.emplace(SDLK_s, KEY_KEY_S); + KeyMap.emplace(SDLK_t, KEY_KEY_T); + KeyMap.emplace(SDLK_u, KEY_KEY_U); + KeyMap.emplace(SDLK_v, KEY_KEY_V); + KeyMap.emplace(SDLK_w, KEY_KEY_W); + KeyMap.emplace(SDLK_x, KEY_KEY_X); + KeyMap.emplace(SDLK_y, KEY_KEY_Y); + KeyMap.emplace(SDLK_z, KEY_KEY_Z); - KeyMap.push_back(SKeyMap(SDLK_LGUI, KEY_LWIN)); - KeyMap.push_back(SKeyMap(SDLK_RGUI, KEY_RWIN)); + KeyMap.emplace(SDLK_LGUI, KEY_LWIN); + KeyMap.emplace(SDLK_RGUI, KEY_RWIN); // apps missing - KeyMap.push_back(SKeyMap(SDLK_POWER, KEY_SLEEP)); //?? + KeyMap.emplace(SDLK_POWER, KEY_SLEEP); //?? - KeyMap.push_back(SKeyMap(SDLK_KP_0, KEY_NUMPAD0)); - KeyMap.push_back(SKeyMap(SDLK_KP_1, KEY_NUMPAD1)); - KeyMap.push_back(SKeyMap(SDLK_KP_2, KEY_NUMPAD2)); - KeyMap.push_back(SKeyMap(SDLK_KP_3, KEY_NUMPAD3)); - KeyMap.push_back(SKeyMap(SDLK_KP_4, KEY_NUMPAD4)); - KeyMap.push_back(SKeyMap(SDLK_KP_5, KEY_NUMPAD5)); - KeyMap.push_back(SKeyMap(SDLK_KP_6, KEY_NUMPAD6)); - KeyMap.push_back(SKeyMap(SDLK_KP_7, KEY_NUMPAD7)); - KeyMap.push_back(SKeyMap(SDLK_KP_8, KEY_NUMPAD8)); - KeyMap.push_back(SKeyMap(SDLK_KP_9, KEY_NUMPAD9)); - KeyMap.push_back(SKeyMap(SDLK_KP_MULTIPLY, KEY_MULTIPLY)); - KeyMap.push_back(SKeyMap(SDLK_KP_PLUS, KEY_ADD)); - KeyMap.push_back(SKeyMap(SDLK_KP_ENTER, KEY_RETURN)); - KeyMap.push_back(SKeyMap(SDLK_KP_MINUS, KEY_SUBTRACT)); - KeyMap.push_back(SKeyMap(SDLK_KP_PERIOD, KEY_DECIMAL)); - KeyMap.push_back(SKeyMap(SDLK_KP_DIVIDE, KEY_DIVIDE)); + KeyMap.emplace(SDLK_KP_0, KEY_NUMPAD0); + KeyMap.emplace(SDLK_KP_1, KEY_NUMPAD1); + KeyMap.emplace(SDLK_KP_2, KEY_NUMPAD2); + KeyMap.emplace(SDLK_KP_3, KEY_NUMPAD3); + KeyMap.emplace(SDLK_KP_4, KEY_NUMPAD4); + KeyMap.emplace(SDLK_KP_5, KEY_NUMPAD5); + KeyMap.emplace(SDLK_KP_6, KEY_NUMPAD6); + KeyMap.emplace(SDLK_KP_7, KEY_NUMPAD7); + KeyMap.emplace(SDLK_KP_8, KEY_NUMPAD8); + KeyMap.emplace(SDLK_KP_9, KEY_NUMPAD9); + KeyMap.emplace(SDLK_KP_MULTIPLY, KEY_MULTIPLY); + KeyMap.emplace(SDLK_KP_PLUS, KEY_ADD); + KeyMap.emplace(SDLK_KP_ENTER, KEY_RETURN); + KeyMap.emplace(SDLK_KP_MINUS, KEY_SUBTRACT); + KeyMap.emplace(SDLK_KP_PERIOD, KEY_DECIMAL); + KeyMap.emplace(SDLK_KP_DIVIDE, KEY_DIVIDE); - KeyMap.push_back(SKeyMap(SDLK_F1, KEY_F1)); - KeyMap.push_back(SKeyMap(SDLK_F2, KEY_F2)); - KeyMap.push_back(SKeyMap(SDLK_F3, KEY_F3)); - KeyMap.push_back(SKeyMap(SDLK_F4, KEY_F4)); - KeyMap.push_back(SKeyMap(SDLK_F5, KEY_F5)); - KeyMap.push_back(SKeyMap(SDLK_F6, KEY_F6)); - KeyMap.push_back(SKeyMap(SDLK_F7, KEY_F7)); - KeyMap.push_back(SKeyMap(SDLK_F8, KEY_F8)); - KeyMap.push_back(SKeyMap(SDLK_F9, KEY_F9)); - KeyMap.push_back(SKeyMap(SDLK_F10, KEY_F10)); - KeyMap.push_back(SKeyMap(SDLK_F11, KEY_F11)); - KeyMap.push_back(SKeyMap(SDLK_F12, KEY_F12)); - KeyMap.push_back(SKeyMap(SDLK_F13, KEY_F13)); - KeyMap.push_back(SKeyMap(SDLK_F14, KEY_F14)); - KeyMap.push_back(SKeyMap(SDLK_F15, KEY_F15)); + KeyMap.emplace(SDLK_F1, KEY_F1); + KeyMap.emplace(SDLK_F2, KEY_F2); + KeyMap.emplace(SDLK_F3, KEY_F3); + KeyMap.emplace(SDLK_F4, KEY_F4); + KeyMap.emplace(SDLK_F5, KEY_F5); + KeyMap.emplace(SDLK_F6, KEY_F6); + KeyMap.emplace(SDLK_F7, KEY_F7); + KeyMap.emplace(SDLK_F8, KEY_F8); + KeyMap.emplace(SDLK_F9, KEY_F9); + KeyMap.emplace(SDLK_F10, KEY_F10); + KeyMap.emplace(SDLK_F11, KEY_F11); + KeyMap.emplace(SDLK_F12, KEY_F12); + KeyMap.emplace(SDLK_F13, KEY_F13); + KeyMap.emplace(SDLK_F14, KEY_F14); + KeyMap.emplace(SDLK_F15, KEY_F15); // no higher F-keys - KeyMap.push_back(SKeyMap(SDLK_NUMLOCKCLEAR, KEY_NUMLOCK)); - KeyMap.push_back(SKeyMap(SDLK_SCROLLLOCK, KEY_SCROLL)); - KeyMap.push_back(SKeyMap(SDLK_LSHIFT, KEY_LSHIFT)); - KeyMap.push_back(SKeyMap(SDLK_RSHIFT, KEY_RSHIFT)); - KeyMap.push_back(SKeyMap(SDLK_LCTRL, KEY_LCONTROL)); - KeyMap.push_back(SKeyMap(SDLK_RCTRL, KEY_RCONTROL)); - KeyMap.push_back(SKeyMap(SDLK_LALT, KEY_LMENU)); - KeyMap.push_back(SKeyMap(SDLK_RALT, KEY_RMENU)); + KeyMap.emplace(SDLK_NUMLOCKCLEAR, KEY_NUMLOCK); + KeyMap.emplace(SDLK_SCROLLLOCK, KEY_SCROLL); + KeyMap.emplace(SDLK_LSHIFT, KEY_LSHIFT); + KeyMap.emplace(SDLK_RSHIFT, KEY_RSHIFT); + KeyMap.emplace(SDLK_LCTRL, KEY_LCONTROL); + KeyMap.emplace(SDLK_RCTRL, KEY_RCONTROL); + KeyMap.emplace(SDLK_LALT, KEY_LMENU); + KeyMap.emplace(SDLK_RALT, KEY_RMENU); - KeyMap.push_back(SKeyMap(SDLK_PLUS, KEY_PLUS)); - KeyMap.push_back(SKeyMap(SDLK_COMMA, KEY_COMMA)); - KeyMap.push_back(SKeyMap(SDLK_MINUS, KEY_MINUS)); - KeyMap.push_back(SKeyMap(SDLK_PERIOD, KEY_PERIOD)); + KeyMap.emplace(SDLK_PLUS, KEY_PLUS); + KeyMap.emplace(SDLK_COMMA, KEY_COMMA); + KeyMap.emplace(SDLK_MINUS, KEY_MINUS); + KeyMap.emplace(SDLK_PERIOD, KEY_PERIOD); // some special keys missing - - KeyMap.sort(); } void CIrrDeviceSDL::CCursorControl::initCursors() diff --git a/irr/src/CIrrDeviceSDL.h b/irr/src/CIrrDeviceSDL.h index b52422423..8a7e5f680 100644 --- a/irr/src/CIrrDeviceSDL.h +++ b/irr/src/CIrrDeviceSDL.h @@ -24,6 +24,7 @@ #include #include +#include namespace irr { @@ -286,6 +287,9 @@ private: // Return the Char that should be sent to Irrlicht for the given key (either the one passed in or 0). static int findCharToPassToIrrlicht(uint32_t sdlKey, EKEY_CODE irrlichtKey, bool numlock); + std::variant getScancodeFromKey(const Keycode &key) const override; + Keycode getKeyFromScancode(const u32 scancode) const override; + // Check if a text box is in focus. Enable or disable SDL_TEXTINPUT events only if in focus. void resetReceiveTextInputEvents(); @@ -319,25 +323,9 @@ private: core::rect lastElemPos; - struct SKeyMap - { - SKeyMap() {} - SKeyMap(s32 x11, s32 win32) : - SDLKey(x11), Win32Key(win32) - { - } - - s32 SDLKey; - s32 Win32Key; - - bool operator<(const SKeyMap &o) const - { - return SDLKey < o.SDLKey; - } - }; - - core::array KeyMap; - SDL_SysWMinfo Info; + // TODO: This is only used for scancode/keycode conversion with EKEY_CODE (among other things, for Luanti + // to display keys to users). Drop this along with EKEY_CODE. + std::unordered_map KeyMap; s32 CurrentTouchCount; bool IsInBackground; diff --git a/irr/src/CMakeLists.txt b/irr/src/CMakeLists.txt index 5ac78a17e..820af4fe9 100644 --- a/irr/src/CMakeLists.txt +++ b/irr/src/CMakeLists.txt @@ -33,6 +33,15 @@ if(CMAKE_CXX_COMPILER_ID MATCHES "^(GNU|Clang|AppleClang)$") elseif(MSVC) string(APPEND CMAKE_CXX_STANDARD_LIBRARIES " msvcrt.lib") # ???? fuck off + add_compile_definitions( + # Suppress some useless warnings + _CRT_SECURE_NO_DEPRECATE + # Get M_PI to work + _USE_MATH_DEFINES + # Don't define min/max macros in minwindef.h + NOMINMAX + ) + add_compile_options(/Zl) # Enable SSE for floating point math on 32-bit x86 by default diff --git a/irr/src/CMeshSceneNode.cpp b/irr/src/CMeshSceneNode.cpp index 89220cdc7..4f0a43212 100644 --- a/irr/src/CMeshSceneNode.cpp +++ b/irr/src/CMeshSceneNode.cpp @@ -21,7 +21,7 @@ CMeshSceneNode::CMeshSceneNode(IMesh *mesh, ISceneNode *parent, ISceneManager *m const core::vector3df &scale) : IMeshSceneNode(parent, mgr, id, position, rotation, scale), Mesh(0), - PassCount(0), ReadOnlyMaterials(false) + PassCount(0), SharedMaterials(false) { setMesh(mesh); } @@ -49,9 +49,9 @@ void CMeshSceneNode::OnRegisterSceneNode() int solidCount = 0; // count transparent and solid materials in this scene node - const u32 numMaterials = ReadOnlyMaterials ? Mesh->getMeshBufferCount() : Materials.size(); + const u32 numMaterials = SharedMaterials ? Mesh->getMeshBufferCount() : Materials.size(); for (u32 i = 0; i < numMaterials; ++i) { - const video::SMaterial &material = ReadOnlyMaterials ? Mesh->getMeshBuffer(i)->getMaterial() : Materials[i]; + const auto &material = SharedMaterials ? Mesh->getMeshBuffer(i)->getMaterial() : Materials[i]; if (driver->needsTransparentRenderPass(material)) ++transparentCount; @@ -93,7 +93,7 @@ void CMeshSceneNode::render() for (u32 i = 0; i < Mesh->getMeshBufferCount(); ++i) { scene::IMeshBuffer *mb = Mesh->getMeshBuffer(i); if (mb) { - const video::SMaterial &material = ReadOnlyMaterials ? mb->getMaterial() : Materials[i]; + const auto &material = SharedMaterials ? mb->getMaterial() : Materials[i]; const bool transparent = driver->needsTransparentRenderPass(material); @@ -164,14 +164,10 @@ const core::aabbox3d &CMeshSceneNode::getBoundingBox() const //! returns the material based on the zero based index i. To get the amount //! of materials used by this scene node, use getMaterialCount(). -//! This function is needed for inserting the node into the scene hierarchy on a -//! optimal position for minimizing renderstate changes, but can also be used -//! to directly modify the material of a scene node. video::SMaterial &CMeshSceneNode::getMaterial(u32 i) { - if (Mesh && ReadOnlyMaterials && i < Mesh->getMeshBufferCount()) { - ReadOnlyMaterial = Mesh->getMeshBuffer(i)->getMaterial(); - return ReadOnlyMaterial; + if (Mesh && SharedMaterials && i < Mesh->getMeshBufferCount()) { + return Mesh->getMeshBuffer(i)->getMaterial(); } if (i >= Materials.size()) @@ -183,7 +179,7 @@ video::SMaterial &CMeshSceneNode::getMaterial(u32 i) //! returns amount of materials used by this scene node. u32 CMeshSceneNode::getMaterialCount() const { - if (Mesh && ReadOnlyMaterials) + if (Mesh && SharedMaterials) return Mesh->getMeshBufferCount(); return Materials.size(); @@ -206,9 +202,10 @@ void CMeshSceneNode::copyMaterials() { Materials.clear(); - if (Mesh) { + if (Mesh && !SharedMaterials) { video::SMaterial mat; + Materials.reserve(Mesh->getMeshBufferCount()); for (u32 i = 0; i < Mesh->getMeshBufferCount(); ++i) { IMeshBuffer *mb = Mesh->getMeshBuffer(i); if (mb) @@ -222,15 +219,18 @@ void CMeshSceneNode::copyMaterials() //! Sets if the scene node should not copy the materials of the mesh but use them in a read only style. /* In this way it is possible to change the materials a mesh causing all mesh scene nodes referencing this mesh to change too. */ -void CMeshSceneNode::setReadOnlyMaterials(bool readonly) +void CMeshSceneNode::setSharedMaterials(bool shared) { - ReadOnlyMaterials = readonly; + if (SharedMaterials != shared) { + SharedMaterials = shared; + copyMaterials(); + } } //! Returns if the scene node should not copy the materials of the mesh but use them in a read only style -bool CMeshSceneNode::isReadOnlyMaterials() const +bool CMeshSceneNode::isSharedMaterials() const { - return ReadOnlyMaterials; + return SharedMaterials; } //! Creates a clone of this scene node and its children. @@ -245,7 +245,7 @@ ISceneNode *CMeshSceneNode::clone(ISceneNode *newParent, ISceneManager *newManag newManager, ID, RelativeTranslation, RelativeRotation, RelativeScale); nb->cloneMembers(this, newManager); - nb->ReadOnlyMaterials = ReadOnlyMaterials; + nb->SharedMaterials = SharedMaterials; nb->Materials = Materials; if (newParent) diff --git a/irr/src/CMeshSceneNode.h b/irr/src/CMeshSceneNode.h index 6791a3484..20c7146ea 100644 --- a/irr/src/CMeshSceneNode.h +++ b/irr/src/CMeshSceneNode.h @@ -52,13 +52,16 @@ public: //! Returns the current mesh IMesh *getMesh(void) override { return Mesh; } - //! Sets if the scene node should not copy the materials of the mesh but use them in a read only style. - /* In this way it is possible to change the materials a mesh causing all mesh scene nodes - referencing this mesh to change too. */ - void setReadOnlyMaterials(bool readonly) override; + //! Sets if the scene node should not copy the materials of the mesh but use them directly. + /** In this way it is possible to change the materials of a mesh + causing all mesh scene nodes referencing this mesh to change, too. + \param shared Flag if the materials shall be shared. */ + void setSharedMaterials(bool shared) override; - //! Returns if the scene node should not copy the materials of the mesh but use them in a read only style - bool isReadOnlyMaterials() const override; + //! Check if the scene node does not copy the materials of the mesh but uses them directly. + /** This flag can be set by setSharedMaterials(). + \return Whether the materials are shared. */ + bool isSharedMaterials() const override; //! Creates a clone of this scene node and its children. ISceneNode *clone(ISceneNode *newParent = 0, ISceneManager *newManager = 0) override; @@ -71,14 +74,13 @@ public: protected: void copyMaterials(); - core::array Materials; + std::vector Materials; core::aabbox3d Box{{0, 0, 0}}; - video::SMaterial ReadOnlyMaterial; IMesh *Mesh; s32 PassCount; - bool ReadOnlyMaterials; + bool SharedMaterials; }; } // end namespace scene diff --git a/irr/src/CNullDriver.cpp b/irr/src/CNullDriver.cpp index c87d5ae93..21346e6ed 100644 --- a/irr/src/CNullDriver.cpp +++ b/irr/src/CNullDriver.cpp @@ -71,7 +71,6 @@ CNullDriver::CNullDriver(io::IFileSystem *io, const core::dimension2d &scre setTextureCreationFlag(ETCF_ALWAYS_32_BIT, true); setTextureCreationFlag(ETCF_CREATE_MIP_MAPS, true); - setTextureCreationFlag(ETCF_AUTO_GENERATE_MIP_MAPS, true); setTextureCreationFlag(ETCF_ALLOW_MEMORY_COPY, false); ViewPort = core::rect(core::position2d(0, 0), core::dimension2di(screenSize)); @@ -295,25 +294,9 @@ u32 CNullDriver::getTextureCount() const ITexture *CNullDriver::addTexture(const core::dimension2d &size, const io::path &name, ECOLOR_FORMAT format) { - if (0 == name.size()) { - os::Printer::log("Could not create ITexture, texture needs to have a non-empty name.", ELL_WARNING); - return 0; - } - IImage *image = new CImage(format, size); - ITexture *t = 0; - - if (checkImage(image)) { - t = createDeviceDependentTexture(name, image); - } - + ITexture *t = addTexture(name, image); image->drop(); - - if (t) { - addTexture(t); - t->drop(); - } - return t; } @@ -330,7 +313,8 @@ ITexture *CNullDriver::addTexture(const io::path &name, IImage *image) ITexture *t = 0; if (checkImage(image)) { - t = createDeviceDependentTexture(name, image); + std::vector tmp { image }; + t = createDeviceDependentTexture(name, ETT_2D, tmp); } if (t) { @@ -341,6 +325,27 @@ ITexture *CNullDriver::addTexture(const io::path &name, IImage *image) return t; } +ITexture *CNullDriver::addArrayTexture(const io::path &name, IImage **images, u32 count) +{ + if (0 == name.size()) { + os::Printer::log("Could not create ITexture, texture needs to have a non-empty name.", ELL_WARNING); + return 0; + } + + // this is stupid but who cares + std::vector tmp(images, images + count); + + ITexture *t = nullptr; + if (checkImage(tmp)) { + t = createDeviceDependentTexture(name, ETT_2D_ARRAY, tmp); + } + if (t) { + addTexture(t); + t->drop(); + } + return t; +} + ITexture *CNullDriver::addTextureCubemap(const io::path &name, IImage *imagePosX, IImage *imageNegX, IImage *imagePosY, IImage *imageNegY, IImage *imagePosZ, IImage *imageNegZ) { @@ -358,7 +363,7 @@ ITexture *CNullDriver::addTextureCubemap(const io::path &name, IImage *imagePosX imageArray.push_back(imageNegZ); if (checkImage(imageArray)) { - t = createDeviceDependentTextureCubemap(name, imageArray); + t = createDeviceDependentTexture(name, ETT_CUBEMAP, imageArray); } if (t) { @@ -385,7 +390,7 @@ ITexture *CNullDriver::addTextureCubemap(const irr::u32 sideLen, const io::path ITexture *t = 0; if (checkImage(imageArray)) { - t = createDeviceDependentTextureCubemap(name, imageArray); + t = createDeviceDependentTexture(name, ETT_CUBEMAP, imageArray); if (t) { addTexture(t); @@ -406,17 +411,13 @@ ITexture *CNullDriver::getTexture(const io::path &filename) const io::path absolutePath = FileSystem->getAbsolutePath(filename); ITexture *texture = findTexture(absolutePath); - if (texture) { - texture->updateSource(ETS_FROM_CACHE); + if (texture) return texture; - } // Then try the raw filename, which might be in an Archive texture = findTexture(filename); - if (texture) { - texture->updateSource(ETS_FROM_CACHE); + if (texture) return texture; - } // Now try to open the file using the complete path. io::IReadFile *file = FileSystem->createAndOpenFile(absolutePath); @@ -430,7 +431,6 @@ ITexture *CNullDriver::getTexture(const io::path &filename) // Re-check name for actual archive names texture = findTexture(file->getFileName()); if (texture) { - texture->updateSource(ETS_FROM_CACHE); file->drop(); return texture; } @@ -439,7 +439,6 @@ ITexture *CNullDriver::getTexture(const io::path &filename) file->drop(); if (texture) { - texture->updateSource(ETS_FROM_FILE); addTexture(texture); texture->drop(); // drop it because we created it, one grab too much } else @@ -459,15 +458,12 @@ ITexture *CNullDriver::getTexture(io::IReadFile *file) if (file) { texture = findTexture(file->getFileName()); - if (texture) { - texture->updateSource(ETS_FROM_CACHE); + if (texture) return texture; - } texture = loadTextureFromFile(file); if (texture) { - texture->updateSource(ETS_FROM_FILE); addTexture(texture); texture->drop(); // drop it because we created it, one grab too much } @@ -489,7 +485,8 @@ video::ITexture *CNullDriver::loadTextureFromFile(io::IReadFile *file, const io: return nullptr; if (checkImage(image)) { - texture = createDeviceDependentTexture(hashName.size() ? hashName : file->getFileName(), image); + std::vector tmp { image }; + texture = createDeviceDependentTexture(hashName.size() ? hashName : file->getFileName(), ETT_2D, tmp); if (texture) os::Printer::log("Loaded texture", file->getFileName(), ELL_DEBUG); } @@ -529,18 +526,16 @@ video::ITexture *CNullDriver::findTexture(const io::path &filename) return 0; } -ITexture *CNullDriver::createDeviceDependentTexture(const io::path &name, IImage *image) +ITexture *CNullDriver::createDeviceDependentTexture(const io::path &name, E_TEXTURE_TYPE type, + const std::vector &images) { - SDummyTexture *dummy = new SDummyTexture(name, ETT_2D); - dummy->setSize(image->getDimension()); + if (type != ETT_2D && type != ETT_CUBEMAP) + return nullptr; + SDummyTexture *dummy = new SDummyTexture(name, type); + dummy->setSize(images[0]->getDimension()); return dummy; } -ITexture *CNullDriver::createDeviceDependentTextureCubemap(const io::path &name, const std::vector &image) -{ - return new SDummyTexture(name, ETT_CUBEMAP); -} - bool CNullDriver::setRenderTargetEx(IRenderTarget *target, u16 clearFlag, SColor clearColor, f32 clearDepth, u8 clearStencil) { return false; @@ -893,6 +888,9 @@ bool CNullDriver::checkImage(const std::vector &image) const auto lastSize = image[0]->getDimension(); for (size_t i = 0; i < image.size(); ++i) { + if (!image[i]) + return false; + ECOLOR_FORMAT format = image[i]->getColorFormat(); auto size = image[i]->getDimension(); @@ -1455,9 +1453,9 @@ void CNullDriver::setMaterialRendererName(u32 idx, const char *name) void CNullDriver::swapMaterialRenderers(u32 idx1, u32 idx2, bool swapNames) { if (idx1 < MaterialRenderers.size() && idx2 < MaterialRenderers.size()) { - irr::core::swap(MaterialRenderers[idx1].Renderer, MaterialRenderers[idx2].Renderer); + std::swap(MaterialRenderers[idx1].Renderer, MaterialRenderers[idx2].Renderer); if (swapNames) - irr::core::swap(MaterialRenderers[idx1].Name, MaterialRenderers[idx2].Name); + std::swap(MaterialRenderers[idx1].Name, MaterialRenderers[idx2].Name); } } diff --git a/irr/src/CNullDriver.h b/irr/src/CNullDriver.h index 0b4167e83..3ef8c642d 100644 --- a/irr/src/CNullDriver.h +++ b/irr/src/CNullDriver.h @@ -84,6 +84,8 @@ public: ITexture *addTexture(const io::path &name, IImage *image) override; + ITexture *addArrayTexture(const io::path &name, IImage **images, u32 count) override; + virtual ITexture *addTextureCubemap(const io::path &name, IImage *imagePosX, IImage *imageNegX, IImage *imagePosY, IImage *imageNegY, IImage *imagePosZ, IImage *imageNegZ) override; @@ -549,9 +551,8 @@ protected: //! adds a surface, not loaded or created by the Irrlicht Engine void addTexture(ITexture *surface); - virtual ITexture *createDeviceDependentTexture(const io::path &name, IImage *image); - - virtual ITexture *createDeviceDependentTextureCubemap(const io::path &name, const std::vector &image); + virtual ITexture *createDeviceDependentTexture(const io::path &name, E_TEXTURE_TYPE type, + const std::vector &images); //! checks triangle count and print warning if wrong bool checkPrimitiveCount(u32 prmcnt) const; @@ -616,7 +617,7 @@ protected: void *lock(E_TEXTURE_LOCK_MODE mode = ETLM_READ_WRITE, u32 mipmapLevel = 0, u32 layer = 0, E_TEXTURE_LOCK_FLAGS lockFlags = ETLF_FLIP_Y_UP_RTT) override { return 0; } void unlock() override {} - void regenerateMipMapLevels(void *data = 0, u32 layer = 0) override {} + void regenerateMipMapLevels(u32 layer = 0) override {} }; core::array Textures; diff --git a/irr/src/COGLESCoreExtensionHandler.h b/irr/src/COGLESCoreExtensionHandler.h index 80a7bb061..5c760e8ca 100644 --- a/irr/src/COGLESCoreExtensionHandler.h +++ b/irr/src/COGLESCoreExtensionHandler.h @@ -39,7 +39,8 @@ public: COGLESCoreExtensionHandler() : MaxAnisotropy(1), MaxIndices(0xffff), - MaxTextureSize(1), MaxTextureLODBias(0.f), StencilBuffer(false) + MaxTextureSize(1), MaxArrayTextureLayers(1), + MaxTextureLODBias(0.f), StencilBuffer(false) { for (u32 i = 0; i < IRR_OGLES_Feature_Count; ++i) FeatureAvailable[i] = false; @@ -87,6 +88,7 @@ protected: u8 MaxAnisotropy; u32 MaxIndices; u32 MaxTextureSize; + u32 MaxArrayTextureLayers; f32 MaxTextureLODBias; //! Minimal and maximal supported thickness for lines without smoothing float DimAliasedLine[2]; diff --git a/irr/src/COSOperator.cpp b/irr/src/COSOperator.cpp index 518f26563..9abca636c 100644 --- a/irr/src/COSOperator.cpp +++ b/irr/src/COSOperator.cpp @@ -97,8 +97,8 @@ void COSOperator::copyToClipboard(const c8 *text) const if ((text != NULL) && (strlen(text) > 0)) { str = [NSString stringWithCString:text encoding:NSUTF8StringEncoding]; board = [NSPasteboard generalPasteboard]; - [board declareTypes:[NSArray arrayWithObject:NSStringPboardType] owner:NSApp]; - [board setString:str forType:NSStringPboardType]; + [board declareTypes:[NSArray arrayWithObject:NSPasteboardTypeString] owner:NSApp]; + [board setString:str forType:NSPasteboardTypeString]; } #elif defined(_IRR_COMPILE_WITH_X11_DEVICE_) @@ -155,7 +155,7 @@ const c8 *COSOperator::getTextFromClipboard() const char *result = 0; board = [NSPasteboard generalPasteboard]; - str = [board stringForType:NSStringPboardType]; + str = [board stringForType:NSPasteboardTypeString]; if (str != nil) result = (char *)[str cStringUsingEncoding:NSUTF8StringEncoding]; diff --git a/irr/src/COpenGLCoreCacheHandler.h b/irr/src/COpenGLCoreCacheHandler.h index 744511629..bf588aa8a 100644 --- a/irr/src/COpenGLCoreCacheHandler.h +++ b/irr/src/COpenGLCoreCacheHandler.h @@ -100,7 +100,9 @@ class COpenGLCoreCacheHandler GL.Enable(curTextureType); #endif - GL.BindTexture(curTextureType, static_cast(texture)->getOpenGLTextureName()); + auto name = static_cast(texture)->getOpenGLTextureName(); + _IRR_DEBUG_BREAK_IF(name == 0) + GL.BindTexture(curTextureType, name); } else { texture = 0; diff --git a/irr/src/COpenGLCoreFeature.h b/irr/src/COpenGLCoreFeature.h index dc3d40e04..629bec2a1 100644 --- a/irr/src/COpenGLCoreFeature.h +++ b/irr/src/COpenGLCoreFeature.h @@ -14,20 +14,18 @@ namespace video class COpenGLCoreFeature { public: - COpenGLCoreFeature() : - BlendOperation(false), ColorAttachment(0), MultipleRenderTarget(0), MaxTextureUnits(1) - { - } + COpenGLCoreFeature() = default; virtual ~COpenGLCoreFeature() { } - bool BlendOperation; + bool BlendOperation = false; + bool TexStorage = false; - u8 ColorAttachment; - u8 MultipleRenderTarget; - u8 MaxTextureUnits; + u8 ColorAttachment = 0; + u8 MultipleRenderTarget = 0; + u8 MaxTextureUnits = 0; }; } diff --git a/irr/src/COpenGLCoreRenderTarget.h b/irr/src/COpenGLCoreRenderTarget.h index 50656ce1f..96eacc207 100644 --- a/irr/src/COpenGLCoreRenderTarget.h +++ b/irr/src/COpenGLCoreRenderTarget.h @@ -35,8 +35,14 @@ public: ColorAttachment = Driver->getFeature().ColorAttachment; MultipleRenderTarget = Driver->getFeature().MultipleRenderTarget; - if (ColorAttachment > 0) + if (ColorAttachment > 0) { + TEST_GL_ERROR(Driver); Driver->irrGlGenFramebuffers(1, &BufferID); + if (!BufferID) { + os::Printer::log("COpenGLCoreRenderTarget: framebuffer not created", ELL_ERROR); + return; + } + } AssignedTextures.set_used(static_cast(ColorAttachment)); diff --git a/irr/src/COpenGLCoreTexture.h b/irr/src/COpenGLCoreTexture.h index 2254076a7..51b122075 100644 --- a/irr/src/COpenGLCoreTexture.h +++ b/irr/src/COpenGLCoreTexture.h @@ -46,12 +46,12 @@ public: COpenGLCoreTexture(const io::path &name, const std::vector &srcImages, E_TEXTURE_TYPE type, TOpenGLDriver *driver) : ITexture(name, type), Driver(driver), TextureType(GL_TEXTURE_2D), TextureName(0), InternalFormat(GL_RGBA), PixelFormat(GL_RGBA), PixelType(GL_UNSIGNED_BYTE), MSAA(0), Converter(0), LockReadOnly(false), LockImage(0), LockLayer(0), - KeepImage(false), MipLevelStored(0), LegacyAutoGenerateMipMaps(false) + KeepImage(false), MipLevelStored(0) { _IRR_DEBUG_BREAK_IF(srcImages.empty()) DriverType = Driver->getDriverType(); - _IRR_DEBUG_BREAK_IF(Type == ETT_2D_MS); // not supported by this constructor + _IRR_DEBUG_BREAK_IF(Type == ETT_2D_MS) // not supported by this constructor TextureType = TextureTypeIrrToGL(Type); HasMipMaps = Driver->getTextureCreationFlag(ETCF_CREATE_MIP_MAPS); KeepImage = Driver->getTextureCreationFlag(ETCF_ALLOW_MEMORY_COPY); @@ -60,7 +60,6 @@ public: if (!InternalFormat) return; -#ifdef _DEBUG char lbuf[128]; snprintf_irr(lbuf, sizeof(lbuf), "COpenGLCoreTexture: Type = %d Size = %dx%d (%dx%d) ColorFormat = %d (%d)%s -> %#06x %#06x %#06x%s", @@ -70,7 +69,6 @@ public: InternalFormat, PixelFormat, PixelType, Converter ? " (c)" : "" ); os::Printer::log(lbuf, ELL_DEBUG); -#endif const auto *tmpImages = &srcImages; @@ -84,21 +82,17 @@ public: srcImages[i]->copyTo(Images[i]); else srcImages[i]->copyToScaling(Images[i]); - - if (srcImages[i]->getMipMapsData()) { - if (OriginalSize == Size && OriginalColorFormat == ColorFormat) { - Images[i]->setMipMapsData(srcImages[i]->getMipMapsData(), false); - } else { - // TODO: handle at least mipmap with changing color format - os::Printer::log("COpenGLCoreTexture: Can't handle format changes for mipmap data. Mipmap data dropped", ELL_WARNING); - } - } } tmpImages = &Images; } GL.GenTextures(1, &TextureName); + TEST_GL_ERROR(Driver); + if (!TextureName) { + os::Printer::log("COpenGLCoreTexture: texture not created", ELL_ERROR); + return; + } const COpenGLCoreTexture *prevTexture = Driver->getCacheHandler()->getTextureCache().get(0); Driver->getCacheHandler()->getTextureCache().set(0, this); @@ -106,7 +100,6 @@ public: GL.TexParameteri(TextureType, GL_TEXTURE_MIN_FILTER, GL_NEAREST); GL.TexParameteri(TextureType, GL_TEXTURE_MAG_FILTER, GL_NEAREST); -#ifdef GL_GENERATE_MIPMAP_HINT if (HasMipMaps) { if (Driver->getTextureCreationFlag(ETCF_OPTIMIZED_FOR_SPEED)) GL.Hint(GL_GENERATE_MIPMAP_HINT, GL_FASTEST); @@ -115,19 +108,16 @@ public: else GL.Hint(GL_GENERATE_MIPMAP_HINT, GL_DONT_CARE); } -#endif - TEST_GL_ERROR(Driver); - for (size_t i = 0; i < tmpImages->size(); ++i) - uploadTexture(true, i, 0, (*tmpImages)[i]->getData()); + initTexture(tmpImages->size()); - if (HasMipMaps && !LegacyAutoGenerateMipMaps) { - // Create mipmaps (either from image mipmaps or generate them) - for (size_t i = 0; i < tmpImages->size(); ++i) { - void *mipmapsData = (*tmpImages)[i]->getMipMapsData(); - regenerateMipMapLevels(mipmapsData, i); - } + for (size_t i = 0; i < tmpImages->size(); ++i) + uploadTexture(i, 0, (*tmpImages)[i]->getData()); + + if (HasMipMaps) { + for (size_t i = 0; i < tmpImages->size(); ++i) + regenerateMipMapLevels(i); } if (!KeepImage) { @@ -149,9 +139,10 @@ public: ITexture(name, type), Driver(driver), TextureType(GL_TEXTURE_2D), TextureName(0), InternalFormat(GL_RGBA), PixelFormat(GL_RGBA), PixelType(GL_UNSIGNED_BYTE), MSAA(msaa), Converter(0), LockReadOnly(false), LockImage(0), LockLayer(0), KeepImage(false), - MipLevelStored(0), LegacyAutoGenerateMipMaps(false) + MipLevelStored(0) { DriverType = Driver->getDriverType(); + _IRR_DEBUG_BREAK_IF(Type == ETT_2D_ARRAY) // not supported by this constructor TextureType = TextureTypeIrrToGL(Type); HasMipMaps = false; IsRenderTarget = true; @@ -184,7 +175,6 @@ public: } #endif -#ifdef _DEBUG char lbuf[100]; snprintf_irr(lbuf, sizeof(lbuf), "COpenGLCoreTexture: RTT Type = %d Size = %dx%d ColorFormat = %d -> %#06x %#06x %#06x%s", @@ -192,9 +182,13 @@ public: InternalFormat, PixelFormat, PixelType, Converter ? " (c)" : "" ); os::Printer::log(lbuf, ELL_DEBUG); -#endif GL.GenTextures(1, &TextureName); + TEST_GL_ERROR(Driver); + if (!TextureName) { + os::Printer::log("COpenGLCoreTexture: texture not created", ELL_ERROR); + return; + } const COpenGLCoreTexture *prevTexture = Driver->getCacheHandler()->getTextureCache().get(0); Driver->getCacheHandler()->getTextureCache().set(0, this); @@ -208,57 +202,20 @@ public: GL.TexParameteri(TextureType, GL_TEXTURE_MAG_FILTER, GL_NEAREST); GL.TexParameteri(TextureType, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE); GL.TexParameteri(TextureType, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE); - -#if defined(GL_VERSION_1_2) GL.TexParameteri(TextureType, GL_TEXTURE_WRAP_R, GL_CLAMP_TO_EDGE); -#endif StatesCache.WrapU = ETC_CLAMP_TO_EDGE; StatesCache.WrapV = ETC_CLAMP_TO_EDGE; StatesCache.WrapW = ETC_CLAMP_TO_EDGE; } - switch (Type) { - case ETT_2D: - GL.TexImage2D(GL_TEXTURE_2D, 0, InternalFormat, Size.Width, Size.Height, 0, PixelFormat, PixelType, 0); - break; - case ETT_2D_MS: { - // glTexImage2DMultisample is supported by OpenGL 3.2+ - // glTexStorage2DMultisample is supported by OpenGL 4.3+ and OpenGL ES 3.1+ -#ifdef IRR_COMPILE_GL_COMMON // legacy driver - constexpr bool use_gl_impl = true; -#else - const bool use_gl_impl = Driver->Version.Spec != OpenGLSpec::ES; -#endif - GLint max_samples = 0; - GL.GetIntegerv(GL_MAX_SAMPLES, &max_samples); - MSAA = std::min(MSAA, (u8)max_samples); - - if (use_gl_impl) - GL.TexImage2DMultisample(GL_TEXTURE_2D_MULTISAMPLE, MSAA, InternalFormat, Size.Width, Size.Height, GL_TRUE); - else - GL.TexStorage2DMultisample(GL_TEXTURE_2D_MULTISAMPLE, MSAA, InternalFormat, Size.Width, Size.Height, GL_TRUE); - break; - } - case ETT_CUBEMAP: - GL.TexImage2D(GL_TEXTURE_CUBE_MAP_POSITIVE_X, 0, InternalFormat, Size.Width, Size.Height, 0, PixelFormat, PixelType, 0); - GL.TexImage2D(GL_TEXTURE_CUBE_MAP_NEGATIVE_X, 0, InternalFormat, Size.Width, Size.Height, 0, PixelFormat, PixelType, 0); - GL.TexImage2D(GL_TEXTURE_CUBE_MAP_POSITIVE_Y, 0, InternalFormat, Size.Width, Size.Height, 0, PixelFormat, PixelType, 0); - GL.TexImage2D(GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, 0, InternalFormat, Size.Width, Size.Height, 0, PixelFormat, PixelType, 0); - GL.TexImage2D(GL_TEXTURE_CUBE_MAP_POSITIVE_Z, 0, InternalFormat, Size.Width, Size.Height, 0, PixelFormat, PixelType, 0); - GL.TexImage2D(GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, 0, InternalFormat, Size.Width, Size.Height, 0, PixelFormat, PixelType, 0); - break; - } + initTexture(0); if (!name.empty()) Driver->irrGlObjectLabel(GL_TEXTURE, TextureName, name.c_str()); Driver->getCacheHandler()->getTextureCache().set(0, prevTexture); - if (TEST_GL_ERROR(Driver)) { - char msg[256]; - snprintf_irr(msg, 256, "COpenGLCoreTexture: InternalFormat:0x%04x PixelFormat:0x%04x", (int)InternalFormat, (int)PixelFormat); - os::Printer::log(msg, ELL_ERROR); - } + TEST_GL_ERROR(Driver); } virtual ~COpenGLCoreTexture() @@ -276,7 +233,7 @@ public: void *lock(E_TEXTURE_LOCK_MODE mode = ETLM_READ_WRITE, u32 mipmapLevel = 0, u32 layer = 0, E_TEXTURE_LOCK_FLAGS lockFlags = ETLF_FLIP_Y_UP_RTT) override { if (LockImage) - return getLockImageData(MipLevelStored); + return LockImage->getData(); if (IImage::isCompressedFormat(ColorFormat)) return 0; @@ -288,7 +245,7 @@ public: if (KeepImage) { _IRR_DEBUG_BREAK_IF(LockLayer > Images.size()) - if (mipmapLevel == 0 || (Images[LockLayer] && Images[LockLayer]->getMipMapsData(mipmapLevel))) { + if (mipmapLevel == 0) { LockImage = Images[LockLayer]; LockImage->grab(); } @@ -296,8 +253,8 @@ public: if (!LockImage) { core::dimension2d lockImageSize(IImage::getMipMapsSize(Size, MipLevelStored)); + _IRR_DEBUG_BREAK_IF(lockImageSize.Width == 0 || lockImageSize.Height == 0) - // note: we save mipmap data also in the image because IImage doesn't allow saving single mipmap levels to the mipmap data LockImage = Driver->createImage(ColorFormat, lockImageSize); if (LockImage && mode != ETLM_WRITE_ONLY) { @@ -309,20 +266,26 @@ public: const bool use_gl_impl = Driver->Version.Spec != OpenGLSpec::ES; #endif - if (use_gl_impl) { + if (Type == ETT_2D_ARRAY) { - IImage *tmpImage = LockImage; // not sure yet if the size required by glGetTexImage is always correct, if not we might have to allocate a different tmpImage and convert colors later on. + // For OpenGL an array texture is basically just a 3D texture internally. + // So if we call glGetTexImage() we would download the entire array, + // except the caller only wants a single layer. + // To do this properly we could have to use glGetTextureSubImage() [4.5] + // or some trickery with glTextureView() [4.3]. + // Also neither of those will work on GLES. + + os::Printer::log("lock: read or read/write unimplemented for ETT_2D_ARRAY", ELL_WARNING); + passed = false; + + } else if (use_gl_impl) { + + IImage *tmpImage = LockImage; Driver->getCacheHandler()->getTextureCache().set(0, this); TEST_GL_ERROR(Driver); - GLenum tmpTextureType = TextureType; - - if (tmpTextureType == GL_TEXTURE_CUBE_MAP) { - _IRR_DEBUG_BREAK_IF(layer > 5) - - tmpTextureType = GL_TEXTURE_CUBE_MAP_POSITIVE_X + layer; - } + GLenum tmpTextureType = getTextureTarget(layer); GL.GetTexImage(tmpTextureType, MipLevelStored, PixelFormat, PixelType, tmpImage->getData()); TEST_GL_ERROR(Driver); @@ -355,20 +318,31 @@ public: Driver->getCacheHandler()->getFBO(prevFBO); Driver->getCacheHandler()->setFBO(tmpFBO); - Driver->irrGlFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, getOpenGLTextureName(), 0); + GLenum tmpTextureType = getTextureTarget(layer); - IImage *tmpImage = Driver->createImage(ECF_A8R8G8B8, Size); - GL.ReadPixels(0, 0, Size.Width, Size.Height, GL_RGBA, GL_UNSIGNED_BYTE, tmpImage->getData()); + // Warning: on GLES 2.0 this call will only work with mipmapLevel == 0 + Driver->irrGlFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, + tmpTextureType, getOpenGLTextureName(), mipmapLevel); + TEST_GL_ERROR(Driver); - Driver->irrGlFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, 0, 0); + IImage *tmpImage = Driver->createImage(ECF_A8R8G8B8, lockImageSize); + GL.ReadPixels(0, 0, lockImageSize.Width, lockImageSize.Height, + GL_RGBA, GL_UNSIGNED_BYTE, tmpImage->getData()); + + Driver->irrGlFramebufferTexture2D(GL_FRAMEBUFFER, + GL_COLOR_ATTACHMENT0, tmpTextureType, 0, 0); Driver->getCacheHandler()->setFBO(prevFBO); Driver->irrGlDeleteFramebuffers(1, &tmpFBO); + TEST_GL_ERROR(Driver); + void *src = tmpImage->getData(); void *dest = LockImage->getData(); + // FIXME: what about ETLF_FLIP_Y_UP_RTT + switch (ColorFormat) { case ECF_A1R5G5B5: CColorConverter::convert_A8R8G8B8toA1B5G5R5(src, tmpImage->getDimension().getArea(), dest); @@ -395,11 +369,9 @@ public: LockImage = 0; } } - - TEST_GL_ERROR(Driver); } - return (LockImage) ? getLockImageData(MipLevelStored) : 0; + return (LockImage) ? LockImage->getData() : 0; } void unlock() override @@ -411,7 +383,7 @@ public: const COpenGLCoreTexture *prevTexture = Driver->getCacheHandler()->getTextureCache().get(0); Driver->getCacheHandler()->getTextureCache().set(0, this); - uploadTexture(false, LockLayer, MipLevelStored, getLockImageData(MipLevelStored)); + uploadTexture(LockLayer, MipLevelStored, LockImage->getData()); Driver->getCacheHandler()->getTextureCache().set(0, prevTexture); } @@ -423,39 +395,16 @@ public: LockLayer = 0; } - void regenerateMipMapLevels(void *data = 0, u32 layer = 0) override + void regenerateMipMapLevels(u32 layer = 0) override { - if (!HasMipMaps || LegacyAutoGenerateMipMaps || (Size.Width <= 1 && Size.Height <= 1)) + if (!HasMipMaps || (Size.Width <= 1 && Size.Height <= 1)) return; const COpenGLCoreTexture *prevTexture = Driver->getCacheHandler()->getTextureCache().get(0); Driver->getCacheHandler()->getTextureCache().set(0, this); - if (data) { - u32 width = Size.Width; - u32 height = Size.Height; - u8 *tmpData = static_cast(data); - u32 dataSize = 0; - u32 level = 0; - - do { - if (width > 1) - width >>= 1; - - if (height > 1) - height >>= 1; - - dataSize = IImage::getDataSizeFromFormat(ColorFormat, width, height); - ++level; - - uploadTexture(true, layer, level, tmpData); - - tmpData += dataSize; - } while (width != 1 || height != 1); - } else { - Driver->irrGlGenerateMipmap(TextureType); - TEST_GL_ERROR(Driver); - } + Driver->irrGlGenerateMipmap(TextureType); + TEST_GL_ERROR(Driver); Driver->getCacheHandler()->getTextureCache().set(0, prevTexture); } @@ -476,14 +425,6 @@ public: } protected: - void *getLockImageData(irr::u32 miplevel) const - { - if (KeepImage && MipLevelStored > 0 && LockImage->getMipMapsData(MipLevelStored)) { - return LockImage->getMipMapsData(MipLevelStored); - } - return LockImage->getData(); - } - ECOLOR_FORMAT getBestColorFormat(ECOLOR_FORMAT format) { // We only try for to adapt "simple" formats @@ -567,7 +508,82 @@ protected: Pitch = Size.Width * IImage::getBitsPerPixelFromFormat(ColorFormat) / 8; } - void uploadTexture(bool initTexture, u32 layer, u32 level, void *data) + void initTexture(u32 layers) + { + // Compressed textures cannot be pre-allocated and are initialized on upload + if (IImage::isCompressedFormat(ColorFormat)) { + _IRR_DEBUG_BREAK_IF(IsRenderTarget) + return; + } + + u32 levels = 1; + if (HasMipMaps) { + levels = core::u32_log2(core::max_(Size.Width, Size.Height)) + 1; + } + + // reference: + + switch (Type) { + case ETT_2D: + if (Driver->getFeature().TexStorage) { + GL.TexStorage2D(TextureType, levels, InternalFormat, + Size.Width, Size.Height); + } else { + GL.TexImage2D(TextureType, 0, InternalFormat, + Size.Width, Size.Height, 0, PixelFormat, PixelType, 0); + } + TEST_GL_ERROR(Driver); + break; + case ETT_2D_MS: { + GLint max_samples = 0; + GL.GetIntegerv(GL_MAX_SAMPLES, &max_samples); + MSAA = core::min_(MSAA, (u8)max_samples); + + // glTexImage2DMultisample is supported by OpenGL 3.2+ + // glTexStorage2DMultisample is supported by OpenGL 4.3+ and OpenGL ES 3.1+ +#ifdef IRR_COMPILE_GL_COMMON // legacy driver + constexpr bool use_gl_impl = true; +#else + const bool use_gl_impl = Driver->Version.Spec != OpenGLSpec::ES; +#endif + + if (use_gl_impl) + GL.TexImage2DMultisample(GL_TEXTURE_2D_MULTISAMPLE, MSAA, InternalFormat, Size.Width, Size.Height, GL_TRUE); + else + GL.TexStorage2DMultisample(GL_TEXTURE_2D_MULTISAMPLE, MSAA, InternalFormat, Size.Width, Size.Height, GL_TRUE); + TEST_GL_ERROR(Driver); + break; + } + case ETT_CUBEMAP: + for (u32 i = 0; i < 6; i++) { + GLenum target = getTextureTarget(i); + if (Driver->getFeature().TexStorage) { + GL.TexStorage2D(target, levels, InternalFormat, + Size.Width, Size.Height); + } else { + GL.TexImage2D(target, 0, InternalFormat, + Size.Width, Size.Height, 0, PixelFormat, PixelType, 0); + } + TEST_GL_ERROR(Driver); + } + break; + case ETT_2D_ARRAY: + if (Driver->getFeature().TexStorage) { + GL.TexStorage3D(TextureType, levels, InternalFormat, + Size.Width, Size.Height, layers); + } else { + GL.TexImage3D(TextureType, 0, InternalFormat, + Size.Width, Size.Height, layers, 0, PixelFormat, PixelType, 0); + } + TEST_GL_ERROR(Driver); + break; + default: + _IRR_DEBUG_BREAK_IF(1) + break; + } + } + + void uploadTexture(u32 layer, u32 level, void *data) { if (!data) return; @@ -579,13 +595,7 @@ protected: if (height < 1) height = 1; - GLenum tmpTextureType = TextureType; - - if (tmpTextureType == GL_TEXTURE_CUBE_MAP) { - _IRR_DEBUG_BREAK_IF(layer > 5) - - tmpTextureType = GL_TEXTURE_CUBE_MAP_POSITIVE_X + layer; - } + GLenum tmpTextureType = getTextureTarget(layer); if (!IImage::isCompressedFormat(ColorFormat)) { CImage *tmpImage = 0; @@ -603,15 +613,16 @@ protected: switch (TextureType) { case GL_TEXTURE_2D: case GL_TEXTURE_CUBE_MAP: - if (initTexture) - GL.TexImage2D(tmpTextureType, level, InternalFormat, width, height, 0, PixelFormat, PixelType, tmpData); - else - GL.TexSubImage2D(tmpTextureType, level, 0, 0, width, height, PixelFormat, PixelType, tmpData); - TEST_GL_ERROR(Driver); + GL.TexSubImage2D(tmpTextureType, level, 0, 0, width, height, PixelFormat, PixelType, tmpData); + break; + case GL_TEXTURE_2D_ARRAY: + GL.TexSubImage3D(tmpTextureType, level, 0, 0, layer, width, height, 1, PixelFormat, PixelType, tmpData); break; default: + _IRR_DEBUG_BREAK_IF(1) break; } + TEST_GL_ERROR(Driver); delete tmpImage; } else { @@ -620,15 +631,13 @@ protected: switch (TextureType) { case GL_TEXTURE_2D: case GL_TEXTURE_CUBE_MAP: - if (initTexture) - Driver->irrGlCompressedTexImage2D(tmpTextureType, level, InternalFormat, width, height, 0, dataSize, data); - else - Driver->irrGlCompressedTexSubImage2D(tmpTextureType, level, 0, 0, width, height, PixelFormat, dataSize, data); - TEST_GL_ERROR(Driver); + Driver->irrGlCompressedTexImage2D(tmpTextureType, level, InternalFormat, width, height, 0, dataSize, data); break; default: + _IRR_DEBUG_BREAK_IF(1) break; } + TEST_GL_ERROR(Driver); } } @@ -641,12 +650,24 @@ protected: return GL_TEXTURE_2D_MULTISAMPLE; case ETT_CUBEMAP: return GL_TEXTURE_CUBE_MAP; + case ETT_2D_ARRAY: + return GL_TEXTURE_2D_ARRAY; } os::Printer::log("COpenGLCoreTexture::TextureTypeIrrToGL unknown texture type", ELL_WARNING); return GL_TEXTURE_2D; } + GLenum getTextureTarget(u32 layer) const + { + GLenum tmp = TextureType; + if (tmp == GL_TEXTURE_CUBE_MAP) { + _IRR_DEBUG_BREAK_IF(layer > 5) + tmp = GL_TEXTURE_CUBE_MAP_POSITIVE_X + layer; + } + return tmp; + } + TOpenGLDriver *Driver; GLenum TextureType; @@ -665,7 +686,6 @@ protected: std::vector Images; u8 MipLevelStored; - bool LegacyAutoGenerateMipMaps; mutable SStatesCache StatesCache; }; diff --git a/irr/src/COpenGLDriver.cpp b/irr/src/COpenGLDriver.cpp index e9cd10b49..50e097362 100644 --- a/irr/src/COpenGLDriver.cpp +++ b/irr/src/COpenGLDriver.cpp @@ -1609,20 +1609,9 @@ inline void COpenGLDriver::getGLTextureMatrix(GLfloat *o, const core::matrix4 &m o[15] = 1.f; } -ITexture *COpenGLDriver::createDeviceDependentTexture(const io::path &name, IImage *image) +ITexture *COpenGLDriver::createDeviceDependentTexture(const io::path &name, E_TEXTURE_TYPE type, const std::vector &images) { - std::vector tmp { image }; - - COpenGLTexture *texture = new COpenGLTexture(name, tmp, ETT_2D, this); - - return texture; -} - -ITexture *COpenGLDriver::createDeviceDependentTextureCubemap(const io::path &name, const std::vector &image) -{ - COpenGLTexture *texture = new COpenGLTexture(name, image, ETT_CUBEMAP, this); - - return texture; + return new COpenGLTexture(name, images, ETT_2D, this); } void COpenGLDriver::disableFeature(E_VIDEO_DRIVER_FEATURE feature, bool flag) diff --git a/irr/src/COpenGLDriver.h b/irr/src/COpenGLDriver.h index 1b5c0c6d3..67c328f58 100644 --- a/irr/src/COpenGLDriver.h +++ b/irr/src/COpenGLDriver.h @@ -326,9 +326,7 @@ private: //! inits the parts of the open gl driver used on all platforms bool genericDriverInit(); - ITexture *createDeviceDependentTexture(const io::path &name, IImage *image) override; - - ITexture *createDeviceDependentTextureCubemap(const io::path &name, const std::vector &image) override; + ITexture *createDeviceDependentTexture(const io::path &name, E_TEXTURE_TYPE type, const std::vector &images) override; //! creates a transposed matrix in supplied GLfloat array to pass to OpenGL inline void getGLMatrix(GLfloat gl_matrix[16], const core::matrix4 &m); diff --git a/irr/src/CXMeshFileLoader.cpp b/irr/src/CXMeshFileLoader.cpp index c09f2e481..ed8c18350 100644 --- a/irr/src/CXMeshFileLoader.cpp +++ b/irr/src/CXMeshFileLoader.cpp @@ -1526,8 +1526,6 @@ bool CXMeshFileLoader::parseDataObjectAnimationKey(SkinnedMesh::SJoint *joint) os::Printer::log("Line", core::stringc(Line).c_str(), ELL_WARNING); } - // core::vector3df rotation = mat.getRotationDegrees(); - AnimatedMesh->addRotationKey(joint, time, core::quaternion(mat.getTransposed())); AnimatedMesh->addPositionKey(joint, time, mat.getTranslation()); diff --git a/irr/src/CZipReader.cpp b/irr/src/CZipReader.cpp index dc5c0a4f0..7ec6a5ff3 100644 --- a/irr/src/CZipReader.cpp +++ b/irr/src/CZipReader.cpp @@ -29,14 +29,13 @@ CArchiveLoaderZIP::CArchiveLoaderZIP(io::IFileSystem *fs) : //! returns true if the file maybe is able to be loaded by this class bool CArchiveLoaderZIP::isALoadableFileFormat(const io::path &filename) const { - return core::hasFileExtension(filename, "zip", "pk3") || - core::hasFileExtension(filename, "gz", "tgz"); + return core::hasFileExtension(filename, "zip", "pk3"); } //! Check to see if the loader can create archives of this type. bool CArchiveLoaderZIP::isALoadableFileFormat(E_FILE_ARCHIVE_TYPE fileType) const { - return (fileType == EFAT_ZIP || fileType == EFAT_GZIP); + return fileType == EFAT_ZIP; } //! Creates an archive from the filename @@ -63,18 +62,7 @@ IFileArchive *CArchiveLoaderZIP::createArchive(io::IReadFile *file, bool ignoreC if (file) { file->seek(0); - u16 sig; - file->read(&sig, 2); - -#ifdef __BIG_ENDIAN__ - sig = os::Byteswap::byteswap(sig); -#endif - - file->seek(0); - - bool isGZip = (sig == 0x8b1f); - - archive = new CZipReader(FileSystem, file, ignoreCase, ignorePaths, isGZip); + archive = new CZipReader(FileSystem, file, ignoreCase, ignorePaths); } return archive; } @@ -92,27 +80,21 @@ bool CArchiveLoaderZIP::isALoadableFileFormat(io::IReadFile *file) const header.Sig = os::Byteswap::byteswap(header.Sig); #endif - return header.Sig == 0x04034b50 || // ZIP - (header.Sig & 0xffff) == 0x8b1f; // gzip + return header.Sig == 0x04034b50; // ZIP } // ----------------------------------------------------------------------------- // zip archive // ----------------------------------------------------------------------------- -CZipReader::CZipReader(IFileSystem *fs, IReadFile *file, bool ignoreCase, bool ignorePaths, bool isGZip) : - CFileList((file ? file->getFileName() : io::path("")), ignoreCase, ignorePaths), FileSystem(fs), File(file), IsGZip(isGZip) +CZipReader::CZipReader(IFileSystem *fs, IReadFile *file, bool ignoreCase, bool ignorePaths) : + CFileList((file ? file->getFileName() : io::path("")), ignoreCase, ignorePaths), FileSystem(fs), File(file) { if (File) { File->grab(); // load file entries - if (IsGZip) - while (scanGZipHeader()) { - } - else - while (scanZipHeader()) { - } + while (scanZipHeader()) {} sort(); } @@ -127,7 +109,7 @@ CZipReader::~CZipReader() //! get the archive type E_FILE_ARCHIVE_TYPE CZipReader::getType() const { - return IsGZip ? EFAT_GZIP : EFAT_ZIP; + return EFAT_ZIP; } const IFileList *CZipReader::getFileList() const @@ -135,105 +117,6 @@ const IFileList *CZipReader::getFileList() const return this; } -//! scans for a local header, returns false if there is no more local file header. -//! The gzip file format seems to think that there can be multiple files in a gzip file -//! but none -bool CZipReader::scanGZipHeader() -{ - SZipFileEntry entry; - entry.Offset = 0; - memset(&entry.header, 0, sizeof(SZIPFileHeader)); - - // read header - SGZIPMemberHeader header; - if (File->read(&header, sizeof(SGZIPMemberHeader)) == sizeof(SGZIPMemberHeader)) { - -#ifdef __BIG_ENDIAN__ - header.sig = os::Byteswap::byteswap(header.sig); - header.time = os::Byteswap::byteswap(header.time); -#endif - - // check header value - if (header.sig != 0x8b1f) - return false; - - // now get the file info - if (header.flags & EGZF_EXTRA_FIELDS) { - // read lenth of extra data - u16 dataLen; - - File->read(&dataLen, 2); - -#ifdef __BIG_ENDIAN__ - dataLen = os::Byteswap::byteswap(dataLen); -#endif - - // skip it - File->seek(dataLen, true); - } - - io::path ZipFileName = ""; - - if (header.flags & EGZF_FILE_NAME) { - c8 c; - File->read(&c, 1); - while (c) { - ZipFileName.append(c); - File->read(&c, 1); - } - } else { - // no file name? - ZipFileName = core::deletePathFromFilename(Path); - - // rename tgz to tar or remove gz extension - if (core::hasFileExtension(ZipFileName, "tgz")) { - ZipFileName[ZipFileName.size() - 2] = 'a'; - ZipFileName[ZipFileName.size() - 1] = 'r'; - } else if (core::hasFileExtension(ZipFileName, "gz")) { - ZipFileName[ZipFileName.size() - 3] = 0; - ZipFileName.validate(); - } - } - - if (header.flags & EGZF_COMMENT) { - c8 c = 'a'; - while (c) - File->read(&c, 1); - } - - if (header.flags & EGZF_CRC16) - File->seek(2, true); - - // we are now at the start of the data blocks - entry.Offset = File->getPos(); - - entry.header.FilenameLength = ZipFileName.size(); - - entry.header.CompressionMethod = header.compressionMethod; - entry.header.DataDescriptor.CompressedSize = (File->getSize() - 8) - File->getPos(); - - // seek to file end - File->seek(entry.header.DataDescriptor.CompressedSize, true); - - // read CRC - File->read(&entry.header.DataDescriptor.CRC32, 4); - // read uncompressed size - File->read(&entry.header.DataDescriptor.UncompressedSize, 4); - -#ifdef __BIG_ENDIAN__ - entry.header.DataDescriptor.CRC32 = os::Byteswap::byteswap(entry.header.DataDescriptor.CRC32); - entry.header.DataDescriptor.UncompressedSize = os::Byteswap::byteswap(entry.header.DataDescriptor.UncompressedSize); -#endif - - // now we've filled all the fields, this is just a standard deflate block - addItem(ZipFileName, entry.Offset, entry.header.DataDescriptor.UncompressedSize, false, 0); - FileInfo.push_back(entry); - } - - // there's only one block of data in a gzip file - return false; -} - //! scans for a local header, returns false if there is no more local file header. bool CZipReader::scanZipHeader(bool ignoreGPBits) { diff --git a/irr/src/CZipReader.h b/irr/src/CZipReader.h index b520c2030..654f7a80a 100644 --- a/irr/src/CZipReader.h +++ b/irr/src/CZipReader.h @@ -14,11 +14,9 @@ namespace irr { namespace io { -// set if the file is encrypted -const s16 ZIP_FILE_ENCRYPTED = 0x0001; // the fields crc-32, compressed size and uncompressed size are set to // zero in the local header -const s16 ZIP_INFO_IN_DATA_DESCRIPTOR = 0x0008; +static constexpr s16 ZIP_INFO_IN_DATA_DESCRIPTOR = 0x0008; // byte-align structures #include "irrpack.h" @@ -84,39 +82,6 @@ struct SZIPFileCentralDirEnd // zipfile comment (variable size) } PACK_STRUCT; -struct SZipFileExtraHeader -{ - s16 ID; - s16 Size; -} PACK_STRUCT; - -struct SZipFileAESExtraData -{ - s16 Version; - u8 Vendor[2]; - u8 EncryptionStrength; - s16 CompressionMode; -} PACK_STRUCT; - -enum E_GZIP_FLAGS -{ - EGZF_TEXT_DAT = 1, - EGZF_CRC16 = 2, - EGZF_EXTRA_FIELDS = 4, - EGZF_FILE_NAME = 8, - EGZF_COMMENT = 16 -}; - -struct SGZIPMemberHeader -{ - u16 sig; // 0x8b1f - u8 compressionMethod; // 8 = deflate - u8 flags; - u32 time; - u8 extraFlags; // slow compress = 2, fast compress = 4 - u8 operatingSystem; -} PACK_STRUCT; - // Default alignment #include "irrunpack.h" @@ -173,7 +138,7 @@ class CZipReader : public virtual IFileArchive, virtual CFileList { public: //! constructor - CZipReader(IFileSystem *fs, IReadFile *file, bool ignoreCase, bool ignorePaths, bool isGZip = false); + CZipReader(IFileSystem *fs, IReadFile *file, bool ignoreCase, bool ignorePaths); //! destructor virtual ~CZipReader(); @@ -200,9 +165,6 @@ protected: directory. */ bool scanZipHeader(bool ignoreGPBits = false); - //! the same but for gzip files - bool scanGZipHeader(); - bool scanCentralDirectoryHeader(); io::IFileSystem *FileSystem; @@ -210,8 +172,6 @@ protected: // holds extended info about files std::vector FileInfo; - - bool IsGZip; }; } // end namespace io diff --git a/irr/src/Irrlicht.cpp b/irr/src/Irrlicht.cpp index b1818eb55..2e80088ab 100644 --- a/irr/src/Irrlicht.cpp +++ b/irr/src/Irrlicht.cpp @@ -88,7 +88,7 @@ const matrix4 IdentityMatrix(matrix4::EM4CONST_IDENTITY); namespace video { -SMaterial IdentityMaterial; +const SMaterial IdentityMaterial; extern "C" IRRLICHT_API bool IRRCALLCONV isDriverSupported(E_DRIVER_TYPE driver) { diff --git a/irr/src/OpenGL/Driver.cpp b/irr/src/OpenGL/Driver.cpp index 25c9a14f6..6e30063aa 100644 --- a/irr/src/OpenGL/Driver.cpp +++ b/irr/src/OpenGL/Driver.cpp @@ -104,8 +104,7 @@ static const VertexType &getVertexTypeDescription(E_VERTEX_TYPE type) case EVT_TANGENTS: return vtTangents; default: - assert(false); - CODE_UNREACHABLE(); + IRR_CODE_UNREACHABLE(); } } @@ -212,6 +211,7 @@ void COpenGL3DriverBase::initQuadsIndices(u32 max_vertex_count) } QuadIndexVBO.upload(QuadsIndices.data(), QuadsIndices.size() * sizeof(u16), 0, GL_STATIC_DRAW, true); + assert(QuadIndexVBO.exists()); } void COpenGL3DriverBase::initVersion() @@ -266,6 +266,7 @@ bool COpenGL3DriverBase::genericDriverInit(const core::dimension2d &screenS DriverAttributes->setAttribute("MaxAnisotropy", MaxAnisotropy); DriverAttributes->setAttribute("MaxIndices", (s32)MaxIndices); DriverAttributes->setAttribute("MaxTextureSize", (s32)MaxTextureSize); + DriverAttributes->setAttribute("MaxArrayTextureLayers", (s32)MaxArrayTextureLayers); DriverAttributes->setAttribute("MaxTextureLODBias", MaxTextureLODBias); DriverAttributes->setAttribute("Version", 100 * Version.Major + Version.Minor); DriverAttributes->setAttribute("AntiAlias", AntiAlias); @@ -626,6 +627,7 @@ void COpenGL3DriverBase::drawBuffers(const scene::IVertexBuffer *vb, const void *vertices = vb->getData(); if (hwvert) { assert(hwvert->IsVertex); + assert(hwvert->Vbo.exists()); GL.BindBuffer(GL_ARRAY_BUFFER, hwvert->Vbo.getName()); vertices = nullptr; } @@ -633,6 +635,7 @@ void COpenGL3DriverBase::drawBuffers(const scene::IVertexBuffer *vb, const void *indexList = ib->getData(); if (hwidx) { assert(!hwidx->IsVertex); + assert(hwidx->Vbo.exists()); GL.BindBuffer(GL_ELEMENT_ARRAY_BUFFER, hwidx->Vbo.getName()); indexList = nullptr; } @@ -864,21 +867,25 @@ void COpenGL3DriverBase::draw2DImageBatch(const video::ITexture *texture, std::vector vtx; vtx.reserve(drawCount * 4); + // texcoords need to be flipped horizontally for RTTs + const bool isRTT = texture->isRenderTarget(); + const core::dimension2du ss = texture->getOriginalSize(); + const f32 invW = 1.f / static_cast(ss.Width); + const f32 invH = 1.f / static_cast(ss.Height); + for (u32 i = 0; i < drawCount; i++) { - core::position2d targetPos = positions[i]; - core::position2d sourcePos = sourceRects[i].UpperLeftCorner; - // This needs to be signed as it may go negative. - core::dimension2d sourceSize(sourceRects[i].getSize()); + const core::position2d targetPos = positions[i]; + const core::rect sourceRect = sourceRects[i]; // now draw it. - core::rect tcoords; - tcoords.UpperLeftCorner.X = (((f32)sourcePos.X)) / texture->getOriginalSize().Width; - tcoords.UpperLeftCorner.Y = (((f32)sourcePos.Y)) / texture->getOriginalSize().Height; - tcoords.LowerRightCorner.X = tcoords.UpperLeftCorner.X + ((f32)(sourceSize.Width) / texture->getOriginalSize().Width); - tcoords.LowerRightCorner.Y = tcoords.UpperLeftCorner.Y + ((f32)(sourceSize.Height) / texture->getOriginalSize().Height); + const core::rect tcoords( + sourceRect.UpperLeftCorner.X * invW, + (isRTT ? sourceRect.LowerRightCorner.Y : sourceRect.UpperLeftCorner.Y) * invH, + sourceRect.LowerRightCorner.X * invW, + (isRTT ? sourceRect.UpperLeftCorner.Y : sourceRect.LowerRightCorner.Y) * invH); - const core::rect poss(targetPos, sourceSize); + const core::rect poss(targetPos, sourceRect.getSize()); f32 left = (f32)poss.UpperLeftCorner.X; f32 right = (f32)poss.LowerRightCorner.X; @@ -1065,21 +1072,18 @@ void COpenGL3DriverBase::endDraw(const VertexType &vertexType) GL.DisableVertexAttribArray(attr.Index); } -ITexture *COpenGL3DriverBase::createDeviceDependentTexture(const io::path &name, IImage *image) +ITexture *COpenGL3DriverBase::createDeviceDependentTexture(const io::path &name, E_TEXTURE_TYPE type, const std::vector &images) { - std::vector tmp { image }; - - COpenGL3Texture *texture = new COpenGL3Texture(name, tmp, ETT_2D, this); - - return texture; + return new COpenGL3Texture(name, images, type, this); } -ITexture *COpenGL3DriverBase::createDeviceDependentTextureCubemap(const io::path &name, const std::vector &image) -{ - COpenGL3Texture *texture = new COpenGL3Texture(name, image, ETT_CUBEMAP, this); - - return texture; -} +// Same as COpenGLDriver::TextureFlipMatrix +static const core::matrix4 s_texture_flip_matrix = { + 1, 0, 0, 0, + 0, -1, 0, 0, + 0, 1, 1, 0, + 0, 0, 0, 1 +}; //! Sets a material. void COpenGL3DriverBase::setMaterial(const SMaterial &material) @@ -1091,7 +1095,11 @@ void COpenGL3DriverBase::setMaterial(const SMaterial &material) auto *texture = material.getTexture(i); CacheHandler->getTextureCache().set(i, texture); if (texture) { - setTransform((E_TRANSFORMATION_STATE)(ETS_TEXTURE_0 + i), material.getTextureMatrix(i)); + setTransform((E_TRANSFORMATION_STATE)(ETS_TEXTURE_0 + i), + texture->isRenderTarget() + ? material.getTextureMatrix(i) * s_texture_flip_matrix + : material.getTextureMatrix(i) + ); } } } diff --git a/irr/src/OpenGL/Driver.h b/irr/src/OpenGL/Driver.h index 6154e3fa9..7b399cf93 100644 --- a/irr/src/OpenGL/Driver.h +++ b/irr/src/OpenGL/Driver.h @@ -267,9 +267,8 @@ protected: void chooseMaterial2D(); - ITexture *createDeviceDependentTexture(const io::path &name, IImage *image) override; - - ITexture *createDeviceDependentTextureCubemap(const io::path &name, const std::vector &image) override; + ITexture *createDeviceDependentTexture(const io::path &name, E_TEXTURE_TYPE type, + const std::vector &images) override; //! Map Irrlicht wrap mode to OpenGL enum GLint getTextureWrapMode(u8 clamp) const; diff --git a/irr/src/OpenGL/ExtensionHandler.h b/irr/src/OpenGL/ExtensionHandler.h index 209fd415b..413ab7f23 100644 --- a/irr/src/OpenGL/ExtensionHandler.h +++ b/irr/src/OpenGL/ExtensionHandler.h @@ -76,6 +76,8 @@ public: return StencilBuffer; case EVDF_TEXTURE_MULTISAMPLE: return TextureMultisampleSupported; + case EVDF_TEXTURE_2D_ARRAY: + return Texture2DArraySupported; default: return false; }; @@ -176,6 +178,7 @@ public: bool AnisotropicFilterSupported = false; bool BlendMinMaxSupported = false; bool TextureMultisampleSupported = false; + bool Texture2DArraySupported = false; bool KHRDebugSupported = false; u32 MaxLabelLength = 0; }; diff --git a/irr/src/OpenGL3/Driver.cpp b/irr/src/OpenGL3/Driver.cpp index 7a62f4a12..09286b027 100644 --- a/irr/src/OpenGL3/Driver.cpp +++ b/irr/src/OpenGL3/Driver.cpp @@ -50,8 +50,7 @@ void COpenGL3Driver::initFeatures() TextureFormats[ECF_A1R5G5B5] = {GL_RGB5_A1, GL_BGRA, GL_UNSIGNED_SHORT_1_5_5_5_REV}; // WARNING: may not be renderable TextureFormats[ECF_R5G6B5] = {GL_RGB, GL_RGB, GL_UNSIGNED_SHORT_5_6_5}; // GL_RGB565 is an extension until 4.1 TextureFormats[ECF_R8G8B8] = {GL_RGB8, GL_RGB, GL_UNSIGNED_BYTE}; // WARNING: may not be renderable - // FIXME: shouldn't this simply be GL_UNSIGNED_BYTE? - TextureFormats[ECF_A8R8G8B8] = {GL_RGBA8, GL_BGRA, GL_UNSIGNED_INT_8_8_8_8_REV}; + TextureFormats[ECF_A8R8G8B8] = {GL_RGBA8, GL_BGRA, GL_UNSIGNED_BYTE}; TextureFormats[ECF_R16F] = {GL_R16F, GL_RED, GL_HALF_FLOAT}; TextureFormats[ECF_G16R16F] = {GL_RG16F, GL_RG, GL_HALF_FLOAT}; TextureFormats[ECF_A16B16G16R16F] = {GL_RGBA16F, GL_RGBA, GL_HALF_FLOAT}; @@ -72,6 +71,7 @@ void COpenGL3Driver::initFeatures() LODBiasSupported = true; BlendMinMaxSupported = true; TextureMultisampleSupported = true; + Texture2DArraySupported = Version.Major >= 3 || queryExtension("GL_EXT_texture_array"); KHRDebugSupported = isVersionAtLeast(4, 6) || queryExtension("GL_KHR_debug"); if (KHRDebugSupported) MaxLabelLength = GetInteger(GL.MAX_LABEL_LENGTH); @@ -79,6 +79,7 @@ void COpenGL3Driver::initFeatures() // COGLESCoreExtensionHandler::Feature static_assert(MATERIAL_MAX_TEXTURES <= 16, "Only up to 16 textures are guaranteed"); Feature.BlendOperation = true; + Feature.TexStorage = isVersionAtLeast(4, 2) || queryExtension("GL_ARB_texture_storage"); Feature.ColorAttachment = GetInteger(GL_MAX_COLOR_ATTACHMENTS); Feature.MaxTextureUnits = MATERIAL_MAX_TEXTURES; Feature.MultipleRenderTarget = GetInteger(GL_MAX_DRAW_BUFFERS); @@ -88,6 +89,8 @@ void COpenGL3Driver::initFeatures() MaxAnisotropy = GetInteger(GL.MAX_TEXTURE_MAX_ANISOTROPY); MaxIndices = GetInteger(GL_MAX_ELEMENTS_INDICES); MaxTextureSize = GetInteger(GL_MAX_TEXTURE_SIZE); + if (Texture2DArraySupported) + MaxArrayTextureLayers = GetInteger(GL_MAX_ARRAY_TEXTURE_LAYERS); GL.GetFloatv(GL_MAX_TEXTURE_LOD_BIAS, &MaxTextureLODBias); GL.GetFloatv(GL_ALIASED_LINE_WIDTH_RANGE, DimAliasedLine); DimAliasedPoint[0] = 1.0f; diff --git a/irr/src/OpenGLES2/Driver.cpp b/irr/src/OpenGLES2/Driver.cpp index 6b234842a..2db021088 100644 --- a/irr/src/OpenGLES2/Driver.cpp +++ b/irr/src/OpenGLES2/Driver.cpp @@ -124,6 +124,7 @@ void COpenGLES2Driver::initFeatures() AnisotropicFilterSupported = queryExtension("GL_EXT_texture_filter_anisotropic"); BlendMinMaxSupported = (Version.Major >= 3) || FeatureAvailable[IRR_GL_EXT_blend_minmax]; TextureMultisampleSupported = isVersionAtLeast(3, 1); + Texture2DArraySupported = Version.Major >= 3 || queryExtension("GL_EXT_texture_array"); KHRDebugSupported = queryExtension("GL_KHR_debug"); if (KHRDebugSupported) MaxLabelLength = GetInteger(GL.MAX_LABEL_LENGTH); @@ -131,6 +132,7 @@ void COpenGLES2Driver::initFeatures() // COGLESCoreExtensionHandler::Feature static_assert(MATERIAL_MAX_TEXTURES <= 8, "Only up to 8 textures are guaranteed"); Feature.BlendOperation = true; + Feature.TexStorage = Version.Major >= 3 || queryExtension("GL_ARB_texture_storage"); Feature.ColorAttachment = 1; if (MRTSupported) Feature.ColorAttachment = GetInteger(GL_MAX_COLOR_ATTACHMENTS); @@ -144,9 +146,11 @@ void COpenGLES2Driver::initFeatures() if (Version.Major >= 3 || queryExtension("GL_EXT_draw_range_elements")) MaxIndices = GetInteger(GL_MAX_ELEMENTS_INDICES); MaxTextureSize = GetInteger(GL_MAX_TEXTURE_SIZE); + if (Texture2DArraySupported) + MaxArrayTextureLayers = GetInteger(GL_MAX_ARRAY_TEXTURE_LAYERS); if (LODBiasSupported) GL.GetFloatv(GL_MAX_TEXTURE_LOD_BIAS, &MaxTextureLODBias); - GL.GetFloatv(GL_ALIASED_LINE_WIDTH_RANGE, DimAliasedLine); // NOTE: this is not in the OpenGL ES 2.0 spec... + GL.GetFloatv(GL_ALIASED_LINE_WIDTH_RANGE, DimAliasedLine); GL.GetFloatv(GL_ALIASED_POINT_SIZE_RANGE, DimAliasedPoint); } diff --git a/irr/src/SoftwareDriver2_helper.h b/irr/src/SoftwareDriver2_helper.h index 602f9e295..76ea249ea 100644 --- a/irr/src/SoftwareDriver2_helper.h +++ b/irr/src/SoftwareDriver2_helper.h @@ -93,17 +93,6 @@ inline void memset16(void *dest, const u16 value, size_t bytesize) } } -// integer log2 of an integer. returning 0 as denormal -static inline s32 s32_log2_s32(u32 in) -{ - s32 ret = 0; - while (in > 1) { - in >>= 1; - ret++; - } - return ret; -} - // ------------------ Video--------------------------------------- /*! Pixel = dest * ( 1 - alpha ) + source * alpha diff --git a/irr/src/os.h b/irr/src/os.h index bcc096f95..238b71653 100644 --- a/irr/src/os.h +++ b/irr/src/os.h @@ -10,22 +10,6 @@ #include "ILogger.h" #include "ITimer.h" -// CODE_UNREACHABLE(): Invokes undefined behavior for unreachable code optimization -#if defined(__cpp_lib_unreachable) -#include -#define CODE_UNREACHABLE() std::unreachable() -#elif defined(__has_builtin) -#if __has_builtin(__builtin_unreachable) -#define CODE_UNREACHABLE() __builtin_unreachable() -#endif -#elif defined(_MSC_VER) -#define CODE_UNREACHABLE() __assume(false) -#endif - -#ifndef CODE_UNREACHABLE -#define CODE_UNREACHABLE() (void)0 -#endif - namespace irr { diff --git a/lib/tiniergltf/Readme.md b/lib/tiniergltf/Readme.md index a8cc65c93..58873277e 100644 --- a/lib/tiniergltf/Readme.md +++ b/lib/tiniergltf/Readme.md @@ -6,7 +6,7 @@ What this is: * A tiny glTF deserializer which maps JSON objects to appropriate C++ structures. * Intended to be safe for loading untrusted input. -* Slightly tailored to the needs of [Minetest](https://github.com/minetest/minetest). +* Slightly tailored to the needs of Luanti What this doesn't and shouldn't do: diff --git a/minetest.conf.example b/minetest.conf.example index f5fefbcf3..c10f29ed4 100644 --- a/minetest.conf.example +++ b/minetest.conf.example @@ -189,6 +189,8 @@ # to the game world only, keeping the GUI intact. # It should give a significant performance boost at the cost of less detailed image. # Higher values result in a less detailed image. +# Note: Undersampling is currently not supported if the "3d_mode" setting is set +# to a non-default value. # type: int min: 1 max: 8 # undersampling = 1 @@ -202,7 +204,6 @@ # - topbottom: split screen top/bottom. # - sidebyside: split screen side by side. # - crossview: Cross-eyed 3d -# Note that the interlaced mode requires shaders to be enabled. # type: enum values: none, anaglyph, interlaced, topbottom, sidebyside, crossview # 3d_mode = none @@ -310,11 +311,7 @@ ### Clouds -# Clouds are a client-side effect. -# type: bool -# enable_clouds = true - -# Use 3D cloud look instead of flat. +# Allow clouds to look 3D instead of flat. # type: bool # enable_3d_clouds = true @@ -341,6 +338,7 @@ # trilinear_filter = false # Use anisotropic filtering when looking at textures from an angle. +# This provides a significant improvement when used together with mipmapping. # type: bool # anisotropic_filter = false @@ -349,16 +347,18 @@ # * None - No antialiasing (default) # # * FSAA - Hardware-provided full-screen antialiasing -# (incompatible with Post Processing and Undersampling) # A.K.A multi-sample antialiasing (MSAA) # Smoothens out block edges but does not affect the insides of textures. -# A restart is required to change this option. # -# * FXAA - Fast approximate antialiasing (requires shaders) +# If Post Processing is disabled, changing FSAA requires a restart. +# Also, if Post Processing is disabled, FSAA will not work together with +# undersampling or a non-default "3d_mode" setting. +# +# * FXAA - Fast approximate antialiasing # Applies a post-processing filter to detect and smoothen high-contrast edges. # Provides balance between speed and image quality. # -# * SSAA - Super-sampling antialiasing (requires shaders) +# * SSAA - Super-sampling antialiasing # Renders higher-resolution image of the scene, then scales down to reduce # the aliasing effects. This is the slowest and the most accurate method. # type: enum values: none, fsaa, fxaa, ssaa @@ -412,10 +412,6 @@ # type: bool # performance_tradeoffs = false -# Adds particles when digging a node. -# type: bool -# enable_particles = true - ### Waving Nodes # Set to true to enable waving leaves. @@ -474,29 +470,17 @@ # type: bool # shadow_map_texture_32bit = true -# Enable Poisson disk filtering. -# On true uses Poisson disk to make "soft shadows". Otherwise uses PCF filtering. -# type: bool -# shadow_poisson_filter = true - # Define shadow filtering quality. # This simulates the soft shadows effect by applying a PCF or Poisson disk # but also uses more resources. # type: enum values: 0, 1, 2 # shadow_filters = 1 -# Enable colored shadows. -# On true translucent nodes cast colored shadows. This is expensive. +# Enable colored shadows for transculent nodes. +# This is expensive. # type: bool # shadow_map_color = false -# Spread a complete update of shadow map over given number of frames. -# Higher values might make shadows laggy, lower values -# will consume more resources. -# Minimum value: 1; maximum value: 16 -# type: int min: 1 max: 16 -# shadow_update_frames = 8 - # Set the soft shadow radius size. # Lower values mean sharper shadows, bigger values mean softer shadows. # Minimum value: 1.0; maximum value: 15.0 @@ -579,8 +563,7 @@ # type: float min: 0 max: 1 # sound_volume_unfocused = 0.3 -# Whether to mute sounds. You can unmute sounds at any time, unless the -# sound system is disabled (enable_sound=false). +# Whether to mute sounds. You can unmute sounds at any time. # In-game, you can toggle the mute state with the mute key or by using the # pause menu. # type: bool @@ -630,13 +613,6 @@ # type: bool # gui_scaling_filter = false -# When gui_scaling_filter_txr2img is true, copy those images -# from hardware to software for scaling. When false, fall back -# to the old scaling method, for video drivers that don't -# properly support downloading textures back from hardware. -# type: bool -# gui_scaling_filter_txr2img = true - # Delay showing tooltips, stated in milliseconds. # type: int min: 0 max: 1.844674407371e+19 # tooltip_show_delay = 400 @@ -708,7 +684,7 @@ # The URL for the content repository # type: string -# contentdb_url = https://content.minetest.net +# contentdb_url = https://content.luanti.org # If enabled and you have ContentDB packages installed, Luanti may contact ContentDB to # check for package updates when opening the mainmenu. @@ -720,7 +696,7 @@ # as defined by the Free Software Foundation. # You can also specify content ratings. # These flags are independent from Luanti versions, -# so see a full list at https://content.minetest.net/help/content_flags/ +# so see a full list at https://content.luanti.org/help/content_flags/ # type: string # contentdb_flag_blacklist = nonfree, desktop_default @@ -741,22 +717,22 @@ # URL to the server list displayed in the Multiplayer Tab. # type: string -# serverlist_url = servers.minetest.net +# serverlist_url = https://servers.luanti.org -# If enabled, account registration is separate from login in the UI. -# If disabled, new accounts will be registered automatically when logging in. +# If enabled, server account registration is separate from login in the UI. +# If disabled, connecting to a server will automatically register a new account. # type: bool # enable_split_login_register = true # URL to JSON file which provides information about the newest Luanti release. # If this is empty the engine will never check for updates. # type: string -# update_information_url = https://www.minetest.net/release_info.json +# update_information_url = https://www.luanti.org/release_info.json ## Server # Name of the player. -# When running a server, clients connecting with this name are admins. +# When running a server, a client connecting with this name is admin. # When starting from the main menu, this is overridden. # type: string # name = @@ -773,11 +749,11 @@ # Domain name of server, to be displayed in the serverlist. # type: string -# server_address = game.minetest.net +# server_address = game.example.net # Homepage of server, to be displayed in the serverlist. # type: string -# server_url = https://minetest.net +# server_url = https://game.example.net # Automatically report to the serverlist. # type: bool @@ -789,7 +765,7 @@ # Announce to this serverlist. # type: string -# serverlist_url = servers.minetest.net +# serverlist_url = https://servers.luanti.org # Message of the day displayed to players connecting. # type: string @@ -838,7 +814,6 @@ # Enable/disable running an IPv6 server. # Ignored if bind_address is set. -# Needs enable_ipv6 to be enabled. # type: bool # ipv6_server = false @@ -2737,9 +2712,9 @@ ### Graphics -# Shaders are a fundamental part of rendering and enable advanced visual effects. +# Enables debug and error-checking in the OpenGL driver. # type: bool -# enable_shaders = true +# opengl_debug = false # Path to shader directory. If no path is defined, default location will be used. # type: path @@ -2757,20 +2732,17 @@ # type: int min: 0 max: 128 # transparency_sorting_distance = 16 +# Draw transparency sorted triangles grouped by their mesh buffers. +# This breaks transparency sorting between mesh buffers, but avoids situations +# where transparency sorting would be very slow otherwise. +# type: bool +# transparency_sorting_group_by_buffers = true + # Radius of cloud area stated in number of 64 node cloud squares. # Values larger than 26 will start to produce sharp cutoffs at cloud area corners. -# type: int min: 1 max: 62 +# type: int min: 8 max: 62 # cloud_radius = 12 -# Whether node texture animations should be desynchronized per mapblock. -# type: bool -# desynchronize_mapblock_texture_animation = false - -# Enables caching of facedir rotated meshes. -# This is only effective with shaders disabled. -# type: bool -# enable_mesh_cache = false - # Delay between mesh updates on the client in ms. Increasing this will slow # down the rate of mesh updates, thus reducing jitter on slower clients. # type: int min: 0 max: 50 @@ -2781,6 +2753,11 @@ # type: int min: 0 max: 8 # mesh_generation_threads = 0 +# All mesh buffers with less than this number of vertices will be merged +# during map rendering. This improves rendering performance. +# type: int min: 0 max: 1000 +# mesh_buffer_min_vertices = 300 + # True = 256 # False = 128 # Usable to make minimap smoother on slower machines. @@ -2805,12 +2782,11 @@ # type: enum values: disable, enable, force # autoscale_mode = disable -# When using bilinear/trilinear/anisotropic filters, low-resolution textures -# can be blurred, so automatically upscale them with nearest-neighbor -# interpolation to preserve crisp pixels. This sets the minimum texture size -# for the upscaled textures; higher values look sharper, but require more -# memory. Powers of 2 are recommended. This setting is ONLY applied if -# bilinear/trilinear/anisotropic filtering is enabled. +# When using bilinear/trilinear filtering, low-resolution textures +# can be blurred, so this option automatically upscales them to preserve +# crisp pixels. This defines the minimum texture size for the upscaled textures; +# higher values look sharper, but require more memory. +# This setting is ONLY applied if any of the mentioned filters are enabled. # This is also used as the base node texture size for world-aligned # texture autoscaling. # type: int min: 1 max: 32768 @@ -2824,9 +2800,22 @@ # type: int min: 1 max: 16 # client_mesh_chunk = 1 -# Enables debug and error-checking in the OpenGL driver. +# Decide the color depth of the texture used for the post-processing pipeline. +# Reducing this can improve performance, but some effects (e.g. debanding) +# require more than 8 bits to work. +# type: enum values: 8, 10, 16 +# post_processing_texture_bits = 16 + +# Enable Poisson disk filtering. +# On true uses Poisson disk to make "soft shadows". Otherwise uses PCF filtering. # type: bool -# opengl_debug = false +# shadow_poisson_filter = true + +# Spread a complete update of the shadow map over a given number of frames. +# Higher values might make shadows laggy, lower values +# will consume more resources. +# type: int min: 1 max: 32 +# shadow_update_frames = 16 # Set to true to render debugging breakdown of the bloom effect. # In debug mode, the screen is split into 4 quadrants: @@ -3057,10 +3046,6 @@ # type: int min: -1 # max_forceloaded_blocks = 16 -# Interval of sending time of day to clients, stated in seconds. -# type: float min: 0.001 -# time_send_interval = 5.0 - # Interval of saving important changes in the world, stated in seconds. # type: float min: 0.001 # server_map_save_interval = 5.3 @@ -3071,7 +3056,7 @@ # server_unload_unused_data_timeout = 29 # Maximum number of statically stored objects in a block. -# type: int min: 1 max: 65535 +# type: int min: 256 max: 65535 # max_objects_per_block = 256 # Length of time between active block management cycles, stated in seconds. @@ -3338,13 +3323,6 @@ # type: bool # show_advanced = false -# Enables the sound system. -# If disabled, this completely disables all sounds everywhere and the in-game -# sound controls will be non-functional. -# Changing this setting requires a restart. -# type: bool -# enable_sound = true - # Key for moving the player forward. # See https://github.com/minetest/irrlicht/blob/master/include/Keycodes.h # type: key diff --git a/misc/macos/Info.plist.in b/misc/macos/Info.plist.in index 3daf446b6..9d5432708 100644 --- a/misc/macos/Info.plist.in +++ b/misc/macos/Info.plist.in @@ -2,6 +2,8 @@ + CFBundlePackageType + APPL CFBundleDevelopmentRegion English CFBundleExecutable diff --git a/misc/net.minetest.minetest.desktop b/misc/net.minetest.minetest.desktop index 571eb58a9..325bd59d6 100644 --- a/misc/net.minetest.minetest.desktop +++ b/misc/net.minetest.minetest.desktop @@ -11,4 +11,5 @@ PrefersNonDefaultGPU=true Type=Application Categories=Game;Simulation; StartupNotify=false +StartupWMClass=Luanti Keywords=sandbox;world;mining;crafting;blocks;nodes;multiplayer;roleplaying;minetest; diff --git a/misc/net.minetest.minetest.metainfo.xml b/misc/net.minetest.minetest.metainfo.xml index 9e7d927f1..59778bfd4 100644 --- a/misc/net.minetest.minetest.metainfo.xml +++ b/misc/net.minetest.minetest.metainfo.xml @@ -25,11 +25,30 @@ 360 - + mild mild + none + none + none + none + none + none + none + none + none + none + none + none + none intense mild + none + none + none + none + none + none @@ -103,13 +122,13 @@ net.minetest.minetest.desktop - https://www.minetest.net/media/gallery/1.jpg + https://www.luanti.org/media/gallery/1.jpg - https://www.minetest.net/media/gallery/3.jpg + https://www.luanti.org/media/gallery/3.jpg - https://www.minetest.net/media/gallery/5.jpg + https://www.luanti.org/media/gallery/5.jpg @@ -131,14 +150,14 @@ roleplaying - https://www.minetest.net - https://www.minetest.net/get-involved/#reporting-issues - https://dev.minetest.net/Translation - https://www.minetest.net/get-involved/#donate + https://www.luanti.org + https://www.luanti.org/get-involved/#reporting-issues + https://dev.luanti.org/Translation/ + https://www.luanti.org/get-involved/#donate https://wiki.luanti.org/FAQ https://wiki.luanti.org - https://github.com/minetest/minetest - https://www.minetest.net/get-involved + https://github.com/luanti-org/luanti + https://www.luanti.org/get-involved luanti @@ -149,6 +168,6 @@ celeron55@gmail.com - + diff --git a/po/ar/luanti.po b/po/ar/luanti.po index a80365b54..ddb4cda18 100644 --- a/po/ar/luanti.po +++ b/po/ar/luanti.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: minetest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" "PO-Revision-Date: 2024-05-21 09:01+0000\n" "Last-Translator: Jamil Mohamad Alhussein \n" "Language-Team: Arabic ] [-t]" msgstr "[all | ]" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "استعرض" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "حرر" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "إختر الدليل" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "إختر ملف" + +#: builtin/common/settings/components.lua +#, fuzzy +msgid "Set" +msgstr "Select" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(الإعداد بدون وصف)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "ضوضاء 2D" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "ألغِ" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "المُعادل" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#, fuzzy +msgid "Persistence" +msgstr "استمرار" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "إحفظ" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "تكبير/تصغير" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "البذرة" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "التوزع على محور X" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#, fuzzy +msgid "Y spread" +msgstr "التوزع على محور Y" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "التوزع على محور Z" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "القيمة المطلقة" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "إفتراضي" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "مخفف" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "(The game will need to enable automatic exposure as well)" +msgstr "(ستحتاج اللعبة إلى تمكين الظلال أيضًا)" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "(The game will need to enable bloom as well)" +msgstr "(ستحتاج اللعبة إلى تمكين الظلال أيضًا)" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "(ستحتاج اللعبة إلى تمكين الظلال أيضًا)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "(استخدم لغة النظام)" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "إمكانية الوصول" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "دردشة" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "امسح" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "التحكم" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "عطِّل" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "مُفعل" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "عام" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "حركة" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "بدون نتائج" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Reset setting to default" +msgstr "إستعِد الإفتراضي" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "إعادة تعيين الإعداد إلى الافتراضي (1$)" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "إبحث" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "أظهر الاعدادات المتقدمة" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "إعرض الأسماء التقنية" + +#: builtin/common/settings/dlg_settings.lua +msgid "Touchscreen layout" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "pause_menu" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Client Mods" +msgstr "اختر التعديلات" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "المحتوى: ألعاب" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "المحتوى: تعديلات" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "(ستحتاج اللعبة إلى تمكين الظلال أيضًا)" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "مخصص" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "ظلال ديناميكية" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "عالي" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "منخفضة" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "واسطة" + +#: builtin/common/settings/shadows_component.lua +#, fuzzy +msgid "Very High" +msgstr "عالية جدا" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "منخفضة جدًا" + #: builtin/fstk/ui.lua msgid "" msgstr "<ليس متاحًا>" @@ -164,7 +411,6 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "عُد" @@ -201,11 +447,6 @@ msgstr "التعديلات" msgid "No packages could be retrieved" msgstr "تعذر استيراد الحزم" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "بدون نتائج" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "لا توجد تحديثات" @@ -251,18 +492,6 @@ msgstr "مثبت مسبقا" msgid "Base Game:" msgstr "اللعبة القاعدية :" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "ألغِ" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -391,6 +620,12 @@ msgstr "فشل تثبيت التعديل كـ $1" msgid "Unable to install a $1 as a texture pack" msgstr "فشل تثبيت $1 كحزمة إكساء" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "(مفعل، به خطأ)" @@ -455,12 +690,6 @@ msgstr "بدون إعتماديات إختيارية" msgid "Optional dependencies:" msgstr "الإعتماديات الإختيارية:" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "إحفظ" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "العالم:" @@ -611,11 +840,6 @@ msgstr "أنهار" msgid "Sea level rivers" msgstr "أنهار بمستوى البحر" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "البذرة" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "تغيير سلس للمناطق البيئية" @@ -758,6 +982,23 @@ msgid "" msgstr "" "اسم حزمة التعديلات هذه مصرح في modpack.conf لذا أي تسمية سيتم استبدالها." +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "فعِل الكل" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "إصدار جديد ل 1$ متوفر" @@ -786,7 +1027,7 @@ msgstr "أبدًا" msgid "Visit website" msgstr "زر الموقع" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "إعدادات" @@ -798,234 +1039,6 @@ msgstr "قائمة الخوادم العمومية معطلة" msgid "Try reenabling public serverlist and check your internet connection." msgstr "جرب إعادة تمكين قائمة الحوادم العامة وتحقق من إتصالك بالانترنت." -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "استعرض" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "حرر" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "إختر الدليل" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "إختر ملف" - -#: builtin/mainmenu/settings/components.lua -#, fuzzy -msgid "Set" -msgstr "Select" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(الإعداد بدون وصف)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "ضوضاء 2D" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "المُعادل" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#, fuzzy -msgid "Persistence" -msgstr "استمرار" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "تكبير/تصغير" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "التوزع على محور X" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#, fuzzy -msgid "Y spread" -msgstr "التوزع على محور Y" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "التوزع على محور Z" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "القيمة المطلقة" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "إفتراضي" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "مخفف" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable automatic exposure as well)" -msgstr "(ستحتاج اللعبة إلى تمكين الظلال أيضًا)" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable bloom as well)" -msgstr "(ستحتاج اللعبة إلى تمكين الظلال أيضًا)" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "(ستحتاج اللعبة إلى تمكين الظلال أيضًا)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "(استخدم لغة النظام)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "إمكانية الوصول" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "دردشة" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "امسح" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "التحكم" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "عطِّل" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "مُفعل" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "عام" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "حركة" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Reset setting to default" -msgstr "إستعِد الإفتراضي" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "إعادة تعيين الإعداد إلى الافتراضي (1$)" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "إبحث" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "أظهر الاعدادات المتقدمة" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "إعرض الأسماء التقنية" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Client Mods" -msgstr "اختر التعديلات" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "المحتوى: ألعاب" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "المحتوى: تعديلات" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "مُفعل" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Shaders are disabled." -msgstr "تحديث الكاميرا معطل" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "(ستحتاج اللعبة إلى تمكين الظلال أيضًا)" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "مخصص" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "ظلال ديناميكية" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "عالي" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "منخفضة" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "واسطة" - -#: builtin/mainmenu/settings/shadows_component.lua -#, fuzzy -msgid "Very High" -msgstr "عالية جدا" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "منخفضة جدًا" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "حول" @@ -1046,10 +1059,6 @@ msgstr "المطورون الرئيسيون" msgid "Core Team" msgstr "الفريق الأساسي" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "افتح دليل بيانات المستخدم" @@ -1202,10 +1211,22 @@ msgstr "ابدأ اللعبة" msgid "You need to install a game before you can create a world." msgstr "يجب عليك تنزيل اللعبة قبل إضافة التعديلات" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "حذف المفضلة" + #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "عنوان" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "عميل" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "النمط الإبداعي" @@ -1219,6 +1240,11 @@ msgstr "الضرر / قتال اللاعبين" msgid "Favorites" msgstr "المفضلة" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "اللعبة" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "خوادم غير متوافقة" @@ -1231,10 +1257,26 @@ msgstr "انضم للعبة" msgid "Login" msgstr "تسجيل الدخول" +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +msgid "Open server website" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Public Servers" msgstr "خوادم عمومية" @@ -1320,23 +1362,6 @@ msgstr "" "\n" "راجع debug.txt لمزيد من التفاصيل." -#: src/client/game.cpp -msgid "- Mode: " -msgstr "- النمط: " - -#: src/client/game.cpp -msgid "- Public: " -msgstr "- عام: " - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "- قتال اللاعبين: " - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "- اسم الخادم: " - #: src/client/game.cpp #, fuzzy msgid "A serialization error occurred:" @@ -1347,6 +1372,11 @@ msgstr "حدث خطأ في التسلسل:" msgid "Access denied. Reason: %s" msgstr "رُفض النفاذ. السبب: %s" +#: src/client/game.cpp +#, fuzzy +msgid "All debug info hidden" +msgstr "معلومات التنقيح مرئية" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "المشي التلقائي معطل" @@ -1367,6 +1397,10 @@ msgstr "حدود الكتلة الحالية ظاهرة" msgid "Block bounds shown for nearby blocks" msgstr "حدود الكتل القريبة ظاهرة" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "تحديث الكاميرا معطل" @@ -1380,10 +1414,6 @@ msgstr "تحديث الكاميرا مفعل" msgid "Can't show block bounds (disabled by game or mod)" msgstr "تعذر إظهار حدود الكتل (غير مفعل من طرف تعديل أو لعبة)" -#: src/client/game.cpp -msgid "Change Password" -msgstr "غير كلمة المرور" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "الوضع السينمائي معطل" @@ -1412,39 +1442,6 @@ msgstr "خطأ في الاتصال (انتهاء المهلة؟)" msgid "Connection failed for unknown reason" msgstr "فشل الاتصال لسبب مجهول" -#: src/client/game.cpp -msgid "Continue" -msgstr "تابع" - -#: src/client/game.cpp -#, fuzzy -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" -"اعدادات التحكم الافتراضية: \n" -"بدون قائمة مرئية: \n" -"- لمسة واحدة: زر تفعيل\n" -"- لمسة مزدوجة: ضع/استخدم\n" -"- تحريك إصبع: دوران\n" -"المخزن أو قائمة مرئية: \n" -"- لمسة مزدوجة (خارج القائمة): \n" -" --> اغلق القائمة\n" -"- لمس خانة أو تكديس: \n" -" --> حرك التكديس\n" -"- لمس وسحب, ولمس باصبع ثان: \n" -" --> وضع عنصر واحد في خانة\n" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1458,31 +1455,15 @@ msgstr "ينشىء عميلا…" msgid "Creating server..." msgstr "ينشىء خادوما…" -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "معلومات التنقيح ومنحنى محلل البيانات مخفيان" - #: src/client/game.cpp msgid "Debug info shown" msgstr "معلومات التنقيح مرئية" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "معلومات التصحيح ، الرسم البياني لملف التعريف ، والإطار السلكي مخفي" - #: src/client/game.cpp #, fuzzy, c-format msgid "Error creating client: %s" msgstr "ينشىء عميلا…" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "اخرج للقائمة" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "اخرج لنظام التشغيل" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "نمط السرعة معطل" @@ -1520,18 +1501,6 @@ msgstr "الضباب مفعل" msgid "Fog enabled by game or mod" msgstr "التكبير معطل من قبل لعبة أو تعديل" -#: src/client/game.cpp -msgid "Game info:" -msgstr "معلومات اللعبة:" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "اللعبة موقفة مؤقتا" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "استضافة خادوم" - #: src/client/game.cpp msgid "Item definitions..." msgstr "تعريف العنصر…" @@ -1568,14 +1537,6 @@ msgstr "تم تمكين وضع Noclip (ملاحظة: لا يوجد امتياز msgid "Node definitions..." msgstr "تعريفات العقدة..." -#: src/client/game.cpp -msgid "Off" -msgstr "معطّل" - -#: src/client/game.cpp -msgid "On" -msgstr "مفعل" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "" @@ -1588,38 +1549,22 @@ msgstr "" msgid "Profiler graph shown" msgstr "منحنى محلل البيانات ظاهر" -#: src/client/game.cpp -msgid "Remote server" -msgstr "خادوم بعيد" - #: src/client/game.cpp msgid "Resolving address..." msgstr "يستورد العناوين…" -#: src/client/game.cpp -msgid "Respawn" -msgstr "أعِد الإحياء" - #: src/client/game.cpp msgid "Shutting down..." msgstr "يغلق…" -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "لاعب منفرد" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "حجم الصوت" - #: src/client/game.cpp msgid "Sound muted" msgstr "الصوت مكتوم" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "نظام الصوت معطل" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "نظام الصوت غير مدمج أثناء البناء" @@ -1698,18 +1643,116 @@ msgstr "غُيرَ مدى الرؤية الى %d" msgid "Volume changed to %d%%" msgstr "غُير الحجم الى %d%%" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "تم إظهار الإطار السلكي" -#: src/client/game.cpp -msgid "You died" -msgstr "لقد مُتْ" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "التكبير معطل من قبل لعبة أو تعديل" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "- النمط: " + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "- عام: " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "- قتال اللاعبين: " + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "- اسم الخادم: " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "غير كلمة المرور" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "تابع" + +#: src/client/game_formspec.cpp +#, fuzzy +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" +"اعدادات التحكم الافتراضية: \n" +"بدون قائمة مرئية: \n" +"- لمسة واحدة: زر تفعيل\n" +"- لمسة مزدوجة: ضع/استخدم\n" +"- تحريك إصبع: دوران\n" +"المخزن أو قائمة مرئية: \n" +"- لمسة مزدوجة (خارج القائمة): \n" +" --> اغلق القائمة\n" +"- لمس خانة أو تكديس: \n" +" --> حرك التكديس\n" +"- لمس وسحب, ولمس باصبع ثان: \n" +" --> وضع عنصر واحد في خانة\n" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "اخرج للقائمة" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "اخرج لنظام التشغيل" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "معلومات اللعبة:" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "اللعبة موقفة مؤقتا" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "استضافة خادوم" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "معطّل" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "مفعل" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "خادوم بعيد" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "أعِد الإحياء" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "حجم الصوت" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "لقد مُتْ" + #: src/client/gameui.cpp #, fuzzy msgid "Chat currently disabled by game or mod" @@ -2090,8 +2133,9 @@ msgid "Failed to compile the \"%s\" shader." msgstr "فشل فتح صفحة الويب" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." -msgstr "" +#, fuzzy +msgid "GLSL is not supported by the driver" +msgstr "نظام الصوت غير مدمج أثناء البناء" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" #: src/content/mod_configuration.cpp @@ -2144,7 +2188,7 @@ msgstr "المشي التلقائي" msgid "Automatic jumping" msgstr "القفز التلقائي" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "Aux1" @@ -2156,7 +2200,7 @@ msgstr "للخلف" msgid "Block bounds" msgstr "حدود الكتلة" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "غير الكاميرا" @@ -2180,7 +2224,7 @@ msgstr "قلل الحجم" msgid "Double tap \"jump\" to toggle fly" msgstr "اضغط مرتين على \"اقفز\" لتفعيل الطيران" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "اسقاط" @@ -2196,11 +2240,11 @@ msgstr "زد المدى" msgid "Inc. volume" msgstr "زد الحجم" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "المخزن" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "اقفز" @@ -2232,7 +2276,7 @@ msgstr "العنصر التالي" msgid "Prev. item" msgstr "العنصر السابق" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "حدد المدى" @@ -2245,7 +2289,7 @@ msgstr "Right" msgid "Screenshot" msgstr "صوّر الشاشة" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "تسلل" @@ -2253,15 +2297,15 @@ msgstr "تسلل" msgid "Toggle HUD" msgstr "بدّل عرض الواجهة" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "بدّل عرض سجل المحادثة" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "بدّل وضع السرعة" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "بدّل حالة الطيران" @@ -2269,11 +2313,11 @@ msgstr "بدّل حالة الطيران" msgid "Toggle fog" msgstr "بدّل ظهور الضباب" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "بدّل ظهور الخريطة المصغرة" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "" @@ -2281,7 +2325,7 @@ msgstr "" msgid "Toggle pitchmove" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "كبِر" @@ -2318,7 +2362,7 @@ msgstr "كلمة المرور القديمة" msgid "Passwords do not match!" msgstr "كلمتا المرور غير متطابقتين!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "أخرج" @@ -2331,15 +2375,46 @@ msgstr "مكتوم" msgid "Sound Volume: %d%%" msgstr "حجم الصوت: %d%%" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Add button" +msgstr "الزر الأوسط" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "تم!" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Remove" +msgstr "خادوم بعيد" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp msgid "Joystick" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Toggle debug" msgstr "بدّل ظهور الضباب" @@ -2539,8 +2614,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" #: src/settings_translation_file.cpp @@ -2593,10 +2667,6 @@ msgstr "مدى الكتل النشطة" msgid "Active object send range" msgstr "" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "يضيف جزيئات عند حفر العقدة." - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "اضبط كثافة العرض المكتشفة المستخدمة لقياس عناصر واجهة المستخدم." @@ -2626,6 +2696,16 @@ msgstr "ضمّن اسم العنصر" msgid "Advanced" msgstr "متقدم" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Allow clouds to look 3D instead of flat." +msgstr "" + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "" @@ -3009,14 +3089,14 @@ msgstr "تفاصيل السحاب" msgid "Clouds" msgstr "سحاب" -#: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." -msgstr "الغيوم هي تأثير من جانب العميل." - #: src/settings_translation_file.cpp msgid "Clouds in menu" msgstr "سحب في القائمة" +#: src/settings_translation_file.cpp +msgid "Color depth for post-processing texture" +msgstr "" + #: src/settings_translation_file.cpp msgid "Colored fog" msgstr "ضباب ملون" @@ -3039,7 +3119,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" #: src/settings_translation_file.cpp @@ -3190,6 +3270,14 @@ msgstr "" msgid "Debugging" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "" @@ -3342,19 +3430,11 @@ msgid "" "When the 'snowbiomes' flag is enabled, this is ignored." msgstr "" -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Developer Options" msgstr "المطورون الرئيسيون" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "" @@ -3382,6 +3462,14 @@ msgstr "" msgid "Double-tapping the jump key toggles fly mode." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "" @@ -3457,8 +3545,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" #: src/settings_translation_file.cpp @@ -3531,8 +3619,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" #: src/settings_translation_file.cpp @@ -3547,12 +3634,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "" - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -3859,10 +3940,6 @@ msgstr "" msgid "GUI scaling filter" msgstr "" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Gamepads" @@ -4107,12 +4184,6 @@ msgstr "" "إذا فُعّل ، سيستخدم مفتاح \"Aux1\" بدلاً من مفتاح \"التسلل\" للتحرك للتسلق " "والنزول." -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -4131,6 +4202,13 @@ msgid "" "empty password." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4225,10 +4303,6 @@ msgstr "" msgid "Interval of saving important changes in the world, stated in seconds." msgstr "" -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "" - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "" @@ -4850,10 +4924,6 @@ msgstr "" msgid "Maximum users" msgstr "" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "" @@ -4886,6 +4956,10 @@ msgstr "" msgid "Minimum limit of random number of small caves per mapchunk." msgstr "" +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "" @@ -4976,7 +5050,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" @@ -5420,17 +5494,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5628,16 +5704,6 @@ msgstr "" msgid "Shader path" msgstr "" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "مُظللات" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "" @@ -5803,10 +5869,9 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" #: src/settings_translation_file.cpp @@ -6085,10 +6150,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "" -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "" @@ -6147,6 +6208,10 @@ msgstr "" msgid "Transparency Sorting Distance" msgstr "" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "" @@ -6197,7 +6262,10 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" #: src/settings_translation_file.cpp @@ -6220,16 +6288,14 @@ msgstr "" msgid "Upper Y limit of floatlands." msgstr "" -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "" - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "" #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" #: src/settings_translation_file.cpp @@ -6467,20 +6533,12 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -6491,10 +6549,6 @@ msgid "" "Mods may still set a background." msgstr "" -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -6517,8 +6571,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -6673,6 +6726,9 @@ msgstr "" #~ "أدرك أن هذه القيمة ستُتجاوز إذا كان حقل العنوان في القائمة الرئيسية يحوي " #~ "عنوانًا." +#~ msgid "Adds particles when digging a node." +#~ msgstr "يضيف جزيئات عند حفر العقدة." + #~ msgid "" #~ "Adjust dpi configuration to your screen (non X11/Android only) e.g. for " #~ "4k screens." @@ -6733,6 +6789,9 @@ msgstr "" #~ msgid "Cinematic mode key" #~ msgstr "مفتاح الوضع السنيمائي" +#~ msgid "Clouds are a client-side effect." +#~ msgstr "الغيوم هي تأثير من جانب العميل." + #~ msgid "Config mods" #~ msgstr "اضبط التعديلات" @@ -6789,6 +6848,12 @@ msgstr "" #~ msgid "Damage enabled" #~ msgstr "الضرر ممكن" +#~ msgid "Debug info and profiler graph hidden" +#~ msgstr "معلومات التنقيح ومنحنى محلل البيانات مخفيان" + +#~ msgid "Debug info, profiler graph, and wireframe hidden" +#~ msgstr "معلومات التصحيح ، الرسم البياني لملف التعريف ، والإطار السلكي مخفي" + #~ msgid "Dec. volume key" #~ msgstr "مفتاح تقليل الحجم" @@ -6820,6 +6885,10 @@ msgstr "" #~ msgid "Dynamic shadows:" #~ msgstr "ظلال ديناميكية:" +#, fuzzy +#~ msgid "Enable" +#~ msgstr "مُفعل" + #~ msgid "Enter " #~ msgstr "أدخل " @@ -6835,9 +6904,6 @@ msgstr "" #~ msgid "Fog toggle key" #~ msgstr "مفتاح تبديل ظهور الضباب" -#~ msgid "Game" -#~ msgstr "اللعبة" - #~ msgid "Generate Normal Maps" #~ msgstr "ولِد خرائط عادية" @@ -7025,15 +7091,25 @@ msgstr "" #~ msgid "Screen:" #~ msgstr "الشاشة:" +#~ msgid "Shaders" +#~ msgstr "مُظللات" + #~ msgid "Shaders (experimental)" #~ msgstr "المظللات (تجريبية)" #~ msgid "Shaders (unavailable)" #~ msgstr "مظللات (غير متوفر)" +#, fuzzy +#~ msgid "Shaders are disabled." +#~ msgstr "تحديث الكاميرا معطل" + #~ msgid "Simple Leaves" #~ msgstr "أوراق بسيطة" +#~ msgid "Sound system is disabled" +#~ msgstr "نظام الصوت معطل" + #~ msgid "Special" #~ msgstr "خاص" diff --git a/po/be/luanti.po b/po/be/luanti.po index 1c296d27c..3652297ac 100644 --- a/po/be/luanti.po +++ b/po/be/luanti.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Belarusian (Minetest)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" "PO-Revision-Date: 2019-11-19 23:04+0000\n" "Last-Translator: Viktar Vauchkevich \n" "Language-Team: Belarusian ] [-t]" msgstr "" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "Праглядзець" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "Рэдагаваць" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "Абраць каталог" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "Абраць файл" + +#: builtin/common/settings/components.lua +#, fuzzy +msgid "Set" +msgstr "Абраць" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(Няма апісання)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "2D-шум" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "Скасаваць" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "Лакунарнасць" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "Актавы" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "Зрух" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#, fuzzy +msgid "Persistence" +msgstr "Сталасць" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "Захаваць" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "Маштаб" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "Зерне" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "X распаўсюджвання" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "Y распаўсюджвання" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "Z распаўсюджвання" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "абсалютная велічыня" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "прадвызначаны" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "паслаблены" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "Размова" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "Ачысціць" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "Кіраванне" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "Адключаны" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "Уключаны" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Movement" +msgstr "Шпаркае перамяшчэнне" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "Вынікі адсутнічаюць" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Reset setting to default" +msgstr "Аднавіць прадвызначанае" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "Пошук" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "Паказваць тэхнічныя назвы" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Touchscreen layout" +msgstr "Парог сэнсарнага экрана" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "pause_menu" +msgstr "FPS у меню паўзы" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Client Mods" +msgstr "Абраць свет:" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Content: Games" +msgstr "Змесціва" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Content: Mods" +msgstr "Змесціва" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +#, fuzzy +msgid "Dynamic shadows" +msgstr "Цень шрыфту" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "" + #: builtin/fstk/ui.lua msgid "" msgstr "" @@ -169,7 +417,6 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "Назад" @@ -206,11 +453,6 @@ msgstr "Мадыфікацыі" msgid "No packages could be retrieved" msgstr "Немагчыма атрымаць пакункі" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "Вынікі адсутнічаюць" - #: builtin/mainmenu/content/dlg_contentdb.lua #, fuzzy msgid "No updates" @@ -259,18 +501,6 @@ msgstr "Клавіша ўжо выкарыстоўваецца" msgid "Base Game:" msgstr "Гуляць (сервер)" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "Скасаваць" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -404,6 +634,12 @@ msgstr "Не атрымалася ўсталяваць мадыфікацыю я msgid "Unable to install a $1 as a texture pack" msgstr "Не атрымалася ўсталяваць $1 як пакунак тэкстур" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "" @@ -468,12 +704,6 @@ msgstr "Няма неабавязковых залежнасцей" msgid "Optional dependencies:" msgstr "Неабавязковыя залежнасці:" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "Захаваць" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "Свет:" @@ -639,11 +869,6 @@ msgstr "Памер рэк" msgid "Sea level rivers" msgstr "" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "Зерне" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "" @@ -787,6 +1012,23 @@ msgstr "" "Гэты пакунак мадыфікацый мае назву ў modpack.conf, якая не зменіцца, калі яе " "змяніць тут." +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "Уключыць усё" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "" @@ -811,7 +1053,7 @@ msgstr "" msgid "Visit website" msgstr "" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "Налады" @@ -826,233 +1068,6 @@ msgstr "" "Паспрабуйце паўторна ўключыць спіс публічных сервераў і праверце злучэнне з " "сецівам." -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "Праглядзець" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "Рэдагаваць" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "Абраць каталог" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "Абраць файл" - -#: builtin/mainmenu/settings/components.lua -#, fuzzy -msgid "Set" -msgstr "Абраць" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(Няма апісання)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "2D-шум" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "Лакунарнасць" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "Актавы" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "Зрух" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#, fuzzy -msgid "Persistence" -msgstr "Сталасць" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "Маштаб" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "X распаўсюджвання" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "Y распаўсюджвання" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "Z распаўсюджвання" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "абсалютная велічыня" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "прадвызначаны" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "паслаблены" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "Размова" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "Ачысціць" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "Кіраванне" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "Адключаны" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "Уключаны" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Movement" -msgstr "Шпаркае перамяшчэнне" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Reset setting to default" -msgstr "Аднавіць прадвызначанае" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "Пошук" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "Паказваць тэхнічныя назвы" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Client Mods" -msgstr "Абраць свет:" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Content: Games" -msgstr "Змесціва" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Content: Mods" -msgstr "Змесціва" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "Уключаны" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Shaders are disabled." -msgstr "Абнаўленне камеры адключана" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -#, fuzzy -msgid "Dynamic shadows" -msgstr "Цень шрыфту" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "" @@ -1074,10 +1089,6 @@ msgstr "Асноўныя распрацоўшчыкі" msgid "Core Team" msgstr "" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "" - #: builtin/mainmenu/tab_about.lua #, fuzzy msgid "Open User Data Directory" @@ -1229,11 +1240,23 @@ msgstr "Пачаць гульню" msgid "You need to install a game before you can create a world." msgstr "" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "Адлеглы порт" + #: builtin/mainmenu/tab_online.lua #, fuzzy msgid "Address" msgstr "- Адрас: " +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "Кліент" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "Творчы рэжым" @@ -1249,6 +1272,11 @@ msgstr "Пашкоджанні" msgid "Favorites" msgstr "Упадабанае" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "Гульня" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "" @@ -1261,10 +1289,28 @@ msgstr "Далучыцца да гульні" msgid "Login" msgstr "" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Number of mods: $1" +msgstr "Колькасць узнікаючых патокаў" + +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Open server website" +msgstr "Крок адведзенага сервера" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "Пінг" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua #, fuzzy msgid "Public Servers" @@ -1354,23 +1400,6 @@ msgstr "" "\n" "Падрабязней у файле debug.txt." -#: src/client/game.cpp -msgid "- Mode: " -msgstr "- Рэжым: " - -#: src/client/game.cpp -msgid "- Public: " -msgstr "- Публічны: " - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "- PvP: " - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "- Назва сервера: " - #: src/client/game.cpp #, fuzzy msgid "A serialization error occurred:" @@ -1381,6 +1410,11 @@ msgstr "Адбылася памылка:" msgid "Access denied. Reason: %s" msgstr "" +#: src/client/game.cpp +#, fuzzy +msgid "All debug info hidden" +msgstr "Адладачная інфармацыя паказваецца" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "Аўтаматычны рух наперад адключаны" @@ -1401,6 +1435,10 @@ msgstr "" msgid "Block bounds shown for nearby blocks" msgstr "" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "Абнаўленне камеры адключана" @@ -1414,10 +1452,6 @@ msgstr "Абнаўленне камеры ўключана" msgid "Can't show block bounds (disabled by game or mod)" msgstr "Павелічэнне зараз выключана гульнёй альбо мадыфікацыяй" -#: src/client/game.cpp -msgid "Change Password" -msgstr "Змяніць пароль" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "Кінематаграфічны рэжым адключаны" @@ -1447,39 +1481,6 @@ msgstr "Памылка злучэння (таймаут?)" msgid "Connection failed for unknown reason" msgstr "" -#: src/client/game.cpp -msgid "Continue" -msgstr "Працягнуць" - -#: src/client/game.cpp -#, fuzzy -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" -"Прадвызначанае кіраванне:\n" -"Не ў меню:\n" -"- адзін націск: кнопка актывізацыі\n" -"- падвойны націск: пакласці/выкарыстаць\n" -"- слізганне пальцам: аглядзецца\n" -"У меню/інвентары:\n" -"- падвойны націск па-за меню:\n" -" --> закрыць\n" -"- крануць стос, крануць слот:\n" -" --> рухаць стос\n" -"- крануць і валачы, націснуць другім пальцам:\n" -" --> пакласці адзін прадмет у слот\n" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1493,31 +1494,15 @@ msgstr "Стварэнне кліента…" msgid "Creating server..." msgstr "Стварэнне сервера…" -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "Адладачная інфармацыя і графік прафіліроўшчыка схаваныя" - #: src/client/game.cpp msgid "Debug info shown" msgstr "Адладачная інфармацыя паказваецца" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "Адладачная інфармацыя, графік прафіліроўшчыка і каркас схаваныя" - #: src/client/game.cpp #, fuzzy, c-format msgid "Error creating client: %s" msgstr "Стварэнне кліента…" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "Выхад у меню" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "Выхад у сістэму" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "Шпаркі рэжым адключаны" @@ -1555,18 +1540,6 @@ msgstr "Туман уключаны" msgid "Fog enabled by game or mod" msgstr "Павелічэнне зараз выключана гульнёй альбо мадыфікацыяй" -#: src/client/game.cpp -msgid "Game info:" -msgstr "Інфармацыя пра гульню:" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "Гульня прыпыненая" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "Сервер (хост)" - #: src/client/game.cpp msgid "Item definitions..." msgstr "Апісанне прадметаў…" @@ -1604,14 +1577,6 @@ msgstr "Рэжым руху скрозь сцены ўключаны (прыві msgid "Node definitions..." msgstr "Апісанне вузлоў…" -#: src/client/game.cpp -msgid "Off" -msgstr "Адключана" - -#: src/client/game.cpp -msgid "On" -msgstr "Уключана" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "Рэжым нахілення руху выключаны" @@ -1624,38 +1589,22 @@ msgstr "Рэжым нахілення руху ўключаны" msgid "Profiler graph shown" msgstr "Графік прафіліроўшчыка паказваецца" -#: src/client/game.cpp -msgid "Remote server" -msgstr "Адлеглы сервер" - #: src/client/game.cpp msgid "Resolving address..." msgstr "Распазнаванне адраса…" -#: src/client/game.cpp -msgid "Respawn" -msgstr "Адрадзіцца" - #: src/client/game.cpp msgid "Shutting down..." msgstr "Выключэнне…" -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "Адзіночная гульня" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "Гучнасць" - #: src/client/game.cpp msgid "Sound muted" msgstr "Гук адключаны" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "" @@ -1729,18 +1678,116 @@ msgstr "Бачнасць змененая на %d" msgid "Volume changed to %d%%" msgstr "Гучнасць змененая на %d %%" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "Каркас паказваецца" -#: src/client/game.cpp -msgid "You died" -msgstr "Вы загінулі" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "Павелічэнне зараз выключана гульнёй альбо мадыфікацыяй" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "- Рэжым: " + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "- Публічны: " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "- PvP: " + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "- Назва сервера: " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "Змяніць пароль" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "Працягнуць" + +#: src/client/game_formspec.cpp +#, fuzzy +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" +"Прадвызначанае кіраванне:\n" +"Не ў меню:\n" +"- адзін націск: кнопка актывізацыі\n" +"- падвойны націск: пакласці/выкарыстаць\n" +"- слізганне пальцам: аглядзецца\n" +"У меню/інвентары:\n" +"- падвойны націск па-за меню:\n" +" --> закрыць\n" +"- крануць стос, крануць слот:\n" +" --> рухаць стос\n" +"- крануць і валачы, націснуць другім пальцам:\n" +" --> пакласці адзін прадмет у слот\n" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "Выхад у меню" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "Выхад у сістэму" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "Інфармацыя пра гульню:" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "Гульня прыпыненая" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "Сервер (хост)" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "Адключана" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "Уключана" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "Адлеглы сервер" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "Адрадзіцца" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "Гучнасць" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "Вы загінулі" + #: src/client/gameui.cpp #, fuzzy msgid "Chat currently disabled by game or mod" @@ -2082,7 +2129,7 @@ msgid "Failed to compile the \"%s\" shader." msgstr "Не атрымалася спампаваць $1" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." +msgid "GLSL is not supported by the driver" msgstr "" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" @@ -2133,7 +2180,7 @@ msgstr "Аўтабег" msgid "Automatic jumping" msgstr "Аўтаскок" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "" @@ -2145,7 +2192,7 @@ msgstr "Назад" msgid "Block bounds" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "Змяніць камеру" @@ -2169,7 +2216,7 @@ msgstr "Паменшыць гучнасць" msgid "Double tap \"jump\" to toggle fly" msgstr "Падвойны \"скок\" = палёт" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "Выкінуць" @@ -2185,11 +2232,11 @@ msgstr "Павялічыць бачнасць" msgid "Inc. volume" msgstr "Павялічыць гучнасць" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "Інвентар" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "Скакаць" @@ -2221,7 +2268,7 @@ msgstr "Наступны прадмет" msgid "Prev. item" msgstr "Папярэдні прадмет" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "Адлегласць бачнасці" @@ -2233,7 +2280,7 @@ msgstr "Управа" msgid "Screenshot" msgstr "Здымак экрана" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "Красціся" @@ -2241,15 +2288,15 @@ msgstr "Красціся" msgid "Toggle HUD" msgstr "HUD" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "Размова" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "Шпаркасць" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "Палёт" @@ -2257,11 +2304,11 @@ msgstr "Палёт" msgid "Toggle fog" msgstr "Туман" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "Мінімапа" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "Рух скрозь сцены" @@ -2269,7 +2316,7 @@ msgstr "Рух скрозь сцены" msgid "Toggle pitchmove" msgstr "Нахіленне руху" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "Павялічыць" @@ -2306,7 +2353,7 @@ msgstr "Стары пароль" msgid "Passwords do not match!" msgstr "Паролі не супадаюць!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "Выхад" @@ -2319,16 +2366,47 @@ msgstr "Сцішаны" msgid "Sound Volume: %d%%" msgstr "Гучнасць: " -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Add button" +msgstr "Сярэдняя кнопка" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "Завершана!" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Remove" +msgstr "Адлеглы сервер" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Joystick" msgstr "ID джойсціка" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Toggle debug" msgstr "Туман" @@ -2548,8 +2626,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" "3D-падтрымка.\n" "Зараз падтрымліваюцца:\n" @@ -2615,10 +2692,6 @@ msgstr "Адлегласць узаемадзеяння з блокамі" msgid "Active object send range" msgstr "Адлегласць адпраўлення актыўнага аб'екта" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "Дадае часціцы пры капанні блока." - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2642,6 +2715,17 @@ msgstr "Дадаваць назвы прадметаў" msgid "Advanced" msgstr "Пашыраныя" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +#, fuzzy +msgid "Allow clouds to look 3D instead of flat." +msgstr "Аб'ёмныя аблокі замест плоскіх." + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "" @@ -3050,15 +3134,14 @@ msgstr "Радыус аблокаў" msgid "Clouds" msgstr "Аблокі" -#: src/settings_translation_file.cpp -#, fuzzy -msgid "Clouds are a client-side effect." -msgstr "Аблокі — эфект на баку кліента." - #: src/settings_translation_file.cpp msgid "Clouds in menu" msgstr "Аблокі ў меню" +#: src/settings_translation_file.cpp +msgid "Color depth for post-processing texture" +msgstr "" + #: src/settings_translation_file.cpp msgid "Colored fog" msgstr "Каляровы туман" @@ -3083,7 +3166,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" "Падзелены коскамі спіс пазнак, якія можна хаваць у рэпазіторыі.\n" "\"nonfree\" можна выкарыстоўвацца, каб схаваць пакункі, якія з’яўляюцца " @@ -3234,6 +3317,14 @@ msgstr "Узровень журнала адладкі" msgid "Debugging" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "Крок адведзенага сервера" @@ -3402,19 +3493,11 @@ msgstr "" "Пустыні з'яўляюцца, калі np_biome перавысіць гэтае значэнне.\n" "Ігнаруецца, калі ўключаны сцяжок snowbiomes." -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "Дэсінхранізаваць анімацыю блока" - #: src/settings_translation_file.cpp #, fuzzy msgid "Developer Options" msgstr "Ітэрацыі" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "Часціцы пры капанні" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "Забараніць пустыя паролі" @@ -3442,6 +3525,14 @@ msgstr "Падвойны націск \"скока\" пераключае рэж msgid "Double-tapping the jump key toggles fly mode." msgstr "Палвойны націск клавішы скока пераключае рэжым палёту." +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "Зводка адладачных даных генератара мапы." @@ -3521,8 +3612,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" #: src/settings_translation_file.cpp @@ -3609,8 +3700,7 @@ msgstr "" #, fuzzy msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" "Уключыць/выключыць падтрымку IPv6. Сервер IPv6 можа быць абмежаваны IPv6-" "кліентамі ў залежнасці ад сістэмнай канфігурацыі.\n" @@ -3628,13 +3718,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "Уключае анімацыю прадметаў інвентару." -#: src/settings_translation_file.cpp -#, fuzzy -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "Уключае кэшаванне павернутых вонкі сетак." - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -3970,10 +4053,6 @@ msgstr "Маштабаванне графічнага інтэрфейсу" msgid "GUI scaling filter" msgstr "Фільтр маштабавання графічнага інтэрфейсу" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "txr2img-фільтр маштабавання графічнага інтэрфейсу" - #: src/settings_translation_file.cpp #, fuzzy msgid "Gamepads" @@ -4239,15 +4318,6 @@ msgstr "" "Калі ўключана, то для спускання і апускання будзе выкарыстоўвацца клавіша " "\"special\" замест \"sneak\"." -#: src/settings_translation_file.cpp -#, fuzzy -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" -"Уключае пацвярджэнне рэгістрацыі пры злучэнні з серверам.\n" -"Калі выключана, новы акаўнт будзе рэгістравацца аўтаматычна." - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -4272,6 +4342,16 @@ msgid "" "empty password." msgstr "Калі ўключана, то гульцы не змогуць далучыцца з пустым паролем." +#: src/settings_translation_file.cpp +#, fuzzy +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" +"Уключае пацвярджэнне рэгістрацыі пры злучэнні з серверам.\n" +"Калі выключана, новы акаўнт будзе рэгістравацца аўтаматычна." + #: src/settings_translation_file.cpp #, fuzzy msgid "" @@ -4389,11 +4469,6 @@ msgstr "Інструмент метадаў сутнасці пры рэгіст msgid "Interval of saving important changes in the world, stated in seconds." msgstr "Інтэрвал захавання важных змен свету, вызначаны ў секундах." -#: src/settings_translation_file.cpp -#, fuzzy -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "Інтэрвал адпраўлення кліентам часу." - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "Анімацыя прадметаў інвентару" @@ -5125,10 +5200,6 @@ msgstr "" msgid "Maximum users" msgstr "Максімальная колькасць карыстальнікаў" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "Кэш сетак" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "Паведамленне дня" @@ -5163,6 +5234,10 @@ msgstr "3D-шум, што вызначае колькасць падзямелл msgid "Minimum limit of random number of small caves per mapchunk." msgstr "" +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "MIP-тэкстураванне" @@ -5262,9 +5337,10 @@ msgstr "" "- Неабавясковыя плаваючыя выспы 7 (звычайна адключаны)." #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" "Імя гульца.\n" @@ -5781,17 +5857,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -6029,16 +6107,6 @@ msgstr "" msgid "Shader path" msgstr "Шлях да шэйдэраў" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "Шэйдэры" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Shadow filter quality" @@ -6228,10 +6296,9 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" #: src/settings_translation_file.cpp @@ -6574,10 +6641,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "Час дня пры запуску новага свету ў мілігадзінах (0-23999)." -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "Інтэрвал адпраўлення часу" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "Хуткасць часу" @@ -6647,6 +6710,10 @@ msgstr "Непразрыстыя вадкасці" msgid "Transparency Sorting Distance" msgstr "" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "Шум дрэў" @@ -6696,12 +6763,16 @@ msgid "Undersampling" msgstr "Субдыскрэтызацыя" #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Undersampling is similar to using a lower screen resolution, but it applies\n" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" "Субдыскрэтызацыя падобная на выкарыстанне нізкай раздзяляльнай здольнасці " "экрана,\n" @@ -6731,17 +6802,15 @@ msgstr "Верхні ліміт Y для падзямелляў." msgid "Upper Y limit of floatlands." msgstr "Верхні ліміт Y для падзямелляў." -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "Аб'ёмныя аблокі замест плоскіх." - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "Выкарыстоўваць анімацыю аблокаў для фона галоўнага меню." #: src/settings_translation_file.cpp #, fuzzy -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" "Выкарыстоўваць анізатропную фільтрацыю пры праглядзе тэкстуры пад вуглом." @@ -7010,27 +7079,15 @@ msgstr "" "быць адфільтраваныя праграмна, але некаторыя выявы генеруюцца апаратна " "(напрыклад, рэндэрынг у тэкстуру для элементаў інвентару)." -#: src/settings_translation_file.cpp -msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" -"Калі gui_scaling_filter_txr2img уключаны, выявы капіююцца\n" -"з апаратуры ў праграмнае асяроддзе для маштабавання.\n" -"Калі не, то вярнуцца да старога метаду маштабавання для відэадрайвераў,\n" -"якія не падтрымліваюць перадачу тэкстур з апаратуры назад." - #: src/settings_translation_file.cpp #, fuzzy msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -7052,11 +7109,6 @@ msgid "" "Mods may still set a background." msgstr "" -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" -"Ці павінна быць паміж блокамі мапы дэсінхранізацыя анімацыі тэкстур блокаў." - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -7083,8 +7135,7 @@ msgstr "Ці размяшчаць туманы па-за зонай бачнас #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -7263,6 +7314,9 @@ msgstr "Ліміт адначасовых злучэнняў cURL" #~ "Майце на ўвазе, што поле адраса ў галоўным меню перавызначае гэты " #~ "параметр." +#~ msgid "Adds particles when digging a node." +#~ msgstr "Дадае часціцы пры капанні блока." + #~ msgid "" #~ "Adjust dpi configuration to your screen (non X11/Android only) e.g. for " #~ "4k screens." @@ -7386,6 +7440,10 @@ msgstr "Ліміт адначасовых злучэнняў cURL" #~ msgid "Clean transparent textures" #~ msgstr "Чыстыя празрыстыя тэкстуры" +#, fuzzy +#~ msgid "Clouds are a client-side effect." +#~ msgstr "Аблокі — эфект на баку кліента." + #~ msgid "Command key" #~ msgstr "Клавіша загаду" @@ -7481,9 +7539,15 @@ msgstr "Ліміт адначасовых злучэнняў cURL" #~ msgid "Darkness sharpness" #~ msgstr "Рэзкасць цемры" +#~ msgid "Debug info and profiler graph hidden" +#~ msgstr "Адладачная інфармацыя і графік прафіліроўшчыка схаваныя" + #~ msgid "Debug info toggle key" #~ msgstr "Клавіша пераключэння адладачных даных" +#~ msgid "Debug info, profiler graph, and wireframe hidden" +#~ msgstr "Адладачная інфармацыя, графік прафіліроўшчыка і каркас схаваныя" + #~ msgid "Dec. volume key" #~ msgstr "Кнопка памяншэння гучнасці" @@ -7530,10 +7594,16 @@ msgstr "Ліміт адначасовых злучэнняў cURL" #~ "азначэнняў біёму.\n" #~ "Y верхняй мяжы лавы ў вялікіх пячорах." +#~ msgid "Desynchronize block animation" +#~ msgstr "Дэсінхранізаваць анімацыю блока" + #, fuzzy #~ msgid "Dig key" #~ msgstr "Клавіша ўправа" +#~ msgid "Digging particles" +#~ msgstr "Часціцы пры капанні" + #~ msgid "Disable anticheat" #~ msgstr "Выключыць антычыт" @@ -7559,6 +7629,10 @@ msgstr "Ліміт адначасовых злучэнняў cURL" #~ msgid "Dynamic shadows:" #~ msgstr "Цень шрыфту" +#, fuzzy +#~ msgid "Enable" +#~ msgstr "Уключаны" + #~ msgid "Enable VBO" #~ msgstr "Уключыць VBO" @@ -7586,6 +7660,12 @@ msgstr "Ліміт адначасовых злучэнняў cURL" #~ "тэкстур ці створанымі аўтаматычна.\n" #~ "Патрабуюцца ўключаныя шэйдэры." +#, fuzzy +#~ msgid "" +#~ "Enables caching of facedir rotated meshes.\n" +#~ "This is only effective with shaders disabled." +#~ msgstr "Уключае кэшаванне павернутых вонкі сетак." + #~ msgid "Enables filmic tone mapping" #~ msgstr "Уключае кінематаграфічнае танальнае адлюстраванне" @@ -7616,9 +7696,6 @@ msgstr "Ліміт адначасовых злучэнняў cURL" #~ "Эксперыментальны параметр, які можа прывесці да візуальных прагалаў\n" #~ "паміж блокамі пры значэнні большым за 0." -#~ msgid "FPS in pause menu" -#~ msgstr "FPS у меню паўзы" - #~ msgid "FSAA" #~ msgstr "FSAA" @@ -7700,8 +7777,8 @@ msgstr "Ліміт адначасовых злучэнняў cURL" #~ msgid "Full screen BPP" #~ msgstr "Глыбіня колеру ў поўнаэкранным рэжыме (бітаў на піксель)" -#~ msgid "Game" -#~ msgstr "Гульня" +#~ msgid "GUI scaling filter txr2img" +#~ msgstr "txr2img-фільтр маштабавання графічнага інтэрфейсу" #~ msgid "Gamma" #~ msgstr "Гама" @@ -7872,6 +7949,10 @@ msgstr "Ліміт адначасовых злучэнняў cURL" #~ msgid "Instrumentation" #~ msgstr "Інструменты" +#, fuzzy +#~ msgid "Interval of sending time of day to clients, stated in seconds." +#~ msgstr "Інтэрвал адпраўлення кліентам часу." + #~ msgid "Invalid gamespec." #~ msgstr "Хібная спецыфікацыя гульні." @@ -7883,652 +7964,652 @@ msgstr "Ліміт адначасовых злучэнняў cURL" #~ msgid "" #~ "Key for decreasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша памяншэння дыяпазону бачнасці.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for decreasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша памяншэння гучнасці.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for digging.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша скока.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for dropping the currently selected item.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша выкідання абранага прадмета.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша павелічэння дыяпазону бачнасці.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Кнопка павелічэння гучнасці.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for jumping.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша скока.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving fast in fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша паскарэння руху ў шпаркім рэжыме.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player backward.\n" #~ "Will also disable autoforward, when active.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша для руху назад.\n" #~ "Таксама выключае аўтабег, калі той актыўны.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player forward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша руху ўперад.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player left.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша руху ўлева.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player right.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша руху ўправа.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for muting the game.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша выключэння гуку.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша адкрыцця акна размовы для ўводу загадаў.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type local commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Кнопка адкрыцця акна размовы для ўводу лакальных загадаў.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша адкрыцця акна размовы.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the inventory.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша адкрыцця інвентару.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for placing.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша скока.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 11th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша выбару 11 прадмета панэлі хуткага доступу.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 12th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша выбару 12 прадмета панэлі хуткага доступу.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 13th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша выбару 13 прадмета панэлі хуткага доступу.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 14th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша выбару 14 прадмета панэлі хуткага доступу.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 15th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша выбару 15 прадмета панэлі хуткага доступу.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 16th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша выбару 16 прадмета панэлі хуткага доступу.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 17th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша выбару 17 прадмета панэлі хуткага доступу.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 18th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша выбару 18 прадмета панэлі хуткага доступу.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 19th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша выбару 19 прадмета панэлі хуткага доступу.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 20th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша выбару 20 прадмета панэлі хуткага доступу.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 21st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша выбару 21 прадмета панэлі хуткага доступу.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 22nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша выбару 22 прадмета панэлі хуткага доступу.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 23rd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша выбару 23 прадмета панэлі хуткага доступу.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 24th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша выбару 24 прадмета панэлі хуткага доступу.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 25th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша выбару 25 прадмета панэлі хуткага доступу.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 26th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша выбару 26 прадмета панэлі хуткага доступу.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 27th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша выбару 27 прадмета панэлі хуткага доступу.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 28th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша выбару 28 прадмета панэлі хуткага доступу.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 29th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша выбару 29 прадмета панэлі хуткага доступу.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 30th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша выбару 30 прадмета панэлі хуткага доступу.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 31st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша выбару 31 прадмета панэлі хуткага доступу.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 32nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша выбару 32 прадмета панэлі хуткага доступу.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the eighth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша выбару 8 прадмета панэлі хуткага доступу.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the fifth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша выбару 5 прадмета панэлі хуткага доступу.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the first hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша выбару 1 прадмета панэлі хуткага доступу..\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the fourth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша выбару 4 прадмета панэлі хуткага доступу.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the next item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша выбару наступнага прадмета панэлі хуткага доступу.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the ninth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша выбару 9 прадмета панэлі хуткага доступу.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the previous item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша выбару папярэдняга прадмета панэлі хуткага доступу..\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the second hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша выбару 2 прадмета панэлі хуткага доступу..\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the seventh hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша выбару 7 прадмета панэлі хуткага доступу.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the sixth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша выбару 6 прадмета панэлі хуткага доступу.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the tenth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша выбару 10 прадмета панэлі хуткага доступу.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the third hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша выбару 3 прадмета панэлі хуткага доступу.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for sneaking.\n" #~ "Also used for climbing down and descending in water if aux1_descends is " #~ "disabled.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша \"красціся\".\n" #~ "Таксама выкарыстоўваецца для спускання і апускання ў ваду, калі " #~ "aux1_descends выключана.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for switching between first- and third-person camera.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша пераключэння паміж камерамі ад першай асобы і ад трэцяй асобы.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for taking screenshots.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша стварэння здымкаў экрана.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling autoforward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша пераключэння аўтабегу.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling cinematic mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша пераключэння кінематаграфічнага рэжыму.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling display of minimap.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша пераключэння адлюстравання мінімапы.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша пераключэння шпаркага рэжыму.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling flying.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша пераключэння рэжыму палёту.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling noclip mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша пераключэння рэжыму руху скрозь сцены.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling pitch move mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша для пераключэння рэжыму нахілення руху.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the camera update. Only used for development\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша пераключэння абнаўлення камеры. Выкарыстоўваецца толькі для " #~ "распрацоўкі.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of chat.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша пераключэння адлюстравання размовы.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of debug info.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша пераключэння адлюстравання адладачных даных.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of fog.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша пераключэння адлюстравання туману.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the HUD.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша пераключэння адлюстравання HUD.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the large chat console.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша пераключэння адлюстравання буйной размовы.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the profiler. Used for development.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша пераключэння адлюстравання прафіліроўшчыка. Выкарыстоўваецца для " #~ "распрацоўкі.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling unlimited view range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша пераключэння абмежавання дыяпазону бачнасці.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key to use view zoom when possible.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша выкарыстання набліжэння калі гэта магчыма.\n" -#~ "Глядзіце http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Глядзіце http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Keybindings. (If this menu screws up, remove stuff from minetest.conf)" @@ -8622,6 +8703,9 @@ msgstr "Ліміт адначасовых злучэнняў cURL" #~ msgid "Menus" #~ msgstr "Меню" +#~ msgid "Mesh cache" +#~ msgstr "Кэш сетак" + #~ msgid "Minimap" #~ msgstr "Мінімапа" @@ -8820,6 +8904,9 @@ msgstr "Ліміт адначасовых злучэнняў cURL" #~ msgid "Server / Singleplayer" #~ msgstr "Сервер / Адзіночная гульня" +#~ msgid "Shaders" +#~ msgstr "Шэйдэры" + #, fuzzy #~ msgid "Shaders (experimental)" #~ msgstr "Узровень лятучых астравоў" @@ -8835,6 +8922,10 @@ msgstr "Ліміт адначасовых злучэнняў cURL" #~ "прадукцыйнасць на некаторых відэакартах.\n" #~ "Працуюць толькі з OpenGL." +#, fuzzy +#~ msgid "Shaders are disabled." +#~ msgstr "Абнаўленне камеры адключана" + #~ msgid "Shadow limit" #~ msgstr "Ліміт ценяў" @@ -8908,6 +8999,9 @@ msgstr "Ліміт адначасовых злучэнняў cURL" #~ msgid "This font will be used for certain languages." #~ msgstr "Гэты шрыфт будзе выкарыстоўваецца для некаторых моў." +#~ msgid "Time send interval" +#~ msgstr "Інтэрвал адпраўлення часу" + #~ msgid "To enable shaders the OpenGL driver needs to be used." #~ msgstr "Для ўключэння шэйдэраў неабходна выкарыстоўваць OpenGL." @@ -8988,6 +9082,17 @@ msgstr "Ліміт адначасовых злучэнняў cURL" #~ msgid "Waving water" #~ msgstr "Хваляванне вады" +#~ msgid "" +#~ "When gui_scaling_filter_txr2img is true, copy those images\n" +#~ "from hardware to software for scaling. When false, fall back\n" +#~ "to the old scaling method, for video drivers that don't\n" +#~ "properly support downloading textures back from hardware." +#~ msgstr "" +#~ "Калі gui_scaling_filter_txr2img уключаны, выявы капіююцца\n" +#~ "з апаратуры ў праграмнае асяроддзе для маштабавання.\n" +#~ "Калі не, то вярнуцца да старога метаду маштабавання для відэадрайвераў,\n" +#~ "якія не падтрымліваюць перадачу тэкстур з апаратуры назад." + #, fuzzy #~ msgid "" #~ "Whether FreeType fonts are used, requires FreeType support to be compiled " @@ -9000,6 +9105,12 @@ msgstr "Ліміт адначасовых злучэнняў cURL" #~ msgid "Whether dungeons occasionally project from the terrain." #~ msgstr "Выступ падзямелляў па-над рэльефам." +#~ msgid "" +#~ "Whether node texture animations should be desynchronized per mapblock." +#~ msgstr "" +#~ "Ці павінна быць паміж блокамі мапы дэсінхранізацыя анімацыі тэкстур " +#~ "блокаў." + #~ msgid "Whether to allow players to damage and kill each other." #~ msgstr "Ці дазваляць гульцам прычыняць шкоду і забіваць іншых." diff --git a/po/bg/luanti.po b/po/bg/luanti.po index 05f92b8c4..c2ea7c245 100644 --- a/po/bg/luanti.po +++ b/po/bg/luanti.po @@ -2,9 +2,10 @@ msgid "" msgstr "" "Project-Id-Version: minetest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" -"PO-Revision-Date: 2024-08-25 05:09+0000\n" -"Last-Translator: 109247019824 \n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" +"PO-Revision-Date: 2025-02-11 02:02+0000\n" +"Last-Translator: 109247019824 <109247019824@users.noreply.hosted.weblate.org>" +"\n" "Language-Team: Bulgarian \n" "Language: bg\n" @@ -12,7 +13,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.7.1-dev\n" +"X-Generator: Weblate 5.10-dev\n" #: builtin/client/chatcommands.lua msgid "Clear the out chat queue" @@ -77,6 +78,244 @@ msgstr "" msgid "[all | ] [-t]" msgstr "[all | <команда>] [-t]" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "Избиране" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "Редактиране" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "Избор на папка" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "Избор на файл" + +#: builtin/common/settings/components.lua +msgid "Set" +msgstr "Задаване" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(Настройката няма описание)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "Двуизмерен шум" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "Отказ" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "Лакунарност" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "Октави" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "Отместване" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "Упоритост" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "Запазване" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "Мащаб" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "Семе" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "Разпределение по X" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "Разпределение по Y" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "Разпределение по Z" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "абсолютна стойност" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "подразбирани" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "загладено" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "(В играта трябва да включите и автоматичната експозиция)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "(В играта трябва да включите и размиването)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "(В играта трябва да включите и обемното осветление)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "(Системен език)" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "Достъпност" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "Автоматично" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "Разговори" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "Изчистване" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "Управление" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "Изключено" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "Включено" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "Общи" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "Придвижване" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "Няма резултати" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default" +msgstr "Подразбирани настройки" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "Нулиране до подразбирана стойност ($1)" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "Търсене" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "Разширени настройки" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "Технически наименования" + +#: builtin/common/settings/dlg_settings.lua +msgid "Touchscreen layout" +msgstr "Подредба на сензорния екран" + +#: builtin/common/settings/dlg_settings.lua +msgid "pause_menu" +msgstr "pause_menu" + +#: builtin/common/settings/settingtypes.lua +msgid "Client Mods" +msgstr "Модификации на клиента" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "Съдържание: Игри" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "Съдържание: Модификации" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "(В играта трябва да включите и сенките)" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "По избор" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "Динамични сенки" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "Силни" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "Слаби" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "Средни" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "Много високи" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "Много ниски" + #: builtin/fstk/ui.lua msgid "" msgstr "<няма достъпни>" @@ -159,19 +398,18 @@ msgstr "$1 се изтеглят…" #: builtin/mainmenu/content/dlg_contentdb.lua msgid "All" -msgstr "" +msgstr "Всички" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "Назад" #: builtin/mainmenu/content/dlg_contentdb.lua -#, fuzzy msgid "ContentDB is not available when Luanti was compiled without cURL" msgstr "" -"Съдържанието от ContentDB не е налично, когато Minetest е компилиран без cURL" +"Съдържанието от ContentDB не е налично, когато приложението Luanti е " +"компилирано без cURL" #: builtin/mainmenu/content/dlg_contentdb.lua msgid "Downloading..." @@ -179,7 +417,7 @@ msgstr "Изтегляне…" #: builtin/mainmenu/content/dlg_contentdb.lua msgid "Featured" -msgstr "" +msgstr "Препоръчани" #: builtin/mainmenu/content/dlg_contentdb.lua msgid "Games" @@ -201,11 +439,6 @@ msgstr "Модификации" msgid "No packages could be retrieved" msgstr "Пакетите не могат да бъдат получени" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "Няма резултати" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "Няма обновяване" @@ -215,7 +448,6 @@ msgid "Queued" msgstr "Изчакващи" #: builtin/mainmenu/content/dlg_contentdb.lua -#, fuzzy msgid "Texture Packs" msgstr "Пакети с текстури" @@ -251,27 +483,14 @@ msgstr "Вече инсталирано" msgid "Base Game:" msgstr "Основна игра:" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "Отказ" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" msgstr "Зависимости:" #: builtin/mainmenu/content/dlg_install.lua -#, fuzzy msgid "Error getting dependencies for package $1" -msgstr "Грешка при получаване на зависимостите на пакет" +msgstr "Грешка при получаване на зависимостите на пакета $1" #: builtin/mainmenu/content/dlg_install.lua msgid "Install" @@ -306,44 +525,40 @@ msgid "Overwrite" msgstr "Презаписване" #: builtin/mainmenu/content/dlg_package.lua -#, fuzzy msgid "ContentDB page" -msgstr "Съдържание: Игри" +msgstr "Страница в ContentDB" #: builtin/mainmenu/content/dlg_package.lua -#, fuzzy msgid "Description" -msgstr "Описание на сървър" +msgstr "Описание" #: builtin/mainmenu/content/dlg_package.lua msgid "Donate" -msgstr "" +msgstr "Даряване" #: builtin/mainmenu/content/dlg_package.lua msgid "Forum Topic" -msgstr "" +msgstr "Страница на форума" #: builtin/mainmenu/content/dlg_package.lua -#, fuzzy msgid "Information" -msgstr "Описание:" +msgstr "Сведения" #: builtin/mainmenu/content/dlg_package.lua -#, fuzzy msgid "Install [$1]" -msgstr "Инсталиране $1" +msgstr "Инсталиране [$1]" #: builtin/mainmenu/content/dlg_package.lua msgid "Issue Tracker" -msgstr "" +msgstr "Дефекти" #: builtin/mainmenu/content/dlg_package.lua msgid "Source" -msgstr "" +msgstr "Изходен код" #: builtin/mainmenu/content/dlg_package.lua msgid "Translate" -msgstr "" +msgstr "Превеждане" #: builtin/mainmenu/content/dlg_package.lua builtin/mainmenu/tab_content.lua msgid "Uninstall" @@ -354,13 +569,12 @@ msgid "Update" msgstr "Обновяване" #: builtin/mainmenu/content/dlg_package.lua -#, fuzzy msgid "Website" -msgstr "Към страницата" +msgstr "Страница" #: builtin/mainmenu/content/dlg_package.lua msgid "by $1 — $2 downloads — +$3 / $4 / -$5" -msgstr "" +msgstr "автор $1 – $2 изтегляния – +$3 / $4 / -$5" #: builtin/mainmenu/content/pkgmgr.lua msgid "$1 (Enabled)" @@ -392,6 +606,14 @@ msgstr "Грешка при инсталиране на $1 като $2" msgid "Unable to install a $1 as a texture pack" msgstr "$1 не може да бъде инсталирано като пакет с текстури" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" +"Това е списък на клиентите свързани с\n" +"$1" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "(Включено, има грешки)" @@ -456,12 +678,6 @@ msgstr "Няма незадължителни зависимости" msgid "Optional dependencies:" msgstr "Незадължителни зависимости:" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "Запазване" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "Свят:" @@ -572,11 +788,11 @@ msgstr "Ниската влажност и горещините причиняв #: builtin/mainmenu/dlg_create_world.lua src/settings_translation_file.cpp msgid "Mapgen" -msgstr "Генератор на карти" +msgstr "Създаване на карти" #: builtin/mainmenu/dlg_create_world.lua src/settings_translation_file.cpp msgid "Mapgen flags" -msgstr "Настройки на генератора" +msgstr "Настройки за карти" #: builtin/mainmenu/dlg_create_world.lua msgid "Mapgen-specific flags" @@ -614,11 +830,6 @@ msgstr "Реки" msgid "Sea level rivers" msgstr "Реки на морското ниво" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "Семе" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "Плавен преход между биомите" @@ -723,13 +934,12 @@ msgid "Dismiss" msgstr "Пропускане" #: builtin/mainmenu/dlg_reinstall_mtg.lua -#, fuzzy msgid "" "For a long time, Luanti shipped with a default game called \"Minetest " "Game\". Since version 5.8.0, Luanti ships without a default game." msgstr "" -"Дълго време двигателят на играта Minetest се предоставяше с игра на име " -"„Minetest Game“. От Minetest 5.8.0, Minetest ще се предоставя без игра по " +"Дълго време двигателят на играта Luanti се предоставяше с игра на име " +"„Minetest Game“. От издание 5.8.0, Luanti ще се предоставя без игра по " "подразбиране." #: builtin/mainmenu/dlg_reinstall_mtg.lua @@ -764,6 +974,23 @@ msgstr "" "Този пакет с модификации има изрично зададено име в modpack.conf, което ще " "отмени всяко преименуване." +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "Включване всички" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "Налично е издание $1" @@ -792,7 +1019,7 @@ msgstr "Никога" msgid "Visit website" msgstr "Към страницата" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "Настройки" @@ -805,228 +1032,6 @@ msgid "Try reenabling public serverlist and check your internet connection." msgstr "" "Включете списъка на обществени сървъри и проверете връзката с интернет." -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "Разглеждане" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "Редактиране" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "Избор на папка" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "Избор на файл" - -#: builtin/mainmenu/settings/components.lua -msgid "Set" -msgstr "Задаване" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(Настройката няма описание)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "Двуизмерен шум" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "Лакунарност" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "Октави" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "Отместване" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "Упоритост" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "Мащаб" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "Разпределение по X" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "Разпределение по Y" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "Разпределение по Z" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "абсолютна стойност" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "подразбирани" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "загладено" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable automatic exposure as well)" -msgstr "(Също, трябва да влючите сенките в играта)" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable bloom as well)" -msgstr "(Също, трябва да влючите сенките в играта)" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "(Също, трябва да влючите сенките в играта)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "(Системен език)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "Достъпност" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "Разговори" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "Изчистване" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "Управление" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "Изключено" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "Включено" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "Общи" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "Придвижване" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default" -msgstr "Подразбирани настройки" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "Нулиране до подразбирана стойност ($1)" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "Търсене" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "Разширени настройки" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "Технически наименования" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "Модификации за клиента" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "Съдържание: Игри" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "Съдържание: Модификации" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "Включено" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Shaders are disabled." -msgstr "Опресняването на екрана при движение е изключено" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "(Също, трябва да влючите сенките в играта)" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "По избор" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "Динамични сенки" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "Силни" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "Слаби" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "Нормални" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "Много високи" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "Много слаби" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "Относно" @@ -1047,10 +1052,6 @@ msgstr "Основни разработчици" msgid "Core Team" msgstr "Основен екип" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "Устройство на Irrlicht:" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "Папка с данни" @@ -1153,13 +1154,15 @@ msgstr "Инсталиране на игри от ContentDB" #: builtin/mainmenu/tab_local.lua msgid "Luanti doesn't come with a game by default." -msgstr "" +msgstr "Luanti не идва с игра по подразбиране." #: builtin/mainmenu/tab_local.lua msgid "" "Luanti is a game-creation platform that allows you to play many different " "games." msgstr "" +"Luanti е платформа за създаване на игри, която дава възможност за игра на " +"много различни игри и модификации." #: builtin/mainmenu/tab_local.lua msgid "New" @@ -1197,10 +1200,22 @@ msgstr "Създаване на игра" msgid "You need to install a game before you can create a world." msgstr "Необходимо е да инсталирате игра преди да създадете свят." +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "Премахване от избраните" + #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "Адрес" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "Клиент" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "Творчески режим" @@ -1214,6 +1229,11 @@ msgstr "Щети / PvP" msgid "Favorites" msgstr "Избрани" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "Игра" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "Несъвместими сървъри" @@ -1226,10 +1246,26 @@ msgstr "Включване към игра" msgid "Login" msgstr "Вход" +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +msgid "Open server website" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "Забавяне" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Public Servers" msgstr "Обществени сървъри" @@ -1260,11 +1296,11 @@ msgstr "Готово!" #: src/client/client.cpp msgid "Initializing nodes" -msgstr "Иницииране на възли" +msgstr "Подготвяне на възли" #: src/client/client.cpp msgid "Initializing nodes..." -msgstr "Иницииране на възли…" +msgstr "Подготвяне на възли…" #: src/client/client.cpp msgid "Loading textures..." @@ -1272,7 +1308,7 @@ msgstr "Зареждане на текстури…" #: src/client/client.cpp msgid "Rebuilding shaders..." -msgstr "" +msgstr "Пресъздаване на шейдери…" #: src/client/clientlauncher.cpp msgid "Could not find or load game: " @@ -1314,23 +1350,6 @@ msgstr "" "\n" "Прегледайте debug.txt за повече информация." -#: src/client/game.cpp -msgid "- Mode: " -msgstr "- Режим: " - -#: src/client/game.cpp -msgid "- Public: " -msgstr "- Обществен: " - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "- PvP: " - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "- Име на сървър: " - #: src/client/game.cpp msgid "A serialization error occurred:" msgstr "Възникна грешка при сериализиране:" @@ -1340,6 +1359,11 @@ msgstr "Възникна грешка при сериализиране:" msgid "Access denied. Reason: %s" msgstr "Достъпът е отказан. Причина: %s" +#: src/client/game.cpp +#, fuzzy +msgid "All debug info hidden" +msgstr "Показана е информацията за отстраняване на дефекти" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "Автоматичното движение напред е изключено" @@ -1360,6 +1384,10 @@ msgstr "Контурите на текущия блок са видими" msgid "Block bounds shown for nearby blocks" msgstr "Контурите на близките блокове са видими" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "Опресняването на екрана при движение е изключено" @@ -1374,10 +1402,6 @@ msgstr "" "Контурите на блоковете не могат да бъдат показани (забранено от игра или " "модификация)" -#: src/client/game.cpp -msgid "Change Password" -msgstr "Промяна на парола" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "Кинематографичният режим е изключен" @@ -1406,26 +1430,6 @@ msgstr "Грешка при свързване (изтекло време?)" msgid "Connection failed for unknown reason" msgstr "Грешка във връзката поради неизвестна причина" -#: src/client/game.cpp -msgid "Continue" -msgstr "Продължаване" - -#: src/client/game.cpp -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1439,31 +1443,15 @@ msgstr "Създаване на клиент…" msgid "Creating server..." msgstr "Създаване на сървър…" -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "" - #: src/client/game.cpp msgid "Debug info shown" msgstr "Показана е информацията за отстраняване на дефекти" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "" - #: src/client/game.cpp #, c-format msgid "Error creating client: %s" msgstr "Грешка при създаване на клиент: %s" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "Изход към менюто" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "Изход към ОС" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "Режимът на бързо движение е изключен" @@ -1500,18 +1488,6 @@ msgstr "Мъглата е включена" msgid "Fog enabled by game or mod" msgstr "Мъглата е включена от игра или модификация" -#: src/client/game.cpp -msgid "Game info:" -msgstr "Информация за играта:" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "Играта е на пауза" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "Домакин на играта" - #: src/client/game.cpp msgid "Item definitions..." msgstr "Дефиниции на предмети…" @@ -1548,14 +1524,6 @@ msgstr "Режимът „без изрязване“ е включен (заб msgid "Node definitions..." msgstr "Дефиниции на възли…" -#: src/client/game.cpp -msgid "Off" -msgstr "Изключено" - -#: src/client/game.cpp -msgid "On" -msgstr "Включено" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "Режимът „промяна на височината“ е изключен" @@ -1568,38 +1536,22 @@ msgstr "Режимът „промяна на височината“ е вкл msgid "Profiler graph shown" msgstr "Графиката на профилатора е показана" -#: src/client/game.cpp -msgid "Remote server" -msgstr "Отдалечен сървър" - #: src/client/game.cpp msgid "Resolving address..." msgstr "Намиране на адрес…" -#: src/client/game.cpp -msgid "Respawn" -msgstr "Прераждане" - #: src/client/game.cpp msgid "Shutting down..." msgstr "Изключване…" -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "Един играч" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "Сила на звука" - #: src/client/game.cpp msgid "Sound muted" msgstr "Звукът е заглушен" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "Системата за звук е изключена" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "В това издание не се поддържа звукова система" @@ -1616,24 +1568,25 @@ msgstr "Сървърът вероятно използва друго издан #: src/client/game.cpp #, c-format msgid "Unable to connect to %s because IPv6 is disabled" -msgstr "" +msgstr "Грешка при свързване с %s, защото протоколът IPv6 е изключен" #: src/client/game.cpp #, c-format msgid "Unable to listen on %s because IPv6 is disabled" -msgstr "" +msgstr "Грешка при слушане на %s, защото протоколът IPv6 е изключен" #: src/client/game.cpp msgid "Unlimited viewing range disabled" -msgstr "Неограниченият обхват на видимост е изключен" +msgstr "Неограничената видимост е изключена" #: src/client/game.cpp msgid "Unlimited viewing range enabled" -msgstr "Неограниченият обхват на видимост е включен" +msgstr "Неограничената видимост е включена" #: src/client/game.cpp msgid "Unlimited viewing range enabled, but forbidden by game or mod" msgstr "" +"Неограничената видимост е включена, но е забранена от игра или модификация" #: src/client/game.cpp #, c-format @@ -1644,11 +1597,13 @@ msgstr "Видимостта е променена на %d (минимум)" #, c-format msgid "Viewing changed to %d (the minimum), but limited to %d by game or mod" msgstr "" +"Видимостта е променена на %d (минимум), но е ограничена до %d от игра или " +"модификация" #: src/client/game.cpp #, c-format msgid "Viewing range changed to %d" -msgstr "Обхватът на видимостта е променен на %d" +msgstr "Видимостта е променена на %d" #: src/client/game.cpp #, c-format @@ -1660,31 +1615,132 @@ msgstr "Видимостта е променена на %d (максимум)" msgid "" "Viewing range changed to %d (the maximum), but limited to %d by game or mod" msgstr "" +"Видимостта е променена на %d (максимум), но е ограничена до %d от игра или " +"модификация" #: src/client/game.cpp #, c-format msgid "Viewing range changed to %d, but limited to %d by game or mod" msgstr "" -"Обхватът на видимостта е променен на %d, но е ограничен до %d от игра или " -"модификация" +"Видимостта е променена на %d, но е ограничена до %d от игра или модификация" #: src/client/game.cpp #, c-format msgid "Volume changed to %d%%" -msgstr "Силата на звука е променена на %d%%" +msgstr "Силата на звука е променена на %d %%" + +#: src/client/game.cpp +#, fuzzy +msgid "Wireframe not supported by video driver" +msgstr "" +"Шейдърите са включени, но GLSL не се поддържа от софтуера за управление на " +"устройството." #: src/client/game.cpp msgid "Wireframe shown" msgstr "Показани са телените рамки" -#: src/client/game.cpp -msgid "You died" -msgstr "Умряхте" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "Мащабирането е спряно или от играта, или от модификация" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "- Режим: " + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "- Обществен: " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "- PvP: " + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "- Име на сървър: " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "Промяна на парола" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "Продължаване" + +#: src/client/game_formspec.cpp +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" +"Контроли:\n" +"При затворено меню:\n" +"- плъзгане на пръст: оглеждане\n" +"- докосване: поставяне/нанасяне на удар/използване (по подразбиране)\n" +"- дълго докосване: копаене/използване (по подразбиране)\n" +"При отворено меню/инвентар:\n" +"- двойно докосване (отвън):\n" +" → затваряне\n" +"- докосване на купчина, докосване на празно място:\n" +" → преместване на купчината\n" +"- докосване и плъзгане, докосване с втори пръст\n" +" → поставяне на единичен елемент в празно място\n" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "Изход към менюто" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "Изход към ОС" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "Информация за играта:" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "Играта е на пауза" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "Домакин на играта" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "Изключено" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "Включено" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "Отдалечен сървър" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "Прераждане" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "Сила на звука" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "Умряхте" + #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" msgstr "Разговорите са спрени от игра или модификация" @@ -1699,11 +1755,11 @@ msgstr "Разговорите са видими" #: src/client/gameui.cpp msgid "HUD hidden" -msgstr "HUD скрит" +msgstr "Игровият интерфейс е скрит" #: src/client/gameui.cpp msgid "HUD shown" -msgstr "HUD видим" +msgstr "Игровият интерфейс е видим" #: src/client/gameui.cpp msgid "Profiler hidden" @@ -1725,7 +1781,7 @@ msgstr "Backspace" #. ~ Usually paired with the Pause key #: src/client/keycode.cpp msgid "Break Key" -msgstr "" +msgstr "Break" #: src/client/keycode.cpp msgid "Caps Lock" @@ -1745,55 +1801,55 @@ msgstr "Delete" #: src/client/keycode.cpp msgid "Down Arrow" -msgstr "" +msgstr "Надолу" #: src/client/keycode.cpp msgid "End" -msgstr "" +msgstr "End" #: src/client/keycode.cpp msgid "Erase EOF" -msgstr "" +msgstr "Премахване EOF" #: src/client/keycode.cpp msgid "Execute" -msgstr "" +msgstr "Изпълняване" #: src/client/keycode.cpp msgid "Help" -msgstr "" +msgstr "Help" #: src/client/keycode.cpp msgid "Home" -msgstr "" +msgstr "Home" #: src/client/keycode.cpp msgid "IME Accept" -msgstr "" +msgstr "IME: Приемане" #: src/client/keycode.cpp msgid "IME Convert" -msgstr "" +msgstr "IME: Превъщане" #: src/client/keycode.cpp msgid "IME Escape" -msgstr "" +msgstr "IME: Избягване" #: src/client/keycode.cpp msgid "IME Mode Change" -msgstr "" +msgstr "IME: Смяна на режима" #: src/client/keycode.cpp msgid "IME Nonconvert" -msgstr "" +msgstr "IME: Без преобразуване" #: src/client/keycode.cpp msgid "Insert" -msgstr "" +msgstr "Insert" #: src/client/keycode.cpp msgid "Left Arrow" -msgstr "Лява стрелка" +msgstr "Наляво" #: src/client/keycode.cpp msgid "Left Button" @@ -1818,7 +1874,7 @@ msgstr "Ляв Windows" #. ~ Key name, common on Windows keyboards #: src/client/keycode.cpp msgid "Menu Key" -msgstr "" +msgstr "Клавиш Меню" #: src/client/keycode.cpp msgid "Middle Button" @@ -1826,71 +1882,71 @@ msgstr "Среден бутон" #: src/client/keycode.cpp msgid "Num Lock" -msgstr "" +msgstr "Num Lock" #: src/client/keycode.cpp msgid "Numpad *" -msgstr "" +msgstr "Цифрова клавиатура *" #: src/client/keycode.cpp msgid "Numpad +" -msgstr "" +msgstr "Цифрова клавиатура +" #: src/client/keycode.cpp msgid "Numpad -" -msgstr "" +msgstr "Цифрова клавиатура -" #: src/client/keycode.cpp msgid "Numpad ." -msgstr "" +msgstr "Цифрова клавиатура ." #: src/client/keycode.cpp msgid "Numpad /" -msgstr "" +msgstr "Цифрова клавиатура /" #: src/client/keycode.cpp msgid "Numpad 0" -msgstr "" +msgstr "Цифрова клавиатура 0" #: src/client/keycode.cpp msgid "Numpad 1" -msgstr "" +msgstr "Цифрова клавиатура 1" #: src/client/keycode.cpp msgid "Numpad 2" -msgstr "" +msgstr "Цифрова клавиатура 2" #: src/client/keycode.cpp msgid "Numpad 3" -msgstr "" +msgstr "Цифрова клавиатура 3" #: src/client/keycode.cpp msgid "Numpad 4" -msgstr "" +msgstr "Цифрова клавиатура 4" #: src/client/keycode.cpp msgid "Numpad 5" -msgstr "" +msgstr "Цифрова клавиатура 5" #: src/client/keycode.cpp msgid "Numpad 6" -msgstr "" +msgstr "Цифрова клавиатура 6" #: src/client/keycode.cpp msgid "Numpad 7" -msgstr "" +msgstr "Цифрова клавиатура 7" #: src/client/keycode.cpp msgid "Numpad 8" -msgstr "" +msgstr "Цифрова клавиатура 8" #: src/client/keycode.cpp msgid "Numpad 9" -msgstr "" +msgstr "Цифрова клавиатура 9" #: src/client/keycode.cpp msgid "OEM Clear" -msgstr "" +msgstr "OEM Изчистване" #: src/client/keycode.cpp msgid "Page Down" @@ -1898,7 +1954,7 @@ msgstr "Page Down" #: src/client/keycode.cpp msgid "Page Up" -msgstr "" +msgstr "Page Up" #. ~ Usually paired with the Break key #: src/client/keycode.cpp @@ -1907,20 +1963,20 @@ msgstr "Pause" #: src/client/keycode.cpp msgid "Play" -msgstr "" +msgstr "Изпълняване" #. ~ "Print screen" key #: src/client/keycode.cpp msgid "Print" -msgstr "" +msgstr "PrtSc" #: src/client/keycode.cpp msgid "Return Key" -msgstr "" +msgstr "Enter" #: src/client/keycode.cpp msgid "Right Arrow" -msgstr "Дясна стрелка" +msgstr "Надясно" #: src/client/keycode.cpp msgid "Right Button" @@ -1949,7 +2005,7 @@ msgstr "Scroll Lock" #. ~ Key name #: src/client/keycode.cpp msgid "Select" -msgstr "" +msgstr "Избиране" #: src/client/keycode.cpp msgid "Shift Key" @@ -1957,7 +2013,7 @@ msgstr "Shift" #: src/client/keycode.cpp msgid "Sleep" -msgstr "Sleep" +msgstr "Сън" #: src/client/keycode.cpp msgid "Snapshot" @@ -1973,15 +2029,15 @@ msgstr "Табулатор" #: src/client/keycode.cpp msgid "Up Arrow" -msgstr "" +msgstr "Нагоре" #: src/client/keycode.cpp msgid "X Button 1" -msgstr "" +msgstr "Доп. бутон 1" #: src/client/keycode.cpp msgid "X Button 2" -msgstr "" +msgstr "Доп. бутон 2" #: src/client/keycode.cpp msgid "Zoom Key" @@ -2011,29 +2067,36 @@ msgid "Failed to compile the \"%s\" shader." msgstr "Грешка при компилиране на шейдъра „%s“." #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." +#, fuzzy +msgid "GLSL is not supported by the driver" msgstr "" +"Шейдърите са включени, но GLSL не се поддържа от софтуера за управление на " +"устройството." #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" #: src/content/mod_configuration.cpp #, c-format msgid "%s is missing:" -msgstr "" +msgstr "Модификацията %s има липсващи зависимости:" #: src/content/mod_configuration.cpp msgid "" "Install and enable the required mods, or disable the mods causing errors." msgstr "" +"Инсталирайте и включете необходимите модификации или изключете тези, които " +"причиняват грешки." #: src/content/mod_configuration.cpp msgid "" "Note: this may be caused by a dependency cycle, in which case try updating " "the mods." msgstr "" +"Забележка: може да бъде предизвикано от циклична зависимост, в такъв случай " +"пробвайте да обновите модификациите." #: src/content/mod_configuration.cpp msgid "Some mods have unsatisfied dependencies:" -msgstr "Някоя модификация има неудовлетворени зависимости:" +msgstr "Някои модификации имат неудовлетворени зависимости:" #: src/gui/guiChatConsole.cpp msgid "Failed to open webpage" @@ -2053,15 +2116,15 @@ msgstr "„Aux1“ = слизане" #: src/gui/guiKeyChangeMenu.cpp msgid "Autoforward" -msgstr "Автоматично напред" +msgstr "Автом. напред" #: src/gui/guiKeyChangeMenu.cpp src/settings_translation_file.cpp msgid "Automatic jumping" msgstr "Автоматично скачане" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" -msgstr "" +msgstr "Aux1" #: src/gui/guiKeyChangeMenu.cpp msgid "Backward" @@ -2071,7 +2134,7 @@ msgstr "Назад" msgid "Block bounds" msgstr "Граници на блокове" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "Промяна на камера" @@ -2095,9 +2158,9 @@ msgstr "Намал. на звука" msgid "Double tap \"jump\" to toggle fly" msgstr "Двоен „скок“ превключва летене" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" -msgstr "Пускане предмет" +msgstr "Изхвърляне" #: src/gui/guiKeyChangeMenu.cpp msgid "Forward" @@ -2111,11 +2174,11 @@ msgstr "Увелич. на обхвата" msgid "Inc. volume" msgstr "Увелич. на звука" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "Инвентар" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "Скок" @@ -2147,7 +2210,7 @@ msgstr "След. предмет" msgid "Prev. item" msgstr "Пред. предмет" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "Обхват видимост" @@ -2159,23 +2222,23 @@ msgstr "Дясно" msgid "Screenshot" msgstr "Снимка на екрана" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "Промъкване" #: src/gui/guiKeyChangeMenu.cpp msgid "Toggle HUD" -msgstr "Превкл. HUD" +msgstr "Превключване на игровия интерфейс" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "Превкл. разговори" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "Превкл. бързина" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "Превкл. полет" @@ -2183,19 +2246,19 @@ msgstr "Превкл. полет" msgid "Toggle fog" msgstr "Превкл. мъгла" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "Превкл. карта" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "Превкл. изрязване" #: src/gui/guiKeyChangeMenu.cpp msgid "Toggle pitchmove" -msgstr "Превкл. „pitchmove“" +msgstr "Движение по погледа" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "Мащабиране" @@ -2205,7 +2268,7 @@ msgstr "избор бутон" #: src/gui/guiOpenURL.cpp msgid "Open" -msgstr "" +msgstr "Отваряне" #: src/gui/guiOpenURL.cpp msgid "Open URL?" @@ -2231,7 +2294,7 @@ msgstr "Стара парола" msgid "Passwords do not match!" msgstr "Паролите не съвпадат!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "Изход" @@ -2244,37 +2307,68 @@ msgstr "Без звук" msgid "Sound Volume: %d%%" msgstr "Сила на звука: %d%%" -#: src/gui/touchcontrols.cpp -msgid "Joystick" -msgstr "" - -#: src/gui/touchcontrols.cpp -msgid "Overflow menu" -msgstr "" - -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp #, fuzzy +msgid "Add button" +msgstr "Среден бутон" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "Готово!" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Remove" +msgstr "Отдалечен сървър" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp +msgid "Joystick" +msgstr "Джойстик" + +#: src/gui/touchscreenlayout.cpp +msgid "Overflow menu" +msgstr "Допълнително меню" + +#: src/gui/touchscreenlayout.cpp msgid "Toggle debug" -msgstr "Превкл. мъгла" +msgstr "Превключване отстраняването на грешки" #: src/network/clientpackethandler.cpp msgid "" "Another client is connected with this name. If your client closed " "unexpectedly, try again in a minute." msgstr "" +"С това име е свързан друг клиент. Ако приложението се е сринало, опитайте " +"отново след минута." #: src/network/clientpackethandler.cpp msgid "Empty passwords are disallowed. Set a password and try again." -msgstr "" +msgstr "Празните пароли са забранени. Задайте парола и пробвайте отново." #: src/network/clientpackethandler.cpp msgid "Internal server error" -msgstr "" +msgstr "Грешка на сървъра" #: src/network/clientpackethandler.cpp -#, fuzzy msgid "Invalid password" -msgstr "Стара парола" +msgstr "Невярна парола" #. ~ DO NOT TRANSLATE THIS LITERALLY! #. This is a special string which needs to contain the translation's @@ -2297,46 +2391,48 @@ msgstr "Името е заето. Изберете друго" #: src/network/clientpackethandler.cpp msgid "Player name contains disallowed characters" -msgstr "" +msgstr "Името на играча съдържа непозволени знаци" #: src/network/clientpackethandler.cpp -#, fuzzy msgid "Player name not allowed" -msgstr "Името на играча е твърде дълго." +msgstr "Името на играча не е позволено" #: src/network/clientpackethandler.cpp -#, fuzzy msgid "Server shutting down" -msgstr "Изключване…" +msgstr "Сървърът се изключва" #: src/network/clientpackethandler.cpp msgid "" "The server has experienced an internal error. You will now be disconnected." -msgstr "" +msgstr "Възникна грешка в сървъра. Връзката ще прекъсне." #: src/network/clientpackethandler.cpp msgid "The server is running in singleplayer mode. You cannot connect." -msgstr "" +msgstr "Сървърът работи в режим на един играч. Не може да бъдете свързани." #: src/network/clientpackethandler.cpp msgid "Too many users" -msgstr "" +msgstr "Твърде много потребители" #: src/network/clientpackethandler.cpp msgid "Unknown disconnect reason." -msgstr "" +msgstr "Неизвестна причина за изклюпване." #: src/network/clientpackethandler.cpp msgid "" "Your client sent something the server didn't expect. Try reconnecting or " "updating your client." msgstr "" +"Клиентът е изпратил нещо неочаквано за сървъра. Свържете се отново или " +"обновете клиента." #: src/network/clientpackethandler.cpp msgid "" "Your client's version is not supported.\n" "Please contact the server administrator." msgstr "" +"Изданието на клиента не се поддържа.\n" +"Свържете се с администратора на сървъра." #: src/server.cpp #, c-format @@ -2368,57 +2464,62 @@ msgstr "" #: src/settings_translation_file.cpp msgid "2D noise that controls the shape/size of ridged mountains." -msgstr "" +msgstr "Двуизмерен шум, управляващ формата и размера на планинските хребети." #: src/settings_translation_file.cpp msgid "2D noise that controls the shape/size of rolling hills." -msgstr "" +msgstr "Двуизмерен шум, управляващ формата и размера на хълмовете." #: src/settings_translation_file.cpp msgid "2D noise that controls the shape/size of step mountains." -msgstr "" +msgstr "Двуизмерен шум, управляващ формата и размера на планините." #: src/settings_translation_file.cpp msgid "2D noise that controls the size/occurrence of ridged mountain ranges." msgstr "" +"Двуизмерен шум, управляващ размера и разпространението на планинските вериги." #: src/settings_translation_file.cpp msgid "2D noise that controls the size/occurrence of rolling hills." -msgstr "" +msgstr "Двуизмерен шум, управляващ размера и разпространението на хълмовете." #: src/settings_translation_file.cpp msgid "2D noise that controls the size/occurrence of step mountain ranges." msgstr "" +"Двуизмерен шум, определящ размера и разпространението на степните планински " +"хребети." #: src/settings_translation_file.cpp msgid "2D noise that locates the river valleys and channels." -msgstr "" +msgstr "Двуизмерен шум, определящ разположението на речните долини и корита." #: src/settings_translation_file.cpp msgid "3D" -msgstr "" +msgstr "Триизмерни" #: src/settings_translation_file.cpp msgid "3D clouds" -msgstr "" +msgstr "Обемни облаци" #: src/settings_translation_file.cpp msgid "3D mode" -msgstr "" +msgstr "Триизмерен режим" #: src/settings_translation_file.cpp msgid "3D mode parallax strength" -msgstr "" +msgstr "Сила на паралакса в триизмерен режим" #: src/settings_translation_file.cpp msgid "3D noise defining giant caverns." -msgstr "" +msgstr "Триизмерен шум, определящ огромните пещери." #: src/settings_translation_file.cpp msgid "" "3D noise defining mountain structure and height.\n" "Also defines structure of floatland mountain terrain." msgstr "" +"Триизмерен шум, определящ структурата и височината на планините.\n" +"Също отгваря за структурата на планините на небесните острови." #: src/settings_translation_file.cpp msgid "" @@ -2430,19 +2531,21 @@ msgstr "" #: src/settings_translation_file.cpp msgid "3D noise defining structure of river canyon walls." -msgstr "" +msgstr "Триизмерен шум, определящ структурата на стените на речните каньони." #: src/settings_translation_file.cpp msgid "3D noise defining terrain." -msgstr "" +msgstr "Триизмерен шум, определящ терена." #: src/settings_translation_file.cpp msgid "3D noise for mountain overhangs, cliffs, etc. Usually small variations." msgstr "" +"Триизмерен шум за планинските козирки, скали и т.н. Обикновено в малки " +"вариации." #: src/settings_translation_file.cpp msgid "3D noise that determines number of dungeons per mapchunk." -msgstr "" +msgstr "Триизмерен шум, определящ броя на подзенията на парче от картата." #: src/settings_translation_file.cpp msgid "" @@ -2453,8 +2556,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" #: src/settings_translation_file.cpp @@ -2462,22 +2564,27 @@ msgid "" "A chosen map seed for a new map, leave empty for random.\n" "Will be overridden when creating a new world in the main menu." msgstr "" +"Избраното семе за нова карта. Оставете празно, за случайна стойност.\n" +"Ще бъде презаписано при създаване на нов свят от главното меню." #: src/settings_translation_file.cpp msgid "A message to be displayed to all clients when the server crashes." msgstr "" +"Съобщение, което да бъде показано на всички клиенти при срив на сървъра." #: src/settings_translation_file.cpp msgid "A message to be displayed to all clients when the server shuts down." msgstr "" +"Съобщение, което да бъде показано на всички клиенти при изключване на " +"сървъра." #: src/settings_translation_file.cpp msgid "ABM interval" -msgstr "" +msgstr "Интервал на ABM" #: src/settings_translation_file.cpp msgid "ABM time budget" -msgstr "" +msgstr "Ограничение на времето на ABM" #: src/settings_translation_file.cpp msgid "Absolute limit of queued blocks to emerge" @@ -2485,32 +2592,28 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Acceleration in air" -msgstr "" +msgstr "Ускорение във въздуха" #: src/settings_translation_file.cpp msgid "Acceleration of gravity, in nodes per second per second." -msgstr "" +msgstr "Ускорение на земното притегляне във възел/секунда²." #: src/settings_translation_file.cpp msgid "Active Block Modifiers" -msgstr "" +msgstr "Модификатори на активния блок (ABM)" #: src/settings_translation_file.cpp msgid "Active block management interval" -msgstr "" +msgstr "Интервал на управление на активни блокове" #: src/settings_translation_file.cpp msgid "Active block range" -msgstr "" +msgstr "Обхват на активни блокове" #: src/settings_translation_file.cpp msgid "Active object send range" msgstr "" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "Добавят се отломки при копане на възел." - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2531,6 +2634,16 @@ msgstr "Име на администратора" #: src/settings_translation_file.cpp msgid "Advanced" +msgstr "Допълнителни" + +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Allow clouds to look 3D instead of flat." msgstr "" #: src/settings_translation_file.cpp @@ -2548,11 +2661,11 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Always fly fast" -msgstr "" +msgstr "Винаги бърз полет" #: src/settings_translation_file.cpp msgid "Ambient occlusion gamma" -msgstr "" +msgstr "Гама на видимите блокове в далечина" #: src/settings_translation_file.cpp msgid "Amplifies the valleys." @@ -2650,10 +2763,16 @@ msgid "" "This is especially useful for very large viewing range (upwards of 500).\n" "Stated in MapBlocks (16 nodes)." msgstr "" +"На това разстояние сървърът ще извърши по-проста и по-евтина\n" +"проверка за видимост на възли. По-малките стойности потенциално\n" +"подобряват производителността за сметка на временно видими дефекти (липсващи " +"блокове).\n" +"Това е особено полезно за много голям обхват на видимостта (над 500).\n" +"Изразено в MapBlocks (16 възела)." #: src/settings_translation_file.cpp msgid "Audio" -msgstr "" +msgstr "Звук" #: src/settings_translation_file.cpp msgid "Automatically jump up single-node obstacles." @@ -2712,9 +2831,8 @@ msgid "Biome noise" msgstr "" #: src/settings_translation_file.cpp -#, fuzzy msgid "Block bounds HUD radius" -msgstr "Граници на блокове" +msgstr "Радиус на интерфейса за граници на блокове" #: src/settings_translation_file.cpp msgid "Block cull optimize distance" @@ -2862,23 +2980,23 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Client" -msgstr "" +msgstr "Клиент" #: src/settings_translation_file.cpp msgid "Client Mesh Chunksize" -msgstr "" +msgstr "Размер на меша за клиента" #: src/settings_translation_file.cpp msgid "Client and Server" -msgstr "" +msgstr "Клиент и сървър" #: src/settings_translation_file.cpp msgid "Client modding" -msgstr "" +msgstr "Модификации на клиента" #: src/settings_translation_file.cpp msgid "Client side modding restrictions" -msgstr "" +msgstr "Ограничения на модификациите на клиента" #: src/settings_translation_file.cpp msgid "Client-side Modding" @@ -2890,31 +3008,31 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Climbing speed" -msgstr "" +msgstr "Скорост на катерене" #: src/settings_translation_file.cpp msgid "Cloud radius" -msgstr "" +msgstr "Радиус на облаците" #: src/settings_translation_file.cpp msgid "Clouds" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." -msgstr "" +msgstr "Облаци" #: src/settings_translation_file.cpp msgid "Clouds in menu" +msgstr "Облаци в менюто" + +#: src/settings_translation_file.cpp +msgid "Color depth for post-processing texture" msgstr "" #: src/settings_translation_file.cpp msgid "Colored fog" -msgstr "" +msgstr "Цветна мъгла" #: src/settings_translation_file.cpp msgid "Colored shadows" -msgstr "" +msgstr "Цветни сенки" #: src/settings_translation_file.cpp msgid "" @@ -2930,7 +3048,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" #: src/settings_translation_file.cpp @@ -2963,11 +3081,11 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Connect glass" -msgstr "" +msgstr "Съединяване на стъклата" #: src/settings_translation_file.cpp msgid "Connect to external media server" -msgstr "" +msgstr "Свързване към външен сървър за медия" #: src/settings_translation_file.cpp msgid "Connects glass if supported by node." @@ -3069,6 +3187,14 @@ msgstr "" msgid "Debugging" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "" @@ -3220,18 +3346,10 @@ msgid "" "When the 'snowbiomes' flag is enabled, this is ignored." msgstr "" -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "" - #: src/settings_translation_file.cpp msgid "Developer Options" msgstr "За разработчици" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "Отломки при копане" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "" @@ -3257,6 +3375,14 @@ msgstr "Полет при двоен скок" #: src/settings_translation_file.cpp msgid "Double-tapping the jump key toggles fly mode." +msgstr "Двойно докосване на скок включва режим на летене." + +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." msgstr "" #: src/settings_translation_file.cpp @@ -3273,24 +3399,23 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Dungeon noise" -msgstr "" +msgstr "Шум в подземията" #: src/settings_translation_file.cpp msgid "Effects" -msgstr "" +msgstr "Ефекти" #: src/settings_translation_file.cpp msgid "Enable Automatic Exposure" -msgstr "" +msgstr "Автоматична експозиция" #: src/settings_translation_file.cpp -#, fuzzy msgid "Enable Bloom" -msgstr "Включване всички" +msgstr "Включване ефекта на размиване" #: src/settings_translation_file.cpp msgid "Enable Bloom Debug" -msgstr "" +msgstr "Включване на отстраняването на дефекти при размиване" #: src/settings_translation_file.cpp #, fuzzy @@ -3334,8 +3459,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" #: src/settings_translation_file.cpp @@ -3373,6 +3498,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Enable smooth lighting with simple ambient occlusion." msgstr "" +"Плавно осветление с обикновено определяне на видимите блокове в далечина." #: src/settings_translation_file.cpp msgid "Enable split login/register" @@ -3408,8 +3534,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" #: src/settings_translation_file.cpp @@ -3424,20 +3549,13 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "" - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" #: src/settings_translation_file.cpp -#, fuzzy msgid "Enables smooth scrolling." -msgstr "Сензорен екран" +msgstr "Включва плавно прелистване." #: src/settings_translation_file.cpp msgid "Enables the post processing pipeline." @@ -3568,31 +3686,31 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Floatland density" -msgstr "" +msgstr "Плътност на небесните острови" #: src/settings_translation_file.cpp msgid "Floatland maximum Y" -msgstr "" +msgstr "Максимум по оста Y на небесните острови" #: src/settings_translation_file.cpp msgid "Floatland minimum Y" -msgstr "" +msgstr "Минимум по оста Y на небесните острови" #: src/settings_translation_file.cpp msgid "Floatland noise" -msgstr "" +msgstr "Шум на небесните острови" #: src/settings_translation_file.cpp msgid "Floatland taper exponent" -msgstr "" +msgstr "Експонента на конусовидност на небесните острови" #: src/settings_translation_file.cpp msgid "Floatland tapering distance" -msgstr "" +msgstr "Разстояние на конусовидност на небесните острови" #: src/settings_translation_file.cpp msgid "Floatland water level" -msgstr "" +msgstr "Ниво на водата на небесните острови" #: src/settings_translation_file.cpp msgid "Fog" @@ -3734,17 +3852,13 @@ msgstr "" msgid "GUI scaling filter" msgstr "" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "" - #: src/settings_translation_file.cpp msgid "Gamepads" msgstr "Контролери" #: src/settings_translation_file.cpp msgid "Global callbacks" -msgstr "" +msgstr "Глобални обратни извиквания" #: src/settings_translation_file.cpp msgid "" @@ -3767,31 +3881,31 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Graphics" -msgstr "" +msgstr "Графика" #: src/settings_translation_file.cpp msgid "Graphics and Audio" -msgstr "" +msgstr "Графика и звук" #: src/settings_translation_file.cpp msgid "Gravity" -msgstr "" +msgstr "Гравитация" #: src/settings_translation_file.cpp msgid "Ground level" -msgstr "" +msgstr "Ниво на земята" #: src/settings_translation_file.cpp msgid "Ground noise" -msgstr "" +msgstr "Шум на земята" #: src/settings_translation_file.cpp msgid "HTTP mods" -msgstr "" +msgstr "Модификации на HTTP" #: src/settings_translation_file.cpp msgid "HUD" -msgstr "" +msgstr "Игрови интерфейс" #: src/settings_translation_file.cpp msgid "HUD scaling" @@ -3961,12 +4075,6 @@ msgid "" "descending." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -3985,6 +4093,13 @@ msgid "" "empty password." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -3992,6 +4107,11 @@ msgid "" "sent to the client by 50-80%. Clients will no longer receive most\n" "invisible blocks, so that the utility of noclip mode is reduced." msgstr "" +"Когато е включено, сървърът ще извърши премахване на далечните блокове от " +"картата въз основа на\n" +"на позицията на очите на играча. Това може да намали броя на блоковете\n" +"изпратени към клиента с 50-80 %. Клиентите вече няма да получават повечето\n" +"невидими блокове, така че полезността на режима noclip намалява." #: src/settings_translation_file.cpp msgid "" @@ -4023,7 +4143,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "If this is set, players will always (re)spawn at the given position." -msgstr "" +msgstr "Ако е зададено, играчите ще се прераждат на указаното място." #: src/settings_translation_file.cpp msgid "Ignore world errors" @@ -4079,10 +4199,6 @@ msgstr "" msgid "Interval of saving important changes in the world, stated in seconds." msgstr "" -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "" - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "" @@ -4263,6 +4379,8 @@ msgid "" "Length of time between Active Block Modifier (ABM) execution cycles, stated " "in seconds." msgstr "" +"Време между циклите на изпълнение на модификатора на текущия блок (ABM), в " +"секунди." #: src/settings_translation_file.cpp msgid "Length of time between NodeTimer execution cycles, stated in seconds." @@ -4383,7 +4501,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Lower Y limit of floatlands." -msgstr "" +msgstr "Долно ограничение по оста Y на небесните острови." #: src/settings_translation_file.cpp msgid "Main menu script" @@ -4454,6 +4572,10 @@ msgid "" "'floatlands': Floating land masses in the atmosphere.\n" "'caverns': Giant caves deep underground." msgstr "" +"Атрибути за създаване на карти v7.\n" +"„ridges“: реки.\n" +"„floatlands“: плуващи в атмосферата земни маси.\n" +"„caverns“: гигантски пещери дълбоко под земята." #: src/settings_translation_file.cpp msgid "Map generation limit" @@ -4697,10 +4819,6 @@ msgstr "" msgid "Maximum users" msgstr "" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "" @@ -4733,6 +4851,10 @@ msgstr "" msgid "Minimum limit of random number of small caves per mapchunk." msgstr "" +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "" @@ -4755,7 +4877,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Modifies the size of the HUD elements." -msgstr "" +msgstr "Променя размера на елементите на игровия интерфейс." #: src/settings_translation_file.cpp msgid "Monospace font path" @@ -4822,7 +4944,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" @@ -4893,25 +5015,25 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Number of messages a player may send per 10 seconds." msgstr "" +"Броя на съобщенията, които играч може да изпрати за период от 10 секунди." #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Number of threads to use for mesh generation.\n" "Value of 0 (default) will let Luanti autodetect the number of available " "threads." msgstr "" "Брой процесорни нишки, използвани за създаване на мрежа.\n" -"Стойност 0 (подразбирана) ще остави Minetest автоматично да ооредели броя " +"Стойност 0 (подразбирана) ще остави Luanti автоматично да определи броя " "налични нишки." #: src/settings_translation_file.cpp msgid "Occlusion Culler" -msgstr "" +msgstr "Метод на изчистване на невидими блокове" #: src/settings_translation_file.cpp msgid "Occlusion Culling" -msgstr "" +msgstr "Изчистване на невидими блокове" #: src/settings_translation_file.cpp msgid "" @@ -5064,6 +5186,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Radius to use when the block bounds HUD feature is set to near blocks." msgstr "" +"Радиус, който да бъде използван при показване на границите на блокове, " +"когато на настройката е зададено да са видими близките блокове." #: src/settings_translation_file.cpp msgid "Raises terrain to make valleys around the rivers." @@ -5265,17 +5389,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5331,7 +5457,7 @@ msgstr "Сървър" #: src/settings_translation_file.cpp msgid "Server Gameplay" -msgstr "Играене на сървъра" +msgstr "Играта на сървъра" #: src/settings_translation_file.cpp msgid "Server Security" @@ -5366,7 +5492,7 @@ msgstr "Порт на сървъра" #: src/settings_translation_file.cpp msgid "Server-side occlusion culling" -msgstr "" +msgstr "Изчистване на невидимите блокове от страна на сървъра" #: src/settings_translation_file.cpp msgid "Server/Env Performance" @@ -5435,10 +5561,14 @@ msgid "" "Set to true to enable bloom effect.\n" "Bright colors will bleed over the neighboring objects." msgstr "" +"Включва ефекта на размиване.\n" +"Ярките цветове ще преливат върху съседните обекти." #: src/settings_translation_file.cpp msgid "Set to true to enable volumetric lighting effect (a.k.a. \"Godrays\")." msgstr "" +"Задайте стойност „true“, за да бъде включен ефекта на обемно осветление " +"(познато като „Божествени лъчи“)." #: src/settings_translation_file.cpp msgid "Set to true to enable waving leaves." @@ -5459,6 +5589,13 @@ msgid "" "top-left - processed base image, top-right - final image\n" "bottom-left - raw base image, bottom-right - bloom texture." msgstr "" +"Включва изобразяването на сведения за отстраняване на дефекти при ефекта на " +"размиване.\n" +"В този режим екранът е разделен на 4 квадранта:\n" +"горе дясно – обработено начално изображение, горе дясно – крайно " +"изображение\n" +"долу ляво – необработено начално изображение, долу дясно – текстура на " +"размиването." #: src/settings_translation_file.cpp msgid "" @@ -5471,16 +5608,6 @@ msgstr "" msgid "Shader path" msgstr "" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "" @@ -5509,7 +5636,7 @@ msgstr "Гама на силата на сенките" #: src/settings_translation_file.cpp msgid "Show debug info" -msgstr "" +msgstr "Показване на сведения за отстраняване на дефекти" #: src/settings_translation_file.cpp msgid "Show entity selection boxes" @@ -5585,9 +5712,8 @@ msgid "Smooth lighting" msgstr "" #: src/settings_translation_file.cpp -#, fuzzy msgid "Smooth scrolling" -msgstr "Гладко осветление" +msgstr "Плавно прелистване" #: src/settings_translation_file.cpp msgid "" @@ -5610,9 +5736,8 @@ msgid "Sneaking speed, in nodes per second." msgstr "" #: src/settings_translation_file.cpp -#, fuzzy msgid "Soft clouds" -msgstr "Тримерни облаци" +msgstr "Меки облаци" #: src/settings_translation_file.cpp msgid "Soft shadow radius" @@ -5643,10 +5768,9 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" #: src/settings_translation_file.cpp @@ -5658,7 +5782,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Static spawn point" -msgstr "" +msgstr "Постоянна точка на прераждане" #: src/settings_translation_file.cpp msgid "Steepness noise" @@ -5851,6 +5975,12 @@ msgid "" "maintained.\n" "This should be configured together with active_object_send_range_blocks." msgstr "" +"Радиусът на обема от блокове около всеки играч, който е обект на\n" +"свързаните с активни блокове действия, посочен в блокове на картата (16 " +"възела).\n" +"В активните блокове се зареждат обекти и се изпълняват ABM.\n" +"Това е и минималният обхват, в който се поддържат активни обекти (зверове).\n" +"Трябва да бъде настройвано заедно с active_object_send_range_blocks." #: src/settings_translation_file.cpp msgid "" @@ -5885,6 +6015,8 @@ msgid "" "The time budget allowed for ABMs to execute on each step\n" "(as a fraction of the ABM Interval)" msgstr "" +"Ограничениенна време, предвидено за изпълнение на всяка стъпка от ABM\n" +"(като част от интервала на ABM)" #: src/settings_translation_file.cpp msgid "" @@ -5927,10 +6059,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "" -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "" @@ -5964,9 +6092,8 @@ msgid "Touchscreen" msgstr "Сензорен екран" #: src/settings_translation_file.cpp -#, fuzzy msgid "Touchscreen controls" -msgstr "Сензорен екран" +msgstr "Сензорно управление" #: src/settings_translation_file.cpp msgid "Touchscreen sensitivity" @@ -5992,6 +6119,11 @@ msgstr "" msgid "Transparency Sorting Distance" msgstr "Сортиране на прозрачността по отдалеченост" +#: src/settings_translation_file.cpp +#, fuzzy +msgid "Transparency Sorting Group by Buffers" +msgstr "Сортиране на прозрачността по отдалеченост" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "" @@ -6042,7 +6174,10 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" #: src/settings_translation_file.cpp @@ -6065,16 +6200,14 @@ msgstr "" msgid "Upper Y limit of floatlands." msgstr "" -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "" - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "" #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" #: src/settings_translation_file.cpp @@ -6125,7 +6258,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "User Interfaces" -msgstr "Потребителски интерфейси" +msgstr "Интерфейси" #: src/settings_translation_file.cpp msgid "VSync" @@ -6311,20 +6444,12 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -6335,10 +6460,6 @@ msgid "" "Mods may still set a background." msgstr "" -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -6361,8 +6482,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -6371,18 +6491,20 @@ msgstr "" msgid "" "Whether to show the client debug info (has the same effect as hitting F5)." msgstr "" +"Показване на информация за отстраняване на дефекти (същото като натискане на " +"F5)." #: src/settings_translation_file.cpp msgid "Width component of the initial window size." -msgstr "" +msgstr "Начална ширина на прозореца." #: src/settings_translation_file.cpp msgid "Width of the selection box lines around nodes." -msgstr "" +msgstr "Дебелина на рамката при избор на възел." #: src/settings_translation_file.cpp msgid "Window maximized" -msgstr "" +msgstr "Прозорецът е увеличен максимално" #: src/settings_translation_file.cpp msgid "" @@ -6390,6 +6512,9 @@ msgid "" "background.\n" "Contains the same information as the file debug.txt (default name)." msgstr "" +"Само за Windows: стартира Luanti с прозорец на командния ред във фонов " +"режим.\n" +"Прозорецът съдържа същата информация като файла debug.txt (подразбирано име)." #: src/settings_translation_file.cpp msgid "" @@ -6413,25 +6538,27 @@ msgstr "" #: src/settings_translation_file.cpp msgid "World-aligned textures mode" -msgstr "" +msgstr "Режим на подравняване на текстурите към света" #: src/settings_translation_file.cpp msgid "Y of flat ground." -msgstr "" +msgstr "Y на равния терен." #: src/settings_translation_file.cpp msgid "" "Y of mountain density gradient zero level. Used to shift mountains " "vertically." msgstr "" +"Нулево ниво по оста Y на плътностния градиент на планините. Използвано за " +"вертикалното им отместване." #: src/settings_translation_file.cpp msgid "Y of upper limit of large caves." -msgstr "" +msgstr "Горна граница по оста Y на големите пещерите." #: src/settings_translation_file.cpp msgid "Y-distance over which caverns expand to full size." -msgstr "" +msgstr "Разстояние по оста Y, над което пещерите достигат пълния си размер." #: src/settings_translation_file.cpp msgid "" @@ -6443,23 +6570,23 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Y-level of average terrain surface." -msgstr "" +msgstr "Ниво по оста Y на средната височина на релефа." #: src/settings_translation_file.cpp msgid "Y-level of cavern upper limit." -msgstr "" +msgstr "Ниво по оста Y на горната граница на пещерите." #: src/settings_translation_file.cpp msgid "Y-level of higher terrain that creates cliffs." -msgstr "" +msgstr "Ниво по оста Y на високия релеф, формиращ планини." #: src/settings_translation_file.cpp msgid "Y-level of lower terrain and seabed." -msgstr "" +msgstr "Ниво по оста Y на ниския релеф и морското дъно." #: src/settings_translation_file.cpp msgid "Y-level of seabed." -msgstr "" +msgstr "Ниво по оста Y на морското дъно." #: src/settings_translation_file.cpp msgid "cURL" @@ -6467,15 +6594,15 @@ msgstr "cURL" #: src/settings_translation_file.cpp msgid "cURL file download timeout" -msgstr "" +msgstr "Изчакване за изтегляне с cURL" #: src/settings_translation_file.cpp msgid "cURL interactive timeout" -msgstr "" +msgstr "Изчакване за взаимодействие с cURL" #: src/settings_translation_file.cpp msgid "cURL parallel limit" -msgstr "" +msgstr "Ограничение на едновременните връзки на cURL" #~ msgid "- Address: " #~ msgstr "- Адрес: " @@ -6492,6 +6619,9 @@ msgstr "" #~ msgid "< Back to Settings page" #~ msgstr "Главно меню" +#~ msgid "Adds particles when digging a node." +#~ msgstr "Добавят се отломки при копане на възел." + #~ msgid "All Settings" #~ msgstr "Всички настройки" @@ -6514,6 +6644,9 @@ msgstr "" #~ msgid "Change keys" #~ msgstr "Промяна на клавиши" +#~ msgid "Clouds are a client-side effect." +#~ msgstr "Облаците са ефекти от страна на клиента." + #~ msgid "Connect" #~ msgstr "Свързване" @@ -6558,9 +6691,21 @@ msgstr "" #~ msgid "Creative" #~ msgstr "Творчески" +#~ msgid "Debug info and profiler graph hidden" +#~ msgstr "" +#~ "Сведенията за отстраняване на дефекти и графиките на профилиране са скрити" + +#~ msgid "Debug info, profiler graph, and wireframe hidden" +#~ msgstr "" +#~ "Сведенията за отстраняване на дефекти, графиките на профилиране и " +#~ "телените рамки са скрити" + #~ msgid "Del. Favorite" #~ msgstr "Премах. любим" +#~ msgid "Digging particles" +#~ msgstr "Отломки при копане" + #~ msgid "Disabled unlimited viewing range" #~ msgstr "Неограниченият обхват на видимост е изключен" @@ -6574,6 +6719,9 @@ msgstr "" #~ msgid "Dynamic shadows:" #~ msgstr "Динамични сенки: " +#~ msgid "Enable" +#~ msgstr "Включване" + #~ msgid "Enable creative mode for all players" #~ msgstr "Задаване на творчески режим на всички играчи" @@ -6590,9 +6738,6 @@ msgstr "" #~ "Бърздо движение чрез клавиш „Aux1“.\n" #~ "Изисква правото „fast“ от сървъра." -#~ msgid "Game" -#~ msgstr "Игра" - #, fuzzy #~ msgid "Hide: Temporary Settings" #~ msgstr "Настройки" @@ -6619,6 +6764,9 @@ msgstr "" #~ msgid "Install: file: \"$1\"" #~ msgstr "Инсталиране: файл: „$1“" +#~ msgid "Irrlicht device:" +#~ msgstr "Устройство на Irrlicht:" + #~ msgid "" #~ "Keybindings. (If this menu screws up, remove stuff from minetest.conf)" #~ msgstr "" @@ -6684,9 +6832,15 @@ msgstr "" #~ msgid "Shaders (experimental)" #~ msgstr "Земни маси в небето (експериментално)" +#~ msgid "Shaders are disabled." +#~ msgstr "Шейдерите са изключени." + #~ msgid "Simple Leaves" #~ msgstr "Обикновени листа" +#~ msgid "Sound system is disabled" +#~ msgstr "Системата за звук е изключена" + #~ msgid "Texturing:" #~ msgstr "Текстуриране:" @@ -6696,6 +6850,9 @@ msgstr "" #~ msgid "The value must not be larger than $1." #~ msgstr "Стойността трябва да е най-много $1." +#~ msgid "This is not a recommended configuration." +#~ msgstr "Тази настройка не се препоръчва." + #~ msgid "Uninstall Package" #~ msgstr "Премахване на пакет" diff --git a/po/ca/luanti.po b/po/ca/luanti.po index 07b077a50..91af625ee 100644 --- a/po/ca/luanti.po +++ b/po/ca/luanti.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Catalan (Minetest)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" "PO-Revision-Date: 2024-10-06 05:16+0000\n" "Last-Translator: Joaquín Villalba \n" "Language-Team: Catalan ] [-t]" msgstr "[tot | ]" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "Navegar" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "Editar" + +#: builtin/common/settings/components.lua +#, fuzzy +msgid "Select directory" +msgstr "Selecciona el fitxer del mod:" + +#: builtin/common/settings/components.lua +#, fuzzy +msgid "Select file" +msgstr "Selecciona el fitxer del mod:" + +#: builtin/common/settings/components.lua +#, fuzzy +msgid "Set" +msgstr "Seleccionar" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(Cap descripció d'ajustament donada)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#, fuzzy +msgid "2D Noise" +msgstr "Soroll de cova #1" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "Cancel·lar" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "Guardar" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "Llavor" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#, fuzzy +msgid "defaults" +msgstr "Joc per defecte" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "Xat" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "Netejar" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "Controls" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "Desactivat" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "Activat" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Movement" +msgstr "Moviment ràpid" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +#, fuzzy +msgid "No results" +msgstr "Cap resultat" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Reset setting to default" +msgstr "Restablir per defecte" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "Buscar" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "Mostrar els noms tècnics" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Touchscreen layout" +msgstr "Llindar tàctil (px)" + +#: builtin/common/settings/dlg_settings.lua +msgid "pause_menu" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Client Mods" +msgstr "Seleccionar un món:" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Content: Games" +msgstr "Continuar" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Content: Mods" +msgstr "Continuar" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "" + #: builtin/fstk/ui.lua msgid "" msgstr "" @@ -171,7 +421,6 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "Enrere" @@ -209,12 +458,6 @@ msgstr "Mods" msgid "No packages could be retrieved" msgstr "No s'ha pogut obtenir cap paquet" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "No results" -msgstr "Cap resultat" - #: builtin/mainmenu/content/dlg_contentdb.lua #, fuzzy msgid "No updates" @@ -266,18 +509,6 @@ msgstr "La tecla s'està utilitzant" msgid "Base Game:" msgstr "Ocultar Joc" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "Cancel·lar" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -417,6 +648,12 @@ msgstr "Error al instal·lar $1 en $2" msgid "Unable to install a $1 as a texture pack" msgstr "Error al instal·lar $1 en $2" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "(Habilitat, té algún error)" @@ -485,12 +722,6 @@ msgstr "Dependències opcionals:" msgid "Optional dependencies:" msgstr "Dependències opcionals:" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "Guardar" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "Món:" @@ -653,11 +884,6 @@ msgstr "Soroll de cova #1" msgid "Sea level rivers" msgstr "Rius a nivell del mar" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "Llavor" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "Transició suau entre els biomes" @@ -800,6 +1026,23 @@ msgid "" "override any renaming here." msgstr "" +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "Activar tot" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "" @@ -824,7 +1067,7 @@ msgstr "" msgid "Visit website" msgstr "" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "Configuració" @@ -838,235 +1081,6 @@ msgstr "" "Intenta tornar a habilitar la llista de servidors públics i comprovi la seva " "connexió a Internet ." -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "Navegar" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "Editar" - -#: builtin/mainmenu/settings/components.lua -#, fuzzy -msgid "Select directory" -msgstr "Selecciona el fitxer del mod:" - -#: builtin/mainmenu/settings/components.lua -#, fuzzy -msgid "Select file" -msgstr "Selecciona el fitxer del mod:" - -#: builtin/mainmenu/settings/components.lua -#, fuzzy -msgid "Set" -msgstr "Seleccionar" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(Cap descripció d'ajustament donada)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#, fuzzy -msgid "2D Noise" -msgstr "Soroll de cova #1" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#, fuzzy -msgid "defaults" -msgstr "Joc per defecte" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "Xat" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "Netejar" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "Controls" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "Desactivat" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "Activat" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Movement" -msgstr "Moviment ràpid" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Reset setting to default" -msgstr "Restablir per defecte" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "Buscar" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "Mostrar els noms tècnics" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Client Mods" -msgstr "Seleccionar un món:" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Content: Games" -msgstr "Continuar" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Content: Mods" -msgstr "Continuar" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "Activat" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Shaders are disabled." -msgstr "Tecla alternativa per a l'actualització de la càmera" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "" @@ -1088,10 +1102,6 @@ msgstr "Desenvolupadors del nucli" msgid "Core Team" msgstr "" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "" - #: builtin/mainmenu/tab_about.lua #, fuzzy msgid "Open User Data Directory" @@ -1250,11 +1260,23 @@ msgstr "Ocultar Joc" msgid "You need to install a game before you can create a world." msgstr "Heu d'instal·lar un joc abans d'instal·lar un mod" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "Esborra preferit" + #: builtin/mainmenu/tab_online.lua #, fuzzy msgid "Address" msgstr "Adreça BIND" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "Client" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "Mode creatiu" @@ -1270,6 +1292,11 @@ msgstr "Dany" msgid "Favorites" msgstr "Preferit" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "Joc" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "" @@ -1283,10 +1310,27 @@ msgstr "Ocultar Joc" msgid "Login" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Open server website" +msgstr "Pas de servidor dedicat" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "Ping" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua #, fuzzy msgid "Public Servers" @@ -1376,24 +1420,6 @@ msgstr "" "\n" "Comprovi debug.txt per a detalls." -#: src/client/game.cpp -msgid "- Mode: " -msgstr "" - -#: src/client/game.cpp -#, fuzzy -msgid "- Public: " -msgstr "Públic" - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "" - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "" - #: src/client/game.cpp #, fuzzy msgid "A serialization error occurred:" @@ -1404,6 +1430,11 @@ msgstr "Ha ocorregut un error:" msgid "Access denied. Reason: %s" msgstr "" +#: src/client/game.cpp +#, fuzzy +msgid "All debug info hidden" +msgstr "Tecla alternativa per a la informació de la depuració" + #: src/client/game.cpp #, fuzzy msgid "Automatic forward disabled" @@ -1426,6 +1457,10 @@ msgstr "" msgid "Block bounds shown for nearby blocks" msgstr "" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp #, fuzzy msgid "Camera update disabled" @@ -1440,10 +1475,6 @@ msgstr "Tecla alternativa per a l'actualització de la càmera" msgid "Can't show block bounds (disabled by game or mod)" msgstr "" -#: src/client/game.cpp -msgid "Change Password" -msgstr "Canviar contrasenya" - #: src/client/game.cpp #, fuzzy msgid "Cinematic mode disabled" @@ -1475,39 +1506,6 @@ msgstr "Error de connexió (¿temps esgotat?)" msgid "Connection failed for unknown reason" msgstr "" -#: src/client/game.cpp -msgid "Continue" -msgstr "Continuar" - -#: src/client/game.cpp -#, fuzzy -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" -"Controls predeterminats:\n" -"Amb el menú ocult:\n" -"- Toc simple: botó activar\n" -"- Toc doble: posar / utilitzar\n" -"- Lliscar dit: mirar al voltant\n" -"Amb el menú / inventari visible:\n" -"- Toc doble (fora):\n" -" -> tancar\n" -"- Toc a la pila d'objectes:\n" -" -> moure la pila\n" -"- Toc i arrossegar, toc amb 2 dits:\n" -" -> col·locar només un objecte\n" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1521,32 +1519,16 @@ msgstr "Creant client ..." msgid "Creating server..." msgstr "Creant servidor ..." -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "" - #: src/client/game.cpp #, fuzzy msgid "Debug info shown" msgstr "Tecla alternativa per a la informació de la depuració" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "" - #: src/client/game.cpp #, fuzzy, c-format msgid "Error creating client: %s" msgstr "Creant client ..." -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "Eixir al menú" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "Eixir al S.O" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "" @@ -1587,20 +1569,6 @@ msgstr "Activat" msgid "Fog enabled by game or mod" msgstr "" -#: src/client/game.cpp -msgid "Game info:" -msgstr "" - -#: src/client/game.cpp -#, fuzzy -msgid "Game paused" -msgstr "Jocs" - -#: src/client/game.cpp -#, fuzzy -msgid "Hosting server" -msgstr "Creant servidor ..." - #: src/client/game.cpp msgid "Item definitions..." msgstr "Definicions d'objectes ..." @@ -1639,14 +1607,6 @@ msgstr "" msgid "Node definitions..." msgstr "Definicions dels nodes ..." -#: src/client/game.cpp -msgid "Off" -msgstr "" - -#: src/client/game.cpp -msgid "On" -msgstr "" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "" @@ -1659,40 +1619,23 @@ msgstr "" msgid "Profiler graph shown" msgstr "" -#: src/client/game.cpp -#, fuzzy -msgid "Remote server" -msgstr "Anunciar servidor" - #: src/client/game.cpp msgid "Resolving address..." msgstr "Resolent adreça ..." -#: src/client/game.cpp -msgid "Respawn" -msgstr "Reaparèixer" - #: src/client/game.cpp msgid "Shutting down..." msgstr "Tancant ..." -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "Un jugador" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "Volum del so" - #: src/client/game.cpp #, fuzzy msgid "Sound muted" msgstr "Volum del so" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "" @@ -1765,18 +1708,120 @@ msgstr "" msgid "Volume changed to %d%%" msgstr "" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "" -#: src/client/game.cpp -msgid "You died" -msgstr "Has mort" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "" + +#: src/client/game_formspec.cpp +#, fuzzy +msgid "- Public: " +msgstr "Públic" + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "Canviar contrasenya" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "Continuar" + +#: src/client/game_formspec.cpp +#, fuzzy +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" +"Controls predeterminats:\n" +"Amb el menú ocult:\n" +"- Toc simple: botó activar\n" +"- Toc doble: posar / utilitzar\n" +"- Lliscar dit: mirar al voltant\n" +"Amb el menú / inventari visible:\n" +"- Toc doble (fora):\n" +" -> tancar\n" +"- Toc a la pila d'objectes:\n" +" -> moure la pila\n" +"- Toc i arrossegar, toc amb 2 dits:\n" +" -> col·locar només un objecte\n" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "Eixir al menú" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "Eixir al S.O" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "" + +#: src/client/game_formspec.cpp +#, fuzzy +msgid "Game paused" +msgstr "Jocs" + +#: src/client/game_formspec.cpp +#, fuzzy +msgid "Hosting server" +msgstr "Creant servidor ..." + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "" + +#: src/client/game_formspec.cpp +#, fuzzy +msgid "Remote server" +msgstr "Anunciar servidor" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "Reaparèixer" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "Volum del so" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "Has mort" + #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" msgstr "" @@ -2124,7 +2169,7 @@ msgid "Failed to compile the \"%s\" shader." msgstr "Error al instal·lar $1 en $2" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." +msgid "GLSL is not supported by the driver" msgstr "" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" @@ -2176,7 +2221,7 @@ msgstr "Avant" msgid "Automatic jumping" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "" @@ -2188,7 +2233,7 @@ msgstr "Arrere" msgid "Block bounds" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp #, fuzzy msgid "Change camera" msgstr "Configurar controls" @@ -2213,7 +2258,7 @@ msgstr "" msgid "Double tap \"jump\" to toggle fly" msgstr "Dos tocs \"botar\" per volar" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "Amollar" @@ -2230,11 +2275,11 @@ msgstr "" msgid "Inc. volume" msgstr "Volum del so" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "Inventari" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "Botar" @@ -2268,7 +2313,7 @@ msgstr "Següent" msgid "Prev. item" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "Seleccionar distancia" @@ -2280,7 +2325,7 @@ msgstr "Dreta" msgid "Screenshot" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "Discreció" @@ -2289,16 +2334,16 @@ msgstr "Discreció" msgid "Toggle HUD" msgstr "Activar volar" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp #, fuzzy msgid "Toggle chat log" msgstr "Activar ràpid" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "Activar ràpid" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "Activar volar" @@ -2307,12 +2352,12 @@ msgstr "Activar volar" msgid "Toggle fog" msgstr "Activar volar" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp #, fuzzy msgid "Toggle minimap" msgstr "Activar noclip" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "Activar noclip" @@ -2321,7 +2366,7 @@ msgstr "Activar noclip" msgid "Toggle pitchmove" msgstr "Activar ràpid" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "Zoom" @@ -2358,7 +2403,7 @@ msgstr "Contrasenya vella" msgid "Passwords do not match!" msgstr "Les contrasenyes no coincideixen!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "Tancar" @@ -2372,15 +2417,46 @@ msgstr "Utilitza la tecla" msgid "Sound Volume: %d%%" msgstr "Volum de so: " -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Add button" +msgstr "Botó del mig" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "Completat!" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Remove" +msgstr "Anunciar servidor" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp msgid "Joystick" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Toggle debug" msgstr "Activar volar" @@ -2587,8 +2663,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" "Suport 3D.\n" "Currently supported:\n" @@ -2656,10 +2731,6 @@ msgstr "Rang del bloc actiu" msgid "Active object send range" msgstr "Rang d'enviament de l'objecte actiu" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "" - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2683,6 +2754,16 @@ msgstr "Nom del món" msgid "Advanced" msgstr "Avançat" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Allow clouds to look 3D instead of flat." +msgstr "" + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "" @@ -3075,15 +3156,14 @@ msgstr "Radi del núvol" msgid "Clouds" msgstr "Núvols" -#: src/settings_translation_file.cpp -#, fuzzy -msgid "Clouds are a client-side effect." -msgstr "Els núvols són un efecte de costat del client." - #: src/settings_translation_file.cpp msgid "Clouds in menu" msgstr "Núvols en el menú" +#: src/settings_translation_file.cpp +msgid "Color depth for post-processing texture" +msgstr "" + #: src/settings_translation_file.cpp msgid "Colored fog" msgstr "Boira de color" @@ -3107,7 +3187,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" #: src/settings_translation_file.cpp @@ -3256,6 +3336,14 @@ msgstr "Nivell de registre de depuració" msgid "Debugging" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "Pas de servidor dedicat" @@ -3409,20 +3497,11 @@ msgid "" "When the 'snowbiomes' flag is enabled, this is ignored." msgstr "" -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Developer Options" msgstr "Informació del mod:" -#: src/settings_translation_file.cpp -#, fuzzy -msgid "Digging particles" -msgstr "Partícules" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "" @@ -3450,6 +3529,14 @@ msgstr "Polsar dues vegades \"botar\" per volar" msgid "Double-tapping the jump key toggles fly mode." msgstr "Polsar dues vegades \"botar\" per alternar el mode de vol." +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "" @@ -3526,8 +3613,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" #: src/settings_translation_file.cpp @@ -3601,8 +3688,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" #: src/settings_translation_file.cpp @@ -3617,12 +3703,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "" - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -3927,10 +4007,6 @@ msgstr "" msgid "GUI scaling filter" msgstr "" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Gamepads" @@ -4163,12 +4239,6 @@ msgid "" "descending." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -4187,6 +4257,13 @@ msgid "" "empty password." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4281,10 +4358,6 @@ msgstr "" msgid "Interval of saving important changes in the world, stated in seconds." msgstr "" -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "" - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "" @@ -4915,10 +4988,6 @@ msgstr "" msgid "Maximum users" msgstr "" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "" @@ -4952,6 +5021,10 @@ msgstr "" msgid "Minimum limit of random number of small caves per mapchunk." msgstr "" +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "" @@ -5042,7 +5115,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" @@ -5492,17 +5565,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5720,16 +5795,6 @@ msgstr "" msgid "Shader path" msgstr "Ombres" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "Ombres" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "" @@ -5899,10 +5964,9 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" #: src/settings_translation_file.cpp @@ -6191,10 +6255,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "" -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "" @@ -6259,6 +6319,10 @@ msgstr "Moviment de les Fulles" msgid "Transparency Sorting Distance" msgstr "" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "" @@ -6309,7 +6373,10 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" #: src/settings_translation_file.cpp @@ -6333,16 +6400,14 @@ msgstr "" msgid "Upper Y limit of floatlands." msgstr "Límit absolut de cues emergents" -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "" - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "" #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" #: src/settings_translation_file.cpp @@ -6585,20 +6650,12 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -6609,10 +6666,6 @@ msgid "" "Mods may still set a background." msgstr "" -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -6635,8 +6688,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -6898,6 +6950,10 @@ msgstr "" #~ msgid "Clean transparent textures" #~ msgstr "Netejar textures transparents" +#, fuzzy +#~ msgid "Clouds are a client-side effect." +#~ msgstr "Els núvols són un efecte de costat del client." + #~ msgid "Command key" #~ msgstr "Tecla comandament" @@ -6992,6 +7048,10 @@ msgstr "" #~ msgid "Dig key" #~ msgstr "Tecla dreta" +#, fuzzy +#~ msgid "Digging particles" +#~ msgstr "Partícules" + #, fuzzy #~ msgid "Download a game, such as Minetest Game, from minetest.net" #~ msgstr "" @@ -7004,6 +7064,10 @@ msgstr "" #~ msgid "Downloading and installing $1, please wait..." #~ msgstr "Descarregant $1, si us plau esperi ..." +#, fuzzy +#~ msgid "Enable" +#~ msgstr "Activat" + #~ msgid "Enable VBO" #~ msgstr "Activar VBO" @@ -7024,9 +7088,6 @@ msgstr "" #~ msgid "Forward key" #~ msgstr "Tecla Avançar" -#~ msgid "Game" -#~ msgstr "Joc" - #, fuzzy #~ msgid "Generate Normal Maps" #~ msgstr "Generar Mapes Normals" @@ -7058,551 +7119,551 @@ msgstr "" #~ msgid "" #~ "Key for decreasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per disminuir el rang de visió.\n" #~ "Mira\n" -#~ "http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for decreasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per disminuir el rang de visió.\n" #~ "Mira\n" -#~ "http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for digging.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per botar.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per incrementar el rang de visió.\n" #~ "Mira\n" -#~ "http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for increasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per incrementar el rang de visió.\n" #~ "Mira\n" -#~ "http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for jumping.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per botar.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for moving the player backward.\n" #~ "Will also disable autoforward, when active.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per moure el jugador cap arrere.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player forward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per moure avant al jugador.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player left.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per moure el jugador cap a l'esquerra.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player right.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per moure el jugador cap a la dreta.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for muting the game.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per botar.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for opening the chat window to type local commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per obrir el inventari.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the inventory.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per obrir el inventari.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for placing.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per botar.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 11th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per obrir el inventari.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 12th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per obrir el inventari.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 13th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per obrir el inventari.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 14th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per obrir el inventari.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 15th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per obrir el inventari.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 16th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per obrir el inventari.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 17th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per obrir el inventari.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 18th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per obrir el inventari.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 19th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per obrir el inventari.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 20th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per obrir el inventari.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 21st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per obrir el inventari.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 22nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per obrir el inventari.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 23rd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per obrir el inventari.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 24th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per obrir el inventari.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 25th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per obrir el inventari.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 26th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per obrir el inventari.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 27th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per obrir el inventari.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 28th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per obrir el inventari.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 29th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per obrir el inventari.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 30th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per obrir el inventari.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 31st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per obrir el inventari.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 32nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per obrir el inventari.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the eighth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per obrir el inventari.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the fifth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per obrir el inventari.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the first hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per obrir el inventari.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the fourth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per obrir el inventari.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the next item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per obrir el inventari.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the ninth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per obrir el inventari.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the previous item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per obrir el inventari.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the second hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per obrir el inventari.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the seventh hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per obrir el inventari.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the sixth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per obrir el inventari.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the tenth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per obrir el inventari.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the third hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per obrir el inventari.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for toggling autoforward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per botar.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for toggling pitch move mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per botar.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for toggling the camera update. Only used for development\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per moure el jugador cap a l'esquerra.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for toggling the display of chat.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per moure el jugador cap a la dreta.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for toggling the display of fog.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per moure el jugador cap a l'esquerra.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for toggling the display of the large chat console.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per moure el jugador cap a la dreta.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key to use view zoom when possible.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla per botar.\n" -#~ "Veure http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Veure http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Keybindings. (If this menu screws up, remove stuff from minetest.conf)" @@ -7705,6 +7766,13 @@ msgstr "" #~ msgid "Select Package File:" #~ msgstr "Selecciona el fitxer del mod:" +#~ msgid "Shaders" +#~ msgstr "Ombres" + +#, fuzzy +#~ msgid "Shaders are disabled." +#~ msgstr "Tecla alternativa per a l'actualització de la càmera" + #~ msgid "Simple Leaves" #~ msgstr "Fulles senzilles" diff --git a/po/cs/luanti.po b/po/cs/luanti.po index 4ceeee8ca..9e978f5b1 100644 --- a/po/cs/luanti.po +++ b/po/cs/luanti.po @@ -2,9 +2,9 @@ msgid "" msgstr "" "Project-Id-Version: Czech (Minetest)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" -"PO-Revision-Date: 2024-10-22 09:40+0000\n" -"Last-Translator: Honzapkcz \n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" +"PO-Revision-Date: 2025-02-05 11:03+0000\n" +"Last-Translator: Matyáš Pilz \n" "Language-Team: Czech \n" "Language: cs\n" @@ -12,7 +12,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=((n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2);\n" -"X-Generator: Weblate 5.8-rc\n" +"X-Generator: Weblate 5.10-dev\n" #: builtin/client/chatcommands.lua msgid "Clear the out chat queue" @@ -77,6 +77,250 @@ msgstr "" msgid "[all | ] [-t]" msgstr "[all | ] [-t]" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "Procházet" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "Upravit" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "Vyberte adresář" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "Vybrat soubor" + +#: builtin/common/settings/components.lua +#, fuzzy +msgid "Set" +msgstr "Vybrat" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(bez popisu)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "2D šum" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "Zrušit" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "Lakunarita" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "Oktávy" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "Odstup" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "Vytrvalost" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "Uložit" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "Přiblížení" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "Seedové číslo" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "Rozptyl X" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "Rozptyl Y" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "Rozptyl Z" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "absolutnihodnota" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "Výchozí hodnoty" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "vyhlazení" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "(The game will need to enable automatic exposure as well)" +msgstr "(Hra bude muset také povolit stíny)" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "(The game will need to enable bloom as well)" +msgstr "(Hra bude muset také povolit stíny)" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "(Hra bude muset také povolit stíny)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "(Použít jazyk systému)" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "Přístupnost" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "Automaticky" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "Chat" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "Vyčistit" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "Ovládání" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "Vypnuto" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "Zapnuto" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "Obecné" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "Pohyb" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "Žádné výsledky" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default" +msgstr "Obnovit výchozí nastavení" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "Vrátit nastavení do původního stavu ($1)" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "Vyhledat" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "Zobrazit pokročilé nastavení" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "Zobrazit technické názvy" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Touchscreen layout" +msgstr "Dotyková obrazovka" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "pause_menu" +msgstr "FPS v menu pauzy" + +#: builtin/common/settings/settingtypes.lua +msgid "Client Mods" +msgstr "Klientské mody" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "Obsah: hry" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "Obsah: mody" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "(Hra bude muset také povolit stíny)" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "Vlastní" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "Dynamické stíny" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "Vysoké" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "Nízké" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "Střední" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "Velmi vysoké" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "Velmi nízké" + #: builtin/fstk/ui.lua msgid "" msgstr "" @@ -159,19 +403,16 @@ msgstr "$1 se stahuje..." #: builtin/mainmenu/content/dlg_contentdb.lua msgid "All" -msgstr "" +msgstr "Vše" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "Zpět" #: builtin/mainmenu/content/dlg_contentdb.lua -#, fuzzy msgid "ContentDB is not available when Luanti was compiled without cURL" -msgstr "" -"ContentDB není přístupná pokud byl Minetest kompilován bez použití cURL" +msgstr "ContentDB není přístupná pokud byl Luanti kompilován bez použití cURL" #: builtin/mainmenu/content/dlg_contentdb.lua msgid "Downloading..." @@ -179,7 +420,7 @@ msgstr "Stahuji..." #: builtin/mainmenu/content/dlg_contentdb.lua msgid "Featured" -msgstr "" +msgstr "Uváděný" #: builtin/mainmenu/content/dlg_contentdb.lua msgid "Games" @@ -201,11 +442,6 @@ msgstr "Mody" msgid "No packages could be retrieved" msgstr "Nelze načíst žádný balíček" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "Žádné výsledky" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "Žádné aktualizace" @@ -251,18 +487,6 @@ msgstr "Již nainstalováno" msgid "Base Game:" msgstr "Základní hra:" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "Zrušit" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -317,11 +541,11 @@ msgstr "Popis serveru" #: builtin/mainmenu/content/dlg_package.lua msgid "Donate" -msgstr "" +msgstr "Darovat" #: builtin/mainmenu/content/dlg_package.lua msgid "Forum Topic" -msgstr "" +msgstr "Vlákno fóra" #: builtin/mainmenu/content/dlg_package.lua #, fuzzy @@ -335,15 +559,15 @@ msgstr "Instalovat $1" #: builtin/mainmenu/content/dlg_package.lua msgid "Issue Tracker" -msgstr "" +msgstr "Sledovač potíží" #: builtin/mainmenu/content/dlg_package.lua msgid "Source" -msgstr "" +msgstr "Zdroj" #: builtin/mainmenu/content/dlg_package.lua msgid "Translate" -msgstr "" +msgstr "Překlad" #: builtin/mainmenu/content/dlg_package.lua builtin/mainmenu/tab_content.lua msgid "Uninstall" @@ -390,6 +614,12 @@ msgstr "Selhala instalace rozšíření $1 jako $2" msgid "Unable to install a $1 as a texture pack" msgstr "Selhala instalace $1 jako rozšíření textur" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "(Povoleno, s chybou)" @@ -454,12 +684,6 @@ msgstr "Žádné volitelné závislosti" msgid "Optional dependencies:" msgstr "Volitelné závislosti:" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "Uložit" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "Svět:" @@ -612,11 +836,6 @@ msgstr "Řeky" msgid "Sea level rivers" msgstr "Řeky v úrovni mořské hladiny" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "Seedové číslo" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "Pozvolný přechod mezi biomy" @@ -761,6 +980,23 @@ msgstr "" "Tento balíček modů má uvedené jméno ve svém modpack.conf, které přepíše " "jakékoliv přejmenování zde." +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "Zapnout vše" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "Je k dispozici nová verze $1" @@ -789,7 +1025,7 @@ msgstr "Nikdy" msgid "Visit website" msgstr "Navštívit webovou stránku" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "Nastavení" @@ -803,229 +1039,6 @@ msgstr "" "Zkuste znovu povolit seznam veřejných serverů a zkontrolujte své internetové " "připojení." -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "Procházet" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "Upravit" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "Vyberte adresář" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "Vybrat soubor" - -#: builtin/mainmenu/settings/components.lua -#, fuzzy -msgid "Set" -msgstr "Vybrat" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(bez popisu)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "2D šum" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "Lakunarita" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "Oktávy" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "Odstup" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "Vytrvalost" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "Přiblížení" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "Rozptyl X" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "Rozptyl Y" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "Rozptyl Z" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "absolutnihodnota" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "Výchozí hodnoty" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "vyhlazení" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable automatic exposure as well)" -msgstr "(Hra bude muset také povolit stíny)" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable bloom as well)" -msgstr "(Hra bude muset také povolit stíny)" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "(Hra bude muset také povolit stíny)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "(Použít jazyk systému)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "Přístupnost" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "Chat" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "Vyčistit" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "Ovládání" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "Vypnuto" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "Zapnuto" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "Obecné" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "Pohyb" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default" -msgstr "Obnovit výchozí nastavení" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "Vrátit nastavení do původního stavu ($1)" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "Vyhledat" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "Zobrazit pokročilé nastavení" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "Zobrazit technické názvy" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "Klientské mody" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "Obsah: hry" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "Obsah: mody" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "Zapnuto" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Shaders are disabled." -msgstr "Aktualizace kamery zakázána" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "(Hra bude muset také povolit stíny)" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "Vlastní" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "Dynamické stíny" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "Vysoké" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "Nízké" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "Střední" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "Velmi vysoké" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "Velmi nízké" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "Tiráž" @@ -1046,10 +1059,6 @@ msgstr "Hlavní vývojáři" msgid "Core Team" msgstr "Hlavní členové týmu" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "Irrlicht zařízení:" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "Otevřít uživatelský adresář" @@ -1200,10 +1209,22 @@ msgstr "Spuštění hry" msgid "You need to install a game before you can create a world." msgstr "Musíš si nainstalovat hru před tím než si můžeš vytvořit svět." +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "Odstranit oblíbeného" + #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "Adresa" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "Klient" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "Kreativní mód" @@ -1217,6 +1238,11 @@ msgstr "Zranění / PvP" msgid "Favorites" msgstr "Oblíbené" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "Hra" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "Nekompatibilní server" @@ -1229,10 +1255,28 @@ msgstr "Připojit se ke hře" msgid "Login" msgstr "Přihlásit se" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Number of mods: $1" +msgstr "Počet výpočetních vláken „zjevení“" + +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Open server website" +msgstr "Délka serverového kroku" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "Ping" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Public Servers" msgstr "Veřejné servery" @@ -1318,23 +1362,6 @@ msgstr "" "\n" "Detaily naleznete v souboru debug.txt." -#: src/client/game.cpp -msgid "- Mode: " -msgstr "- Mód: " - -#: src/client/game.cpp -msgid "- Public: " -msgstr "- Veřejný: " - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "- „PvP“: " - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "- Název serveru: " - #: src/client/game.cpp msgid "A serialization error occurred:" msgstr "Nastala chyba serializace:" @@ -1344,6 +1371,11 @@ msgstr "Nastala chyba serializace:" msgid "Access denied. Reason: %s" msgstr "Přístup odepřen. Důvod: %s" +#: src/client/game.cpp +#, fuzzy +msgid "All debug info hidden" +msgstr "Ladící informace zobrazeny" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "Automatický posun vpřed zakázán" @@ -1364,6 +1396,10 @@ msgstr "Zobrazit hranice bloku u aktuálního bloku" msgid "Block bounds shown for nearby blocks" msgstr "Zobrazit hranice bloku u blízkých bloků" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "Aktualizace kamery zakázána" @@ -1376,10 +1412,6 @@ msgstr "Aktualizace kamery povolena" msgid "Can't show block bounds (disabled by game or mod)" msgstr "Nelze zobrazit hranice bloků (zakázáno modem nebo hrou)" -#: src/client/game.cpp -msgid "Change Password" -msgstr "Změnit heslo" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "Filmový režim zakázán" @@ -1408,38 +1440,6 @@ msgstr "Chyba spojení (vypršel čas?)" msgid "Connection failed for unknown reason" msgstr "Spojení selhalo z neznámého důvodu" -#: src/client/game.cpp -msgid "Continue" -msgstr "Pokračovat" - -#: src/client/game.cpp -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" -"Výchozí ovládání:\n" -"Bez menu:\n" -"- tah prstem: rozhlédnout se\n" -"- dotek: položit/udeřit/použít\n" -"- dlouhý dotek: vytěžit/použít\n" -"Menu/Otevřený inventář:\n" -"- dvojklik (mimo):\n" -" -->zavřít\n" -"- dotek hromádky a přihrádky :\n" -" --> přesunutí hromádky\n" -"- stisk a přesun, klik druhým prstem\n" -" --> umístit jednu věc do přihrádky\n" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1453,31 +1453,15 @@ msgstr "Vytvářím klienta..." msgid "Creating server..." msgstr "Spouštím server…" -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "Ladící informace a profilovací graf skryty" - #: src/client/game.cpp msgid "Debug info shown" msgstr "Ladící informace zobrazeny" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "Ladící informace, profilovací graf a obrysy skryty" - #: src/client/game.cpp #, c-format msgid "Error creating client: %s" msgstr "Chyba při vytváření klienta: %s" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "Odejít do nabídky" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "Ukončit hru" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "Rychlý režim zakázán" @@ -1514,18 +1498,6 @@ msgstr "Mlha je povolena" msgid "Fog enabled by game or mod" msgstr "Mlha zapnuta hrou nebo módem" -#: src/client/game.cpp -msgid "Game info:" -msgstr "Informace o hře:" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "Hra pozastavena" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "Běží server" - #: src/client/game.cpp msgid "Item definitions..." msgstr "Definice věcí..." @@ -1562,14 +1534,6 @@ msgstr "Režim bez ořezu povolen (pozn.: nemáte oprávnění 'noclip')" msgid "Node definitions..." msgstr "Definice bloků..." -#: src/client/game.cpp -msgid "Off" -msgstr "Vypnuto" - -#: src/client/game.cpp -msgid "On" -msgstr "Zapnuto" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "Posun v režimu Pitch zakázán" @@ -1582,38 +1546,22 @@ msgstr "Posun v režimu Pitch povolen" msgid "Profiler graph shown" msgstr "Profilovací graf zobrazen" -#: src/client/game.cpp -msgid "Remote server" -msgstr "Vzdálený server" - #: src/client/game.cpp msgid "Resolving address..." msgstr "Překládám adresu..." -#: src/client/game.cpp -msgid "Respawn" -msgstr "Oživit" - #: src/client/game.cpp msgid "Shutting down..." msgstr "Vypínání..." -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "„Singleplayer“" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "Hlasitost" - #: src/client/game.cpp msgid "Sound muted" msgstr "Zvuk vypnut" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "Zvukový systém je vypnutý" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "Zvukový systém není v této verzi podporovaný" @@ -1685,18 +1633,116 @@ msgstr "Rozhled nastaven na %d, ale limitován na %d hrou nebo módem" msgid "Volume changed to %d%%" msgstr "Hlasitost nastavena na %d%%" +#: src/client/game.cpp +#, fuzzy +msgid "Wireframe not supported by video driver" +msgstr "Shadery jsou povoleny ale GLSL není podporovaný driverem." + #: src/client/game.cpp msgid "Wireframe shown" msgstr "Obrysy zobrazeny" -#: src/client/game.cpp -msgid "You died" -msgstr "Zemřel jsi" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "Přiblížení je aktuálně zakázáno" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "- Mód: " + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "- Veřejný: " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "- „PvP“: " + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "- Název serveru: " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "Změnit heslo" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "Pokračovat" + +#: src/client/game_formspec.cpp +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" +"Výchozí ovládání:\n" +"Bez menu:\n" +"- tah prstem: rozhlédnout se\n" +"- dotek: položit/udeřit/použít\n" +"- dlouhý dotek: vytěžit/použít\n" +"Menu/Otevřený inventář:\n" +"- dvojklik (mimo):\n" +" -->zavřít\n" +"- dotek hromádky a přihrádky :\n" +" --> přesunutí hromádky\n" +"- stisk a přesun, klik druhým prstem\n" +" --> umístit jednu věc do přihrádky\n" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "Odejít do nabídky" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "Ukončit hru" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "Informace o hře:" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "Hra pozastavena" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "Běží server" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "Vypnuto" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "Zapnuto" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "Vzdálený server" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "Oživit" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "Hlasitost" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "Zemřel jsi" + #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" msgstr "Chat je zakázaný hrou, nebo modem" @@ -2027,7 +2073,8 @@ msgid "Failed to compile the \"%s\" shader." msgstr "Nepodařil se přeložit \"%s\" shader." #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." +#, fuzzy +msgid "GLSL is not supported by the driver" msgstr "Shadery jsou povoleny ale GLSL není podporovaný driverem." #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" @@ -2078,7 +2125,7 @@ msgstr "Automaticky vpřed" msgid "Automatic jumping" msgstr "Automaticky skákat" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "Aux1" @@ -2090,7 +2137,7 @@ msgstr "Vzad" msgid "Block bounds" msgstr "Ohraničení bloku" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "Změnit nastavení kamery" @@ -2114,7 +2161,7 @@ msgstr "Snížit hlasitost" msgid "Double tap \"jump\" to toggle fly" msgstr "2× skok přepne létání" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "Zahodit" @@ -2130,11 +2177,11 @@ msgstr "Zvýšit rozsah" msgid "Inc. volume" msgstr "Zvýšit hlasitost" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "Inventář" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "Skok" @@ -2166,7 +2213,7 @@ msgstr "Další věc" msgid "Prev. item" msgstr "Předchozí věc" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "Změna dohledu" @@ -2178,7 +2225,7 @@ msgstr "Doprava" msgid "Screenshot" msgstr "Snímek obrazovky" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "Plížit se" @@ -2186,15 +2233,15 @@ msgstr "Plížit se" msgid "Toggle HUD" msgstr "Zapnout/Vypnout ovládací prvky" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "Zapnout/Vypnout záznam chatu" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "Zapnout/Vypnout rychlost" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "Zapnout/Vypnout létání" @@ -2202,11 +2249,11 @@ msgstr "Zapnout/Vypnout létání" msgid "Toggle fog" msgstr "Zapnout/Vypnout mlhu" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "Zapnout/Vypnout minimapu" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "Zapnout/Vypnout režim ořezu" @@ -2214,7 +2261,7 @@ msgstr "Zapnout/Vypnout režim ořezu" msgid "Toggle pitchmove" msgstr "Zapnout/Vypnout režim posunu Pitch" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "Přiblížení" @@ -2250,7 +2297,7 @@ msgstr "Staré heslo" msgid "Passwords do not match!" msgstr "Hesla se neshodují!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "Odejít" @@ -2263,16 +2310,47 @@ msgstr "Ztlumeno" msgid "Sound Volume: %d%%" msgstr "Hlasitost: %d%%" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Add button" +msgstr "Prostřední tlačítko myši" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "Hotovo!" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Remove" +msgstr "Vzdálený server" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Joystick" msgstr "ID joysticku" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Toggle debug" msgstr "Zapnout/Vypnout mlhu" @@ -2487,6 +2565,7 @@ msgid "3D noise that determines number of dungeons per mapchunk." msgstr "3D šum definující počet žalářů na kusu mapy." #: src/settings_translation_file.cpp +#, fuzzy msgid "" "3D support.\n" "Currently supported:\n" @@ -2495,8 +2574,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" "Podpora 3D.\n" "V současné době podporovány:\n" @@ -2561,10 +2639,6 @@ msgstr "Rozsah aktivních bloků" msgid "Active object send range" msgstr "Odesílací rozsah aktivních bloků" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "Aktivuje částicové efekty při těžení bloku." - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2594,6 +2668,17 @@ msgstr "Jméno správce" msgid "Advanced" msgstr "Pokročilé" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +#, fuzzy +msgid "Allow clouds to look 3D instead of flat." +msgstr "Použijte 3D vzhled mraků namísto plochého." + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "Povolí průhledné kapaliny." @@ -2992,14 +3077,14 @@ msgstr "Poloměr mraků" msgid "Clouds" msgstr "Mraky" -#: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." -msgstr "Mraky jsou pouze efekt na klientovi." - #: src/settings_translation_file.cpp msgid "Clouds in menu" msgstr "Mraky v menu" +#: src/settings_translation_file.cpp +msgid "Color depth for post-processing texture" +msgstr "" + #: src/settings_translation_file.cpp msgid "Colored fog" msgstr "Barevná mlha" @@ -3026,7 +3111,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" "Seznam nastavení ve formátu CSV sloužící k filtrování obsahu repozitáře.\n" "\"nesvobodné\" slouží pro skrytí balíčků, které se podle definice Free " @@ -3194,6 +3279,14 @@ msgstr "Úroveň minimální důležitosti ladících informací" msgid "Debugging" msgstr "Ladění" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "Délka serverového kroku" @@ -3369,18 +3462,10 @@ msgstr "" "Pouště se objeví v místech, kde 'np_biome' přesahuje tuto hodnotu.\n" "Ignorováno, pokud je zapnuté nastavení \"snowbiomes\"." -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "Nesynchronizovat animace bloků" - #: src/settings_translation_file.cpp msgid "Developer Options" msgstr "Možnosti pro vývojáře" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "Částicové efekty při těžení" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "Zakázat prázdná hesla" @@ -3411,6 +3496,14 @@ msgstr "Dvojstisk skoku zapne létání" msgid "Double-tapping the jump key toggles fly mode." msgstr "Dvojstisk klávesy skoku zapne létání." +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "Vypsat ladící informace z Generátoru mapy." @@ -3497,9 +3590,10 @@ msgstr "" "čímž bude simulovat chování lidského oka." #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" "Zanout zabarvené stíny.\n" "Po zapnutí vrhají průhledné bloky zabarvené stíny. Vyžaduje mnoho " @@ -3586,10 +3680,10 @@ msgstr "" "Např.: 0 pro žádné, 1.0 pro normální a 2.0 pro dvojité klepání." #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" "Povolit/zakázat spuštění IPv6 serveru.\n" "Ignorováno, pokud je 'bind_address' nastaveno.\n" @@ -3611,13 +3705,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "Povolí animaci věcí v inventáři." -#: src/settings_translation_file.cpp -#, fuzzy -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "Zapnout cachování geom. sítí otočených pomocí facedir." - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "Povolí ladění a hledání chyb v OpenGL driveru." @@ -3959,10 +4046,6 @@ msgstr "Měřítko GUI" msgid "GUI scaling filter" msgstr "Filtrovat při škálování GUI" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "Filtrovat při škálování GUI (txr2img)" - #: src/settings_translation_file.cpp msgid "Gamepads" msgstr "Gamepady" @@ -4226,16 +4309,6 @@ msgstr "" "Pokud je zapnuto, je klávesa \"Aux1\" využita pro sestup\n" "namísto klávesy \"Plížení\"." -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" -"Pokud je povoleno, registrace účtu je oddělená od přihlášení do " -"uživatelského rozhraní. \n" -"Pokud je deaktivováno, nové účty budou registrovány automaticky při " -"přihlášení." - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -4260,6 +4333,18 @@ msgstr "" "Pokud je povoleno, hráči se nemohou připojit bez hesla nebo změnit své heslo " "na prázdné." +#: src/settings_translation_file.cpp +#, fuzzy +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" +"Pokud je povoleno, registrace účtu je oddělená od přihlášení do " +"uživatelského rozhraní. \n" +"Pokud je deaktivováno, nové účty budou registrovány automaticky při " +"přihlášení." + #: src/settings_translation_file.cpp #, fuzzy msgid "" @@ -4378,12 +4463,6 @@ msgstr "Instrumentovat metody entit při registraci." msgid "Interval of saving important changes in the world, stated in seconds." msgstr "Časový interval ukládání důležitých změn ve světě, udaný v sekundách." -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "" -"Časový interval, ve kterém se klientům posílá herní čas, vyjádřený ve " -"vteřinách." - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "Animace předmětů v inventáři" @@ -5101,10 +5180,6 @@ msgstr "" msgid "Maximum users" msgstr "Maximální počet uživatelů" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "Vyrovnávací paměť sítě bloků" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "Zpráva dne" @@ -5138,6 +5213,10 @@ msgstr "Spodní hranice pro náhodný počet velkých jeskyní na kus mapy." msgid "Minimum limit of random number of small caves per mapchunk." msgstr "Spodní hranice pro náhodný počet malých jeskyní na kus mapy." +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "Mip-mapování" @@ -5233,9 +5312,10 @@ msgstr "" "nastavení)." #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" "Jméno hráče. \n" @@ -5769,17 +5849,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -6016,16 +6098,6 @@ msgstr "" msgid "Shader path" msgstr "Cesta k shaderům" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "Shadery" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "Kvalita filtru pro stíny" @@ -6215,10 +6287,9 @@ msgstr "" #: src/settings_translation_file.cpp #, fuzzy msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" "Rozložit celé obnovení stínového mapingu na daný počet snímků. \n" "Vyšší hodnoty mohou způsobit zpoždění stínů, nižší hodnoty \n" @@ -6594,10 +6665,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "Okamžik během dne, kdy začíná nový svět, v milihodinách (0-23999)." -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "Interval odesílání času" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "Rychlost času" @@ -6667,6 +6734,11 @@ msgstr "Neprůhledné kapaliny" msgid "Transparency Sorting Distance" msgstr "Vzdálenost řazení průhlednosti" +#: src/settings_translation_file.cpp +#, fuzzy +msgid "Transparency Sorting Group by Buffers" +msgstr "Vzdálenost řazení průhlednosti" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "Šum stromů" @@ -6719,12 +6791,16 @@ msgid "Undersampling" msgstr "Podvzorkování" #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Undersampling is similar to using a lower screen resolution, but it applies\n" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" "Podvzorkování je podobné jako použití nižšího rozlišení obrazovky, ale " "vztahuje se \n" @@ -6752,17 +6828,15 @@ msgstr "Horní ypsilonová mez dungeonů." msgid "Upper Y limit of floatlands." msgstr "Horní ypsilonová hranice létajících ostrovů." -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "Použijte 3D vzhled mraků namísto plochého." - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "Pro pozadí hlavní nabídky použijte animaci oblohy." #: src/settings_translation_file.cpp #, fuzzy -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "Při kosém pohledu na texturu použijte anizotropní filtrování." #: src/settings_translation_file.cpp @@ -7030,27 +7104,14 @@ msgstr "" "na hardware (např. render-to-texture pro bloky v inventáři)." #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" -"Když je gui_scaling_filter_txr2img nastaveno na pravdu (true), zkopíruje " -"tyto obrázky \n" -"z hardwaru do software pro změnu měřítka. Když je nastavena nepravda " -"(false), vratí se \n" -"ke staré metodě změny měřítka, pro ovladače GPU, které \n" -"nesprávně podporují stahování textur zpět z hardwaru." - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -7074,10 +7135,6 @@ msgstr "" "Zda se má ve výchozím nastavení zobrazovat pozadí jmenovek. \n" "Mody mohou stále nastavit pozadí." -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "Desynchronizovat animace textur jednotlivých bloků." - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -7104,9 +7161,9 @@ msgid "Whether to fog out the end of the visible area." msgstr "Zamlžit okraj viditelné oblasti." #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -7299,6 +7356,9 @@ msgstr "cURL limit paralelních stahování" #~ "Nechte prázdné, pokud chcete spustit místní server.\n" #~ "Poznámka: pole adresy v hlavním menu přepisuje toto nastavení." +#~ msgid "Adds particles when digging a node." +#~ msgstr "Aktivuje částicové efekty při těžení bloku." + #~ msgid "" #~ "Adjust dpi configuration to your screen (non X11/Android only) e.g. for " #~ "4k screens." @@ -7422,6 +7482,9 @@ msgstr "cURL limit paralelních stahování" #~ msgid "Clean transparent textures" #~ msgstr "Vynulovat průhledné textury" +#~ msgid "Clouds are a client-side effect." +#~ msgstr "Mraky jsou pouze efekt na klientovi." + #~ msgid "Command key" #~ msgstr "CMD ⌘" @@ -7511,9 +7574,15 @@ msgstr "cURL limit paralelních stahování" #~ msgid "Damage enabled" #~ msgstr "Zranění povoleno" +#~ msgid "Debug info and profiler graph hidden" +#~ msgstr "Ladící informace a profilovací graf skryty" + #~ msgid "Debug info toggle key" #~ msgstr "Klávesa pro zobrazení ladících informací" +#~ msgid "Debug info, profiler graph, and wireframe hidden" +#~ msgstr "Ladící informace, profilovací graf a obrysy skryty" + #~ msgid "Dec. volume key" #~ msgstr "Klávesa snížení hlasitosti" @@ -7567,9 +7636,15 @@ msgstr "cURL limit paralelních stahování" #~ msgid "Del. Favorite" #~ msgstr "Smazat oblíbené" +#~ msgid "Desynchronize block animation" +#~ msgstr "Nesynchronizovat animace bloků" + #~ msgid "Dig key" #~ msgstr "Klávesa těžení" +#~ msgid "Digging particles" +#~ msgstr "Částicové efekty při těžení" + #~ msgid "Disable anticheat" #~ msgstr "Vypnout anticheat" @@ -7594,6 +7669,10 @@ msgstr "cURL limit paralelních stahování" #~ msgid "Dynamic shadows:" #~ msgstr "Dynamické stíny:" +#, fuzzy +#~ msgid "Enable" +#~ msgstr "Zapnuto" + #~ msgid "Enable VBO" #~ msgstr "Zapnout VBO" @@ -7627,6 +7706,12 @@ msgstr "cURL limit paralelních stahování" #~ "nebo musí být automaticky vytvořeny.\n" #~ "Nastavení vyžaduje zapnuté shadery." +#, fuzzy +#~ msgid "" +#~ "Enables caching of facedir rotated meshes.\n" +#~ "This is only effective with shaders disabled." +#~ msgstr "Zapnout cachování geom. sítí otočených pomocí facedir." + #~ msgid "Enables filmic tone mapping" #~ msgstr "Zapne filmový tone mapping" @@ -7674,9 +7759,6 @@ msgstr "cURL limit paralelních stahování" #~ "Experimentální nastavení, může zapříčinit viditelné mezery mezi bloky,\n" #~ "je-li nastaveno na vyšší číslo než 0." -#~ msgid "FPS in pause menu" -#~ msgstr "FPS v menu pauzy" - #~ msgid "FSAA" #~ msgstr "FSAA" @@ -7755,8 +7837,8 @@ msgstr "cURL limit paralelních stahování" #~ msgid "Full screen BPP" #~ msgstr "Bitová hloubka v celoobrazovkovém režimu" -#~ msgid "Game" -#~ msgstr "Hra" +#~ msgid "GUI scaling filter txr2img" +#~ msgstr "Filtrovat při škálování GUI (txr2img)" #~ msgid "Gamma" #~ msgstr "Gamma" @@ -7921,512 +8003,520 @@ msgstr "cURL limit paralelních stahování" #~ msgid "Instrumentation" #~ msgstr "Instrumentace" +#~ msgid "Interval of sending time of day to clients, stated in seconds." +#~ msgstr "" +#~ "Časový interval, ve kterém se klientům posílá herní čas, vyjádřený ve " +#~ "vteřinách." + #~ msgid "Invalid gamespec." #~ msgstr "Neplatná specifikace hry." #~ msgid "Inventory key" #~ msgstr "Klávesa inventáře" +#~ msgid "Irrlicht device:" +#~ msgstr "Irrlicht zařízení:" + #~ msgid "Jump key" #~ msgstr "Klávesa skoku" #~ msgid "" #~ "Key for decreasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klávesa pro snížení dohledu.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for decreasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "klávesy pro snížení hlasitosti.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for digging.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klávesa pro těžení\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for dropping the currently selected item.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klávesa pro odhození právě drženého předmětu.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klávesa pro zvýšení dohledu.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klávesa pro zvýšení hlasitosti\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for jumping.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klávesa pro skok.\n" -#~ "viz. See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving fast in fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klávesa pro rychlý pohyb v rychlém režimu.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player backward.\n" #~ "Will also disable autoforward, when active.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klávesa pro pohyb hráče zpět.\n" #~ "Také vypne automatický pohyb vpřed, pokud je zapnutý.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player forward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klávesa pro pohyb hráče vpřed.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player left.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klávesa pro pohyb hráče doleva.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player right.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klávesa pro pohyb hráče doprava.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for muting the game.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klávesa pro ztlumení hry.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klávesa pro otevření okna chatu za účelem zadání příkazů.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for placing.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "klávesy pro snížení hlasitosti.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 11th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "klávesy pro snížení hlasitosti.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 12th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "klávesy pro snížení hlasitosti.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 13th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "klávesy pro snížení hlasitosti.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 14th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "klávesy pro snížení hlasitosti.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 15th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "klávesy pro snížení hlasitosti.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 16th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "klávesy pro snížení hlasitosti.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 17th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "klávesy pro snížení hlasitosti.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 18th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "klávesy pro snížení hlasitosti.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 19th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "klávesy pro snížení hlasitosti.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 20th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "klávesy pro snížení hlasitosti.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 21st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "klávesy pro snížení hlasitosti.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 22nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "klávesy pro snížení hlasitosti.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 23rd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "klávesy pro snížení hlasitosti.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 24th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "klávesy pro snížení hlasitosti.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 25th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "klávesy pro snížení hlasitosti.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 26th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "klávesy pro snížení hlasitosti.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 27th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "klávesy pro snížení hlasitosti.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 28th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "klávesy pro snížení hlasitosti.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 29th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "klávesy pro snížení hlasitosti.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 30th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "klávesy pro snížení hlasitosti.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 31st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "klávesy pro snížení hlasitosti.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 32nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "klávesy pro snížení hlasitosti.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the eighth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "klávesy pro snížení hlasitosti.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the fifth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "klávesy pro snížení hlasitosti.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the first hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "klávesy pro snížení hlasitosti.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the fourth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "klávesy pro snížení hlasitosti.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the ninth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "klávesy pro snížení hlasitosti.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the second hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "klávesy pro snížení hlasitosti.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the seventh hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "klávesy pro snížení hlasitosti.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the sixth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "klávesy pro snížení hlasitosti.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the tenth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "klávesy pro snížení hlasitosti.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the third hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "klávesy pro snížení hlasitosti.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for toggling autoforward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "klávesy pro snížení hlasitosti.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for toggling pitch move mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "klávesy pro snížení hlasitosti.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for toggling the display of chat.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "klávesy pro snížení hlasitosti.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for toggling the display of fog.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "klávesy pro snížení hlasitosti.\n" -#~ "viz. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "viz. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Keybindings. (If this menu screws up, remove stuff from minetest.conf)" @@ -8495,6 +8585,9 @@ msgstr "cURL limit paralelních stahování" #~ msgid "Menus" #~ msgstr "Nabídky" +#~ msgid "Mesh cache" +#~ msgstr "Vyrovnávací paměť sítě bloků" + #~ msgid "Minimap" #~ msgstr "Minimapa" @@ -8659,6 +8752,9 @@ msgstr "cURL limit paralelních stahování" #~ msgid "Server / Singleplayer" #~ msgstr "Server / Místní hra" +#~ msgid "Shaders" +#~ msgstr "Shadery" + #~ msgid "Shaders (experimental)" #~ msgstr "Shader (experimentální)" @@ -8674,6 +8770,10 @@ msgstr "cURL limit paralelních stahování" #~ "grafických \n" #~ "karet." +#, fuzzy +#~ msgid "Shaders are disabled." +#~ msgstr "Aktualizace kamery zakázána" + #, fuzzy #~ msgid "" #~ "Shadow offset (in pixels) of the fallback font. If 0, then shadow will " @@ -8703,6 +8803,9 @@ msgstr "cURL limit paralelních stahování" #~ msgid "Smooths rotation of camera. 0 to disable." #~ msgstr "Zklidňuje otáčení kamery. 0 pro deaktivaci." +#~ msgid "Sound system is disabled" +#~ msgstr "Zvukový systém je vypnutý" + #~ msgid "Special" #~ msgstr "Speciální" @@ -8741,6 +8844,12 @@ msgstr "cURL limit paralelních stahování" #~ "myši. \n" #~ "Užitečné pro nahrávání videí." +#~ msgid "This is not a recommended configuration." +#~ msgstr "Toto není doporučená konfigurace." + +#~ msgid "Time send interval" +#~ msgstr "Interval odesílání času" + #~ msgid "To enable shaders the OpenGL driver needs to be used." #~ msgstr "Pro zapnutí shaderů musíte používat OpenGL ovladač." @@ -8838,6 +8947,23 @@ msgstr "cURL limit paralelních stahování" #~ msgid "Waving water" #~ msgstr "Vlnění vody" +#~ msgid "" +#~ "When gui_scaling_filter_txr2img is true, copy those images\n" +#~ "from hardware to software for scaling. When false, fall back\n" +#~ "to the old scaling method, for video drivers that don't\n" +#~ "properly support downloading textures back from hardware." +#~ msgstr "" +#~ "Když je gui_scaling_filter_txr2img nastaveno na pravdu (true), zkopíruje " +#~ "tyto obrázky \n" +#~ "z hardwaru do software pro změnu měřítka. Když je nastavena nepravda " +#~ "(false), vratí se \n" +#~ "ke staré metodě změny měřítka, pro ovladače GPU, které \n" +#~ "nesprávně podporují stahování textur zpět z hardwaru." + +#~ msgid "" +#~ "Whether node texture animations should be desynchronized per mapblock." +#~ msgstr "Desynchronizovat animace textur jednotlivých bloků." + #~ msgid "Whether to allow players to damage and kill each other." #~ msgstr "Zda-li povolit hráčům vzájemně se napadat a zabíjet." diff --git a/po/cy/luanti.po b/po/cy/luanti.po index cbd501980..2a6d127b9 100644 --- a/po/cy/luanti.po +++ b/po/cy/luanti.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: minetest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" "PO-Revision-Date: 2023-03-17 11:44+0000\n" "Last-Translator: dreigiau \n" "Language-Team: Welsh ] [-t]" msgstr "" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "Pori" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "Golygu" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "Dewiswch ffeil" + +#: builtin/common/settings/components.lua +#, fuzzy +msgid "Set" +msgstr "Select" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "Canslo" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "Wythfedau" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "Cadw" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "Graddfa" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "Hedyn" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "diofyn" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "Sgwrs" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "Clirio" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "Rheoli" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "Wedi analluogi" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "Ymlaen" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "Cyffredinol" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "Dim canlyniadau" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Reset setting to default" +msgstr "Adfer gosodiadau diofyn" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "Chwilio" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Touchscreen layout" +msgstr "Sgrîn gyffwrdd" + +#: builtin/common/settings/dlg_settings.lua +msgid "pause_menu" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Client Mods" +msgstr "Addasiadau i'r Cleient" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "Cynnwys: Gemau" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "Cynnwys: Addasiadau" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "Uchel" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "Isel" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "Canolig" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "Uchel Iawn" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "Isel Iawn" + #: builtin/fstk/ui.lua msgid "" msgstr "" @@ -163,7 +404,6 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua #, fuzzy msgid "Back" msgstr "Bacio" @@ -200,11 +440,6 @@ msgstr "Addasiadau" msgid "No packages could be retrieved" msgstr "" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "Dim canlyniadau" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "Dim diweddariadau" @@ -250,18 +485,6 @@ msgstr "Wedi ei osod" msgid "Base Game:" msgstr "Gêm Sylfaenol:" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "Canslo" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -388,6 +611,12 @@ msgstr "" msgid "Unable to install a $1 as a texture pack" msgstr "" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "" @@ -450,12 +679,6 @@ msgstr "" msgid "Optional dependencies:" msgstr "" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "Cadw" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "Byd:" @@ -606,11 +829,6 @@ msgstr "Afonydd" msgid "Sea level rivers" msgstr "" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "Hedyn" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "" @@ -746,6 +964,23 @@ msgid "" "override any renaming here." msgstr "" +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "Galluogi popeth" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "" @@ -770,7 +1005,7 @@ msgstr "Byth" msgid "Visit website" msgstr "Gwefan" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "Gosodiadau" @@ -782,226 +1017,6 @@ msgstr "" msgid "Try reenabling public serverlist and check your internet connection." msgstr "" -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "Pori" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "Golygu" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "Dewiswch ffeil" - -#: builtin/mainmenu/settings/components.lua -#, fuzzy -msgid "Set" -msgstr "Select" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "Wythfedau" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "Graddfa" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "diofyn" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "Sgwrs" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "Clirio" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "Rheoli" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "Wedi analluogi" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "Ymlaen" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "Cyffredinol" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Reset setting to default" -msgstr "Adfer gosodiadau diofyn" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "Chwilio" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "Addasiadau i'r Cleient" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "Cynnwys: Gemau" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "Cynnwys: Addasiadau" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "Ymlaen" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "Shaders are disabled." -msgstr "" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "Uchel" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "Isel" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "Canolig" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "Uchel Iawn" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "Isel Iawn" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "Ynghylch" @@ -1022,10 +1037,6 @@ msgstr "Datblygwyr Craidd" msgid "Core Team" msgstr "Tîm Craidd" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "" @@ -1172,10 +1183,22 @@ msgstr "Dechrau Gêm" msgid "You need to install a game before you can create a world." msgstr "" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "Dileu o ffefrynnau" + #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "Cyfeiriad" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "Cleient" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "Modd Creadigol" @@ -1189,6 +1212,11 @@ msgstr "" msgid "Favorites" msgstr "Ffefrynnau" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "Gemau" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "Gweinyddion Anghydnaws" @@ -1201,10 +1229,26 @@ msgstr "Ymuno â Gêm" msgid "Login" msgstr "Mewngofnodi" +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +msgid "Open server website" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "Ping" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Public Servers" msgstr "Gweinyddion Cyhoeddus" @@ -1287,23 +1331,6 @@ msgid "" "Check debug.txt for details." msgstr "" -#: src/client/game.cpp -msgid "- Mode: " -msgstr "" - -#: src/client/game.cpp -msgid "- Public: " -msgstr "" - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "" - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "" - #: src/client/game.cpp msgid "A serialization error occurred:" msgstr "" @@ -1313,6 +1340,10 @@ msgstr "" msgid "Access denied. Reason: %s" msgstr "" +#: src/client/game.cpp +msgid "All debug info hidden" +msgstr "" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "" @@ -1333,6 +1364,10 @@ msgstr "" msgid "Block bounds shown for nearby blocks" msgstr "" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "" @@ -1345,10 +1380,6 @@ msgstr "" msgid "Can't show block bounds (disabled by game or mod)" msgstr "" -#: src/client/game.cpp -msgid "Change Password" -msgstr "Newid Cyfrinair" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "" @@ -1377,26 +1408,6 @@ msgstr "" msgid "Connection failed for unknown reason" msgstr "" -#: src/client/game.cpp -msgid "Continue" -msgstr "Parhau" - -#: src/client/game.cpp -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1410,31 +1421,15 @@ msgstr "Wrthi'n creu cleient..." msgid "Creating server..." msgstr "Wrthi'n creu gweinydd..." -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "" - #: src/client/game.cpp msgid "Debug info shown" msgstr "" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "" - #: src/client/game.cpp #, c-format msgid "Error creating client: %s" msgstr "" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "" @@ -1471,18 +1466,6 @@ msgstr "" msgid "Fog enabled by game or mod" msgstr "" -#: src/client/game.cpp -msgid "Game info:" -msgstr "" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "" - #: src/client/game.cpp msgid "Item definitions..." msgstr "Diffiniadau eitem..." @@ -1519,14 +1502,6 @@ msgstr "" msgid "Node definitions..." msgstr "" -#: src/client/game.cpp -msgid "Off" -msgstr "Na" - -#: src/client/game.cpp -msgid "On" -msgstr "Ie" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "" @@ -1539,38 +1514,22 @@ msgstr "" msgid "Profiler graph shown" msgstr "" -#: src/client/game.cpp -msgid "Remote server" -msgstr "" - #: src/client/game.cpp msgid "Resolving address..." msgstr "" -#: src/client/game.cpp -msgid "Respawn" -msgstr "Atgyfodi" - #: src/client/game.cpp msgid "Shutting down..." msgstr "Wrthi'n cau..." -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "Chwaraewr Sengl" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "" - #: src/client/game.cpp msgid "Sound muted" msgstr "Sain wedi diffodd" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "" @@ -1642,18 +1601,103 @@ msgstr "" msgid "Volume changed to %d%%" msgstr "" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "" -#: src/client/game.cpp -msgid "You died" -msgstr "Buest ti farw" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "" + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "Newid Cyfrinair" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "Parhau" + +#: src/client/game_formspec.cpp +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "Na" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "Ie" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "Atgyfodi" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "Buest ti farw" + #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" msgstr "" @@ -1990,7 +2034,7 @@ msgid "Failed to compile the \"%s\" shader." msgstr "" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." +msgid "GLSL is not supported by the driver" msgstr "" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" @@ -2039,7 +2083,7 @@ msgstr "Awto-gerdded" msgid "Automatic jumping" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "Aux1" @@ -2051,7 +2095,7 @@ msgstr "Bacio" msgid "Block bounds" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "" @@ -2075,7 +2119,7 @@ msgstr "" msgid "Double tap \"jump\" to toggle fly" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "Gollwng" @@ -2091,11 +2135,11 @@ msgstr "" msgid "Inc. volume" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "Rhestr Eiddo" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "Neidio" @@ -2127,7 +2171,7 @@ msgstr "" msgid "Prev. item" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "" @@ -2139,7 +2183,7 @@ msgstr "Dde" msgid "Screenshot" msgstr "Sgrinlun" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "Sleifio" @@ -2147,15 +2191,15 @@ msgstr "Sleifio" msgid "Toggle HUD" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "" @@ -2163,11 +2207,11 @@ msgstr "" msgid "Toggle fog" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "" @@ -2175,7 +2219,7 @@ msgstr "" msgid "Toggle pitchmove" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "Chwyddo" @@ -2211,7 +2255,7 @@ msgstr "" msgid "Passwords do not match!" msgstr "" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "Gadael" @@ -2224,15 +2268,44 @@ msgstr "Wedi anwybyddu" msgid "Sound Volume: %d%%" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +msgid "Add button" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "Iawn!" + +#: src/gui/touchscreeneditor.cpp +msgid "Remove" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp msgid "Joystick" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Toggle debug" msgstr "" @@ -2429,8 +2502,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" #: src/settings_translation_file.cpp @@ -2483,10 +2555,6 @@ msgstr "" msgid "Active object send range" msgstr "" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "" - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2509,6 +2577,16 @@ msgstr "" msgid "Advanced" msgstr "Uwch" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Allow clouds to look 3D instead of flat." +msgstr "" + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "" @@ -2877,11 +2955,11 @@ msgid "Clouds" msgstr "Cymylau" #: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." +msgid "Clouds in menu" msgstr "" #: src/settings_translation_file.cpp -msgid "Clouds in menu" +msgid "Color depth for post-processing texture" msgstr "" #: src/settings_translation_file.cpp @@ -2906,7 +2984,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" #: src/settings_translation_file.cpp @@ -3041,6 +3119,14 @@ msgstr "" msgid "Debugging" msgstr "Dadfygio" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "" @@ -3192,18 +3278,10 @@ msgid "" "When the 'snowbiomes' flag is enabled, this is ignored." msgstr "" -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "" - #: src/settings_translation_file.cpp msgid "Developer Options" msgstr "" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "" @@ -3231,6 +3309,14 @@ msgstr "" msgid "Double-tapping the jump key toggles fly mode." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "" @@ -3305,8 +3391,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" #: src/settings_translation_file.cpp @@ -3379,8 +3465,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" #: src/settings_translation_file.cpp @@ -3395,12 +3480,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "" - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -3705,10 +3784,6 @@ msgstr "" msgid "GUI scaling filter" msgstr "" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "" - #: src/settings_translation_file.cpp msgid "Gamepads" msgstr "" @@ -3932,12 +4007,6 @@ msgid "" "descending." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -3956,6 +4025,13 @@ msgid "" "empty password." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4050,10 +4126,6 @@ msgstr "" msgid "Interval of saving important changes in the world, stated in seconds." msgstr "" -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "" - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "" @@ -4668,10 +4740,6 @@ msgstr "" msgid "Maximum users" msgstr "" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "" @@ -4704,6 +4772,10 @@ msgstr "" msgid "Minimum limit of random number of small caves per mapchunk." msgstr "" +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "Mipmapio" @@ -4794,7 +4866,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" @@ -5233,17 +5305,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5436,16 +5510,6 @@ msgstr "" msgid "Shader path" msgstr "" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "" @@ -5607,10 +5671,9 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" #: src/settings_translation_file.cpp @@ -5889,10 +5952,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "" -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "" @@ -5953,6 +6012,10 @@ msgstr "" msgid "Transparency Sorting Distance" msgstr "" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "" @@ -6003,7 +6066,10 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" #: src/settings_translation_file.cpp @@ -6026,16 +6092,14 @@ msgstr "" msgid "Upper Y limit of floatlands." msgstr "" -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "" - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "" #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" #: src/settings_translation_file.cpp @@ -6272,20 +6336,12 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -6296,10 +6352,6 @@ msgid "" "Mods may still set a background." msgstr "" -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -6322,8 +6374,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -6472,6 +6523,10 @@ msgstr "" #~ msgid "Damage" #~ msgstr "Difrod" +#, fuzzy +#~ msgid "Enable" +#~ msgstr "Ymlaen" + #~ msgid "FSAA" #~ msgstr "FSAA" diff --git a/po/da/luanti.po b/po/da/luanti.po index 0d8af26d3..dc81628eb 100644 --- a/po/da/luanti.po +++ b/po/da/luanti.po @@ -2,9 +2,9 @@ msgid "" msgstr "" "Project-Id-Version: Danish (Minetest)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" -"PO-Revision-Date: 2024-10-06 23:41+0000\n" -"Last-Translator: Luna \n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" +"PO-Revision-Date: 2024-12-22 16:00+0000\n" +"Last-Translator: cat \n" "Language-Team: Danish \n" "Language: da\n" @@ -12,7 +12,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.8-dev\n" +"X-Generator: Weblate 5.10-dev\n" #: builtin/client/chatcommands.lua msgid "Clear the out chat queue" @@ -77,6 +77,247 @@ msgstr "" msgid "[all | ] [-t]" msgstr "[all | ] [-t]" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "Gennemse" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "Rediger" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "Vælg mappe" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "Vælg fil" + +#: builtin/common/settings/components.lua +#, fuzzy +msgid "Set" +msgstr "Vælg" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(Der er ikke nogen beskrivelse af denne indstilling)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "Todimensionelle lyde" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "Annuller" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "Lakunaritet" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "Oktaver" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "Forskydning" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "Vedholdenhed" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "Gem" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "Skala" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "Seed" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "X spredning" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "Y spredning" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "Z spredning" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "Absolut værdi" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "Standard" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "udglattet" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "Snak" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "Ryd" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "Styring" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "Deaktiveret" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "aktiveret" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "Bevægelse" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "Ingen resultater" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default" +msgstr "Nulstil indstilling til standard" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "Søg" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "Vis tekniske navne" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Touchscreen layout" +msgstr "Strandstøjtærskel" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "pause_menu" +msgstr "FPS i pausemenu" + +#: builtin/common/settings/settingtypes.lua +msgid "Client Mods" +msgstr "Klient mods" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "Indhold: Spil" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "Indhold: Mods" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "Dynamiske skygger" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "Høj" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "Lav" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "Midtimellem" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "Meget høj" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "Meget lav" + #: builtin/fstk/ui.lua msgid "" msgstr "" @@ -163,14 +404,12 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "Tilbage" #: builtin/mainmenu/content/dlg_contentdb.lua -#, fuzzy msgid "ContentDB is not available when Luanti was compiled without cURL" -msgstr "ContentDB er ikke tilgængelig, når Minetest blev kompileret uden cURL" +msgstr "ContentDB er ikke tilgængelig, når Luanti blev kompileret uden cURL" #: builtin/mainmenu/content/dlg_contentdb.lua msgid "Downloading..." @@ -200,11 +439,6 @@ msgstr "Mods" msgid "No packages could be retrieved" msgstr "Ingen pakker kunne hentes" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "Ingen resultater" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "Ingen opdateringer" @@ -214,7 +448,6 @@ msgid "Queued" msgstr "Sat i kø" #: builtin/mainmenu/content/dlg_contentdb.lua -#, fuzzy msgid "Texture Packs" msgstr "Teksturpakker" @@ -252,27 +485,14 @@ msgstr "Allerede installeret" msgid "Base Game:" msgstr "Basisspil:" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "Annuller" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" msgstr "Afhængigheder:" #: builtin/mainmenu/content/dlg_install.lua -#, fuzzy msgid "Error getting dependencies for package $1" -msgstr "Fejl ved hentning af afhængigheder for pakken" +msgstr "Fejl ved hentning af afhængigheder for pakken $1" #: builtin/mainmenu/content/dlg_install.lua msgid "Install" @@ -307,32 +527,28 @@ msgid "Overwrite" msgstr "Overskriv" #: builtin/mainmenu/content/dlg_package.lua -#, fuzzy msgid "ContentDB page" -msgstr "Fortsæt" +msgstr "ContentDB-side" #: builtin/mainmenu/content/dlg_package.lua -#, fuzzy msgid "Description" -msgstr "Serverbeskrivelse" +msgstr "Beskrivelse" #: builtin/mainmenu/content/dlg_package.lua msgid "Donate" -msgstr "" +msgstr "Donér" #: builtin/mainmenu/content/dlg_package.lua msgid "Forum Topic" msgstr "" #: builtin/mainmenu/content/dlg_package.lua -#, fuzzy msgid "Information" -msgstr "Information:" +msgstr "Information" #: builtin/mainmenu/content/dlg_package.lua -#, fuzzy msgid "Install [$1]" -msgstr "Installer $1" +msgstr "Installer [$1]" #: builtin/mainmenu/content/dlg_package.lua msgid "Issue Tracker" @@ -340,11 +556,11 @@ msgstr "" #: builtin/mainmenu/content/dlg_package.lua msgid "Source" -msgstr "" +msgstr "Kilde" #: builtin/mainmenu/content/dlg_package.lua msgid "Translate" -msgstr "" +msgstr "Oversæt" #: builtin/mainmenu/content/dlg_package.lua builtin/mainmenu/tab_content.lua msgid "Uninstall" @@ -355,13 +571,12 @@ msgid "Update" msgstr "Opdater" #: builtin/mainmenu/content/dlg_package.lua -#, fuzzy msgid "Website" -msgstr "Besøg hjemmeside" +msgstr "Hjemmeside" #: builtin/mainmenu/content/dlg_package.lua msgid "by $1 — $2 downloads — +$3 / $4 / -$5" -msgstr "" +msgstr "af $1 — $2 downloads — +$3 / $4 / -$5" #: builtin/mainmenu/content/pkgmgr.lua msgid "$1 (Enabled)" @@ -391,6 +606,12 @@ msgstr "Kan ikke installere $1 som et $2" msgid "Unable to install a $1 as a texture pack" msgstr "Kan ikke installere $1 som en teksturpakke" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "(Aktiveret. Har fejl)" @@ -455,12 +676,6 @@ msgstr "Ingen valgfrie afhængigheder" msgid "Optional dependencies:" msgstr "Valgfrie afhængigheder:" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "Gem" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "Verden:" @@ -612,11 +827,6 @@ msgstr "Floder" msgid "Sea level rivers" msgstr "Floder i niveau med havet" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "Seed" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "Glat overgang mellem biomer" @@ -718,7 +928,7 @@ msgstr "Registrér" #: builtin/mainmenu/dlg_reinstall_mtg.lua msgid "Dismiss" -msgstr "" +msgstr "Afvis" #: builtin/mainmenu/dlg_reinstall_mtg.lua msgid "" @@ -737,9 +947,8 @@ msgid "Minetest Game is no longer installed by default" msgstr "" #: builtin/mainmenu/dlg_reinstall_mtg.lua -#, fuzzy msgid "Reinstall Minetest Game" -msgstr "Installér et andet spil" +msgstr "Geninstaller Minetest Game" #: builtin/mainmenu/dlg_rename_modpack.lua msgid "Accept" @@ -757,6 +966,23 @@ msgstr "" "Denne samling af mods har et specifik navn defineret i sit modpack.conf " "hvilket vil overskrive enhver omdøbning her." +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "Aktivér alle" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "A ny version af $1 er tilgængelig" @@ -785,7 +1011,7 @@ msgstr "Aldrig" msgid "Visit website" msgstr "Besøg hjemmeside" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "Indstillinger" @@ -799,228 +1025,6 @@ msgstr "" "Prøv at slå den offentlige serverliste fra og til, og tjek din internet " "forbindelse." -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "Gennemse" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "Rediger" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "Vælg mappe" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "Vælg fil" - -#: builtin/mainmenu/settings/components.lua -#, fuzzy -msgid "Set" -msgstr "Vælg" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(Der er ikke nogen beskrivelse af denne indstilling)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "Todimensionelle lyde" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "Lakunaritet" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "Oktaver" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "Forskydning" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "Vedholdenhed" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "Skala" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "X spredning" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "Y spredning" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "Z spredning" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "Absolut værdi" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "Standard" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "udglattet" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "Snak" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "Ryd" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "Styring" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "Deaktiveret" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "aktiveret" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Movement" -msgstr "Hurtig bevægelse" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Reset setting to default" -msgstr "Gendan standard" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "Søg" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "Vis tekniske navne" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "Klient mods" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "Indhold: Spil" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "Indhold: Mods" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "aktiveret" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Shaders are disabled." -msgstr "Kameraopdatering slået fra" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "Dynamiske skygger" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "Høj" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "Lav" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "Midtimellem" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "Meget høj" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "Meget lav" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "Om" @@ -1041,10 +1045,6 @@ msgstr "Primære udviklere" msgid "Core Team" msgstr "Primære hold" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "Åben sti med brugerdata" @@ -1074,18 +1074,16 @@ msgid "Browse online content" msgstr "Gennemse online indhold" #: builtin/mainmenu/tab_content.lua -#, fuzzy msgid "Browse online content [$1]" -msgstr "Gennemse online indhold" +msgstr "Gennemse online indhold [$1]" #: builtin/mainmenu/tab_content.lua msgid "Content" msgstr "Indhold" #: builtin/mainmenu/tab_content.lua -#, fuzzy msgid "Content [$1]" -msgstr "Indhold" +msgstr "Indhold [$1]" #: builtin/mainmenu/tab_content.lua msgid "Disable Texture Pack" @@ -1108,9 +1106,8 @@ msgid "Rename" msgstr "Omdøb" #: builtin/mainmenu/tab_content.lua -#, fuzzy msgid "Update available?" -msgstr "" +msgstr "Opdatering tilgængelig?" #: builtin/mainmenu/tab_content.lua msgid "Use Texture Pack" @@ -1194,10 +1191,22 @@ msgstr "Start spil" msgid "You need to install a game before you can create a world." msgstr "" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "Fjern favorit" + #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "Adresse" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "Klient" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "Kreativ tilstand" @@ -1211,6 +1220,11 @@ msgstr "Skade / PvP" msgid "Favorites" msgstr "Favoritter" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "Spil" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "Inkompatible servere" @@ -1223,10 +1237,27 @@ msgstr "Tilslut spil" msgid "Login" msgstr "Login" +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Open server website" +msgstr "Dedikeret server-trin" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "Ping" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Public Servers" msgstr "Offentlige servere" @@ -1312,23 +1343,6 @@ msgstr "" "\n" "Tjek debug.txt for detaljer." -#: src/client/game.cpp -msgid "- Mode: " -msgstr "- Tilstand: " - -#: src/client/game.cpp -msgid "- Public: " -msgstr "- Offentlig: " - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "- Spiller mod spiller (PvP): " - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "- Servernavn: " - #: src/client/game.cpp msgid "A serialization error occurred:" msgstr "Der opstod en serialiseringsfejl:" @@ -1338,6 +1352,11 @@ msgstr "Der opstod en serialiseringsfejl:" msgid "Access denied. Reason: %s" msgstr "Adgang nægtet. Årsag: %s" +#: src/client/game.cpp +#, fuzzy +msgid "All debug info hidden" +msgstr "Vis fejlsøgningsinformation" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "Automatisk viderestilling slået fra" @@ -1358,6 +1377,10 @@ msgstr "Blokafgrænsning vist for nuværende blok" msgid "Block bounds shown for nearby blocks" msgstr "Blokafgrænsning vist for blokke i nærheden" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "Kameraopdatering slået fra" @@ -1371,10 +1394,6 @@ msgstr "Kameraopdatering slået til" msgid "Can't show block bounds (disabled by game or mod)" msgstr "Kan ikke vise blokafgrænsning (slået fra af mod eller spil)" -#: src/client/game.cpp -msgid "Change Password" -msgstr "Skift kodeord" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "Filmtilstand slået fra" @@ -1403,39 +1422,6 @@ msgstr "Forbindelses fejl (udløbelse af tidsfrist?)" msgid "Connection failed for unknown reason" msgstr "Forbindelsen slog fejl af ukendt årsag" -#: src/client/game.cpp -msgid "Continue" -msgstr "Fortsæt" - -#: src/client/game.cpp -#, fuzzy -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" -"Standardstyring:\n" -"Ingen menu synlig:\n" -"- Enkelt tryk: Aktivér knap\n" -"- Dobbelt tryk: Placér/brug\n" -"- Stryg finger: Kig rundt\n" -"Menu/Medbragt synlig:\n" -"- Dobbelt tryk (uden for):\n" -" --> Luk\n" -"- Rør ved stakken, rør ved felt:\n" -" --> Flyt stakken\n" -"- Rør ved og træk, tryk med 2. finger\n" -" --> Placér enkelt genstand på feltet\n" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1449,31 +1435,15 @@ msgstr "Opretter klient ..." msgid "Creating server..." msgstr "Opretter server ..." -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "Fejlretningsinfo og profileringsgraf skjult" - #: src/client/game.cpp msgid "Debug info shown" msgstr "Vis fejlsøgningsinformation" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "Fejlretningsinfo, profileringsgraf og wireramme skjult" - #: src/client/game.cpp #, c-format msgid "Error creating client: %s" msgstr "Opretter klient: %s" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "Afslut til menu" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "Afslut til operativsystemet" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "Hurtig tilstandshastighed deaktiveret" @@ -1507,21 +1477,8 @@ msgid "Fog enabled" msgstr "Tåge aktiveret" #: src/client/game.cpp -#, fuzzy msgid "Fog enabled by game or mod" -msgstr "Zoom er i øjeblikket slået fra af spil eller mod" - -#: src/client/game.cpp -msgid "Game info:" -msgstr "Spilinfo:" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "Spil på pause" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "Hosting server" +msgstr "Tåge aktiveret af spil eller mod" #: src/client/game.cpp msgid "Item definitions..." @@ -1559,14 +1516,6 @@ msgstr "Noclip tilstand er aktiveret (bemærk: ingen 'noclip' rettighed)" msgid "Node definitions..." msgstr "Knudepunktsdefinitioner ..." -#: src/client/game.cpp -msgid "Off" -msgstr "Fra" - -#: src/client/game.cpp -msgid "On" -msgstr "Til" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "Pitchbevægelsestilstand slået fra" @@ -1579,38 +1528,22 @@ msgstr "Pitchbevægelsestilstand slået til" msgid "Profiler graph shown" msgstr "Profileringsgraf vist" -#: src/client/game.cpp -msgid "Remote server" -msgstr "Fjernserver" - #: src/client/game.cpp msgid "Resolving address..." msgstr "Slår adresse op ..." -#: src/client/game.cpp -msgid "Respawn" -msgstr "Genopstå" - #: src/client/game.cpp msgid "Shutting down..." msgstr "Lukker ned..." -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "Enlig spiller" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "Lydniveau" - #: src/client/game.cpp msgid "Sound muted" msgstr "Lyd slået fra" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "Lydsystem er slået fra" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "Lydsystem er ikke understøttet i denne udgave" @@ -1635,23 +1568,21 @@ msgid "Unable to listen on %s because IPv6 is disabled" msgstr "Kan ikke lytte på %s fordi IPv6 er slået fra" #: src/client/game.cpp -#, fuzzy msgid "Unlimited viewing range disabled" -msgstr "Slog ubegrænset sigtbarhed til" +msgstr "Ubegrænset synsvidde deaktiveret" #: src/client/game.cpp -#, fuzzy msgid "Unlimited viewing range enabled" -msgstr "Slog ubegrænset sigtbarhed til" +msgstr "Ubegrænset synsvidde aktiveret" #: src/client/game.cpp msgid "Unlimited viewing range enabled, but forbidden by game or mod" msgstr "" #: src/client/game.cpp -#, fuzzy, c-format +#, c-format msgid "Viewing changed to %d (the minimum)" -msgstr "Sigtbarhed er på mininum: %d" +msgstr "Visning ændret til %d (minimum)" #: src/client/game.cpp #, c-format @@ -1664,9 +1595,9 @@ msgid "Viewing range changed to %d" msgstr "Synafstand ændret til %d" #: src/client/game.cpp -#, fuzzy, c-format +#, c-format msgid "Viewing range changed to %d (the maximum)" -msgstr "Synafstand ændret til %d" +msgstr "Synsvidde ændret til %d (maksimal)" #: src/client/game.cpp #, c-format @@ -1675,9 +1606,9 @@ msgid "" msgstr "" #: src/client/game.cpp -#, fuzzy, c-format +#, c-format msgid "Viewing range changed to %d, but limited to %d by game or mod" -msgstr "Synafstand ændret til %d" +msgstr "Synsvidde ændret til %d, men begrænset til %d af spil eller mod" #: src/client/game.cpp #, c-format @@ -1685,21 +1616,117 @@ msgid "Volume changed to %d%%" msgstr "Lydstyrke ændret til %d%%" #: src/client/game.cpp -msgid "Wireframe shown" -msgstr "Wireramme vist" +msgid "Wireframe not supported by video driver" +msgstr "" #: src/client/game.cpp -msgid "You died" -msgstr "Du døde" +msgid "Wireframe shown" +msgstr "Wireramme vist" #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "Zoom er i øjeblikket slået fra af spil eller mod" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "- Tilstand: " + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "- Offentlig: " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "- Spiller mod spiller (PvP): " + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "- Servernavn: " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "Skift kodeord" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "Fortsæt" + +#: src/client/game_formspec.cpp +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" +"Styring:\n" +"Ingen menu åben:\n" +"- Stryg finger: kig rundt\n" +"- Tryk: placer/slå/brug (standard)\n" +"- Langt tryk: grav/brug (standard)\n" +"Menu/Inventar åben:\n" +"- Dobbelttryk (udenfor):\n" +" --> Luk\n" +"- Rør ved stak, rør ved felt:\n" +" --> Flyt stak\n" +"- Rør og træk, tryk med 2. finger\n" +" --> Placer enkelt genstand på felt\n" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "Afslut til menu" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "Afslut til operativsystemet" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "Spilinfo:" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "Spil på pause" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "Hosting server" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "Fra" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "Til" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "Fjernserver" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "Genopstå" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "Lydniveau" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "Du døde" + #: src/client/gameui.cpp -#, fuzzy msgid "Chat currently disabled by game or mod" -msgstr "Zoom er i øjeblikket slået fra af spil eller mod" +msgstr "Chat er i øjeblikket deaktiveret af spil eller mod" #: src/client/gameui.cpp msgid "Chat hidden" @@ -1745,19 +1772,16 @@ msgid "Caps Lock" msgstr "Caps Lock" #: src/client/keycode.cpp -#, fuzzy msgid "Clear Key" -msgstr "Ryd" +msgstr "Ryd-tast" #: src/client/keycode.cpp -#, fuzzy msgid "Control Key" -msgstr "Control" +msgstr "Control-tast" #: src/client/keycode.cpp -#, fuzzy msgid "Delete Key" -msgstr "Slet" +msgstr "Slet-tast" #: src/client/keycode.cpp msgid "Down Arrow" @@ -1808,9 +1832,8 @@ msgid "Insert" msgstr "Insert" #: src/client/keycode.cpp -#, fuzzy msgid "Left Arrow" -msgstr "Venstre Control" +msgstr "Venstre Pil" #: src/client/keycode.cpp msgid "Left Button" @@ -1834,9 +1857,8 @@ msgstr "Venstre meta" #. ~ Key name, common on Windows keyboards #: src/client/keycode.cpp -#, fuzzy msgid "Menu Key" -msgstr "Menu" +msgstr "Menu-tast" #: src/client/keycode.cpp msgid "Middle Button" @@ -1911,20 +1933,17 @@ msgid "OEM Clear" msgstr "OEM Ryd" #: src/client/keycode.cpp -#, fuzzy msgid "Page Down" -msgstr "Side nedad" +msgstr "Side ned" #: src/client/keycode.cpp -#, fuzzy msgid "Page Up" -msgstr "Side opad" +msgstr "Side op" #. ~ Usually paired with the Break key #: src/client/keycode.cpp -#, fuzzy msgid "Pause Key" -msgstr "Pause" +msgstr "Pause-tast" #: src/client/keycode.cpp msgid "Play" @@ -1941,9 +1960,8 @@ msgid "Return Key" msgstr "Enter" #: src/client/keycode.cpp -#, fuzzy msgid "Right Arrow" -msgstr "Højre Control" +msgstr "Højre Pil" #: src/client/keycode.cpp msgid "Right Button" @@ -1975,9 +1993,8 @@ msgid "Select" msgstr "Vælg" #: src/client/keycode.cpp -#, fuzzy msgid "Shift Key" -msgstr "Shift" +msgstr "Shift-tast" #: src/client/keycode.cpp msgid "Sleep" @@ -2008,9 +2025,8 @@ msgid "X Button 2" msgstr "X knap 2" #: src/client/keycode.cpp -#, fuzzy msgid "Zoom Key" -msgstr "Zoom" +msgstr "Zoom-tast" #: src/client/minimap.cpp msgid "Minimap hidden" @@ -2031,13 +2047,14 @@ msgid "Minimap in texture mode" msgstr "Minikort i texturtilstand" #: src/client/shader.cpp -#, fuzzy, c-format +#, c-format msgid "Failed to compile the \"%s\" shader." -msgstr "Kunne ikke hente hjemmesiden" +msgstr "Kunne ikke kompilere shaderen \"%s\"." #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." -msgstr "" +#, fuzzy +msgid "GLSL is not supported by the driver" +msgstr "Lydsystem er ikke understøttet i denne udgave" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" #: src/content/mod_configuration.cpp @@ -2059,9 +2076,8 @@ msgid "" msgstr "" #: src/content/mod_configuration.cpp -#, fuzzy msgid "Some mods have unsatisfied dependencies:" -msgstr "Nogen mods har uopfyldte påkrævede grundlag:" +msgstr "Nogle mods har uopfyldte afhængigheder:" #: src/gui/guiChatConsole.cpp msgid "Failed to open webpage" @@ -2087,7 +2103,7 @@ msgstr "Automatisk fremad" msgid "Automatic jumping" msgstr "Automatisk hop" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "Aux1" @@ -2099,7 +2115,7 @@ msgstr "Baglæns" msgid "Block bounds" msgstr "Blokafgrænsninger" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "Skift kamera" @@ -2125,7 +2141,7 @@ msgstr "" "Tryk på \"hop\" hurtigt to gange for at skifte frem og tilbage mellem flyve-" "tilstand" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "Slip" @@ -2141,11 +2157,11 @@ msgstr "Øg afstand" msgid "Inc. volume" msgstr "Øg lydstyrken" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "Beholdning" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "Hop" @@ -2178,7 +2194,7 @@ msgstr "Næste genst." msgid "Prev. item" msgstr "Forr. genstand" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "Afstands vælg" @@ -2190,7 +2206,7 @@ msgstr "Højre" msgid "Screenshot" msgstr "Skærmbillede" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "Snige" @@ -2198,15 +2214,15 @@ msgstr "Snige" msgid "Toggle HUD" msgstr "Slå HUD til/fra" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "Slå chat log til/fra" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "Omstil hurtig" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "Omstil flyvning" @@ -2214,11 +2230,11 @@ msgstr "Omstil flyvning" msgid "Toggle fog" msgstr "Slå tåge til/fra" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "Slå minikort til/fra" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "Omstil fylde" @@ -2227,7 +2243,7 @@ msgstr "Omstil fylde" msgid "Toggle pitchmove" msgstr "Omstil hurtig" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "Zoom" @@ -2244,9 +2260,8 @@ msgid "Open URL?" msgstr "" #: src/gui/guiOpenURL.cpp -#, fuzzy msgid "Unable to open URL" -msgstr "Kunne ikke hente hjemmesiden" +msgstr "Kunne ikke åbne URL" #: src/gui/guiPasswordChange.cpp msgid "Change" @@ -2264,7 +2279,7 @@ msgstr "Gammelt kodeord" msgid "Passwords do not match!" msgstr "Kodeordene er ikke ens!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "Afslut" @@ -2277,18 +2292,48 @@ msgstr "Sat på lydløs" msgid "Sound Volume: %d%%" msgstr "Lydstyrke: %d%%" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Add button" +msgstr "Midterste knap" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "Færdig!" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Remove" +msgstr "Fjernserver" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp msgid "Joystick" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp -#, fuzzy +#: src/gui/touchscreenlayout.cpp msgid "Toggle debug" -msgstr "Slå tåge til/fra" +msgstr "Slå debug til/fra" #: src/network/clientpackethandler.cpp msgid "" @@ -2305,9 +2350,8 @@ msgid "Internal server error" msgstr "" #: src/network/clientpackethandler.cpp -#, fuzzy msgid "Invalid password" -msgstr "Gammelt kodeord" +msgstr "Ugyldig adgangskode" #. ~ DO NOT TRANSLATE THIS LITERALLY! #. This is a special string which needs to contain the translation's @@ -2333,14 +2377,12 @@ msgid "Player name contains disallowed characters" msgstr "" #: src/network/clientpackethandler.cpp -#, fuzzy msgid "Player name not allowed" -msgstr "Spillerens navn er for langt." +msgstr "Spillernavn ikke tilladt" #: src/network/clientpackethandler.cpp -#, fuzzy msgid "Server shutting down" -msgstr "Lukker ned..." +msgstr "Server lukker ned" #: src/network/clientpackethandler.cpp msgid "" @@ -2372,9 +2414,9 @@ msgid "" msgstr "" #: src/server.cpp -#, fuzzy, c-format +#, c-format msgid "%s while shutting down: " -msgstr "Lukker ned..." +msgstr "%s under nedlukning: " #: src/settings_translation_file.cpp #, fuzzy @@ -2495,8 +2537,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" "Understøttelse af 3D.\n" "Understøttet på nuværende tidspunkt:\n" @@ -2563,10 +2604,6 @@ msgstr "Aktiv blokinterval" msgid "Active object send range" msgstr "Aktivt objektafsendelsesinterval" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "Tilføjer partikler, når man graver en blok." - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2590,6 +2627,16 @@ msgstr "Verdens navn" msgid "Advanced" msgstr "Avanceret" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Allow clouds to look 3D instead of flat." +msgstr "" + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "" @@ -2989,23 +3036,21 @@ msgstr "Skyradius" msgid "Clouds" msgstr "Skyer" -#: src/settings_translation_file.cpp -#, fuzzy -msgid "Clouds are a client-side effect." -msgstr "Skyer er en klientsideeffekt." - #: src/settings_translation_file.cpp msgid "Clouds in menu" msgstr "Skyer i menu" +#: src/settings_translation_file.cpp +msgid "Color depth for post-processing texture" +msgstr "" + #: src/settings_translation_file.cpp msgid "Colored fog" msgstr "Farvet tåge" #: src/settings_translation_file.cpp -#, fuzzy msgid "Colored shadows" -msgstr "Farvet tåge" +msgstr "Farvede skygger" #: src/settings_translation_file.cpp msgid "" @@ -3021,7 +3066,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" #: src/settings_translation_file.cpp @@ -3170,6 +3215,14 @@ msgstr "Logniveau for fejlsøgning" msgid "Debugging" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "Dedikeret server-trin" @@ -3310,9 +3363,8 @@ msgid "Deprecated Lua API handling" msgstr "Forældet Lua API-håndtering" #: src/settings_translation_file.cpp -#, fuzzy msgid "Depth below which you'll find giant caverns." -msgstr "Dybde hvorunder du kan finde store huler." +msgstr "Dybde, hvorunder du kan finde store huler." #: src/settings_translation_file.cpp msgid "Depth below which you'll find large caves." @@ -3337,17 +3389,8 @@ msgid "" msgstr "" #: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "Afsynkroniser blokanimation" - -#: src/settings_translation_file.cpp -#, fuzzy msgid "Developer Options" -msgstr "Gentagelser" - -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "Gravepartikler" +msgstr "Udviklerindstillinger" #: src/settings_translation_file.cpp msgid "Disallow empty passwords" @@ -3377,6 +3420,14 @@ msgid "Double-tapping the jump key toggles fly mode." msgstr "" "Tryk på »hop« to gange for at skifte frem og tilbage fra flyvetilstand." +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp #, fuzzy msgid "Dump the mapgen debug information." @@ -3396,18 +3447,16 @@ msgid "Dungeon noise" msgstr "Ridge støj" #: src/settings_translation_file.cpp -#, fuzzy msgid "Effects" -msgstr "Grafik" +msgstr "Effekter" #: src/settings_translation_file.cpp msgid "Enable Automatic Exposure" msgstr "" #: src/settings_translation_file.cpp -#, fuzzy msgid "Enable Bloom" -msgstr "Aktivér alle" +msgstr "Aktivér Bloom" #: src/settings_translation_file.cpp msgid "Enable Bloom Debug" @@ -3456,8 +3505,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" #: src/settings_translation_file.cpp @@ -3531,8 +3580,8 @@ msgid "" "when connecting to the server." msgstr "" "Aktiver brug af ekstern medieserver (hvis tilbudt af server).\n" -"Eksterne servere tilbyder en signifikant hurtigere måde at hente medier (f." -"eks. teksturer\n" +"Eksterne servere tilbyder en signifikant hurtigere måde at hente medier " +"(f.eks. teksturer\n" "ved forbindelse til serveren." #: src/settings_translation_file.cpp @@ -3545,8 +3594,7 @@ msgstr "" #, fuzzy msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" "Aktivere/deaktivere afvikling af en IPv6-server. En IPv6-server kan være " "begrænset\n" @@ -3565,13 +3613,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "Aktiverer animation af lagerelementer." -#: src/settings_translation_file.cpp -#, fuzzy -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "Aktiverer mellemlagring af facedir-roterede mesher." - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -3905,10 +3946,6 @@ msgstr "Skalering af grafisk brugerflade" msgid "GUI scaling filter" msgstr "GUI-skaleringsfilter" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "GUI-skaleringsfilter txr2img" - #: src/settings_translation_file.cpp #, fuzzy msgid "Gamepads" @@ -4177,12 +4214,6 @@ msgstr "" "Hvis aktiveret bruges »brug«-tasten i stedet for »snig«-tasten til at klatre " "ned og aftagende." -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -4207,6 +4238,13 @@ msgid "" msgstr "" "Hvis aktiveret kan nye spillere ikke slutte sig til uden en tom adgangskode." +#: src/settings_translation_file.cpp +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4317,11 +4355,6 @@ msgid "Interval of saving important changes in the world, stated in seconds." msgstr "" "Interval for lagring af vigtige ændringer i verden, angivet i sekunder." -#: src/settings_translation_file.cpp -#, fuzzy -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "Interval for afsendelse af tidspunkt på dagen til klienter." - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "Animationer for lagerelementer" @@ -5029,10 +5062,6 @@ msgstr "" msgid "Maximum users" msgstr "Maksimum antal brugere" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "Dagens besked" @@ -5067,6 +5096,10 @@ msgstr "" msgid "Minimum limit of random number of small caves per mapchunk." msgstr "" +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp #, fuzzy msgid "Mipmapping" @@ -5160,7 +5193,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" @@ -5621,17 +5654,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5862,16 +5897,6 @@ msgstr "" msgid "Shader path" msgstr "Shader sti" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "Dybdeskabere" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Shadow filter quality" @@ -6039,10 +6064,9 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" #: src/settings_translation_file.cpp @@ -6327,10 +6351,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "" -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "Tidshastighed" @@ -6394,6 +6414,10 @@ msgstr "Bølgende blade" msgid "Transparency Sorting Distance" msgstr "" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "" @@ -6444,7 +6468,10 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" #: src/settings_translation_file.cpp @@ -6468,16 +6495,14 @@ msgstr "" msgid "Upper Y limit of floatlands." msgstr "Absolut begrænsning af fremkomstkøer" -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "" - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "" #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" #: src/settings_translation_file.cpp @@ -6729,20 +6754,12 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -6753,10 +6770,6 @@ msgid "" "Mods may still set a background." msgstr "" -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -6779,8 +6792,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -6947,6 +6959,9 @@ msgstr "" #~ "Lad dette være tomt for at starte en lokal server.\n" #~ "Bemærk, at adressefeltet i hovedmenuen tilsidesætter denne indstilling." +#~ msgid "Adds particles when digging a node." +#~ msgstr "Tilføjer partikler, når man graver en blok." + #~ msgid "" #~ "Adjust dpi configuration to your screen (non X11/Android only) e.g. for " #~ "4k screens." @@ -7041,6 +7056,10 @@ msgstr "" #~ msgid "Clean transparent textures" #~ msgstr "Rene gennemsigtige teksturer" +#, fuzzy +#~ msgid "Clouds are a client-side effect." +#~ msgstr "Skyer er en klientsideeffekt." + #~ msgid "Command key" #~ msgstr "Kommandotast" @@ -7115,9 +7134,15 @@ msgstr "" #~ msgid "Darkness sharpness" #~ msgstr "Søstejlhed" +#~ msgid "Debug info and profiler graph hidden" +#~ msgstr "Fejlretningsinfo og profileringsgraf skjult" + #~ msgid "Debug info toggle key" #~ msgstr "Tast til aktivering af fejlsøgningsinfo" +#~ msgid "Debug info, profiler graph, and wireframe hidden" +#~ msgstr "Fejlretningsinfo, profileringsgraf og wireramme skjult" + #, fuzzy #~ msgid "Dec. volume key" #~ msgstr "Dec. lydstyrketasten" @@ -7147,10 +7172,16 @@ msgstr "" #~ msgid "Del. Favorite" #~ msgstr "Slet favorit" +#~ msgid "Desynchronize block animation" +#~ msgstr "Afsynkroniser blokanimation" + #, fuzzy #~ msgid "Dig key" #~ msgstr "Højretast" +#~ msgid "Digging particles" +#~ msgstr "Gravepartikler" + #~ msgid "Disable anticheat" #~ msgstr "Deaktiver antisnyd" @@ -7175,6 +7206,9 @@ msgstr "" #~ msgid "Dynamic shadows:" #~ msgstr "Dynamiske skygger:" +#~ msgid "Enable" +#~ msgstr "Aktiver" + #~ msgid "Enable VBO" #~ msgstr "Aktiver VBO" @@ -7200,6 +7234,12 @@ msgstr "" #~ "eller skal være automatisk oprettet.\n" #~ "Kræver at dybdeskabere er aktiveret." +#, fuzzy +#~ msgid "" +#~ "Enables caching of facedir rotated meshes.\n" +#~ "This is only effective with shaders disabled." +#~ msgstr "Aktiverer mellemlagring af facedir-roterede mesher." + #~ msgid "Enables filmic tone mapping" #~ msgstr "Aktiverer filmisk toneoversættelse" @@ -7230,9 +7270,6 @@ msgstr "" #~ "Eksperimentelt tilvalg, kan medføre synlige mellemrum mellem blokke\n" #~ "når angivet til et højere nummer end 0." -#~ msgid "FPS in pause menu" -#~ msgstr "FPS i pausemenu" - #~ msgid "FSAA" #~ msgstr "FSAA" @@ -7309,8 +7346,8 @@ msgstr "" #~ msgid "Full screen BPP" #~ msgstr "Fuldskærm BPP" -#~ msgid "Game" -#~ msgstr "Spil" +#~ msgid "GUI scaling filter txr2img" +#~ msgstr "GUI-skaleringsfilter txr2img" #~ msgid "Gamma" #~ msgstr "Gamma" @@ -7368,6 +7405,10 @@ msgstr "" #~ msgid "Instrumentation" #~ msgstr "Instrumentering" +#, fuzzy +#~ msgid "Interval of sending time of day to clients, stated in seconds." +#~ msgstr "Interval for afsendelse af tidspunkt på dagen til klienter." + #~ msgid "Invalid gamespec." #~ msgstr "Ugyldig spilspecifikationer." @@ -7379,701 +7420,701 @@ msgstr "" #~ msgid "" #~ "Key for decreasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for mindskning af den sete afstand.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for decreasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for sænkning af lydstyrken.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for digging.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for hop.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for dropping the currently selected item.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast som smider det nuværende valgte element.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for øgning af den sete afstand.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for increasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for øgning af lydstyrken.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for jumping.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for hop.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving fast in fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at bevæge sig hurtigt i tilstanden hurtig.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for moving the player backward.\n" #~ "Will also disable autoforward, when active.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at bevæge spilleren baglæns.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player forward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at bevæge spilleren fremad.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player left.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at bevæge spilleren mod venstre.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player right.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at bevæge spilleren mod højre.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for muting the game.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for stum.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at åbne snakkevinduet for at indtaste kommandoer.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for opening the chat window to type local commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at åbne snakkevinduet for at indtaste kommandoer.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at åbne snakkevinduet (chat).\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the inventory.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at åbne lageret.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for placing.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for hop.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 11th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at åbne lageret.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 12th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at åbne lageret.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 13th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at åbne lageret.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 14th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at åbne lageret.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 15th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at åbne lageret.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 16th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at åbne lageret.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 17th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at åbne lageret.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 18th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at åbne lageret.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 19th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at åbne lageret.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 20th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at åbne lageret.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 21st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at åbne lageret.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 22nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at åbne lageret.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 23rd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at åbne lageret.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 24th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at åbne lageret.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 25th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at åbne lageret.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 26th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at åbne lageret.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 27th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at åbne lageret.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 28th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at åbne lageret.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 29th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at åbne lageret.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 30th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at åbne lageret.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 31st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at åbne lageret.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 32nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at åbne lageret.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the eighth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at åbne lageret.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the fifth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at åbne lageret.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the first hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at åbne lageret.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the fourth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at åbne lageret.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the next item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at åbne lageret.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the ninth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at åbne lageret.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the previous item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at åbne lageret.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the second hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at åbne lageret.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the seventh hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at åbne lageret.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the sixth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at åbne lageret.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the tenth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at åbne lageret.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the third hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at åbne lageret.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for sneaking.\n" #~ "Also used for climbing down and descending in water if aux1_descends is " #~ "disabled.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til snigning.\n" #~ "Bruges også til at klatre ned og synke ned i vand hvis aux1_descends er " #~ "deaktiveret.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for switching between first- and third-person camera.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at skifte mellem første- og tredjepersons kamera.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for taking screenshots.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at lave skærmbilleder.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for toggling autoforward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at skifte til automatisk løb.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling cinematic mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at skifte til biograftilstand.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling display of minimap.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at skifte til visning af minikort.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at skifte til hurtig tilstand.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling flying.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at skifte til flyvning.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling noclip mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at skifte til noclip-tilstand.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for toggling pitch move mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at skifte til noclip-tilstand.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the camera update. Only used for development\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for at skifte kameraopdateringen. Bruges kun til udvikling\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for toggling the display of chat.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at skifte visningen af snakken (chat).\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of debug info.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at skifte til visning af fejlsøgningsinformation.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for toggling the display of fog.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at skifte visningen af tåge.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the HUD.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til skift af visningen for HUD'en.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for toggling the display of the large chat console.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at skifte visningen af snakken (chat).\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the profiler. Used for development.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at skifte visningen af profileringsprogrammet. Brugt til " #~ "udvikling.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling unlimited view range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast til at skifte til ubegrænset se-afstand.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key to use view zoom when possible.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for hop.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Keybindings. (If this menu screws up, remove stuff from minetest.conf)" #~ msgstr "" -#~ "Tastebindinger. (Hvis denne menu fucker op, fjern elementer fra minetest." -#~ "conf)" +#~ "Tastebindinger. (Hvis denne menu fucker op, fjern elementer fra " +#~ "minetest.conf)" #, fuzzy #~ msgid "Large chat console key" @@ -8227,6 +8268,9 @@ msgstr "" #~ msgid "Server / Singleplayer" #~ msgstr "Server/alene" +#~ msgid "Shaders" +#~ msgstr "Dybdeskabere" + #~ msgid "Shaders (experimental)" #~ msgstr "Dybdeskabere (eksperimentel)" @@ -8243,6 +8287,9 @@ msgstr "" #~ "på nogle videokort.\n" #~ "De fungerer kun med OpenGL-videomotoren." +#~ msgid "Shaders are disabled." +#~ msgstr "Shaders er deaktiveret." + #, fuzzy #~ msgid "Shadow limit" #~ msgstr "Skygge grænse" @@ -8260,6 +8307,9 @@ msgstr "" #~ msgid "Smooth Lighting" #~ msgstr "Glat belysning" +#~ msgid "Sound system is disabled" +#~ msgstr "Lydsystem er slået fra" + #, fuzzy #~ msgid "Special key" #~ msgstr "Snigetast" diff --git a/po/de/luanti.po b/po/de/luanti.po index f22502be5..2573314b0 100644 --- a/po/de/luanti.po +++ b/po/de/luanti.po @@ -2,9 +2,9 @@ msgid "" msgstr "" "Project-Id-Version: German (Minetest)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" -"PO-Revision-Date: 2024-11-02 23:00+0000\n" -"Last-Translator: grorp \n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" +"PO-Revision-Date: 2025-02-11 02:02+0000\n" +"Last-Translator: Wuzzy \n" "Language-Team: German \n" "Language: de\n" @@ -12,7 +12,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.8.2\n" +"X-Generator: Weblate 5.10-dev\n" #: builtin/client/chatcommands.lua msgid "Clear the out chat queue" @@ -24,7 +24,7 @@ msgstr "Leerer Befehl." #: builtin/client/chatcommands.lua msgid "Exit to main menu" -msgstr "Beenden, zum Hauptmenü" +msgstr "Ins Hauptmenü beenden" #: builtin/client/chatcommands.lua msgid "Invalid command: " @@ -32,7 +32,7 @@ msgstr "Ungültiger Befehl: " #: builtin/client/chatcommands.lua msgid "Issued command: " -msgstr "Gegebener Befehl: " +msgstr "Befehl gegeben: " #: builtin/client/chatcommands.lua msgid "List online players" @@ -48,7 +48,7 @@ msgstr "Die ausgehende Chatwarteschlange ist nun leer." #: builtin/client/chatcommands.lua msgid "This command is disabled by server." -msgstr "Dieser Befehl ist vom Server deaktiviert." +msgstr "Dieser Befehl wurde vom Server deaktiviert." #: builtin/common/chatcommands.lua msgid "Available commands:" @@ -77,6 +77,244 @@ msgstr "" msgid "[all | ] [-t]" msgstr "[all | ] [-t]" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "Durchsuchen" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "Bearbeiten" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "Verzeichnis auswählen" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "Datei auswählen" + +#: builtin/common/settings/components.lua +msgid "Set" +msgstr "Setzen" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(Keine Beschreibung vorhanden)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "2-D-Rauschen" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "Abbrechen" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "Lückenhaftigkeit" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "Oktaven" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "Versatz" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "Persistenz" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "Speichern" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "Skalierung" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "Startwert (Seed)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "X-Ausbreitung" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "Y-Ausbreitung" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "Z-Ausbreitung" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "Absolutwert" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "Standardwerte" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "weich (eased)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "(Das Spiel muss ebenfalls automatische Belichtung aktivieren)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "(Das Spiel muss ebenfalls Bloom aktivieren)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "(Das Spiel muss ebenfalls volumetrisches Licht aktivieren)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "(Systemsprache verwenden)" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "Barrierefreiheit" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "Automatisch" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "Chat" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "Leeren" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "Steuerung" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "Deaktiviert" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "Aktiviert" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "Allgemein" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "Bewegung" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "Keine Ergebnisse" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default" +msgstr "Auf Standard zurücksetzen" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "Auf Standard zurücksetzen ($1)" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "Suchen" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "Erweiterte Einstellungen zeigen" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "Technische Namen zeigen" + +#: builtin/common/settings/dlg_settings.lua +msgid "Touchscreen layout" +msgstr "Touchscreen-Layout" + +#: builtin/common/settings/dlg_settings.lua +msgid "pause_menu" +msgstr "pause_menu" + +#: builtin/common/settings/settingtypes.lua +msgid "Client Mods" +msgstr "Client-Mods" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "Inhalt: Spiele" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "Inhalt: Mods" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "(Das Spiel muss ebenfalls Schatten aktivieren)" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "Benutzerdefiniert" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "Dynamische Schatten" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "Hoch" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "Niedrig" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "Mittel" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "Sehr hoch" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "Sehr niedrig" + #: builtin/fstk/ui.lua msgid "" msgstr "" @@ -115,7 +353,7 @@ msgstr "Der Server erfordert Protokollversion $1. " #: builtin/mainmenu/common.lua msgid "Server supports protocol versions between $1 and $2. " -msgstr "Der Server unterstützt die Protokollversionen von $1 bis $2. " +msgstr "Der Server unterstützt Protokollversionen von $1 bis $2. " #: builtin/mainmenu/common.lua msgid "We only support protocol version $1." @@ -131,11 +369,11 @@ msgstr "Fehler bei Installation von „$1“: $2" #: builtin/mainmenu/content/contentdb.lua msgid "Failed to download \"$1\"" -msgstr "Fehler beim Download von „$1“" +msgstr "Fehler beim Herunterladen von „$1“" #: builtin/mainmenu/content/contentdb.lua msgid "Failed to download $1" -msgstr "Fehler beim Download von $1" +msgstr "Fehler beim Herunterladen von $1" #: builtin/mainmenu/content/contentdb.lua msgid "" @@ -163,7 +401,6 @@ msgstr "Alle" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "Zurück" @@ -197,12 +434,7 @@ msgstr "Mods" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua msgid "No packages could be retrieved" -msgstr "Es konnten keine Pakete abgerufen werden" - -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "Keine Ergebnisse" +msgstr "Es konnten keine Pakete empfangen werden" #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" @@ -248,18 +480,6 @@ msgstr "Bereits installiert" msgid "Base Game:" msgstr "Basis-Spiel:" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "Abbrechen" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -383,6 +603,14 @@ msgstr "Fehler bei der Installation von $1 als $2" msgid "Unable to install a $1 as a texture pack" msgstr "Fehler bei der Texturenpaket-Installation von $1" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" +"Dies ist die Liste der Clients, die zu\n" +"$1 verbunden sind" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "(Aktiviert, hat Fehler)" @@ -447,12 +675,6 @@ msgstr "Keine optionalen Abhängigkeiten" msgid "Optional dependencies:" msgstr "Optionale Abhängigkeiten:" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "Speichern" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "Weltname:" @@ -607,11 +829,6 @@ msgstr "Flüsse" msgid "Sea level rivers" msgstr "Flüsse auf Meeresspiegelhöhe" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "Startwert (Seed)" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "Weicher Übergang zwischen Biomen" @@ -757,9 +974,25 @@ msgstr "" "Diesem Modpaket wurde in seiner modpack.conf ein expliziter Name vergeben, " "der jede Umbennenung hier überschreiben wird." +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Expand all" +msgstr "Alle ausklappen" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "Nach Präfix gruppieren" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "Der Server $1 nutzt ein Spiel namens $2 und die folgenden Mods:" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "Der Server $1 nutzt folgende Mods:" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" -msgstr "Eine neue $1-Version ist verfügbar" +msgstr "Eine neue Version von $1 ist verfügbar" #: builtin/mainmenu/dlg_version_info.lua msgid "" @@ -785,7 +1018,7 @@ msgstr "Niemals" msgid "Visit website" msgstr "Webseite besuchen" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "Einstellungen" @@ -799,223 +1032,6 @@ msgstr "" "Versuchen Sie die öffentliche Serverliste neu zu laden und prüfen Sie Ihre " "Internetverbindung." -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "Durchsuchen" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "Bearbeiten" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "Verzeichnis auswählen" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "Datei auswählen" - -#: builtin/mainmenu/settings/components.lua -msgid "Set" -msgstr "Setzen" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(Keine Beschreibung vorhanden)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "2-D-Rauschen" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "Lückenhaftigkeit" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "Oktaven" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "Versatz" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "Persistenz" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "Skalierung" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "X-Ausbreitung" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "Y-Ausbreitung" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "Z-Ausbreitung" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "Absolutwert" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "Standardwerte" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "weich (eased)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "(Das Spiel muss ebenfalls automatische Belichtung aktivieren)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "(Das Spiel muss ebenfalls Bloom aktivieren)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "(Das Spiel muss ebenfalls volumetrisches Licht aktivieren)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "(Systemsprache verwenden)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "Barrierefreiheit" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "Automatisch" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "Chat" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "Leeren" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "Steuerung" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "Deaktiviert" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "Aktiviert" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "Allgemein" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "Bewegung" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default" -msgstr "Auf Standard zurücksetzen" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "Auf Standard zurücksetzen ($1)" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "Suchen" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "Erweiterte Einstellungen zeigen" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "Technische Namen zeigen" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "Client-Mods" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "Inhalt: Spiele" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "Inhalt: Mods" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "Enable" -msgstr "Aktiviert" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "Shaders are disabled." -msgstr "Shader sind deaktiviert." - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "Dies ist keine empfohlene Konfiguration." - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "(Das Spiel muss ebenfalls Schatten aktivieren)" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "Benutzerdefiniert" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "Dynamische Schatten" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "Hoch" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "Niedrig" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "Mittel" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "Sehr hoch" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "Sehr niedrig" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "Über" @@ -1036,10 +1052,6 @@ msgstr "Hauptentwickler" msgid "Core Team" msgstr "Kernteam" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "Irrlicht-Gerät:" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "Benutzerdatenverzeichnis öffnen" @@ -1189,10 +1201,22 @@ msgid "You need to install a game before you can create a world." msgstr "" "Sie müssen ein Spiel installieren, bevor Sie eine Welt erstellen können." +#: builtin/mainmenu/tab_online.lua +msgid "Add favorite" +msgstr "Favorit hinzufügen" + #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "Adresse" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Clients:\n" +"$1" +msgstr "" +"Clients:\n" +"$1" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "Kreativmodus" @@ -1206,6 +1230,10 @@ msgstr "Schaden / PvP" msgid "Favorites" msgstr "Favoriten" +#: builtin/mainmenu/tab_online.lua +msgid "Game: $1" +msgstr "Spiel: $1" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "Inkompatible Server" @@ -1218,10 +1246,30 @@ msgstr "Spiel beitreten" msgid "Login" msgstr "Einloggen" +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "Anzahl der Mods: $1" + +#: builtin/mainmenu/tab_online.lua +msgid "Open server website" +msgstr "Server-Webseite besuchen" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "Latenz" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" +"Mögliche Filter\n" +"game:\n" +"mod:\n" +"player:" + #: builtin/mainmenu/tab_online.lua msgid "Public Servers" msgstr "Öffentliche Server" @@ -1306,23 +1354,6 @@ msgstr "" "\n" "Für mehr Details siehe debug.txt." -#: src/client/game.cpp -msgid "- Mode: " -msgstr "- Modus: " - -#: src/client/game.cpp -msgid "- Public: " -msgstr "- Öffentlich: " - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "- Spielerkampf: " - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "- Servername: " - #: src/client/game.cpp msgid "A serialization error occurred:" msgstr "Ein Serialisierungsfehler ist aufgetreten:" @@ -1332,6 +1363,10 @@ msgstr "Ein Serialisierungsfehler ist aufgetreten:" msgid "Access denied. Reason: %s" msgstr "Zugriff verweigert. Grund: %s" +#: src/client/game.cpp +msgid "All debug info hidden" +msgstr "Alle Debug-Infos verborgen" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "Vorwärtsautomatik deaktiviert" @@ -1352,6 +1387,10 @@ msgstr "Blockgrenzen für aktuellen Block angezeigt" msgid "Block bounds shown for nearby blocks" msgstr "Blockgrenzen für Blöcke in Nähe angezeigt" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "Grenzboxen angezeigt" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "Kameraaktualisierung deaktiviert" @@ -1365,10 +1404,6 @@ msgid "Can't show block bounds (disabled by game or mod)" msgstr "" "Blockgrenzen können nicht angezeigt werden (von Spiel oder Mod deaktiviert)" -#: src/client/game.cpp -msgid "Change Password" -msgstr "Passwort ändern" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "Filmmodus deaktiviert" @@ -1397,38 +1432,6 @@ msgstr "Verbindungsfehler (Zeitüberschreitung?)" msgid "Connection failed for unknown reason" msgstr "Verbindung aus unbekanntem Grund fehlgeschlagen" -#: src/client/game.cpp -msgid "Continue" -msgstr "Weiter" - -#: src/client/game.cpp -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" -"Steuerung:\n" -"Kein Menü sichtbar:\n" -"- Finger wischen: Umsehen\n" -"- Antippen: Platzieren/schlagen/benutzen (Standard)\n" -"- Langes antippen: Graben/benutzen (Standard)\n" -"Menü/Inventar offen:\n" -"- Doppelt antippen (außerhalb):\n" -" --> schließen\n" -"- Stapel berühren, Feld berühren:\n" -" --> Stapel verschieben\n" -"- Berühren u. ziehen, mit 2. Finger antippen\n" -" --> 1 Gegenstand ins Feld platzieren\n" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1442,31 +1445,15 @@ msgstr "Client erstellen …" msgid "Creating server..." msgstr "Erstelle Server …" -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "Debug-Infos und Profiler-Graph verborgen" - #: src/client/game.cpp msgid "Debug info shown" msgstr "Debug-Infos angezeigt" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "Debug-Infos, Profiler und Drahtgitter deaktiviert" - #: src/client/game.cpp #, c-format msgid "Error creating client: %s" msgstr "Fehler bei Erstellung des Clients: %s" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "Hauptmenü" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "Programm beenden" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "Schnellmodus deaktiviert" @@ -1503,18 +1490,6 @@ msgstr "Nebel aktiviert" msgid "Fog enabled by game or mod" msgstr "Nebel von Spiel oder Mod aktiviert" -#: src/client/game.cpp -msgid "Game info:" -msgstr "Spielinfo:" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "Spiel pausiert" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "Gehosteter Server" - #: src/client/game.cpp msgid "Item definitions..." msgstr "Gegenstandsdefinitionen …" @@ -1551,14 +1526,6 @@ msgstr "Geistmodus aktiviert (Hinweis: Kein „noclip“-Privileg)" msgid "Node definitions..." msgstr "Blockdefinitionen …" -#: src/client/game.cpp -msgid "Off" -msgstr "Aus" - -#: src/client/game.cpp -msgid "On" -msgstr "Ein" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "Nick-Bewegungsmodus deaktiviert" @@ -1571,38 +1538,22 @@ msgstr "Nick-Bewegungsmodus aktiviert" msgid "Profiler graph shown" msgstr "Profiler-Graph angezeigt" -#: src/client/game.cpp -msgid "Remote server" -msgstr "Entfernter Server" - #: src/client/game.cpp msgid "Resolving address..." msgstr "Adressauflösung …" -#: src/client/game.cpp -msgid "Respawn" -msgstr "Wiederbeleben" - #: src/client/game.cpp msgid "Shutting down..." msgstr "Herunterfahren …" -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "Einzelspieler" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "Tonlautstärke" - #: src/client/game.cpp msgid "Sound muted" msgstr "Ton stummgeschaltet" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "Tonsystem ist deaktiviert" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "Tonsystem ist in diesem Build nicht unterstützt" @@ -1679,18 +1630,115 @@ msgstr "Sichtweite geändert auf %d, aber auf %d von Spiel oder Mod begrenzt" msgid "Volume changed to %d%%" msgstr "Lautstärke auf %d%% gesetzt" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "Drahtmodell vom Treiber nicht unterstützt" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "Drahtmodell aktiv" -#: src/client/game.cpp -msgid "You died" -msgstr "Sie sind gestorben" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "Zoom ist momentan von Spiel oder Mod deaktiviert" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "- Modus: " + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "- Öffentlich: " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "- Spielerkampf: " + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "- Servername: " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "Passwort ändern" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "Weiter" + +#: src/client/game_formspec.cpp +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" +"Steuerung:\n" +"Kein Menü sichtbar:\n" +"- Finger wischen: Umsehen\n" +"- Antippen: Platzieren/schlagen/benutzen (Standard)\n" +"- Langes antippen: Graben/benutzen (Standard)\n" +"Menü/Inventar offen:\n" +"- Doppelt antippen (außerhalb):\n" +" --> schließen\n" +"- Stapel berühren, Feld berühren:\n" +" --> Stapel verschieben\n" +"- Berühren u. ziehen, mit 2. Finger antippen\n" +" --> 1 Gegenstand ins Feld platzieren\n" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "Hauptmenü" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "Programm beenden" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "Spielinfo:" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "Spiel pausiert" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "Gehosteter Server" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "Aus" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "Ein" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "Entfernter Server" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "Wiederbeleben" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "Tonlautstärke" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "Sie sind gestorben" + #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" msgstr "Chat ist momentan von Spiel oder Mod deaktiviert" @@ -1735,7 +1783,7 @@ msgstr "Untbr-Taste" #: src/client/keycode.cpp msgid "Caps Lock" -msgstr "Feststellt." +msgstr "Feststell" #: src/client/keycode.cpp msgid "Clear Key" @@ -2017,8 +2065,8 @@ msgid "Failed to compile the \"%s\" shader." msgstr "Fehler beim Kompilieren des „%s“-Shaders." #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." -msgstr "Shader sind aktiviert, aber GLSL wird vom Treiber nicht unterstützt." +msgid "GLSL is not supported by the driver" +msgstr "GLSL wird vom Treiber nicht unterstützt" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" #: src/content/mod_configuration.cpp @@ -2069,7 +2117,7 @@ msgstr "Autovorwärts" msgid "Automatic jumping" msgstr "Auto-Springen" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "Aux1" @@ -2081,7 +2129,7 @@ msgstr "Rückwärts" msgid "Block bounds" msgstr "Blockgrenzen" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "Kamerawechsel" @@ -2105,7 +2153,7 @@ msgstr "Leiser" msgid "Double tap \"jump\" to toggle fly" msgstr "2×Sprungtaste zum Fliegen" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "Wegwerfen" @@ -2121,11 +2169,11 @@ msgstr "Sicht erhöhen" msgid "Inc. volume" msgstr "Lauter" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "Inventar" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "Springen" @@ -2157,7 +2205,7 @@ msgstr "Nächst. Ggnstd." msgid "Prev. item" msgstr "Vorh. Ggnstd." -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "Weite Sicht" @@ -2169,7 +2217,7 @@ msgstr "Rechts" msgid "Screenshot" msgstr "Bildschirmfoto" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "Schleichen" @@ -2177,15 +2225,15 @@ msgstr "Schleichen" msgid "Toggle HUD" msgstr "HUD an/aus" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "Chat an/aus" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "Schnellmodus" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "Flugmodus" @@ -2193,11 +2241,11 @@ msgstr "Flugmodus" msgid "Toggle fog" msgstr "Nebel an/aus" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "Karte an/aus" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "Geistmodus" @@ -2205,7 +2253,7 @@ msgstr "Geistmodus" msgid "Toggle pitchmove" msgstr "Nickbewegung" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "Zoom" @@ -2241,7 +2289,7 @@ msgstr "Altes Passwort" msgid "Passwords do not match!" msgstr "Passwörter stimmen nicht überein!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "Zurück" @@ -2254,15 +2302,43 @@ msgstr "Stumm" msgid "Sound Volume: %d%%" msgstr "Tonlautstärke: %d%%" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +msgid "Add button" +msgstr "Button hinzufügen" + +#: src/gui/touchscreeneditor.cpp +msgid "Done" +msgstr "Fertig" + +#: src/gui/touchscreeneditor.cpp +msgid "Remove" +msgstr "Entfernen" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "Zurücksetzen" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "Button ziehen zum Hinzufügen. Außerhalb antippen zum Abbrechen." + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "Button antippen zum Auswählen. Button ziehen zum Verschieben." + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "Außerhalb antippen zum Abwählen." + +#: src/gui/touchscreenlayout.cpp msgid "Joystick" msgstr "Joystick" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "Überlauf-Menü" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Toggle debug" msgstr "Debug an/aus" @@ -2502,8 +2578,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" "3-D-Unterstützung.\n" "Aktuell verfügbar:\n" @@ -2513,9 +2588,7 @@ msgstr "" "zeilenbasierte Polarisation.\n" "- topbottom: Bildschirm horizontal teilen.\n" "- sidebyside: Bildschirm vertikal teilen.\n" -"- crossview: Schieläugiges 3-D\n" -"Beachten Sie, dass der „interlaced“-Modus erfordert, dass Shader aktiviert " -"sind." +"- crossview: Schieläugiges 3-D" #: src/settings_translation_file.cpp msgid "" @@ -2575,10 +2648,6 @@ msgstr "Reichweite aktiver Kartenblöcke" msgid "Active object send range" msgstr "Reichweite aktiver Objekte" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "Zeigt Partikel, wenn man einen Block ausgräbt." - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2609,6 +2678,19 @@ msgstr "Admin-Name" msgid "Advanced" msgstr "Erweitert" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" +"Alle Mesh-Puffer, die weniger als diese Anzahl Punkte haben, werden während\n" +"des Renderns der Karte zusammengeführt. Dies verbessert die Performanz\n" +"des Renderns." + +#: src/settings_translation_file.cpp +msgid "Allow clouds to look 3D instead of flat." +msgstr "Erlaubt, dass Wolken ein 3-D-Aussehen statt ein flaches Aussehen haben." + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "Erlaubt Flüssigkeiten, transluzent zu sein." @@ -3012,14 +3094,14 @@ msgstr "Wolkenradius" msgid "Clouds" msgstr "Wolken" -#: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." -msgstr "Wolken sind ein clientseitiger Effekt." - #: src/settings_translation_file.cpp msgid "Clouds in menu" msgstr "Wolken im Menü" +#: src/settings_translation_file.cpp +msgid "Color depth for post-processing texture" +msgstr "Farbtiefe für Nachbearbeitungstextur" + #: src/settings_translation_file.cpp msgid "Colored fog" msgstr "Gefärbter Nebel" @@ -3045,7 +3127,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" "Kommagetrennte Liste von Flags für Dinge, die im Inhalte-Browser verborgen " "werden sollten.\n" @@ -3055,7 +3137,7 @@ msgstr "" "Sie können auch Inhaltseinstufungen festlegen.\n" "Diese Flags sind von Luanti-Versionen unabhängig,\n" "für eine vollständige Liste gehen Sie auf:\n" -"https://content.minetest.net/help/content_flags/" +"https://content.luanti.org/help/content_flags/" #: src/settings_translation_file.cpp msgid "" @@ -3219,6 +3301,19 @@ msgstr "Debugausgabelevel" msgid "Debugging" msgstr "Debugging" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" +"Die Farbtiefe der Textur, die für die Nachbearbeitungs-Pipeline benutzt " +"wird, festlegen.\n" +"Wird der Wert verringert, kann dies die Performanz verbessern, aber einige " +"Effekte (z.B. Debanding)\n" +"brauchen mehr als 8 Bit, um zu funktionieren." + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "Taktung dedizierter Server" @@ -3274,15 +3369,15 @@ msgid "" "Luanti still enforces its own internal minimum, and enabling\n" "strict_protocol_version_checking will effectively override this." msgstr "" -"Hier festlegen, welches die ältesten Clients sind, die sich verbinden dürfen." -"\n" +"Hier festlegen, welches die ältesten Clients sind, die sich verbinden " +"dürfen.\n" "Ältere Clients sind kompatibel in der Hinsicht, dass sie beim Verbinden zu " "neuen\n" "Servern nicht abstürzen, aber sie könnten nicht alle neuen Funktionen, die " "Sie\n" "erwarten, unterstützen.\n" -"Das ermöglicht eine genauere Kontrolle als strict_protocol_version_checking." -"\n" +"Das ermöglicht eine genauere Kontrolle als " +"strict_protocol_version_checking.\n" "Luanti wird immer noch ein internes Minimum erzwingen, und die Aktivierung\n" "von strict_protocol_version_checking wird dies überschreiben." @@ -3403,18 +3498,10 @@ msgstr "" "Wüsten treten auf, wenn np_biome diesen Wert überschreitet.\n" "Falls das „snowbiomes“-Flag aktiviert ist, wird dies ignoriert." -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "Blockanimationen desynchronisieren" - #: src/settings_translation_file.cpp msgid "Developer Options" msgstr "Entwickleroptionen" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "Grabepartikel" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "Leere Passwörter verbieten" @@ -3447,6 +3534,18 @@ msgstr "2×Sprungtaste zum Fliegen" msgid "Double-tapping the jump key toggles fly mode." msgstr "Doppelttippen der Sprungtaste schaltet Flugmodus um." +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" +"Transparenzsortierte Dreiecke nach ihren Meshpuffern gruppiert zeichnen.\n" +"Dies macht die Transparenzsortierung zwischen Meshpuffern kaputt, aber " +"vermeidet\n" +"Situationen, wo die Transparenzsortierung sonst sehr langsam wäre." + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "Die Kartengenerator-Debuginformationen ausgeben." @@ -3531,12 +3630,11 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" -"Aktiviert gefärbte Schatten. \n" -"Falls aktiv, werden transluzente Blöcke gefärbte Schatten werfen. Dies ist " -"rechenintensiv." +"Aktiviert gefärbte Schatten für transluzente Blöcke.\n" +"Dies ist rechenintensiv." #: src/settings_translation_file.cpp msgid "Enable console window" @@ -3624,12 +3722,10 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" "Server als IPv6 laufen lassen (oder nicht).\n" -"Wird ignoriert, falls bind_address gesetzt ist.\n" -"Dafür muss außerdem enable_ipv6 aktiviert sein." +"Wird ignoriert, falls bind_address gesetzt ist." #: src/settings_translation_file.cpp msgid "" @@ -3647,15 +3743,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "Aktiviert die Animation von Inventargegenständen." -#: src/settings_translation_file.cpp -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "" -"Aktiviert das Zwischenspeichern von 3-D-Modellen, die mittels facedir " -"rotiert werden.\n" -"Dies hat nur einen Effekt, wenn Shader deaktiviert sind." - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "Aktiviert Debug und Fehlerprüfungen im OpenGL-Treiber." @@ -4015,10 +4102,6 @@ msgstr "GUI-Skalierung" msgid "GUI scaling filter" msgstr "GUI-Skalierfilter" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "GUI-Skalierungsfilter txr2img" - #: src/settings_translation_file.cpp msgid "Gamepads" msgstr "Gamepads" @@ -4287,15 +4370,6 @@ msgstr "" "Falls aktiviert, wird die „Aux1“-Taste statt der „Schleichen“-Taste zum\n" "Herunterklettern und Sinken benutzt." -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" -"Falls aktiviert, wird die Kontoregistrierung vom Einloggen in der " -"Benutzeroberfläche getrennt behandelt.\n" -"Falls deaktiviert, werden neue Konten beim Einloggen automatisch registriert." - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -4321,6 +4395,17 @@ msgstr "" "Falls aktiviert, können neue Spieler nicht ohne ein Passwort beitreten oder " "ihr Passwort zu ein leeres Passwort ändern." +#: src/settings_translation_file.cpp +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" +"Falls aktiviert, wird die Serverkontoregistrierung in der Benutzeroberfläche " +"getrennt vom Einloggen behandelt.\n" +"Falls deaktiviert, werden neue Konten beim Verbindungsaufbau zu einem Server " +"automatisch registriert." + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4451,12 +4536,6 @@ msgid "Interval of saving important changes in the world, stated in seconds." msgstr "" "Zeitintervall des Abspeicherns wichtiger Änderungen in der Welt, in Sekunden." -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "" -"Zeitintervall, in dem die Tageszeit an Clients gesendet wird, in Sekunden " -"angegeben." - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "Animierte Inventargegenstände" @@ -5194,10 +5273,6 @@ msgstr "" msgid "Maximum users" msgstr "Maximale Benutzerzahl" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "3-D-Modell-Zwischenspeicher" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "Meldung des Tages (message of the day)" @@ -5233,6 +5308,10 @@ msgstr "Untergrenze der zufälligen Anzahl großer Höhlen je Mapchunk." msgid "Minimum limit of random number of small caves per mapchunk." msgstr "Untergrenze der zufälligen Anzahl kleiner Höhlen je Mapchunk." +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "Minimale Punktanzahl für Meshpuffer" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "Mip-Mapping" @@ -5329,13 +5408,13 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" "Name des Spielers.\n" -"Wenn ein Server gestartet wird, werden Clients mit diesem Namen zu " -"Administratoren.\n" -"Wird vom Hauptmenü aus gestartet, wird diese Einstellung überschrieben." +"Wenn ein Server gestartet wird, wird ein Client mit diesem Namen zum " +"Administrator.\n" +"Wenn vom Hauptmenü aus gestartet, wird diese Einstellung überschrieben." #: src/settings_translation_file.cpp msgid "" @@ -5861,17 +5940,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5879,20 +5960,22 @@ msgstr "" "\n" "* None – Keine Kantenglättung (Standard)\n" "\n" -"* FSAA – Von der Hardware bereitgestellte Vollbildkantenglättung (nicht\n" -"kompatibel mit Nachbearbeitung und Unterabtastung), auch bekannt\n" -"als Multi-Sample Antialiasing (MSAA). Glättet Blockkanten aus, " -"beeinträchtigt\n" -"aber nicht die Innenseiten der Texturen.\n" -"Um diese Option zu ändern, ist ein Neustart erforderlich.\n" +"* FSAA – Von der Hardware bereitgestellte Vollbildkantenglättung\n" +"Auch bekannt als „Multi-Sample Antialiasing“ (MSAA)\n" +"Glättet Blockkanten, aber hat keine Auswirkung auf das Innere von Texturen.\n" "\n" -"* FXAA – Schnelle annähende Kantenglättung (benötigt Shader).\n" +"Wenn die Nachbearbeitung deaktiviert ist, benötigt das Ändern von FSAA\n" +"einen Neustart. Außerdem wird, wenn die Nachbearbeitung deaktiviert ist,\n" +"FSAA nicht zusammen mit einer Unterabtastung oder einer\n" +"Nicht-Standard-„3d_mode“-Einstellung funktionieren.\n" +"\n" +"* FXAA – Schnelle annähende Kantenglättung\n" "Wendet einen Nachbearbeitungsfilter an, um kontrastreiche Kanten zu " "erkennen\n" "und zu glätten. Bietet eine Balance zwischen Geschwindigkeit und " "Bildqualität.\n" "\n" -"* SSAA – Super-Sampling-Kantenglättung (benötigt Shader).\n" +"* SSAA – Super-Sampling-Kantenglättung\n" "Rendert ein hochauflösendes Bild der Szene, dann skaliert es herunter, um\n" "die Aliasing-Effekte zu reduzieren. Dies ist die langsamste und genaueste " "Methode." @@ -6139,18 +6222,6 @@ msgstr "" msgid "Shader path" msgstr "Shader-Pfad" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "Shader" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" -"Shader sind ein fundamentaler Teil des Renderns und aktivieren erweiterte " -"visuelle Effekte." - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "Schattenfilterqualität" @@ -6346,15 +6417,13 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" "Eine vollständige Aktualisierung der Schattenkarte über die angegebene\n" "Anzahl Frames verteilen. Höhere Werte können dazu führen, dass\n" -"Schatten langsamer reagieren, niedrigere Werte sind rechenintensiver.\n" -"Minimalwert: 1; Maximalwert: 16" +"Schatten langsamer reagieren, niedrigere Werte sind rechenintensiver." #: src/settings_translation_file.cpp msgid "" @@ -6735,10 +6804,6 @@ msgstr "" "Tageszeit, wenn eine neue Welt gestartet wird, in Millistunden (0-23999) " "angegeben." -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "Zeit-Sendeintervall" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "Zeitgeschwindigkeit" @@ -6805,6 +6870,10 @@ msgstr "Transluzente Flüssigkeiten" msgid "Transparency Sorting Distance" msgstr "Transparenzsortierungsdistanz" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "Transparenzsortierung nach Puffer gruppieren" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "Bäumerauschen" @@ -6872,14 +6941,20 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" "Unterabtastung ist ähnlich der Verwendung einer niedrigeren " -"Bildschirmauflösung, aber sie wird nur auf die Spielwelt angewandt, während " -"die GUI intakt bleibt.\n" +"Bildschirmauflösung,\n" +"aber sie wird nur auf die Spielwelt angewandt, während die GUI intakt bleibt." +"\n" "Dies sollte einen beträchtlichen Performanzschub auf Kosten einer weniger " "detaillierten Grafik geben.\n" -"Hohe Werte führen zu einer weniger detaillierten Grafik." +"Hohe Werte führen zu einer weniger detaillierten Grafik.\n" +"Anmerkung: Unterabtastung wird im Moment nicht unterstützt, falls die\n" +"„3d_mode“-Einstellung auf einen Nicht-Standardwert gesetzt ist." #: src/settings_translation_file.cpp msgid "Unlimited player transfer distance" @@ -6901,19 +6976,19 @@ msgstr "Y-Obergrenze von Verliesen." msgid "Upper Y limit of floatlands." msgstr "Y-Obergrenze von Schwebeländern." -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "Wolken blockförmig statt flach aussehen lassen." - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "Eine Wolkenanimation für den Hintergrund im Hauptmenü benutzen." #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" "Anisotrope Filterung verwenden, wenn auf Texturen aus einem gewissen Winkel " -"heraus geschaut wird." +"heraus geschaut wird.\n" +"Dies bietet eine signifikante Verbesserung, wenn es gemeinsam mit Mipmapping " +"verwendet wird." #: src/settings_translation_file.cpp msgid "Use bilinear filtering when scaling textures." @@ -7191,37 +7266,23 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" -"Falls gui_scaling_filter_txr2img auf „wahr“ gesetzt ist, werden\n" -"diese Bilder von der Hardware zur Software für die Skalierung\n" -"kopiert. Falls es auf „falsch“ gesetzt ist, wird die alte Skalierungs-\n" -"methode angewandt, für Grafiktreiber, welche das\n" -"Herunterladen von Texturen zurück von der Hardware nicht\n" -"korrekt unterstützen." - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" -"Wenn bilineare, trilineare oder anisotrope Filter benutzt werden, können\n" +"Wenn bilineare/trilineare Filter benutzt werden, können\n" "niedrigauflösende Texturen verschwommen sein, also werden sie automatisch\n" "mit Pixelwiederholung vergrößert, um scharfe Pixel zu behalten. Dies setzt " "die\n" "minimale Texturengröße für die vergrößerten Texturen; höhere Werte führen\n" -"zu einem schärferen Aussehen, aber erfordern mehr Speicher. Zweierpotenzen\n" -"werden empfohlen. Diese Einstellung trifft NUR dann in Kraft, falls\n" -"der bilineare/trilineare/anisotrope Filter aktiviert ist.\n" +"zu einem schärferen Aussehen, aber erfordern mehr Speicher.\n" +"Diese Einstellung trifft NUR dann in Kraft, falls\n" +"einer der genannten Filter aktiviert ist.\n" "Dies wird außerdem verwendet als die Basisblocktexturengröße für\n" "welt-ausgerichtete automatische Texturenskalierung." @@ -7233,11 +7294,6 @@ msgstr "" "Ob Namensschildhintergründe standardmäßig angezeigt werden sollen.\n" "Mods können immer noch einen Hintergrund setzen." -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" -"Ob Blocktexturanimationen pro Kartenblock desynchronisiert sein sollten." - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -7267,16 +7323,14 @@ msgstr "Ob das Ende des sichtbaren Gebietes im Nebel verschwinden soll." #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" "Ob die Töne stummgeschaltet werden. Man kann die Töne jederzeit " -"stummschalten,\n" -"außer, wenn das Tonsystem ausgeschaltet wurde (enable_sound=false).\n" +"stummschalten.\n" "Im Spiel können die Töne mit der Stummtaste oder mit Hilfe des\n" -"Pausemenüs stummgeschaltet werden." +"Pausenmenüs stummgeschaltet werden." #: src/settings_translation_file.cpp msgid "" @@ -7463,6 +7517,9 @@ msgstr "cURL-Parallel-Begrenzung" #~ "Leer lassen, um einen lokalen Server zu starten.\n" #~ "Die Adresse im Hauptmenü überschreibt diese Einstellung." +#~ msgid "Adds particles when digging a node." +#~ msgstr "Zeigt Partikel, wenn man einen Block ausgräbt." + #~ msgid "" #~ "Adjust dpi configuration to your screen (non X11/Android only) e.g. for " #~ "4k screens." @@ -7622,6 +7679,9 @@ msgstr "cURL-Parallel-Begrenzung" #~ msgid "Clean transparent textures" #~ msgstr "Transparente Texturen säubern" +#~ msgid "Clouds are a client-side effect." +#~ msgstr "Wolken sind ein clientseitiger Effekt." + #~ msgid "Command key" #~ msgstr "Befehlstaste" @@ -7720,9 +7780,15 @@ msgstr "cURL-Parallel-Begrenzung" #~ msgid "Darkness sharpness" #~ msgstr "Dunkelheits-Steilheit" +#~ msgid "Debug info and profiler graph hidden" +#~ msgstr "Debug-Infos und Profiler-Graph verborgen" + #~ msgid "Debug info toggle key" #~ msgstr "Taste zum Umschalten der Debug-Info" +#~ msgid "Debug info, profiler graph, and wireframe hidden" +#~ msgstr "Debug-Infos, Profiler und Drahtgitter deaktiviert" + #~ msgid "Dec. volume key" #~ msgstr "Leiser-Taste" @@ -7788,9 +7854,15 @@ msgstr "cURL-Parallel-Begrenzung" #~ "Höhlenflüssigkeiten in Biomdefinitionen.\n" #~ "Y der Obergrenze von Lava in großen Höhlen." +#~ msgid "Desynchronize block animation" +#~ msgstr "Blockanimationen desynchronisieren" + #~ msgid "Dig key" #~ msgstr "Grabetaste" +#~ msgid "Digging particles" +#~ msgstr "Grabepartikel" + #~ msgid "Disable anticheat" #~ msgstr "Anti-Cheat deaktivieren" @@ -7819,6 +7891,9 @@ msgstr "cURL-Parallel-Begrenzung" #~ msgid "Dynamic shadows:" #~ msgstr "Dynamische Schatten:" +#~ msgid "Enable" +#~ msgstr "Aktiviert" + #~ msgid "Enable VBO" #~ msgstr "VBO aktivieren" @@ -7853,6 +7928,14 @@ msgstr "cURL-Parallel-Begrenzung" #~ "Shader müssen aktiviert werden, bevor diese Einstellung aktiviert werden " #~ "kann." +#~ msgid "" +#~ "Enables caching of facedir rotated meshes.\n" +#~ "This is only effective with shaders disabled." +#~ msgstr "" +#~ "Aktiviert das Zwischenspeichern von 3-D-Modellen, die mittels facedir " +#~ "rotiert werden.\n" +#~ "Dies hat nur einen Effekt, wenn Shader deaktiviert sind." + #~ msgid "Enables filmic tone mapping" #~ msgstr "Aktiviert filmisches Tone-Mapping" @@ -7902,9 +7985,6 @@ msgstr "cURL-Parallel-Begrenzung" #~ "Experimentelle Einstellung, könnte sichtbare Leerräume zwischen\n" #~ "Blöcken verursachen, wenn auf einen Wert größer 0 gesetzt." -#~ msgid "FPS in pause menu" -#~ msgstr "Bildwiederholrate im Pausenmenü" - #~ msgid "FSAA" #~ msgstr "FSAA" @@ -7992,8 +8072,8 @@ msgstr "cURL-Parallel-Begrenzung" #~ msgid "Full screen BPP" #~ msgstr "Vollbildfarbtiefe" -#~ msgid "Game" -#~ msgstr "Spiel" +#~ msgid "GUI scaling filter txr2img" +#~ msgstr "GUI-Skalierungsfilter txr2img" #~ msgid "Gamma" #~ msgstr "Gamma" @@ -8165,666 +8245,674 @@ msgstr "cURL-Parallel-Begrenzung" #~ msgid "Instrumentation" #~ msgstr "Instrumentierung" +#~ msgid "Interval of sending time of day to clients, stated in seconds." +#~ msgstr "" +#~ "Zeitintervall, in dem die Tageszeit an Clients gesendet wird, in Sekunden " +#~ "angegeben." + #~ msgid "Invalid gamespec." #~ msgstr "Ungültige Spielspezifikationen" #~ msgid "Inventory key" #~ msgstr "Inventartaste" +#~ msgid "Irrlicht device:" +#~ msgstr "Irrlicht-Gerät:" + #~ msgid "Jump key" #~ msgstr "Sprungtaste" #~ msgid "" #~ "Key for decreasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste, um die Sichtweite zu reduzieren.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for decreasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zur Reduzierung der Lautstärke.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for digging.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Graben.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for dropping the currently selected item.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Fallenlassen des ausgewählten Gegenstandes.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste, um die Sichtweite zu erhöhen.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zur Erhöhung der Lautstärke.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for jumping.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Springen.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving fast in fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste, um sich schnell im Schnellmodus zu bewegen.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player backward.\n" #~ "Will also disable autoforward, when active.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste, um den Spieler rückwärts zu bewegen.\n" #~ "Wird, wenn aktiviert, auch die Vorwärtsautomatik deaktivieren.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player forward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste, um den Spieler vorwärts zu bewegen.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player left.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste, um den Spieler nach links zu bewegen.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player right.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste, um den Spieler nach rechts zu bewegen.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for muting the game.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste, um das Spiel stumm zu schalten.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste, um das Chat-Fenster zu öffnen, um Kommandos einzugeben.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type local commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste, um das Chat-Fenster zu öffnen, um lokale Befehle einzugeben.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Öffnen des Chat-Fensters.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the inventory.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Öffnen des Inventars.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for placing.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Bauen.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 11th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Auswählen des 11. Gegenstands in der Schnellleiste.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 12th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Auswählen des 12. Gegenstands in der Schnellleiste.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 13th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Auswählen des 13. Gegenstands in der Schnellleiste.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 14th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Auswählen des 14. Gegenstands in der Schnellleiste.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 15th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Auswählen des 15. Gegenstands in der Schnellleiste.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 16th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Auswählen des 16. Gegenstands in der Schnellleiste.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 17th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Auswählen des 16. Gegenstands in der Schnellleiste.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 18th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Auswählen des 18. Gegenstands in der Schnellleiste.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 19th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Auswählen des 19. Gegenstands in der Schnellleiste.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 20th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Auswählen des 20. Gegenstands in der Schnellleiste.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 21st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Auswählen des 21. Gegenstands in der Schnellleiste.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 22nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Auswählen des 22. Gegenstands in der Schnellleiste.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 23rd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Auswählen des 23. Gegenstands in der Schnellleiste.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 24th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Auswählen des 24. Gegenstands in der Schnellleiste.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 25th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Auswählen des 25. Gegenstands in der Schnellleiste.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 26th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Auswählen des 26. Gegenstands in der Schnellleiste.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 27th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Auswählen des 27. Gegenstands in der Schnellleiste.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 28th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Auswählen des 28. Gegenstands in der Schnellleiste.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 29th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Auswählen des 29. Gegenstands in der Schnellleiste.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 30th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Auswählen des 30. Gegenstands in der Schnellleiste.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 31st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Auswählen des 31. Gegenstands in der Schnellleiste.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 32nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Auswählen des 32. Gegenstands in der Schnellleiste.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the eighth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Auswählen des achten Gegenstands in der Schnellleiste.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the fifth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Auswählen des fünften Gegenstands in der Schnellleiste.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the first hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Auswählen des ersten Gegenstands in der Schnellleiste.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the fourth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Auswählen des vierten Gegenstands in der Schnellleiste.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the next item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Auswählen des nächsten Gegenstands in der Schnellleiste.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the ninth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Auswählen des neunten Gegenstands in der Schnellleiste.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the previous item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Auswählen des vorherigen Gegenstands in der Schnellleiste.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the second hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Auswählen des zweiten Gegenstands in der Schnellleiste.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the seventh hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Auswählen des siebten Gegenstands in der Schnellleiste.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the sixth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Auswählen des sechsten Gegenstands in der Schnellleiste.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the tenth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Auswählen des zehnten Gegenstands in der Schnellleiste.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the third hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Auswählen des dritten Gegenstands in der Schnellleiste.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for sneaking.\n" #~ "Also used for climbing down and descending in water if aux1_descends is " #~ "disabled.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Schleichen.\n" #~ "Wird auch zum Runterklettern und das Sinken im Wasser verwendet, falls " #~ "aux1_descends deaktiviert ist.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for switching between first- and third-person camera.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Wechseln der Kamera (Ego- oder Dritte-Person-Perspektive).\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for taking screenshots.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zur Erzeugung von Bildschirmfotos.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling autoforward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Umschalten der automatischen Vorwärtsbewegung.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling cinematic mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Umschalten des Filmmodus.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling display of minimap.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Wechseln der Anzeige der Übersichtskarte.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Umschalten des Schnellmodus.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling flying.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Umschalten des Flugmodus.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling noclip mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Umschalten des Geistmodus.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling pitch move mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Umschalten des Nick-Bewegungsmodus.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the camera update. Only used for development\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Umschalten der Kameraaktualisierung. Nur für die Entwicklung " #~ "benutzt.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of chat.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste, um die Anzeige des Chats umzuschalten.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of debug info.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Umschalten der Anzeige der Debug-Informationen.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of fog.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Umschalten der Anzeige des Nebels.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the HUD.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste, um das HUD zu verbergen oder wieder anzuzeigen.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the large chat console.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste, um die Anzeige der großen Chatkonsole umzuschalten.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the profiler. Used for development.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste zum Umschalten der Profiler-Anzeige. Für die Entwicklung benutzt.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling unlimited view range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste, um die unbegrenzte Sichtweite ein- oder auszuschalten.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key to use view zoom when possible.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Taste, um die Zoom-Ansicht zu verwenden, falls möglich.\n" -#~ "Siehe http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Siehe http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Keybindings. (If this menu screws up, remove stuff from minetest.conf)" #~ msgstr "" -#~ "Steuerung (Falls dieses Menü defekt ist, entfernen Sie Zeugs aus minetest." -#~ "conf)" +#~ "Steuerung (Falls dieses Menü defekt ist, entfernen Sie Zeugs aus " +#~ "minetest.conf)" #~ msgid "Large chat console key" #~ msgstr "Taste für große Chatkonsole" @@ -8897,6 +8985,9 @@ msgstr "cURL-Parallel-Begrenzung" #~ msgid "Menus" #~ msgstr "Menüs" +#~ msgid "Mesh cache" +#~ msgstr "3-D-Modell-Zwischenspeicher" + #~ msgid "Minimap" #~ msgstr "Übersichtskarte" @@ -9119,6 +9210,9 @@ msgstr "cURL-Parallel-Begrenzung" #~ "Minimalwert: 0.001 Sekunden. Maximalwert: 0.2 Sekunden.\n" #~ "(Beachten Sie die englische Notation mit Punkt als Dezimaltrennzeichen.)" +#~ msgid "Shaders" +#~ msgstr "Shader" + #~ msgid "Shaders (experimental)" #~ msgstr "Shader (experimentell)" @@ -9134,6 +9228,16 @@ msgstr "cURL-Parallel-Begrenzung" #~ "Performanz auf\n" #~ "einigen Grafikkarten erhöhen." +#~ msgid "" +#~ "Shaders are a fundamental part of rendering and enable advanced visual " +#~ "effects." +#~ msgstr "" +#~ "Shader sind ein fundamentaler Teil des Renderns und aktivieren erweiterte " +#~ "visuelle Effekte." + +#~ msgid "Shaders are disabled." +#~ msgstr "Shader sind deaktiviert." + #~ msgid "Shadow limit" #~ msgstr "Schattenbegrenzung" @@ -9167,6 +9271,9 @@ msgstr "cURL-Parallel-Begrenzung" #~ msgid "Smooths rotation of camera. 0 to disable." #~ msgstr "Glättet die Rotation der Kamera. 0 zum Ausschalten." +#~ msgid "Sound system is disabled" +#~ msgstr "Tonsystem ist deaktiviert" + #~ msgid "Special" #~ msgstr "Spezial" @@ -9215,6 +9322,12 @@ msgstr "cURL-Parallel-Begrenzung" #~ msgid "This font will be used for certain languages." #~ msgstr "Diese Schrift wird von bestimmten Sprachen benutzt." +#~ msgid "This is not a recommended configuration." +#~ msgstr "Dies ist keine empfohlene Konfiguration." + +#~ msgid "Time send interval" +#~ msgstr "Zeit-Sendeintervall" + #~ msgid "To enable shaders the OpenGL driver needs to be used." #~ msgstr "Um Shader zu aktivieren, muss der OpenGL-Treiber genutzt werden." @@ -9341,6 +9454,19 @@ msgstr "cURL-Parallel-Begrenzung" #~ msgid "Waving water" #~ msgstr "Wasserwellen" +#~ msgid "" +#~ "When gui_scaling_filter_txr2img is true, copy those images\n" +#~ "from hardware to software for scaling. When false, fall back\n" +#~ "to the old scaling method, for video drivers that don't\n" +#~ "properly support downloading textures back from hardware." +#~ msgstr "" +#~ "Falls gui_scaling_filter_txr2img auf „wahr“ gesetzt ist, werden\n" +#~ "diese Bilder von der Hardware zur Software für die Skalierung\n" +#~ "kopiert. Falls es auf „falsch“ gesetzt ist, wird die alte Skalierungs-\n" +#~ "methode angewandt, für Grafiktreiber, welche das\n" +#~ "Herunterladen von Texturen zurück von der Hardware nicht\n" +#~ "korrekt unterstützen." + #~ msgid "" #~ "Whether FreeType fonts are used, requires FreeType support to be compiled " #~ "in.\n" @@ -9354,6 +9480,11 @@ msgstr "cURL-Parallel-Begrenzung" #~ msgid "Whether dungeons occasionally project from the terrain." #~ msgstr "Ob Verliese manchmal aus dem Gelände herausragen." +#~ msgid "" +#~ "Whether node texture animations should be desynchronized per mapblock." +#~ msgstr "" +#~ "Ob Blocktexturanimationen pro Kartenblock desynchronisiert sein sollten." + #~ msgid "Whether to allow players to damage and kill each other." #~ msgstr "Ob sich Spieler gegenseitig Schaden zufügen und töten können." diff --git a/po/dv/luanti.po b/po/dv/luanti.po index d9ef1127e..656dffc26 100644 --- a/po/dv/luanti.po +++ b/po/dv/luanti.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Dhivehi (Minetest)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" "PO-Revision-Date: 2019-11-10 15:04+0000\n" "Last-Translator: Krock \n" "Language-Team: Dhivehi ] [-t]" msgstr "" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "ފުންކޮށް ހޯދާ" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "ބަދަލުކުރޭ" + +#: builtin/common/settings/components.lua +#, fuzzy +msgid "Select directory" +msgstr "މޮޑްގެ ފައިލް އިހްތިޔާރުކުރޭ:" + +#: builtin/common/settings/components.lua +#, fuzzy +msgid "Select file" +msgstr "މޮޑްގެ ފައިލް އިހްތިޔާރުކުރޭ:" + +#: builtin/common/settings/components.lua +#, fuzzy +msgid "Set" +msgstr "އިހްތިޔާރުކުރޭ" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(ސެޓިންގްގެ ތައާރަފެއް ދީފައެއް ނެތް)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "ކެންސަލް" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "ސޭވްކުރޭ" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "ސީޑް" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "އޮފްކޮށްފަ" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "ޖައްސާފަ" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Reset setting to default" +msgstr "ޑިފޯލްޓައަށް ރައްދުކުރޭ" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "ހޯދާ" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "ޓެކްނިކަލް ނަންތައް ދައްކާ" + +#: builtin/common/settings/dlg_settings.lua +msgid "Touchscreen layout" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "pause_menu" +msgstr "ޕޯސް މެނޫގައި އެފް.ޕީ.އެސް" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Client Mods" +msgstr "ދުނިޔެ އިހްތިޔާރު ކުރޭ:" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Content: Games" +msgstr "ގޭމް ހޮސްޓްކުރޭ" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Content: Mods" +msgstr "ސޮޓޯރ ކުލޯޒްކޮށްލާ" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "" + #: builtin/fstk/ui.lua msgid "" msgstr "" @@ -162,7 +408,6 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "" @@ -199,11 +444,6 @@ msgstr "މޮޑްތައް" msgid "No packages could be retrieved" msgstr "" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "" @@ -250,18 +490,6 @@ msgstr "" msgid "Base Game:" msgstr "ގޭމް ހޮސްޓްކުރޭ" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "ކެންސަލް" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -394,6 +622,12 @@ msgstr "$1 $2އަށް ނޭޅުނު" msgid "Unable to install a $1 as a texture pack" msgstr "$1 $2އަށް ނޭޅުނު" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "" @@ -460,12 +694,6 @@ msgstr "ލާޒިމުނޫން ޑިޕެންޑެންސީތައް:" msgid "Optional dependencies:" msgstr "ލާޒިމުނޫން ޑިޕެންޑެންސީތައް:" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "ސޭވްކުރޭ" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "ދުނިޔެ:" @@ -619,11 +847,6 @@ msgstr "" msgid "Sea level rivers" msgstr "" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "ސީޑް" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "" @@ -760,6 +983,23 @@ msgid "" "override any renaming here." msgstr "" +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "ހުރިހާއެއްޗެއް ޖައްސާ" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "" @@ -784,7 +1024,7 @@ msgstr "" msgid "Visit website" msgstr "" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "" @@ -796,231 +1036,6 @@ msgstr "" msgid "Try reenabling public serverlist and check your internet connection." msgstr "ޕަބްލިކް ސާވަރ ލިސްޓު އަލުން ޖައްސަވާ.އަދި އިންޓަނެޓް ކަނެކްޝަން ޗެކްކުރައްވާ." -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "ފުންކޮށް ހޯދާ" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "ބަދަލުކުރޭ" - -#: builtin/mainmenu/settings/components.lua -#, fuzzy -msgid "Select directory" -msgstr "މޮޑްގެ ފައިލް އިހްތިޔާރުކުރޭ:" - -#: builtin/mainmenu/settings/components.lua -#, fuzzy -msgid "Select file" -msgstr "މޮޑްގެ ފައިލް އިހްތިޔާރުކުރޭ:" - -#: builtin/mainmenu/settings/components.lua -#, fuzzy -msgid "Set" -msgstr "އިހްތިޔާރުކުރޭ" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(ސެޓިންގްގެ ތައާރަފެއް ދީފައެއް ނެތް)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "އޮފްކޮށްފަ" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "ޖައްސާފަ" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Reset setting to default" -msgstr "ޑިފޯލްޓައަށް ރައްދުކުރޭ" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "ހޯދާ" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "ޓެކްނިކަލް ނަންތައް ދައްކާ" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Client Mods" -msgstr "ދުނިޔެ އިހްތިޔާރު ކުރޭ:" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Content: Games" -msgstr "ގޭމް ހޮސްޓްކުރޭ" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Content: Mods" -msgstr "ސޮޓޯރ ކުލޯޒްކޮށްލާ" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "ޖައްސާފަ" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "Shaders are disabled." -msgstr "" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "" @@ -1041,10 +1056,6 @@ msgstr "" msgid "Core Team" msgstr "" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "" - #: builtin/mainmenu/tab_about.lua #, fuzzy msgid "Open User Data Directory" @@ -1196,11 +1207,23 @@ msgstr "ގޭމް ހޮސްޓްކުރޭ" msgid "You need to install a game before you can create a world." msgstr "" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "އެންމެ ގަޔާނުވޭ" + #: builtin/mainmenu/tab_online.lua #, fuzzy msgid "Address" msgstr "އެޑްރެސް / ޕޯޓް" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "ދުނިޔެ އިހްތިޔާރު ކުރޭ:" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "ކްރިއޭޓިވް މޯޑް" @@ -1215,6 +1238,11 @@ msgstr "" msgid "Favorites" msgstr "އެންމެ ގަޔާވޭ" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "ގޭމް" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "" @@ -1228,10 +1256,26 @@ msgstr "ގޭމް ހޮސްޓްކުރޭ" msgid "Login" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +msgid "Open server website" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua #, fuzzy msgid "Public Servers" @@ -1317,23 +1361,6 @@ msgid "" "Check debug.txt for details." msgstr "" -#: src/client/game.cpp -msgid "- Mode: " -msgstr "" - -#: src/client/game.cpp -msgid "- Public: " -msgstr "" - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "" - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "" - #: src/client/game.cpp #, fuzzy msgid "A serialization error occurred:" @@ -1344,6 +1371,10 @@ msgstr "މޮޑެއްފަދަ ލުއޭ ސްކްރިޕްޓެއްގައި މައް msgid "Access denied. Reason: %s" msgstr "" +#: src/client/game.cpp +msgid "All debug info hidden" +msgstr "" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "" @@ -1365,6 +1396,10 @@ msgstr "" msgid "Block bounds shown for nearby blocks" msgstr "" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "" @@ -1378,10 +1413,6 @@ msgstr "އަނިޔާވުން ޖައްސާފައި" msgid "Can't show block bounds (disabled by game or mod)" msgstr "" -#: src/client/game.cpp -msgid "Change Password" -msgstr "" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "" @@ -1411,39 +1442,6 @@ msgstr "" msgid "Connection failed for unknown reason" msgstr "" -#: src/client/game.cpp -msgid "Continue" -msgstr "" - -#: src/client/game.cpp -#, fuzzy -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" -"ޑިފޯލްޓް ކޮންޓްޜޯލްތައް:\n" -"މެނޫ ނުފެންނައިރު:\n" -"-އެއްފަހަރު ފިއްތުން: ފިތް އޮންކުރުން\n" -"-ދެފަހަރު ފިއްތުން: ބޭންދުން/ބޭނުންކުރުން\n" -"-އިނގިލި ކާތާލުން: ފަރާތްފަޜާތަށް ބެލުން\n" -"މެނޫ/އިންވެންޓަރީ ފެންނައިރު:\n" -"-ދެ ފަހަރު ފިއްތުން(ބޭރުގަ)\n" -"-->ކްލޯޒްކުރޭ\n" -"-ބަރީގައި އަތްލާފައި ޖާގައިގައި އަތްލުން:\n" -"-->ބަރީގެ ތަން ބަދަލުކުރޭ\n" -"-އަތްލާފައި ދަމާ، ދެވަނަ އިނގިލިން ފިއްތާ:\n" -"-->ޖާގައިގައި އެކަތި ބައިންދާ\n" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1457,31 +1455,15 @@ msgstr "" msgid "Creating server..." msgstr "" -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "" - #: src/client/game.cpp msgid "Debug info shown" msgstr "" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "" - #: src/client/game.cpp #, c-format msgid "Error creating client: %s" msgstr "" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "މެއިން މެނޫ" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "" @@ -1522,18 +1504,6 @@ msgstr "ޖައްސާފަ" msgid "Fog enabled by game or mod" msgstr "" -#: src/client/game.cpp -msgid "Game info:" -msgstr "" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "" - #: src/client/game.cpp msgid "Item definitions..." msgstr "" @@ -1571,14 +1541,6 @@ msgstr "" msgid "Node definitions..." msgstr "" -#: src/client/game.cpp -msgid "Off" -msgstr "" - -#: src/client/game.cpp -msgid "On" -msgstr "" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "" @@ -1591,38 +1553,22 @@ msgstr "" msgid "Profiler graph shown" msgstr "" -#: src/client/game.cpp -msgid "Remote server" -msgstr "" - #: src/client/game.cpp msgid "Resolving address..." msgstr "" -#: src/client/game.cpp -msgid "Respawn" -msgstr "އަލުން ސްޕައުންވޭ" - #: src/client/game.cpp msgid "Shutting down..." msgstr "" -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "" - #: src/client/game.cpp msgid "Sound muted" msgstr "" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "" @@ -1694,18 +1640,116 @@ msgstr "" msgid "Volume changed to %d%%" msgstr "" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "" -#: src/client/game.cpp -msgid "You died" -msgstr "މަރުވީ" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "" + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "" + +#: src/client/game_formspec.cpp +#, fuzzy +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" +"ޑިފޯލްޓް ކޮންޓްޜޯލްތައް:\n" +"މެނޫ ނުފެންނައިރު:\n" +"-އެއްފަހަރު ފިއްތުން: ފިތް އޮންކުރުން\n" +"-ދެފަހަރު ފިއްތުން: ބޭންދުން/ބޭނުންކުރުން\n" +"-އިނގިލި ކާތާލުން: ފަރާތްފަޜާތަށް ބެލުން\n" +"މެނޫ/އިންވެންޓަރީ ފެންނައިރު:\n" +"-ދެ ފަހަރު ފިއްތުން(ބޭރުގަ)\n" +"-->ކްލޯޒްކުރޭ\n" +"-ބަރީގައި އަތްލާފައި ޖާގައިގައި އަތްލުން:\n" +"-->ބަރީގެ ތަން ބަދަލުކުރޭ\n" +"-އަތްލާފައި ދަމާ، ދެވަނަ އިނގިލިން ފިއްތާ:\n" +"-->ޖާގައިގައި އެކަތި ބައިންދާ\n" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "މެއިން މެނޫ" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "އަލުން ސްޕައުންވޭ" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "މަރުވީ" + #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" msgstr "" @@ -2034,7 +2078,7 @@ msgid "Failed to compile the \"%s\" shader." msgstr "$1 ނޭޅުނު" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." +msgid "GLSL is not supported by the driver" msgstr "" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" @@ -2084,7 +2128,7 @@ msgstr "" msgid "Automatic jumping" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "" @@ -2096,7 +2140,7 @@ msgstr "" msgid "Block bounds" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp #, fuzzy msgid "Change camera" msgstr "ފިތްތައް ބަދަލުކުރޭ" @@ -2121,7 +2165,7 @@ msgstr "" msgid "Double tap \"jump\" to toggle fly" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "" @@ -2137,11 +2181,11 @@ msgstr "" msgid "Inc. volume" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "" @@ -2173,7 +2217,7 @@ msgstr "" msgid "Prev. item" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "" @@ -2185,7 +2229,7 @@ msgstr "" msgid "Screenshot" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "" @@ -2193,15 +2237,15 @@ msgstr "" msgid "Toggle HUD" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "" @@ -2209,11 +2253,11 @@ msgstr "" msgid "Toggle fog" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "" @@ -2221,7 +2265,7 @@ msgstr "" msgid "Toggle pitchmove" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "" @@ -2258,7 +2302,7 @@ msgstr "" msgid "Passwords do not match!" msgstr "" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "" @@ -2271,15 +2315,43 @@ msgstr "" msgid "Sound Volume: %d%%" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +msgid "Add button" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Done" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Remove" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp msgid "Joystick" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Toggle debug" msgstr "" @@ -2475,8 +2547,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" #: src/settings_translation_file.cpp @@ -2529,10 +2600,6 @@ msgstr "" msgid "Active object send range" msgstr "" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "" - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2556,6 +2623,16 @@ msgstr "ދުނިޔޭގެ ނަން" msgid "Advanced" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Allow clouds to look 3D instead of flat." +msgstr "" + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "" @@ -2924,14 +3001,14 @@ msgstr "" msgid "Clouds" msgstr "" -#: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." -msgstr "" - #: src/settings_translation_file.cpp msgid "Clouds in menu" msgstr "މެނޫގައި ވިލާތައް" +#: src/settings_translation_file.cpp +msgid "Color depth for post-processing texture" +msgstr "" + #: src/settings_translation_file.cpp msgid "Colored fog" msgstr "" @@ -2954,7 +3031,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" #: src/settings_translation_file.cpp @@ -3090,6 +3167,14 @@ msgstr "" msgid "Debugging" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "" @@ -3241,19 +3326,11 @@ msgid "" "When the 'snowbiomes' flag is enabled, this is ignored." msgstr "" -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Developer Options" msgstr "މޮޑްގެ މައުލޫލާތު:" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "" @@ -3281,6 +3358,14 @@ msgstr "" msgid "Double-tapping the jump key toggles fly mode." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "" @@ -3356,8 +3441,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" #: src/settings_translation_file.cpp @@ -3430,8 +3515,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" #: src/settings_translation_file.cpp @@ -3446,12 +3530,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "" - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -3753,10 +3831,6 @@ msgstr "" msgid "GUI scaling filter" msgstr "" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Gamepads" @@ -3981,12 +4055,6 @@ msgid "" "descending." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -4005,6 +4073,13 @@ msgid "" "empty password." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4099,10 +4174,6 @@ msgstr "" msgid "Interval of saving important changes in the world, stated in seconds." msgstr "" -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "" - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "" @@ -4723,10 +4794,6 @@ msgstr "" msgid "Maximum users" msgstr "" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "" @@ -4759,6 +4826,10 @@ msgstr "" msgid "Minimum limit of random number of small caves per mapchunk." msgstr "" +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "" @@ -4846,9 +4917,10 @@ msgid "" msgstr "" #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" "ކުޅުންތެރިޔާގެ ނަން.\n" @@ -5293,17 +5365,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5500,16 +5574,6 @@ msgstr "" msgid "Shader path" msgstr "" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "" @@ -5670,10 +5734,9 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" #: src/settings_translation_file.cpp @@ -5952,10 +6015,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "" -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "" @@ -6014,6 +6073,10 @@ msgstr "" msgid "Transparency Sorting Distance" msgstr "" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "" @@ -6064,7 +6127,10 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" #: src/settings_translation_file.cpp @@ -6087,16 +6153,14 @@ msgstr "" msgid "Upper Y limit of floatlands." msgstr "" -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "" - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "" #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" #: src/settings_translation_file.cpp @@ -6333,20 +6397,12 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -6357,10 +6413,6 @@ msgid "" "Mods may still set a background." msgstr "" -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -6383,8 +6435,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -6548,11 +6599,9 @@ msgstr "" #~ msgid "Downloading and installing $1, please wait..." #~ msgstr "$1 ޑައުންލޯޑޮކޮށް އިންސްޓޯލްކުރަނީ، މަޑުކުރައްވާ..." -#~ msgid "FPS in pause menu" -#~ msgstr "ޕޯސް މެނޫގައި އެފް.ޕީ.އެސް" - -#~ msgid "Game" -#~ msgstr "ގޭމް" +#, fuzzy +#~ msgid "Enable" +#~ msgstr "ޖައްސާފަ" #, fuzzy #~ msgid "Install: file: \"$1\"" diff --git a/po/el/luanti.po b/po/el/luanti.po index a38aec783..1e98ee9bd 100644 --- a/po/el/luanti.po +++ b/po/el/luanti.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Greek (Minetest)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" "PO-Revision-Date: 2024-01-14 12:31+0000\n" "Last-Translator: RRadler \n" "Language-Team: Greek ] [-t]" msgstr "[all | <εντολή>]" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "Περιήγηση" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "Επεξεργασία" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "Επιλογή φακέλου" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "Επιλογή αρχείου" + +#: builtin/common/settings/components.lua +#, fuzzy +msgid "Set" +msgstr "Επιλογή" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(Δεν δόθηκε περιγραφή της ρύθμισης)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "2D θόρυβος" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "Άκυρο" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "Οκτάβες" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "Αντιστάθμιση" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "Αποθήκευση" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "Κλίμακα" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "Σπόρος" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "Χ εξάπλωση" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "Υ εξάπλωση" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "Ζ εξάπλωση" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "απόλυτη τιμή" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "προεπιλογή" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "Ομαλός Χάρτης" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "Εκκαθάριση" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "Απενεργοποιημένο" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "Ενεργοποιημένο" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "Χωρίς αποτελέσματα" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Reset setting to default" +msgstr "Επαναφορά προεπιλογής" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "Αναζήτηση" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "Εμφάνιση τεχνικών ονομάτων" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Touchscreen layout" +msgstr "Πλήρης οθόνη" + +#: builtin/common/settings/dlg_settings.lua +msgid "pause_menu" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Client Mods" +msgstr "Επιλογή Τροποποιήσεων" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Content: Games" +msgstr "Περιεχόμενο" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Content: Mods" +msgstr "Περιεχόμενο" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "Δυναμικές σκιές" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "Υψηλό" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "Χαμηλό" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "Μεσαίο" + +#: builtin/common/settings/shadows_component.lua +#, fuzzy +msgid "Very High" +msgstr "Εξαιρετικά Υψηλό" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "Πολύ Χαμηλό" + #: builtin/fstk/ui.lua msgid "" msgstr "<κανένα διαθέσιμο>" @@ -166,7 +411,6 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "" @@ -204,11 +448,6 @@ msgstr "Τροποποιήσεις" msgid "No packages could be retrieved" msgstr "Δεν ήταν δυνατή η ανάκτηση πακέτων" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "Χωρίς αποτελέσματα" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "Δεν υπάρχουν ενημερώσεις" @@ -254,18 +493,6 @@ msgstr "Ήδη εγκαταστημένο" msgid "Base Game:" msgstr "Βασικό παιχνίδι:" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "Άκυρο" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -393,6 +620,12 @@ msgstr "Δεν είναι δυνατή η εγκατάσταση του $1 σα msgid "Unable to install a $1 as a texture pack" msgstr "Δεν είναι δυνατή η εγκατάσταση $1 ως πακέτου υφής" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "(Ενεργό, έχει σφάλμα)" @@ -457,12 +690,6 @@ msgstr "Δεν υπάρχουν προαιρετικές εξαρτήσεις" msgid "Optional dependencies:" msgstr "Προαιρετικές εξαρτήσεις:" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "Αποθήκευση" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "Κόσμος:" @@ -614,11 +841,6 @@ msgstr "Ποτάμια" msgid "Sea level rivers" msgstr "Ποτάμια στο επίπεδο της θάλασσας" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "Σπόρος" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "Ομαλή αλλαγή μεταξύ περιοχών" @@ -763,6 +985,23 @@ msgstr "" "Αυτό το modpack έχει ένα ρητό όνομα που δίνεται στο modpack.conf το οποίο θα " "παρακάμψει οποιαδήποτε μετονομασία εδώ." +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "Ενεργοποίηση όλων" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "" @@ -787,7 +1026,7 @@ msgstr "" msgid "Visit website" msgstr "" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "Ρυθμίσεις" @@ -801,231 +1040,6 @@ msgstr "" "Δοκιμάστε να ενεργοποιήσετε ξανά τη δημόσια λίστα διακομιστών και ελέγξτε τη " "σύνδεσή σας στο διαδίκτυο." -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "Περιήγηση" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "Επεξεργασία" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "Επιλογή φακέλου" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "Επιλογή αρχείου" - -#: builtin/mainmenu/settings/components.lua -#, fuzzy -msgid "Set" -msgstr "Επιλογή" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(Δεν δόθηκε περιγραφή της ρύθμισης)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "2D θόρυβος" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "Οκτάβες" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "Αντιστάθμιση" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "Κλίμακα" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "Χ εξάπλωση" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "Υ εξάπλωση" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "Ζ εξάπλωση" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "απόλυτη τιμή" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "προεπιλογή" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "Ομαλός Χάρτης" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "Εκκαθάριση" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "Απενεργοποιημένο" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "Ενεργοποιημένο" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Reset setting to default" -msgstr "Επαναφορά προεπιλογής" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "Αναζήτηση" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "Εμφάνιση τεχνικών ονομάτων" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Client Mods" -msgstr "Επιλογή Τροποποιήσεων" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Content: Games" -msgstr "Περιεχόμενο" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Content: Mods" -msgstr "Περιεχόμενο" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "Ενεργοποιημένο" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Shaders are disabled." -msgstr "Η ενημέρωση κάμερας απενεργοποιήθηκε" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "Δυναμικές σκιές" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "Υψηλό" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "Χαμηλό" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "Μεσαίο" - -#: builtin/mainmenu/settings/shadows_component.lua -#, fuzzy -msgid "Very High" -msgstr "Εξαιρετικά Υψηλό" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "Πολύ Χαμηλό" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "Σχετικά" @@ -1046,10 +1060,6 @@ msgstr "Βασικοί Προγραμματιστές" msgid "Core Team" msgstr "" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "Άνοιγμα Καταλόγου Δεδομένων Χρήστη" @@ -1202,10 +1212,22 @@ msgstr "Εκκίνηση Παιχνιδιού" msgid "You need to install a game before you can create a world." msgstr "Πρέπει να κατεβάσετε ένα παιχνίδι πριν κατεβάσετε κάποια επέκταση" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "Αγαπημένα" + #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "Διεύθυνση" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "Επιλογή Τροποποιήσεων" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "Λειτουργία Δημιουργίας" @@ -1219,6 +1241,11 @@ msgstr "Μάχες μεταξύ παιχτών" msgid "Favorites" msgstr "Αγαπημένα" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "Παιχνίδι" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "Μη συμβατοί διακομιστές" @@ -1231,10 +1258,26 @@ msgstr "Συμμετοχή στο Παιχνίδι" msgid "Login" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +msgid "Open server website" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Public Servers" msgstr "Δημόσιοι Διακομιστές" @@ -1320,23 +1363,6 @@ msgstr "" "\n" "Ελέγξτε το debug.txt για λεπτομέρειες." -#: src/client/game.cpp -msgid "- Mode: " -msgstr "- Λειτουργία: " - -#: src/client/game.cpp -msgid "- Public: " -msgstr "- Δημόσιο: " - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "" - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "- Όνομα Διακομιστή: " - #: src/client/game.cpp #, fuzzy msgid "A serialization error occurred:" @@ -1347,6 +1373,11 @@ msgstr "Παρουσιάστηκε σφάλμα:" msgid "Access denied. Reason: %s" msgstr "Δεν επιτρέπεται η πρόσβαση. Αιτία: %s" +#: src/client/game.cpp +#, fuzzy +msgid "All debug info hidden" +msgstr "Εμφάνιση πληροφοριών εντοπισμού σφαλμάτων" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "Η αυτόματη προώθηση είναι απενεργοποιημένη" @@ -1367,6 +1398,10 @@ msgstr "Εμφανίζονται όρια αποκλεισμού για το τ msgid "Block bounds shown for nearby blocks" msgstr "Εμφανίζονται όρια αποκλεισμού για κοντινά μπλοκ" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "Η ενημέρωση κάμερας απενεργοποιήθηκε" @@ -1382,10 +1417,6 @@ msgstr "" "Δεν είναι δυνατή η εμφάνιση ορίων μπλοκ (χρειάζεται το δικαίωμα " "\"basic_debug\")" -#: src/client/game.cpp -msgid "Change Password" -msgstr "Αλλαγή Κωδικού" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "Η κινηματογραφική λειτουργία απενεργοποιήθηκε" @@ -1414,39 +1445,6 @@ msgstr "Σφάλμα σύνδεσης (λήξη χρόνου;)" msgid "Connection failed for unknown reason" msgstr "Η σύνδεση απέτυχε για άγνωστο λόγο" -#: src/client/game.cpp -msgid "Continue" -msgstr "Συνέχεια" - -#: src/client/game.cpp -#, fuzzy -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" -"Προεπιλεγμένα στοιχεία ελέγχου:\n" -"Δεν εμφανίζεται μενού:\n" -"- ένα πάτημα: κουμπί ενεργοποίησης\n" -"- διπλό πάτημα: θέση/χρήση\n" -"- σύρσιμο δαχτύλου: παρακολούθηση γύρω\n" -"Ορατό μενού/απόθεμα:\n" -"- διπλό πάτημα (εξωτερικό):\n" -" -->κλείσιμο\n" -"- στοίβα αφής, υποδοχή αφής:\n" -" --> μετακίνηση στοίβας\n" -"- άγγιγμα & σύρσιμο, πάτημα του 2ου δαχτύλου\n" -" --> τοποθέτηση μεμονωμένου αντικειμένου στην υποδοχή\n" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1460,33 +1458,15 @@ msgstr "Δημιουργία πελάτη..." msgid "Creating server..." msgstr "Δημιουργία διακομιστή..." -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "Κρυφές πληροφορίες εντοπισμού σφαλμάτων και γράφημα προφίλ" - #: src/client/game.cpp msgid "Debug info shown" msgstr "Εμφάνιση πληροφοριών εντοπισμού σφαλμάτων" -#: src/client/game.cpp -#, fuzzy -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "" -"Απόκρυψη πληροφοριών εντοπισμού σφαλμάτων, γραφήματος προφίλ και wireframe" - #: src/client/game.cpp #, c-format msgid "Error creating client: %s" msgstr "Σφάλμα δημιουργίας πελάτη: %s" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "Έξοδος στο Μενού" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "Έξοδος στο ΛΣ" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "Γρήγορη λειτουργία απενεργοποιημένη" @@ -1526,18 +1506,6 @@ msgstr "Η ομίχλη ενεργοποιήθηκε" msgid "Fog enabled by game or mod" msgstr "Το ζουμ είναι απενεργοποιημένο από το παιχνίδι ή την τροποποίηση" -#: src/client/game.cpp -msgid "Game info:" -msgstr "Πληροφορίες Παιχνιδιού:" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "Το παιχνίδι διακόπηκε" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "Διακομιστής Φιλοξενίας" - #: src/client/game.cpp msgid "Item definitions..." msgstr "Ορισμοί στοιχείων..." @@ -1574,14 +1542,6 @@ msgstr "" msgid "Node definitions..." msgstr "" -#: src/client/game.cpp -msgid "Off" -msgstr "" - -#: src/client/game.cpp -msgid "On" -msgstr "" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "" @@ -1594,39 +1554,22 @@ msgstr "" msgid "Profiler graph shown" msgstr "" -#: src/client/game.cpp -msgid "Remote server" -msgstr "Απομακρυσμένος διακομιστής" - #: src/client/game.cpp msgid "Resolving address..." msgstr "Επίλυση διεύθυνσης..." -#: src/client/game.cpp -#, fuzzy -msgid "Respawn" -msgstr "Επανεμφάνηση" - #: src/client/game.cpp msgid "Shutting down..." msgstr "Τερματισμός Λειτουργίας..." -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "Ένταση Ήχου" - #: src/client/game.cpp msgid "Sound muted" msgstr "Σίγαση Ήχου" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "Το Σύστημα Ήχου είναι απενεργοποιημένο" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "Το Σύστημα Ήχου δεν υποστηρίζεται σε αυτή την έκδοση" @@ -1702,18 +1645,117 @@ msgstr "Το εύρος προβολής άλλαξε σε %d" msgid "Volume changed to %d%%" msgstr "Η ένταση άλλαξε σε %d%%" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "" -#: src/client/game.cpp -msgid "You died" -msgstr "Πέθανες" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "Το ζουμ είναι απενεργοποιημένο από το παιχνίδι ή την τροποποίηση" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "- Λειτουργία: " + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "- Δημόσιο: " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "- Όνομα Διακομιστή: " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "Αλλαγή Κωδικού" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "Συνέχεια" + +#: src/client/game_formspec.cpp +#, fuzzy +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" +"Προεπιλεγμένα στοιχεία ελέγχου:\n" +"Δεν εμφανίζεται μενού:\n" +"- ένα πάτημα: κουμπί ενεργοποίησης\n" +"- διπλό πάτημα: θέση/χρήση\n" +"- σύρσιμο δαχτύλου: παρακολούθηση γύρω\n" +"Ορατό μενού/απόθεμα:\n" +"- διπλό πάτημα (εξωτερικό):\n" +" -->κλείσιμο\n" +"- στοίβα αφής, υποδοχή αφής:\n" +" --> μετακίνηση στοίβας\n" +"- άγγιγμα & σύρσιμο, πάτημα του 2ου δαχτύλου\n" +" --> τοποθέτηση μεμονωμένου αντικειμένου στην υποδοχή\n" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "Έξοδος στο Μενού" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "Έξοδος στο ΛΣ" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "Πληροφορίες Παιχνιδιού:" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "Το παιχνίδι διακόπηκε" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "Διακομιστής Φιλοξενίας" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "Απομακρυσμένος διακομιστής" + +#: src/client/game_formspec.cpp +#, fuzzy +msgid "Respawn" +msgstr "Επανεμφάνηση" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "Ένταση Ήχου" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "Πέθανες" + #: src/client/gameui.cpp #, fuzzy msgid "Chat currently disabled by game or mod" @@ -2049,8 +2091,9 @@ msgid "Failed to compile the \"%s\" shader." msgstr "" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." -msgstr "" +#, fuzzy +msgid "GLSL is not supported by the driver" +msgstr "Το Σύστημα Ήχου δεν υποστηρίζεται σε αυτή την έκδοση" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" #: src/content/mod_configuration.cpp @@ -2098,7 +2141,7 @@ msgstr "" msgid "Automatic jumping" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "" @@ -2110,7 +2153,7 @@ msgstr "" msgid "Block bounds" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "" @@ -2134,7 +2177,7 @@ msgstr "" msgid "Double tap \"jump\" to toggle fly" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "" @@ -2150,11 +2193,11 @@ msgstr "" msgid "Inc. volume" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "" @@ -2186,7 +2229,7 @@ msgstr "Επόμενο αντικείμενο" msgid "Prev. item" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "" @@ -2198,7 +2241,7 @@ msgstr "Δεξιά" msgid "Screenshot" msgstr "Στιγμιότυπο οθόνης" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "" @@ -2206,15 +2249,15 @@ msgstr "" msgid "Toggle HUD" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "" @@ -2222,11 +2265,11 @@ msgstr "" msgid "Toggle fog" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "" @@ -2234,7 +2277,7 @@ msgstr "" msgid "Toggle pitchmove" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "Μεγέθυνση" @@ -2270,7 +2313,7 @@ msgstr "Παλιός Κωδικός" msgid "Passwords do not match!" msgstr "" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "Έξοδος" @@ -2283,15 +2326,45 @@ msgstr "Σε σίγαση" msgid "Sound Volume: %d%%" msgstr "Sound Volume: %d%%" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +msgid "Add button" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "Έτοιμο!" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Remove" +msgstr "Απομακρυσμένος διακομιστής" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp msgid "Joystick" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Toggle debug" msgstr "" @@ -2490,8 +2563,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" #: src/settings_translation_file.cpp @@ -2544,10 +2616,6 @@ msgstr "" msgid "Active object send range" msgstr "" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "" - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2571,6 +2639,16 @@ msgstr "Όνομα κόσμου" msgid "Advanced" msgstr "Για προχωρημένους" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Allow clouds to look 3D instead of flat." +msgstr "" + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "" @@ -2941,11 +3019,11 @@ msgid "Clouds" msgstr "Σύννεφα" #: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." +msgid "Clouds in menu" msgstr "" #: src/settings_translation_file.cpp -msgid "Clouds in menu" +msgid "Color depth for post-processing texture" msgstr "" #: src/settings_translation_file.cpp @@ -2970,7 +3048,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" #: src/settings_translation_file.cpp @@ -3105,6 +3183,14 @@ msgstr "" msgid "Debugging" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "" @@ -3256,19 +3342,11 @@ msgid "" "When the 'snowbiomes' flag is enabled, this is ignored." msgstr "" -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Developer Options" msgstr "Διακοσμήσεις" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "" @@ -3296,6 +3374,14 @@ msgstr "" msgid "Double-tapping the jump key toggles fly mode." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "" @@ -3371,8 +3457,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" #: src/settings_translation_file.cpp @@ -3445,8 +3531,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" #: src/settings_translation_file.cpp @@ -3461,12 +3546,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "" - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -3770,10 +3849,6 @@ msgstr "" msgid "GUI scaling filter" msgstr "" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Gamepads" @@ -3998,12 +4073,6 @@ msgid "" "descending." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -4022,6 +4091,13 @@ msgid "" "empty password." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4116,10 +4192,6 @@ msgstr "" msgid "Interval of saving important changes in the world, stated in seconds." msgstr "" -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "" - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "" @@ -4736,10 +4808,6 @@ msgstr "" msgid "Maximum users" msgstr "" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "" @@ -4772,6 +4840,10 @@ msgstr "" msgid "Minimum limit of random number of small caves per mapchunk." msgstr "" +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "" @@ -4863,7 +4935,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" @@ -5307,17 +5379,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5514,16 +5588,6 @@ msgstr "" msgid "Shader path" msgstr "" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "" @@ -5686,10 +5750,9 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" #: src/settings_translation_file.cpp @@ -5968,10 +6031,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "" -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "" @@ -6033,6 +6092,10 @@ msgstr "" msgid "Transparency Sorting Distance" msgstr "" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "" @@ -6083,7 +6146,10 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" #: src/settings_translation_file.cpp @@ -6106,16 +6172,14 @@ msgstr "" msgid "Upper Y limit of floatlands." msgstr "" -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "" - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "" #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" #: src/settings_translation_file.cpp @@ -6353,20 +6417,12 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -6377,10 +6433,6 @@ msgid "" "Mods may still set a background." msgstr "" -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -6403,8 +6455,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -6606,6 +6657,14 @@ msgstr "Παράλληλο όριο cURL" #~ msgid "Credits" #~ msgstr "Μνείες" +#~ msgid "Debug info and profiler graph hidden" +#~ msgstr "Κρυφές πληροφορίες εντοπισμού σφαλμάτων και γράφημα προφίλ" + +#, fuzzy +#~ msgid "Debug info, profiler graph, and wireframe hidden" +#~ msgstr "" +#~ "Απόκρυψη πληροφοριών εντοπισμού σφαλμάτων, γραφήματος προφίλ και wireframe" + #~ msgid "Disabled unlimited viewing range" #~ msgstr "Απενεργοποιημένο το απεριόριστο εύρος προβολής" @@ -6619,12 +6678,13 @@ msgstr "Παράλληλο όριο cURL" #~ msgid "Dynamic shadows:" #~ msgstr "Δυναμικές σκιές: " +#, fuzzy +#~ msgid "Enable" +#~ msgstr "Ενεργοποιημένο" + #~ msgid "Fancy Leaves" #~ msgstr "Φανταχτερά Φύλλα" -#~ msgid "Game" -#~ msgstr "Παιχνίδι" - #, fuzzy #~ msgid "Hide: Temporary Settings" #~ msgstr "Ρυθμίσεις" @@ -6676,9 +6736,16 @@ msgstr "Παράλληλο όριο cURL" #~ msgid "Screen:" #~ msgstr "Οθόνη:" +#, fuzzy +#~ msgid "Shaders are disabled." +#~ msgstr "Η ενημέρωση κάμερας απενεργοποιήθηκε" + #~ msgid "Simple Leaves" #~ msgstr "Απλά Φύλλα" +#~ msgid "Sound system is disabled" +#~ msgstr "Το Σύστημα Ήχου είναι απενεργοποιημένο" + #~ msgid "Special key" #~ msgstr "Ειδικό πλήκτρο" diff --git a/po/eo/luanti.po b/po/eo/luanti.po index e2e7eaa38..5e9766149 100644 --- a/po/eo/luanti.po +++ b/po/eo/luanti.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: Esperanto (Minetest)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" -"PO-Revision-Date: 2024-10-08 00:16+0000\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" +"PO-Revision-Date: 2024-12-27 21:05+0000\n" "Last-Translator: Hugo \n" "Language-Team: Esperanto \n" @@ -12,7 +12,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.8-dev\n" +"X-Generator: Weblate 5.10-dev\n" #: builtin/client/chatcommands.lua msgid "Clear the out chat queue" @@ -79,6 +79,249 @@ msgstr "" msgid "[all | ] [-t]" msgstr "[all | ]" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "Foliumi" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "Redakti" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "Elekti dosierujon" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "Elekti dosieron" + +#: builtin/common/settings/components.lua +msgid "Set" +msgstr "Agordi" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(Neniu priskribo de agordo estas donita)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "2d-a bruo" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "Nuligi" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "Interspacoj" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "Oktavoj" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "Deŝovo" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "Persisteco" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "Konservi" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "Skalo" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "Fontnombro" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "X-disiĝo" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "Y-disiĝo" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "Z-disiĝo" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "absoluta valoro" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "normoj" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "faciligita" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "(The game will need to enable automatic exposure as well)" +msgstr "(La ludo bezonos ŝalti ankaŭ ombrojn)" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "(The game will need to enable bloom as well)" +msgstr "(La ludo bezonos ŝalti ankaŭ ombrojn)" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "(La ludo bezonos ŝalti ankaŭ ombrojn)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "(Uzu lingvon de la sistemo)" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "Faciluzo" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "Babilo" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "Vakigo" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "Stirado" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "Malŝaltita" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "Ŝaltita" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "Ĝenerale" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "Moviĝo" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "Neniuj rezultoj" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default" +msgstr "Reagordi al implicita valoro" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "Reagordi al implicita valoro ($1)" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "Serĉi" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "Montri porspertulajn agordojn" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "Montri teĥnikajn nomojn" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Touchscreen layout" +msgstr "Sojlo de tuŝekrano" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "pause_menu" +msgstr "Kadroj sekunde en paŭza menuo" + +#: builtin/common/settings/settingtypes.lua +msgid "Client Mods" +msgstr "Klientaj modifaĵoj" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "Enhavo: Ludoj" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "Enhavo: Modifaĵoj" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "(La ludo bezonos ŝalti ankaŭ ombrojn)" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "Propra" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "Dinamikaj ombroj" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "Alta" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "Malalta" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "Mezalta" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "Altegaj" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "Malaltega" + #: builtin/fstk/ui.lua msgid "" msgstr "" @@ -160,11 +403,10 @@ msgstr "Elŝutante $1…" #: builtin/mainmenu/content/dlg_contentdb.lua msgid "All" -msgstr "" +msgstr "Ĉiuj" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "Reeniri" @@ -201,11 +443,6 @@ msgstr "Modifaĵoj" msgid "No packages could be retrieved" msgstr "Neniun pakaĵon sukcesis ricevi" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "Neniuj rezultoj" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "Neniuj ĝisdatigoj" @@ -251,18 +488,6 @@ msgstr "Jam instalita" msgid "Base Game:" msgstr "Baza Ludo:" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "Nuligi" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -389,6 +614,12 @@ msgstr "Ne povas instali «$1» kiel «$2»" msgid "Unable to install a $1 as a texture pack" msgstr "Malsukcesis instali $1 kiel teksturaron" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "(Ebligita, havas eraron)" @@ -454,12 +685,6 @@ msgstr "Neniuj malnepraj dependaĵoj" msgid "Optional dependencies:" msgstr "Malnepraj dependaĵoj:" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "Konservi" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "Mondo:" @@ -611,11 +836,6 @@ msgstr "Riveroj" msgid "Sea level rivers" msgstr "Marnivelaj riveroj" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "Fontnombro" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "Glatigi transiron inter klimatoj" @@ -761,6 +981,23 @@ msgstr "" "Ĉi tiu modifaĵaro havas malimplican nomon en sia dosiero modpack.conf, kiu " "transpasos ĉiun alinomon ĉi tiean." +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "Ŝalti ĉiujn" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "Nova versio de $1 disponeblas" @@ -789,7 +1026,7 @@ msgstr "Neniam" msgid "Visit website" msgstr "Vizitu retejon" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "Agordoj" @@ -802,228 +1039,6 @@ msgid "Try reenabling public serverlist and check your internet connection." msgstr "" "Provu reŝalti la publikan liston de serviloj kaj kontroli vian retkonekton." -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "Foliumi" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "Redakti" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "Elekti dosierujon" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "Elekti dosieron" - -#: builtin/mainmenu/settings/components.lua -msgid "Set" -msgstr "Agordi" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(Neniu priskribo de agordo estas donita)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "2d-a bruo" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "Interspacoj" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "Oktavoj" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "Deŝovo" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "Persisteco" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "Skalo" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "X-disiĝo" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "Y-disiĝo" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "Z-disiĝo" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "absoluta valoro" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "normoj" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "faciligita" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable automatic exposure as well)" -msgstr "(La ludo bezonos ŝalti ankaŭ ombrojn)" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable bloom as well)" -msgstr "(La ludo bezonos ŝalti ankaŭ ombrojn)" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "(La ludo bezonos ŝalti ankaŭ ombrojn)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "(Uzu lingvon de la sistemo)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "Faciluzo" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "Babilo" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "Vakigo" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "Stirado" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "Malŝaltita" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "Ŝaltita" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "Ĝenerale" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "Moviĝo" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default" -msgstr "Reagordi al implicita valoro" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "Reagordi al implicita valoro ($1)" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "Serĉi" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "Montri porspertulajn agordojn" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "Montri teĥnikajn nomojn" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "Klientaj modifaĵoj" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "Enhavo: Ludoj" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "Enhavo: Modifaĵoj" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "Ŝaltita" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Shaders are disabled." -msgstr "Ĝisdatigo de vidpunkto malŝaltita" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "(La ludo bezonos ŝalti ankaŭ ombrojn)" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "Propra" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "Dinamikaj ombroj" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "Alta" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "Malalta" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "Mezalta" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "Altegaj" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "Malaltega" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "Pri" @@ -1044,10 +1059,6 @@ msgstr "Kernprogramistoj" msgid "Core Team" msgstr "Ĉefaj zorgantoj" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "Irrlicht aparato:" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "Malfermi dosierujon de datenoj de uzanto" @@ -1199,10 +1210,22 @@ msgstr "Ekigi ludon" msgid "You need to install a game before you can create a world." msgstr "Vi devos instali ludon antaŭ vi povos instali modifaĵon" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "Forigi el preferataj" + #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "Adreso" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "Kliento" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "Krea reĝimo" @@ -1216,6 +1239,11 @@ msgstr "Vundado / LkL" msgid "Favorites" msgstr "Preferataj" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "Ludo" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "Neakordaj serviloj" @@ -1228,10 +1256,28 @@ msgstr "Aliĝi al ludo" msgid "Login" msgstr "Saluti" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Number of mods: $1" +msgstr "Nombro da mondestigaj fadenoj" + +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Open server website" +msgstr "Dediĉita servila paŝo" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "Retprokrasto" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Public Servers" msgstr "Publikaj serviloj" @@ -1316,23 +1362,6 @@ msgstr "" "\n" "Rigardu dosieron debug.txt por detaloj." -#: src/client/game.cpp -msgid "- Mode: " -msgstr "– Reĝimo: " - -#: src/client/game.cpp -msgid "- Public: " -msgstr "– Publika: " - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "– LkL: " - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "– Nomo de servilo: " - #: src/client/game.cpp msgid "A serialization error occurred:" msgstr "Eraris datumformado:" @@ -1342,6 +1371,11 @@ msgstr "Eraris datumformado:" msgid "Access denied. Reason: %s" msgstr "Aliro malakceptiĝis. Kialo: %s" +#: src/client/game.cpp +#, fuzzy +msgid "All debug info hidden" +msgstr "Erarserĉaj informoj montritaj" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "Memaga pluigo malŝaltita" @@ -1362,6 +1396,10 @@ msgstr "Monderlimoj montritaj por nuna mondero" msgid "Block bounds shown for nearby blocks" msgstr "Monderlimoj montritaj por proksimaj monderoj" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "Ĝisdatigo de vidpunkto malŝaltita" @@ -1374,10 +1412,6 @@ msgstr "Ĝisdatigo de vidpunkto ŝaltita" msgid "Can't show block bounds (disabled by game or mod)" msgstr "Ne povas montri monderlimojn (malŝaltita de ludo aŭ modifaĵo)" -#: src/client/game.cpp -msgid "Change Password" -msgstr "Ŝanĝi pasvorton" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "Glita vidpunkto malŝaltita" @@ -1406,39 +1440,6 @@ msgstr "Konekta eraro (ĉu eltempiĝo?)" msgid "Connection failed for unknown reason" msgstr "Konekto malsukcesis pro nekonata kialo" -#: src/client/game.cpp -msgid "Continue" -msgstr "Daŭrigi" - -#: src/client/game.cpp -#, fuzzy -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" -"Implicita stirado:\n" -"Senmenue:\n" -"- tiri: rigardi ĉirkaŭen\n" -"- tuŝeti: meti/uzi\n" -"- longe tuŝeti: fosi/frapi/uzi\n" -"Menue/portaĵuje:\n" -"- dufoje tuŝeti (ekstere):\n" -" -->fermi\n" -"- tuŝi portaĵaron, tuŝi portaĵingon:\n" -" --> movi portaĵaron\n" -"- tuŝi kaj tiri, tuŝeti per dua fingro\n" -" --> meti unu portaĵon en portaĵingon\n" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1452,31 +1453,15 @@ msgstr "Kreante klienton…" msgid "Creating server..." msgstr "Kreante servilon…" -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "Erarserĉaj informoj kaj profilila grafikaĵo kaŝitaj" - #: src/client/game.cpp msgid "Debug info shown" msgstr "Erarserĉaj informoj montritaj" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "Erarserĉaj informoj, profilila grafikaĵo, kaj dratostaro kaŝitaj" - #: src/client/game.cpp #, c-format msgid "Error creating client: %s" msgstr "Eraris kreado de kliento: %s" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "Eliri al menuo" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "Eliri al operaciumo" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "Rapidega reĝimo malŝaltita" @@ -1514,18 +1499,6 @@ msgstr "Nebulo ŝaltita" msgid "Fog enabled by game or mod" msgstr "Zomado nuntempe malŝaltita de ludo aŭ modifaĵo" -#: src/client/game.cpp -msgid "Game info:" -msgstr "Ludaj informoj:" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "Ludo paŭzigita" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "Gastiganta servile" - #: src/client/game.cpp msgid "Item definitions..." msgstr "Objektaj difinoj…" @@ -1562,14 +1535,6 @@ msgstr "Trapasa reĝimo ŝaltita (mankas rajto «trapasi»)" msgid "Node definitions..." msgstr "Monderaj difinoj…" -#: src/client/game.cpp -msgid "Off" -msgstr "For" - -#: src/client/game.cpp -msgid "On" -msgstr "Ek" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "Celilsekva reĝimo malŝaltita" @@ -1582,38 +1547,22 @@ msgstr "Celilsekva reĝimo ŝaltita" msgid "Profiler graph shown" msgstr "Profilila grafikaĵo montrita" -#: src/client/game.cpp -msgid "Remote server" -msgstr "Fora servilo" - #: src/client/game.cpp msgid "Resolving address..." msgstr "Serĉante adreson…" -#: src/client/game.cpp -msgid "Respawn" -msgstr "Renaskiĝi" - #: src/client/game.cpp msgid "Shutting down..." msgstr "Malŝaltiĝante…" -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "Ludo por unu" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "Laŭteco" - #: src/client/game.cpp msgid "Sound muted" msgstr "Silentigite" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "Sonsistemo estas malŝaltita" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "Sonsistemo ne estas subtenata de ĉi tiu muntaĵo" @@ -1689,18 +1638,116 @@ msgstr "Vidodistanco agordita al %d, sed limigas ĝin al %d ludo aŭ modifaĵo" msgid "Volume changed to %d%%" msgstr "Laŭteco agordita al %d%%" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "Dratostaro montrita" -#: src/client/game.cpp -msgid "You died" -msgstr "Vi mortis" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "Zomado nuntempe malŝaltita de ludo aŭ modifaĵo" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "– Reĝimo: " + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "– Publika: " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "– LkL: " + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "– Nomo de servilo: " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "Ŝanĝi pasvorton" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "Daŭrigi" + +#: src/client/game_formspec.cpp +#, fuzzy +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" +"Implicita stirado:\n" +"Senmenue:\n" +"- tiri: rigardi ĉirkaŭen\n" +"- tuŝeti: meti/uzi\n" +"- longe tuŝeti: fosi/frapi/uzi\n" +"Menue/portaĵuje:\n" +"- dufoje tuŝeti (ekstere):\n" +" -->fermi\n" +"- tuŝi portaĵaron, tuŝi portaĵingon:\n" +" --> movi portaĵaron\n" +"- tuŝi kaj tiri, tuŝeti per dua fingro\n" +" --> meti unu portaĵon en portaĵingon\n" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "Eliri al menuo" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "Eliri al operaciumo" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "Ludaj informoj:" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "Ludo paŭzigita" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "Gastiganta servile" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "For" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "Ek" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "Fora servilo" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "Renaskiĝi" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "Laŭteco" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "Vi mortis" + #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" msgstr "Babilado nun estas malŝaltita de ludo aŭ modifaĵo" @@ -2028,8 +2075,9 @@ msgid "Failed to compile the \"%s\" shader." msgstr "Malsukcesis malfermi retpaĝon" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." -msgstr "" +#, fuzzy +msgid "GLSL is not supported by the driver" +msgstr "Sonsistemo ne estas subtenata de ĉi tiu muntaĵo" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" #: src/content/mod_configuration.cpp @@ -2080,7 +2128,7 @@ msgstr "Memirado" msgid "Automatic jumping" msgstr "Memaga saltado" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "Help1" @@ -2092,7 +2140,7 @@ msgstr "Malantaŭen" msgid "Block bounds" msgstr "Monderlimoj" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "Ŝanĝi vidpunkton" @@ -2116,7 +2164,7 @@ msgstr "Mallaŭtigi" msgid "Double tap \"jump\" to toggle fly" msgstr "Dufoje tuŝetu salton por baskuligi flugan reĝimon" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "Lasi" @@ -2132,11 +2180,11 @@ msgstr "Pligrandigi vidodistancon" msgid "Inc. volume" msgstr "Plilaŭtigi" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "Portujo" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "Salti" @@ -2168,7 +2216,7 @@ msgstr "Sekva portaĵo" msgid "Prev. item" msgstr "Antaŭa portaĵo" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "Ŝanĝi vidodistancon" @@ -2180,7 +2228,7 @@ msgstr "Dekstren" msgid "Screenshot" msgstr "Ekrankopio" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "Kaŝiri" @@ -2188,15 +2236,15 @@ msgstr "Kaŝiri" msgid "Toggle HUD" msgstr "Baskuligi travidan fasadon" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "Baskuligi babilan protokolon" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "Baskuligi rapidegan reĝimon" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "Baskuligi flugan reĝimon" @@ -2204,11 +2252,11 @@ msgstr "Baskuligi flugan reĝimon" msgid "Toggle fog" msgstr "Baskuligi nebulon" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "Baskuligi mapeton" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "Baskuligi trapasan reĝimon" @@ -2216,7 +2264,7 @@ msgstr "Baskuligi trapasan reĝimon" msgid "Toggle pitchmove" msgstr "Baskuligi celilsekvadon" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "Zomo" @@ -2253,7 +2301,7 @@ msgstr "Malnova pasvorto" msgid "Passwords do not match!" msgstr "Pasvortoj ne kongruas!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "Foriri" @@ -2266,16 +2314,47 @@ msgstr "Silentigita" msgid "Sound Volume: %d%%" msgstr "Laŭteco: %d%%" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Add button" +msgstr "Meza butono" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "Finite!" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Remove" +msgstr "Fora servilo" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Joystick" msgstr "Identigilo de stirstango" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Toggle debug" msgstr "Baskuligi nebulon" @@ -2501,8 +2580,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" "Subteno de 3d-a vido.\n" "Nun subtenataj:\n" @@ -2566,10 +2644,6 @@ msgstr "Aktiva amplekso de monderoj" msgid "Active object send range" msgstr "Aktiva senda amplekso de objektoj" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "Aldonas partiklojn ĉe fosado de mondero." - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "Alĝustigi trovitan ekran-densecon, por aligrandigi la fasadon." @@ -2597,6 +2671,17 @@ msgstr "Nomo de administranto" msgid "Advanced" msgstr "Specialaj" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +#, fuzzy +msgid "Allow clouds to look 3D instead of flat." +msgstr "Uzi 3d-ajn nubojn anstataŭ ebenajn." + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "Permesas al likvaĵoj esti travideblaj." @@ -2996,14 +3081,14 @@ msgstr "Nuba duondiametro" msgid "Clouds" msgstr "Nuboj" -#: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." -msgstr "Nuboj fariĝas klient-flanke." - #: src/settings_translation_file.cpp msgid "Clouds in menu" msgstr "Nuboj en ĉefmenuo" +#: src/settings_translation_file.cpp +msgid "Color depth for post-processing texture" +msgstr "" + #: src/settings_translation_file.cpp msgid "Colored fog" msgstr "Kolora nebulo" @@ -3027,7 +3112,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" "Diskomita listo de etikedoj, kies havantojn kaŝi en la datena deponejo.\n" "«nonfree» povas identigi kaj kaŝi pakaĵojn, kiuj ne estas liberaj laŭ la " @@ -3197,6 +3282,14 @@ msgstr "Erarserĉa protokola nivelo" msgid "Debugging" msgstr "Erarserĉado" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "Dediĉita servila paŝo" @@ -3369,18 +3462,10 @@ msgstr "" "Dezertoj estiĝas kiam «np_biome» superas ĉi tiun valoron.\n" "Kiam la nova klimata sistemo aktivas, ĉi tio estas malatentata." -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "Malsamtempigi bildmovon de monderoj" - #: src/settings_translation_file.cpp msgid "Developer Options" msgstr "Elektebloj por programistoj" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "Fosaj partikloj" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "Malpermesi malplenajn pasvortojn" @@ -3408,6 +3493,14 @@ msgstr "Duoble premu salto-klavon por flugi" msgid "Double-tapping the jump key toggles fly mode." msgstr "Duobla premo de salto-klavo baskulas flugan reĝimon." +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "Ŝuti la erarserĉajn informojn de «mapgen»." @@ -3492,9 +3585,10 @@ msgstr "" "konduton de la homa okulo." #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" "Ŝaltas kolorajn ombrojn.\n" "Pro ĉi tio, tralumeblaj monderoj metas kolorajn ombrojn.\n" @@ -3581,10 +3675,10 @@ msgstr "" "Ekzemple: 0 por nenioma balanciĝo, 1.0 por normala, 2.0 por duobla." #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" "Ŝalti/malŝalti ruladon de IPv6-a servilo.\n" "Ignorita, se «bind_address» estas agordita.\n" @@ -3606,13 +3700,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "Ŝaltas movbildojn en portaĵujo." -#: src/settings_translation_file.cpp -#, fuzzy -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "Ŝaltas kaŝmemoradon de maŝoj turnitaj per «facedir»." - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -3949,10 +4036,6 @@ msgstr "Skalo de grafika fasado" msgid "GUI scaling filter" msgstr "Skala filtrilo de grafika interfaco" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "Skala filtrilo de grafika interfaco txr2img" - #: src/settings_translation_file.cpp #, fuzzy msgid "Gamepads" @@ -4218,15 +4301,6 @@ msgid "" msgstr "" "Ŝaltite, klavo «uzi» estas uzata anstataŭ klavo «kaŝiri» por malsupreniro." -#: src/settings_translation_file.cpp -#, fuzzy -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" -"Ŝalti konfirmon de registriĝo dum konekto al servilo.\n" -"Se ĝi estas malŝaltita, nova konto registriĝos memage." - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -4250,6 +4324,16 @@ msgid "" "empty password." msgstr "Malebligas konekton kun malplena pasvorto." +#: src/settings_translation_file.cpp +#, fuzzy +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" +"Ŝalti konfirmon de registriĝo dum konekto al servilo.\n" +"Se ĝi estas malŝaltita, nova konto registriĝos memage." + #: src/settings_translation_file.cpp #, fuzzy msgid "" @@ -4368,11 +4452,6 @@ msgstr "Ekzameni la metodojn de estoj je registriĝo." msgid "Interval of saving important changes in the world, stated in seconds." msgstr "Periodo inter konservo de gravaj ŝanĝoj en la mondo, sekunde." -#: src/settings_translation_file.cpp -#, fuzzy -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "Periodo inter sendoj de tagtempo al klientoj." - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "Bildmovado de portaĵoj en portaĵujo" @@ -5095,10 +5174,6 @@ msgstr "" msgid "Maximum users" msgstr "Maksimuma nombro da uzantoj" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "Maŝa kaŝmemoro" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "Tagmesaĝo" @@ -5132,6 +5207,10 @@ msgstr "Minimuma limo de hazarda nombro de grandaj kavernoj en mondoparto." msgid "Minimum limit of random number of small caves per mapchunk." msgstr "Minimuma limo de hazarda nombro de malgrandaj kavernoj unu mondoparto." +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "Etmapigo" @@ -5230,9 +5309,10 @@ msgstr "" "- La malnepraj fluginsuloj de v7 (implicite malŝaltitaj)." #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" "Nomo de la ludanto.\n" @@ -5765,17 +5845,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -6011,16 +6093,6 @@ msgstr "" msgid "Shader path" msgstr "Indiko al ombrigiloj" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "Ombrigiloj" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Shadow filter quality" @@ -6207,10 +6279,9 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" #: src/settings_translation_file.cpp @@ -6577,10 +6648,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "Tagtempo kiam nova mondo ekas, en hormilonoj (0–23999)." -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "Intervalo de sendado de tempaj informoj" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "Rapido de tempo" @@ -6650,6 +6717,10 @@ msgstr "Netralumeblaj fluidoj" msgid "Transparency Sorting Distance" msgstr "" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "Bruo de arboj" @@ -6698,12 +6769,16 @@ msgid "Undersampling" msgstr "Subspecimenado" #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Undersampling is similar to using a lower screen resolution, but it applies\n" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" "Subspecimenado similas uzon de malgranda ekrana distingumo, sed ĝi nur\n" "efektivas en la ludo, lasante la fasadon senŝanĝa.\n" @@ -6729,17 +6804,15 @@ msgstr "Supra Y-limo de forgeskeloj." msgid "Upper Y limit of floatlands." msgstr "Supra Y-limo de fluginsuloj." -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "Uzi 3d-ajn nubojn anstataŭ ebenajn." - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "Uzi moviĝantajn nubojn por la fono de la ĉefmenuo." #: src/settings_translation_file.cpp #, fuzzy -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "Uzi neizotropan filtradon vidante teksturojn deflanke." #: src/settings_translation_file.cpp @@ -7004,25 +7077,14 @@ msgstr "" "programaro (ekz. «render-to-texture» por monderoj en portaĵujo)." #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" -"Kiam veras «gui_scaling_filter_txr2img», kopii la bildojn\n" -"de aparataro al programaro por skalado. Kiam malveras, repaŝu\n" -"al la malnova metodo de skalado, por vid-peliloj, kiuj ne subtenas\n" -"bone elŝutadon de teksturoj de la aparataro." - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -7045,10 +7107,6 @@ msgstr "" "Ĉu implicite montri fonojn de nometikedoj.\n" "Modifaĵoj malgraŭ tio povas agordi fonojn." -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "Ĉu teksturaj movbildoj de monderoj malsamtempiĝu en ĉiu mondopeco." - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -7074,9 +7132,9 @@ msgid "Whether to fog out the end of the visible area." msgstr "Ĉu nebuli finon de la videbla areo." #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -7267,6 +7325,9 @@ msgstr "Samtempa limo de cURL" #~ "Lasu ĝin malplena por komenci lokan servilon.\n" #~ "La adresa kampo en la ĉefmenuo transpasas ĉi tiun agordon." +#~ msgid "Adds particles when digging a node." +#~ msgstr "Aldonas partiklojn ĉe fosado de mondero." + #~ msgid "" #~ "Adjust dpi configuration to your screen (non X11/Android only) e.g. for " #~ "4k screens." @@ -7398,6 +7459,9 @@ msgstr "Samtempa limo de cURL" #~ msgid "Clean transparent textures" #~ msgstr "Puraj travideblaj teksturoj" +#~ msgid "Clouds are a client-side effect." +#~ msgstr "Nuboj fariĝas klient-flanke." + #~ msgid "Command key" #~ msgstr "Komanda klavo" @@ -7491,9 +7555,15 @@ msgstr "Samtempa limo de cURL" #~ msgid "Darkness sharpness" #~ msgstr "Akreco de mallumo" +#~ msgid "Debug info and profiler graph hidden" +#~ msgstr "Erarserĉaj informoj kaj profilila grafikaĵo kaŝitaj" + #~ msgid "Debug info toggle key" #~ msgstr "Baskula klavo de erarserĉaj informoj" +#~ msgid "Debug info, profiler graph, and wireframe hidden" +#~ msgstr "Erarserĉaj informoj, profilila grafikaĵo, kaj dratostaro kaŝitaj" + #~ msgid "Dec. volume key" #~ msgstr "Mallaŭtiga klavo" @@ -7556,9 +7626,15 @@ msgstr "Samtempa limo de cURL" #~ "difinoj\n" #~ "Y de supra limo de lafo en grandaj kavernoj." +#~ msgid "Desynchronize block animation" +#~ msgstr "Malsamtempigi bildmovon de monderoj" + #~ msgid "Dig key" #~ msgstr "Klavo por fosi" +#~ msgid "Digging particles" +#~ msgstr "Fosaj partikloj" + #~ msgid "Disable anticheat" #~ msgstr "Malŝalti senartifikigon" @@ -7583,6 +7659,10 @@ msgstr "Samtempa limo de cURL" #~ msgid "Dynamic shadows:" #~ msgstr "Dinamikaj ombroj:" +#, fuzzy +#~ msgid "Enable" +#~ msgstr "Ŝaltita" + #~ msgid "Enable VBO" #~ msgstr "Ŝalti VBO(Vertex Buffer Object)" @@ -7617,6 +7697,12 @@ msgstr "Samtempa limo de cURL" #~ "aŭ estiĝi memage.\n" #~ "Bezonas ŝaltitajn ombrigilojn." +#, fuzzy +#~ msgid "" +#~ "Enables caching of facedir rotated meshes.\n" +#~ "This is only effective with shaders disabled." +#~ msgstr "Ŝaltas kaŝmemoradon de maŝoj turnitaj per «facedir»." + #~ msgid "Enables minimap." #~ msgstr "Ŝaltas mapeton." @@ -7656,9 +7742,6 @@ msgstr "Samtempa limo de cURL" #~ "Prova elekteblo; povas estigi videblajn spacojn inter monderoj\n" #~ "je nombro super 0." -#~ msgid "FPS in pause menu" -#~ msgstr "Kadroj sekunde en paŭza menuo" - #~ msgid "FSAA" #~ msgstr "FSAA(glatigo/anti-aliasing)" @@ -7743,8 +7826,8 @@ msgstr "Samtempa limo de cURL" #~ msgid "Full screen BPP" #~ msgstr "Kolornombro tutekrane" -#~ msgid "Game" -#~ msgstr "Ludo" +#~ msgid "GUI scaling filter txr2img" +#~ msgstr "Skala filtrilo de grafika interfaco txr2img" #~ msgid "Gamma" #~ msgstr "Helĝustigo" @@ -7906,659 +7989,666 @@ msgstr "Samtempa limo de cURL" #~ msgid "Instrumentation" #~ msgstr "Ekzamenado" +#, fuzzy +#~ msgid "Interval of sending time of day to clients, stated in seconds." +#~ msgstr "Periodo inter sendoj de tagtempo al klientoj." + #~ msgid "Invalid gamespec." #~ msgstr "Nevalida ludspecifo." #~ msgid "Inventory key" #~ msgstr "Klavo de portaĵujo" +#~ msgid "Irrlicht device:" +#~ msgstr "Irrlicht aparato:" + #~ msgid "Jump key" #~ msgstr "Salta klavo" #~ msgid "" #~ "Key for decreasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por malkreskigi la vidan distancon.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for decreasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por malkreskigi la laŭtecon.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for digging.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por fosi.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for dropping the currently selected item.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por demeti la elektitan portaĵon.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por kreskigi la vidan distancon.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por kreskigi la laŭtecon.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for jumping.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por salti.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving fast in fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por moviĝi rapide en rapida reĝimo.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player backward.\n" #~ "Will also disable autoforward, when active.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por movi la ludanton reen.\n" #~ "Aktivigo ankaŭ malŝaltos memiradon.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player forward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por movi la ludanton pluen.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player left.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por movi la ludanton maldekstren.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player right.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por movi la ludantan dekstren.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for muting the game.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por silentigi la ludon.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por malfermi la babilan fenestron por entajpi komandojn.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type local commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por malfermi la babilan fenestron por entajpi lokajn komandojn.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por malfermi la babilan fenestron.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the inventory.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por malfermi la portaĵujon.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for placing.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por meti.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 11th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por elekti 11-an portaĵingon en la fulmobreto.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 12th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por elekti 12-an portaĵingon en la fulmobreto.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 13th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por elekti 13-an portaĵingon en la fulmobreto.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 14th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por elekti 14-an portaĵingon en la fulmobreto.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 15th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por elekti 15-an portaĵingon en la fulmobreto.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 16th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por elekti 16-an portaĵingon en la fulmobreto.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 17th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por elekti 17-an portaĵingon en la fulmobreto.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 18th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por elekti 18-an portaĵingon en la fulmobreto.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 19th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por elekti 19-an portaĵingon en la fulmobreto.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 20th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por elekti 20-an portaĵingon en la fulmobreto.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 21st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por elekti 21-an portaĵingon en la fulmobreto.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 22nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por elekti 22-an portaĵingon en la fulmobreto.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 23rd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por elekti 23-an portaĵingon en la fulmobreto.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 24th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por elekti 24-an portaĵingon en la fulmobreto.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 25th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por elekti 25-an portaĵingon en la fulmobreto.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 26th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por elekti 26-an portaĵingon en la fulmobreto.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 27th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por elekti 27-an portaĵingon en la fulmobreto.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 28th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por elekti 28-an portaĵingon en la fulmobreto.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 29th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por elekti 29-an portaĵingon en la fulmobreto.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 30th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por elekti 30-an portaĵingon en la fulmobreto.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 31st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por elekti 31-an portaĵingon en la fulmobreto.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 32nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por elekti 32-an portaĵingon en la fulmobreto.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the eighth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por elekti okan portaĵingon en la fulmobreto.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the fifth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por elekti kvinan portaĵingon en la fulmobreto.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the first hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por elekti unuan portaĵingon en la fulmobreto.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the fourth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por elekti kvaran portaĵingon en la fulmobreto.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the next item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por elekti sekvan portaĵon en la fulmobreto.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the ninth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por elekti naŭan portaĵingon en la fulmobreto.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the previous item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por elekti antaŭan portaĵon en la fulmobreto.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the second hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por elekti duan portaĵingon en la fulmobreto.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the seventh hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por elekti sepan portaĵingon en la fulmobreto.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the sixth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por elekti sesan portaĵingon en la fulmobreto.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the tenth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por elekti dekan portaĵingon en la fulmobreto.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the third hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por elekti trian portaĵingon en la fulmobreto.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for sneaking.\n" #~ "Also used for climbing down and descending in water if aux1_descends is " #~ "disabled.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por kaŝirado.\n" #~ "Ankaŭ uzata por malsupreniro kaj malsuprennaĝo se ‹aux1_descends› estas " #~ "malŝaltita.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for switching between first- and third-person camera.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Baskula klavo por unua kaj tria vidpunktoj.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for taking screenshots.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por ekrankopiado.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling autoforward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Baskula klavo por memirado.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling cinematic mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Baskula klavo por glita vidpunkto.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling display of minimap.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Baskula klavo por mapeto.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Baskula klavo por rapida reĝimo.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling flying.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Baskula klavo por flugado.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling noclip mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Baskula klavo por trapasa reĝimo.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling pitch move mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Baskula klavo por celilsekva reĝimo.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the camera update. Only used for development\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Baskula klavo por vidpunkta ĝisdatigo. Nur uzata por evoluigado.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of chat.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Baskula klavo por montri babilon.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of debug info.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Baskula klavo por montri erarserĉajn informojn.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of fog.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Baskula klavo por montri nebulon.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the HUD.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Baskula klavo por montri la travidan fasadon.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the large chat console.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Baskula klavo por montri grandan babilan konzolon.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the profiler. Used for development.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Baskula klavo por montri la profililon. Uzu programante.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling unlimited view range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Baskula klavo por senlima vido.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key to use view zoom when possible.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klavo por zomi vidon kiam tio eblas.\n" -#~ "Vidu http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vidu http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Keybindings. (If this menu screws up, remove stuff from minetest.conf)" @@ -8624,6 +8714,9 @@ msgstr "Samtempa limo de cURL" #~ msgid "Menus" #~ msgstr "Menuoj" +#~ msgid "Mesh cache" +#~ msgstr "Maŝa kaŝmemoro" + #~ msgid "Minimap" #~ msgstr "Mapeto" @@ -8827,6 +8920,9 @@ msgstr "Samtempa limo de cURL" #~ msgid "Server / Singleplayer" #~ msgstr "Servilo / Ludo por unu" +#~ msgid "Shaders" +#~ msgstr "Ombrigiloj" + #~ msgid "Shaders (experimental)" #~ msgstr "Ombrigiloj (eksperimentaj)" @@ -8843,6 +8939,10 @@ msgstr "Samtempa limo de cURL" #~ "je kelkaj vidkartoj.\n" #~ "Ĉi tio funkcias nur kun la bildiga internaĵo de «OpenGL»." +#, fuzzy +#~ msgid "Shaders are disabled." +#~ msgstr "Ĝisdatigo de vidpunkto malŝaltita" + #~ msgid "Shadow limit" #~ msgstr "Limo por ombroj" @@ -8874,6 +8974,9 @@ msgstr "Samtempa limo de cURL" #~ msgid "Smooths rotation of camera. 0 to disable." #~ msgstr "Glitigas turnadon de la vidpunkto. 0 por malŝalti." +#~ msgid "Sound system is disabled" +#~ msgstr "Sonsistemo estas malŝaltita" + #~ msgid "Special" #~ msgstr "Speciala" @@ -8913,6 +9016,9 @@ msgstr "Samtempa limo de cURL" #~ msgid "This font will be used for certain languages." #~ msgstr "Tiu ĉi tiparo uziĝos por iuj lingvoj." +#~ msgid "Time send interval" +#~ msgstr "Intervalo de sendado de tempaj informoj" + #~ msgid "To enable shaders the OpenGL driver needs to be used." #~ msgstr "Por uzi ombrigilojn, OpenGL-pelilo estas necesa." @@ -9017,6 +9123,17 @@ msgstr "Samtempa limo de cURL" #~ msgid "Waving water" #~ msgstr "Ondanta akvo" +#~ msgid "" +#~ "When gui_scaling_filter_txr2img is true, copy those images\n" +#~ "from hardware to software for scaling. When false, fall back\n" +#~ "to the old scaling method, for video drivers that don't\n" +#~ "properly support downloading textures back from hardware." +#~ msgstr "" +#~ "Kiam veras «gui_scaling_filter_txr2img», kopii la bildojn\n" +#~ "de aparataro al programaro por skalado. Kiam malveras, repaŝu\n" +#~ "al la malnova metodo de skalado, por vid-peliloj, kiuj ne subtenas\n" +#~ "bone elŝutadon de teksturoj de la aparataro." + #~ msgid "" #~ "Whether FreeType fonts are used, requires FreeType support to be compiled " #~ "in.\n" @@ -9026,6 +9143,10 @@ msgstr "Samtempa limo de cURL" #~ "FreeType.\n" #~ "Malŝaltite, ĉi tio anstataŭe uzigas tiparojn bitbildajn kaj XML-vektorajn." +#~ msgid "" +#~ "Whether node texture animations should be desynchronized per mapblock." +#~ msgstr "Ĉu teksturaj movbildoj de monderoj malsamtempiĝu en ĉiu mondopeco." + #~ msgid "Whether to allow players to damage and kill each other." #~ msgstr "Ĉu permesi al ludantoj vundi kaj mortigi unu la alian." diff --git a/po/es/luanti.po b/po/es/luanti.po index 52fe9aaaf..5349a6e41 100644 --- a/po/es/luanti.po +++ b/po/es/luanti.po @@ -2,9 +2,9 @@ msgid "" msgstr "" "Project-Id-Version: Spanish (Minetest)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" -"PO-Revision-Date: 2024-11-10 00:00+0000\n" -"Last-Translator: gallegonovato \n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" +"PO-Revision-Date: 2025-02-14 12:19+0000\n" +"Last-Translator: Miguel \n" "Language-Team: Spanish \n" "Language: es\n" @@ -12,7 +12,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.8.2\n" +"X-Generator: Weblate 5.10\n" #: builtin/client/chatcommands.lua msgid "Clear the out chat queue" @@ -77,6 +77,244 @@ msgstr "" msgid "[all | ] [-t]" msgstr "[all | ] [-t]" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "Explorar" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "Editar" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "Seleccionar carpeta" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "Seleccionar archivo" + +#: builtin/common/settings/components.lua +msgid "Set" +msgstr "Establecer" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(Ninguna descripción de ajuste dada)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "Ruido 2D" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "Cancelar" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "Lagunaridad" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "Octavas" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "Compensado" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "Persistencia" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "Guardar" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "Escala" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "Semilla" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "Propagación X" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "Propagación Y" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "Propagación Z" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "Valor absoluto" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "Predeterminados" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "Suavizado" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "(El juego necesitará habilitar la exposición automática también)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "(El juego necesitará habilitar el efecto de bloom también)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "(El juego también deberá habilitar la iluminación volumétrica)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "(Usar idioma del sistema)" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "Accesibilidad" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "Automático" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "Chat" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "Limpiar" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "Controles" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "Desactivado" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "Activado" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "General" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "Movimiento" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "Sin resultados" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default" +msgstr "Reiniciar la configuración por defecto" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "Reiniciar la configuración por defecto ($1)" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "Buscar" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "Mostrar configuraciones avanzadas" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "Mostrar los nombres técnicos" + +#: builtin/common/settings/dlg_settings.lua +msgid "Touchscreen layout" +msgstr "Diseño de pantalla táctil" + +#: builtin/common/settings/dlg_settings.lua +msgid "pause_menu" +msgstr "pause_menu" + +#: builtin/common/settings/settingtypes.lua +msgid "Client Mods" +msgstr "Mods de cliente" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "Contenido: Juegos" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "Contenido: Mods" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "(El juego necesitará habilitar las sombras también)" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "Personalizado" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "Sombras dinámicas" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "Alto" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "Bajo" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "Medio" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "Muy Alto" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "Muy Bajo" + #: builtin/fstk/ui.lua msgid "" msgstr "" @@ -163,7 +401,6 @@ msgstr "Todo" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "Atrás" @@ -199,11 +436,6 @@ msgstr "Mods" msgid "No packages could be retrieved" msgstr "No se ha podido obtener ningún paquete" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "Sin resultados" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "No hay actualizaciones" @@ -248,18 +480,6 @@ msgstr "Ya está instalado" msgid "Base Game:" msgstr "Juego Base:" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "Cancelar" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -383,6 +603,14 @@ msgstr "Fallo al instalar $1 como $2" msgid "Unable to install a $1 as a texture pack" msgstr "Fallo al instalar $1 como paquete de texturas" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" +"Esta es la lista de clientes conectados a\n" +"$1" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "(Activado, tiene error)" @@ -447,12 +675,6 @@ msgstr "Sin dependencias opcionales" msgid "Optional dependencies:" msgstr "Dependencias opcionales:" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "Guardar" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "Mundo:" @@ -607,11 +829,6 @@ msgstr "Ríos" msgid "Sea level rivers" msgstr "Ríos a nivel de mar" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "Semilla" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "Transición suave entre biomas" @@ -756,6 +973,22 @@ msgstr "" "Éste paquete de mods tiene un nombre explícito dado en su modpack.conf el " "cual sobreescribirá cualquier renombrado desde aquí." +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Expand all" +msgstr "Expandir todo" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "Grupo por prefijo" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "El servidor $1 utiliza un juego llamado $2 y los siguientes mods:" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "El servidor $1 usa los siguientes mods:" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "Una nueva versión de $1 está disponible" @@ -784,7 +1017,7 @@ msgstr "Nunca" msgid "Visit website" msgstr "Visitar el sitio web" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "Ajustes" @@ -798,223 +1031,6 @@ msgstr "" "Intente rehabilitar la lista de servidores públicos y verifique su conexión " "a Internet." -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "Explorar" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "Editar" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "Seleccionar carpeta" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "Seleccionar archivo" - -#: builtin/mainmenu/settings/components.lua -msgid "Set" -msgstr "Establecer" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(Ninguna descripción de ajuste dada)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "Ruido 2D" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "Lagunaridad" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "Octavas" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "Compensado" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "Persistencia" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "Escala" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "Propagación X" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "Propagación Y" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "Propagación Z" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "Valor absoluto" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "Predeterminados" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "Suavizado" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "(El juego necesitará habilitar la exposición automática también)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "(El juego necesitará habilitar el efecto de bloom también)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "(El juego también deberá habilitar la iluminación volumétrica)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "(Usar idioma del sistema)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "Accesibilidad" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "Automático" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "Chat" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "Limpiar" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "Controles" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "Desactivado" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "Activado" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "General" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "Movimiento" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default" -msgstr "Reiniciar la configuración por defecto" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "Reiniciar la configuración por defecto ($1)" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "Buscar" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "Mostrar configuraciones avanzadas" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "Mostrar los nombres técnicos" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "Mods de cliente" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "Contenido: Juegos" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "Contenido: Mods" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "Enable" -msgstr "Habilitar" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "Shaders are disabled." -msgstr "Los Shaders están deshabilitados." - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "Esta no es una configuración recomendada." - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "(El juego necesitará habilitar las sombras también)" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "Personalizado" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "Sombras dinámicas" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "Alto" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "Bajo" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "Medio" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "Muy Alto" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "Muy Bajo" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "Acerca de" @@ -1035,10 +1051,6 @@ msgstr "Desarrolladores Principales" msgid "Core Team" msgstr "Equipo Principal" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "Dispositivo Irrlicht:" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "Abrir Directorio de Datos de Usuario" @@ -1053,11 +1065,11 @@ msgstr "" #: builtin/mainmenu/tab_about.lua msgid "Previous Contributors" -msgstr "Antiguos colaboradores" +msgstr "Antiguos Colaboradores" #: builtin/mainmenu/tab_about.lua msgid "Previous Core Developers" -msgstr "Antiguos desarrolladores principales" +msgstr "Antiguos Desarrolladores Principales" #: builtin/mainmenu/tab_about.lua msgid "Share debug log" @@ -1187,10 +1199,22 @@ msgstr "Empezar juego" msgid "You need to install a game before you can create a world." msgstr "Necesitas instalar un juego antes de poder crear un mundo." +#: builtin/mainmenu/tab_online.lua +msgid "Add favorite" +msgstr "Añadir a favorito" + #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "Dirección" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Clients:\n" +"$1" +msgstr "" +"Clientes:\n" +"$1" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "Creativo" @@ -1198,12 +1222,16 @@ msgstr "Creativo" #. ~ PvP = Player versus Player #: builtin/mainmenu/tab_online.lua msgid "Damage / PvP" -msgstr "Daño / PvP" +msgstr "Daño / JcJ" #: builtin/mainmenu/tab_online.lua msgid "Favorites" msgstr "Favoritos" +#: builtin/mainmenu/tab_online.lua +msgid "Game: $1" +msgstr "Juego: $1" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "Servidores Incompatibles" @@ -1216,17 +1244,38 @@ msgstr "Unirse al juego" msgid "Login" msgstr "Iniciar sesión" +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "Número de mods: $1" + +#: builtin/mainmenu/tab_online.lua +msgid "Open server website" +msgstr "Abrir sitio web del servidor" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "Ping" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" +"Posibles filtros\n" +"game:\n" +"mod:\n" +"player:" + #: builtin/mainmenu/tab_online.lua msgid "Public Servers" msgstr "Servidores Públicos" #: builtin/mainmenu/tab_online.lua msgid "Refresh" -msgstr "Actualizar" +msgstr "Refrescar" #: builtin/mainmenu/tab_online.lua msgid "Remove favorite" @@ -1306,23 +1355,6 @@ msgstr "" "\n" "Revisa debug.txt para más detalles." -#: src/client/game.cpp -msgid "- Mode: " -msgstr "- Modo: " - -#: src/client/game.cpp -msgid "- Public: " -msgstr "- Público: " - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "- PvP: " - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "- Nombre del servidor: " - #: src/client/game.cpp msgid "A serialization error occurred:" msgstr "Ha ocurrido un error de serialización:" @@ -1332,6 +1364,10 @@ msgstr "Ha ocurrido un error de serialización:" msgid "Access denied. Reason: %s" msgstr "Acceso denegado. Razón: %s" +#: src/client/game.cpp +msgid "All debug info hidden" +msgstr "Toda la información de depuración oculta" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "Avance automático desactivado" @@ -1352,6 +1388,10 @@ msgstr "Límites de bloque visibles para el bloque actual" msgid "Block bounds shown for nearby blocks" msgstr "Límites de bloque mostrados para bloques cercanos" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "Cajas delimitadoras mostradas" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "Actualización de la cámara desactivada" @@ -1366,10 +1406,6 @@ msgstr "" "No se puede mostrar los límites del bloque (desactivado por el juego o un " "mod)" -#: src/client/game.cpp -msgid "Change Password" -msgstr "Cambiar contraseña" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "Modo cinematográfico desactivado" @@ -1398,38 +1434,6 @@ msgstr "Error de conexión (¿tiempo agotado?)" msgid "Connection failed for unknown reason" msgstr "La conexión falló por razones desconocidas" -#: src/client/game.cpp -msgid "Continue" -msgstr "Continuar" - -#: src/client/game.cpp -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" -"Controles:\n" -"Sin menús abiertos:\n" -"- deslizar dedo: mirar alrededor\n" -"- toque: colocar/golpear/usar (por defecto)\n" -"- toque largo: cavar/usar (por defecto)\n" -"Menú/inventario abierto:\n" -"- doble toque (exterior):\n" -" --> cerrar\n" -"- tocar pila, tocar ranura\n" -" --> mover pila\n" -"- tocar y arrastrar, tocar 2º dedo\n" -" --> colocar un solo elemento en la ranura\n" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1443,31 +1447,15 @@ msgstr "Creando cliente..." msgid "Creating server..." msgstr "Creando servidor..." -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "Info de depuración y gráfico de perfil ocultos" - #: src/client/game.cpp msgid "Debug info shown" msgstr "Info de depuración mostrada" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "Info de depuración, gráfico de perfil, y 'wireframe' ocultos" - #: src/client/game.cpp #, c-format msgid "Error creating client: %s" msgstr "Error de creación del cliente: %s" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "Salir al menú" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "Salir al SO" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "Modo rápido desactivado" @@ -1504,21 +1492,9 @@ msgstr "Niebla activada" msgid "Fog enabled by game or mod" msgstr "Niebla activada por juego o mod" -#: src/client/game.cpp -msgid "Game info:" -msgstr "Información del juego:" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "Juego pausado" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "Servidor anfitrión" - #: src/client/game.cpp msgid "Item definitions..." -msgstr "Definiciones de objetos..." +msgstr "Definiciones de ítems..." #: src/client/game.cpp msgid "KiB/s" @@ -1552,14 +1528,6 @@ msgstr "Modo 'Noclip' activado (nota: sin privilegio 'noclip')" msgid "Node definitions..." msgstr "Definiciones de nodos..." -#: src/client/game.cpp -msgid "Off" -msgstr "Deshabilitado" - -#: src/client/game.cpp -msgid "On" -msgstr "Habilitado" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "Modo de movimiento de inclinación desactivado" @@ -1572,38 +1540,22 @@ msgstr "Modo de movimiento de inclinación activado" msgid "Profiler graph shown" msgstr "Gráfico de monitorización visible" -#: src/client/game.cpp -msgid "Remote server" -msgstr "Servidor remoto" - #: src/client/game.cpp msgid "Resolving address..." msgstr "Resolviendo dirección..." -#: src/client/game.cpp -msgid "Respawn" -msgstr "Reaparecer" - #: src/client/game.cpp msgid "Shutting down..." msgstr "Cerrando..." -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "Un jugador" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "Volumen del sonido" - #: src/client/game.cpp msgid "Sound muted" msgstr "Sonido silenciado" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "El sistema de sonido está desactivado" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "El sistema de sonido no está soportado en esta \"build\"" @@ -1680,18 +1632,115 @@ msgstr "" msgid "Volume changed to %d%%" msgstr "Volumen cambiado a %d%%" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "El controlador de vídeo no admite la estructura alámbrica" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "Estructura alámbrica visible" -#: src/client/game.cpp -msgid "You died" -msgstr "Has muerto" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "El zoom está actualmente desactivado por el juego o un mod" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "- Modo: " + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "- Público: " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "- JcJ: " + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "- Nombre del servidor: " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "Cambiar contraseña" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "Continuar" + +#: src/client/game_formspec.cpp +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" +"Controles:\n" +"Sin menús abiertos:\n" +"- deslizar dedo: mirar alrededor\n" +"- toque: colocar/golpear/usar (por defecto)\n" +"- toque largo: cavar/usar (por defecto)\n" +"Menú/inventario abierto:\n" +"- doble toque (exterior):\n" +" --> cerrar\n" +"- tocar pila, tocar ranura\n" +" --> mover pila\n" +"- tocar y arrastrar, tocar 2º dedo\n" +" --> colocar un solo ítem en la ranura\n" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "Salir al menú" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "Salir al SO" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "Información del juego:" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "Juego pausado" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "Servidor anfitrión" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "Deshabilitado" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "Habilitado" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "Servidor remoto" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "Reaparecer" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "Volumen del sonido" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "Has muerto" + #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" msgstr "Chat deshabilitado por el juego o un mod" @@ -2018,8 +2067,8 @@ msgid "Failed to compile the \"%s\" shader." msgstr "Fallo al compilar el shader \"%s\"." #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." -msgstr "Los shaders están activados pero el driver no soporta GLSL." +msgid "GLSL is not supported by the driver" +msgstr "El controlador no admite GLSL" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" #: src/content/mod_configuration.cpp @@ -2070,7 +2119,7 @@ msgstr "Auto-avance" msgid "Automatic jumping" msgstr "Salto automático" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "Aux1" @@ -2082,7 +2131,7 @@ msgstr "Atrás" msgid "Block bounds" msgstr "Límites de bloque" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "Cambiar cámara" @@ -2106,7 +2155,7 @@ msgstr "Bajar volumen" msgid "Double tap \"jump\" to toggle fly" msgstr "Pulsar dos veces \"saltar\" para volar" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "Tirar" @@ -2122,11 +2171,11 @@ msgstr "Inc. rango" msgid "Inc. volume" msgstr "Subir volumen" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "Inventario" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "Saltar" @@ -2152,13 +2201,13 @@ msgstr "Silenciar" #: src/gui/guiKeyChangeMenu.cpp msgid "Next item" -msgstr "Siguiente" +msgstr "Siguiente ítem" #: src/gui/guiKeyChangeMenu.cpp msgid "Prev. item" -msgstr "Anterior" +msgstr "Ítem anterior" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "Seleccionar distancia" @@ -2170,35 +2219,35 @@ msgstr "Derecha" msgid "Screenshot" msgstr "Captura de pantalla" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" -msgstr "Caminar" +msgstr "Agacharse" #: src/gui/guiKeyChangeMenu.cpp msgid "Toggle HUD" msgstr "Alternar el HUD" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "Alternar el registro del chat" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" -msgstr "Activar rápido" +msgstr "Alternar rápido" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" -msgstr "Activar volar" +msgstr "Alternar volar" #: src/gui/guiKeyChangeMenu.cpp msgid "Toggle fog" msgstr "Alternar la niebla" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "Alternar el minimapa" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "Activar noclip" @@ -2206,7 +2255,7 @@ msgstr "Activar noclip" msgid "Toggle pitchmove" msgstr "Alternar inclinación" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "Zoom" @@ -2242,7 +2291,7 @@ msgstr "Contraseña anterior" msgid "Passwords do not match!" msgstr "¡Las contraseñas no coinciden!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "Cerrar" @@ -2255,15 +2304,44 @@ msgstr "Silenciado" msgid "Sound Volume: %d%%" msgstr "Volumen del sonido: %d%%" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +msgid "Add button" +msgstr "Agregar botón" + +#: src/gui/touchscreeneditor.cpp +msgid "Done" +msgstr "Hecho" + +#: src/gui/touchscreeneditor.cpp +msgid "Remove" +msgstr "Eliminar" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "Reiniciar" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" +"Comienza arrastrando un botón para agregarlo. Toca afuera para cancelar." + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "Toca un botón para seleccionarlo. Arrastra un botón para moverlo." + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "Toca afuera para anular la selección." + +#: src/gui/touchscreenlayout.cpp msgid "Joystick" msgstr "Joystick" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "Menú de desborde" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Toggle debug" msgstr "Alternar depuración" @@ -2329,7 +2407,7 @@ msgstr "" #: src/network/clientpackethandler.cpp msgid "The server is running in singleplayer mode. You cannot connect." msgstr "" -"El servidor está funcionando en modo un jugador. No puedes conectarte." +"El servidor está funcionando en modo de un jugador. No puedes conectarte." #: src/network/clientpackethandler.cpp msgid "Too many users" @@ -2501,19 +2579,17 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" "Soporte 3D.\n" "Soportado actualmente:\n" -"- Ninguno (none): sin salida 3D.\n" -"- Anaglifo (anaglyph): 3D en colores cían y magenta.\n" -"- Entrelazado (interlaced): soporte para pantallas con polarización " -"basada en filas impar/par.\n" -"- Arriba-abajo (topbottom): dividir pantalla arriba y abajo.\n" -"- Lado a lado (sidebyside): dividir pantalla lado a lado.\n" -"- Vista cruzada (crossview): visión 3D cruzada.\n" -"Nota: el modo entrelazado requiere que los sombreadores estén activados." +"- Ninguno: sin salida 3D.\n" +"- Anaglifo: 3D en colores cían y magenta.\n" +"- Entrelazado: soporte para pantallas con polarización basada en filas " +"impar/par.\n" +"- Arriba-abajo: dividir pantalla arriba y abajo.\n" +"- Lado a lado: dividir pantalla lado a lado.\n" +"- Vista cruzada: visión 3D cruzada" #: src/settings_translation_file.cpp msgid "" @@ -2570,10 +2646,6 @@ msgstr "Rango de bloque activo" msgid "Active object send range" msgstr "Rango de envío en objetos activos" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "Añade partículas al excavar un nodo." - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2604,6 +2676,20 @@ msgstr "Nombre del administrador" msgid "Advanced" msgstr "Avanzado" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" +"Se fusionarán todos los buffers de malla con menos de este número de " +"vértices\n" +"Durante la representación del mapa. Esto mejora el rendimiento de " +"renderizado." + +#: src/settings_translation_file.cpp +msgid "Allow clouds to look 3D instead of flat." +msgstr "Permitir que las nubes se vean en 3D en lugar de planas." + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "Permite que los líquidos sean traslúcidos." @@ -2666,11 +2752,11 @@ msgstr "Tolerancia al movimiento antitrampas" #: src/settings_translation_file.cpp msgid "Append item name" -msgstr "Añadir nombre de objeto" +msgstr "Añadir nombre de ítem" #: src/settings_translation_file.cpp msgid "Append item name to tooltip." -msgstr "Añadir nombre de objeto a la burbuja informativa." +msgstr "Añadir nombre de ítem a la burbuja informativa." #: src/settings_translation_file.cpp msgid "Apple trees noise" @@ -3010,14 +3096,14 @@ msgstr "Radio de nube" msgid "Clouds" msgstr "Nubes" -#: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." -msgstr "Las nubes son un efecto local." - #: src/settings_translation_file.cpp msgid "Clouds in menu" msgstr "Nubes en el menú" +#: src/settings_translation_file.cpp +msgid "Color depth for post-processing texture" +msgstr "Profundidad de color para la textura post-procesamiento" + #: src/settings_translation_file.cpp msgid "Colored fog" msgstr "Niebla colorida" @@ -3043,7 +3129,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" "Lista de banderas separadas por comas para ocultar en el repositorio de " "contenido.\n" @@ -3052,7 +3138,7 @@ msgstr "" "según lo definido por la Free Software Foundation.\n" "También puedes especificar clasificaciones de contenido.\n" "Estas banderas son independientes de las versiones de Luanti,\n" -"así que consulta una lista completa en https://content.minetest.net/help/" +"así que consulta una lista completa en https://content.luanti.org/help/" "content_flags/" #: src/settings_translation_file.cpp @@ -3216,6 +3302,19 @@ msgstr "Nivel de registro de depuración" msgid "Debugging" msgstr "Depuración" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" +"Decide la profundidad de color de la textura utilizada para la canalización " +"post-procesamiento.\n" +"Reducir esto puede mejorar el rendimiento, pero algunos efectos (por " +"ejemplo, tramado)\n" +"requieren más de 8 bits para trabajar." + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "Intervalo de servidor dedicado" @@ -3395,18 +3494,10 @@ msgstr "" "Los desiertos se producen cuando np_biome supera este valor.\n" "Cuando se activa la bandera de \"snowbiomes\", esto se ignora." -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "Desincronizar la animación de los bloques" - #: src/settings_translation_file.cpp msgid "Developer Options" msgstr "Opciones de desarrollador" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "Partículas de excavación" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "No permitir contraseñas vacías" @@ -3440,6 +3531,19 @@ msgstr "Pulsar dos veces \"saltar\" para volar" msgid "Double-tapping the jump key toggles fly mode." msgstr "Pulsar dos veces \"saltar\" alterna el modo vuelo." +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" +"Dibuja los triángulos clasificados por transparencia agrupados por sus " +"buffers de malla.\n" +"Esto rompe la clasificación de transparencia entre los buffers de malla, " +"pero evita situaciones\n" +"donde la clasificación de transparencia sería muy lenta de lo contrario." + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "Imprimir información de depuración del generador de mapas." @@ -3524,12 +3628,11 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" -"Habilitar las sombras coloreadas.\n" -"Si el valor es verdadero los nodos traslúcidos proyectarán sombras " -"coloreadas. Esta opción usa muchos recursos." +"Habilita las sombras de colores para nodos translúcidos.\n" +"Esto es costoso." #: src/settings_translation_file.cpp msgid "Enable console window" @@ -3554,7 +3657,7 @@ msgstr "Activar seguridad de mods" #: src/settings_translation_file.cpp msgid "Enable mouse wheel (scroll) for item selection in hotbar." msgstr "" -"Habilita la rueda del ratón (Desplazando) para seleccionar los items en la " +"Habilita la rueda del ratón (Desplazando) para seleccionar los ítems en la " "hotbar." #: src/settings_translation_file.cpp @@ -3615,12 +3718,10 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" -"Habilita/deshabilita la ejecución de un servidor IPv6.\n" -"Ignorado si se establece bind_address.\n" -"Necesita habilitar enable_ipv6 para ser activado." +"Activa/desactiva la ejecución de un servidor IPv6.\n" +"Se ignora si bind_address está establecido." #: src/settings_translation_file.cpp msgid "" @@ -3638,16 +3739,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Enables animation of inventory items." -msgstr "Habilita la animación de objetos en el inventario." - -#: src/settings_translation_file.cpp -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "" -"Habilita el almacenamiento en caché de mallas rotadas por dirección de cara." -"\n" -"Esto solo es efectivo con los shaders desactivados." +msgstr "Habilita la animación de ítems en el inventario." #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." @@ -3659,7 +3751,7 @@ msgstr "Activar el desplazamiento suave." #: src/settings_translation_file.cpp msgid "Enables the post processing pipeline." -msgstr "Habilita la canalización para el posprocesamiento." +msgstr "Habilita la canalización posterior al procesamiento." #: src/settings_translation_file.cpp msgid "" @@ -4000,10 +4092,6 @@ msgstr "Escala de IGU" msgid "GUI scaling filter" msgstr "Filtro de escala de IGU" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "Filtro de escala de IGU \"txr2img\"" - #: src/settings_translation_file.cpp msgid "Gamepads" msgstr "Mando de juego" @@ -4268,20 +4356,10 @@ msgid "" "and\n" "descending." msgstr "" -"Si está activada, se utiliza \"Aux1\" en lugar de la tecla \"Sneak\" para " -"bajar y\n" +"Si está activada, se utiliza \"Aux1\" en lugar de la tecla \"Agacharse\" " +"para bajar y\n" "descender." -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" -"Si está activado, el registro de la cuenta es independiente del inicio de " -"sesión en la interfaz de usuario.\n" -"Si está deshabilitado, las cuentas nuevas se registrarán automáticamente al " -"iniciar sesión." - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -4307,6 +4385,17 @@ msgstr "" "Si esta activado, los jugadores no podrán unirse sin contraseña ni cambiar " "la suya por una contraseña vacía." +#: src/settings_translation_file.cpp +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" +"Si está activado, el registro de la cuenta es independiente del inicio de " +"sesión en la interfaz de usuario.\n" +"Si está desactivado, la conexión a un servidor registrará automáticamente " +"una nueva cuenta." + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4436,14 +4525,9 @@ msgstr "" "Intervalo de guardado de cambios importantes en el mundo, expresado en " "segundos." -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "" -"Intervalo de envío de la hora del día a los clientes, expresado en segundos." - #: src/settings_translation_file.cpp msgid "Inventory items animations" -msgstr "Animaciones de objetos del inventario" +msgstr "Animaciones de ítems del inventario" #: src/settings_translation_file.cpp msgid "Invert mouse" @@ -4452,7 +4536,8 @@ msgstr "Invertir ratón" #: src/settings_translation_file.cpp msgid "Invert mouse wheel (scroll) direction for item selection in hotbar." msgstr "" -"Invierte la rueda del ratón (Desplazando) para seleccionar en la hotbar." +"Invierte la rueda del ratón (Desplazando) para seleccionar ítems en la " +"hotbar." #: src/settings_translation_file.cpp msgid "Invert vertical mouse movement." @@ -4468,7 +4553,7 @@ msgstr "Ruta de la fuente monoespacial cursiva" #: src/settings_translation_file.cpp msgid "Item entity TTL" -msgstr "Tiempo de vida de entidades de objetos" +msgstr "Tiempo de vida de entidades de ítems" #: src/settings_translation_file.cpp msgid "Iterations" @@ -5179,10 +5264,6 @@ msgstr "" msgid "Maximum users" msgstr "Usuarios máximos" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "Caché de mallas poligonales" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "Mensaje del día" @@ -5216,6 +5297,10 @@ msgid "Minimum limit of random number of small caves per mapchunk." msgstr "" "Límite mínimo de número aleatorio de cuevas pequeñas por pedazo de mapa." +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "Recuento mínimo de vértices para buffers de malla" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "Mapeo MIP" @@ -5311,12 +5396,12 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" "Nombre del jugador.\n" -"Cuando se ejecuta un servidor, los clientes que se conecten con este nombre " -"son administradores.\n" +"Al ejecutar un servidor, el cliente que se conecta con este nombre es " +"administrador.\n" "Al comenzar desde el menú principal, esto se anula." #: src/settings_translation_file.cpp @@ -5848,40 +5933,44 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" -"Seleccione el método de antialiasing a aplicar.\n" +"Seleccione el método de suavizado a aplicar.\n" "\n" -"* Ninguno - Sin antialiasing (por defecto)\n" +"* Ninguno - Sin suavizado (por defecto)\n" "\n" -"* FSAA - Antialiasing de pantalla completa por hardware\n" -"(incompatible con Postprocesado y Submuestreo)\n" -"También conocido como antialiasing multimuestra (MSAA)\n" -"Suaviza los bordes de los bloques pero no afecta al interior de las " -"texturas.\n" -"Es necesario reiniciar para cambiar esta opción.\n" +"* FSAA - Suavizado de pantalla completa por hardware\n" +"También conocido como suavizado multimuestra (MSAA)\n" +"Suaviza los bordes de los bloques pero no afecta al interior de las texturas." "\n" -"* FXAA - Antialiasing rápido aproximado (requiere shaders)\n" -"Aplica un filtro de postprocesado para detectar y suavizar los bordes de " +"\n" +"Si el posprocesamiento está desactivado, cambiar FSAA requiere reiniciar.\n" +"Además, si se desactiva el posprocesamiento, FSAA no funcionará con\n" +"submuestreo o una configuración no predeterminada de \"3d_mode\".\n" +"\n" +"* FXAA - Suavizado aproximado rápido\n" +"Aplica un filtro de pos-procesamiento para detectar y suavizar los bordes de " "alto contraste.\n" "Proporciona un equilibrio entre velocidad y calidad de imagen.\n" "\n" -"* SSAA - Antialiasing de supermuestreo (requiere shaders)\n" +"* SSAA - Suavizado de supermuestreo\n" "Renderiza una imagen de mayor resolución de la escena y, a continuación, " -"reduce la escala para reducir los efectos de aliasing.\n" -"los efectos del aliasing. Es el método más lento y preciso." +"reduce la escala para reducir\n" +"los efectos de distorsión. Es el método más lento y preciso." #: src/settings_translation_file.cpp msgid "Selection box border color (R,G,B)." @@ -6129,18 +6218,6 @@ msgstr "" msgid "Shader path" msgstr "Ruta de sombreador" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "Shaders (Sombreador)" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" -"Los Shaders son una parte fundamental del renderizado y permiten efectos " -"visuales avanzados." - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "Calidad del filtro de sombras" @@ -6288,7 +6365,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Sneaking speed" -msgstr "Velocidad al usar sigilo" +msgstr "Velocidad al agacharse" #: src/settings_translation_file.cpp msgid "Sneaking speed, in nodes per second." @@ -6329,23 +6406,21 @@ msgid "" "Note that mods or games may explicitly set a stack for certain (or all) " "items." msgstr "" -"Especifica el tamaño de pila por defecto de nodos, objetos y herramientas.\n" +"Especifica el tamaño de pila por defecto de nodos, ítems y herramientas.\n" "Ten en cuenta que los mods o los juegos pueden establecer explícitamente una " -"pila para ciertos elementos (o para todos)." +"pila para ciertos ítems (o para todos)." #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" "Reparte una actualización completa del mapa de sombras en un número " "determinado de fotogramas.\n" "Los valores más altos pueden hacer que las sombras se retrasen, los valores " "más bajos\n" -"consumirán más recursos.\n" -"Valor mínimo: 1; valor máximo: 16" +"consumirán más recursos." #: src/settings_translation_file.cpp msgid "" @@ -6664,8 +6739,7 @@ msgid "" msgstr "" "El tiempo (en segundos) que la cola de líquidos puede crecer más allá de la " "capacidad de procesamiento\n" -"de procesamiento hasta que se intente reducir su tamaño vertiendo los " -"elementos\n" +"de procesamiento hasta que se intente reducir su tamaño vertiendo los ítems\n" "de la cola. Un valor de 0 desactiva la funcionalidad." #: src/settings_translation_file.cpp @@ -6723,17 +6797,13 @@ msgid "" "Time in seconds for item entity (dropped items) to live.\n" "Setting it to -1 disables the feature." msgstr "" -"Tiempo, en segundos, de vida de las entidades objeto (objetos soltados).\n" +"Tiempo, en segundos, de vida de la entidad ítem (ítems soltados).\n" "Establecerla a -1 desactiva esta característica." #: src/settings_translation_file.cpp msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "Hora del día en que se inicia un nuevo mundo, en milihoras (0-23999)." -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "Intervalo de envío de la hora del día" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "Velocidad del tiempo" @@ -6800,6 +6870,10 @@ msgstr "Líquidos translúcidos" msgid "Transparency Sorting Distance" msgstr "Distancia de Clasificación de Transparencia" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "Grupo de Clasificación de Transparencia por búferes" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "Ruido de árboles" @@ -6858,12 +6932,16 @@ msgid "Undersampling" msgstr "Renderizado" #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Undersampling is similar to using a lower screen resolution, but it applies\n" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" "El submuestreo es similar al uso de una resolución de pantalla más baja, " "pero se aplica\n" @@ -6893,17 +6971,18 @@ msgstr "Límite superior Y de las mazmorras." msgid "Upper Y limit of floatlands." msgstr "Límite superior Y de las tierras flotantes." -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "Usar nubes 3D en lugar de planas." - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "Usar nubes con animaciones para el fondo del menú principal." #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." -msgstr "Usar filtrado anisotrópico al mirar texturas desde un ángulo." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." +msgstr "" +"Usar filtrado anisotrópico al mirar texturas desde un ángulo.\n" +"Esto proporciona una mejora significativa cuando se utiliza junto con el " +"mapeo MIP." #: src/settings_translation_file.cpp msgid "Use bilinear filtering when scaling textures." @@ -7178,25 +7257,14 @@ msgstr "" "inventario)." #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" -"Cuando gui_scaling_filter_txr2img es verdadero, copiar imágenes\n" -"del hardware al software para escalarlas. Cuando es falso,\n" -"vuelve al método de escalado anterior para controladores de video\n" -"que no admiten la descarga de texturas desde el hardware." - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -7224,12 +7292,6 @@ msgstr "" "Mostrar fondos de las etiquetas de forma predeterminada.\n" "Los Mods aún podrían establecer un fondo." -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" -"Si las animaciones de textura de nodo deben desincronizarse por bloque de " -"mapa." - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -7258,17 +7320,15 @@ msgstr "Si se debe nublar el final del área visible." #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" "Si deseas silenciar los sonidos. Puedes activar el sonido en cualquier " -"momento,\n" -"a menos que el sistema de sonido esté desactivado (enable_sound=false).\n" -"En el juego, puedes alternar el estado de silencio con la tecla de silencio " -"o\n" -"usando el menú de pausa." +"momento.\n" +"En el juego, puedes alternar el estado de silencio con la tecla de silenciar " +"o usando el\n" +"menú de pausa." #: src/settings_translation_file.cpp msgid "" @@ -7455,6 +7515,9 @@ msgstr "Límite de cURL en paralelo" #~ "Dejar esto vacío para iniciar un servidor local.\n" #~ "Nótese que el campo de dirección del menú principal anula este ajuste." +#~ msgid "Adds particles when digging a node." +#~ msgstr "Añade partículas al excavar un nodo." + #~ msgid "" #~ "Adjust dpi configuration to your screen (non X11/Android only) e.g. for " #~ "4k screens." @@ -7614,6 +7677,9 @@ msgstr "Límite de cURL en paralelo" #~ msgid "Clean transparent textures" #~ msgstr "Limpiar texturas transparentes" +#~ msgid "Clouds are a client-side effect." +#~ msgstr "Las nubes son un efecto local." + #~ msgid "Command key" #~ msgstr "Tecla comando" @@ -7713,9 +7779,15 @@ msgstr "Límite de cURL en paralelo" #~ msgid "Darkness sharpness" #~ msgstr "Agudeza de la obscuridad" +#~ msgid "Debug info and profiler graph hidden" +#~ msgstr "Info de depuración y gráfico de perfil ocultos" + #~ msgid "Debug info toggle key" #~ msgstr "Tecla alternativa para la información de la depuración" +#~ msgid "Debug info, profiler graph, and wireframe hidden" +#~ msgstr "Info de depuración, gráfico de perfil, y 'wireframe' ocultos" + #~ msgid "Dec. volume key" #~ msgstr "Dec. tecla de volumen" @@ -7769,9 +7841,15 @@ msgstr "Límite de cURL en paralelo" #~ msgid "Del. Favorite" #~ msgstr "Borrar Fav." +#~ msgid "Desynchronize block animation" +#~ msgstr "Desincronizar la animación de los bloques" + #~ msgid "Dig key" #~ msgstr "Tecla Excavar" +#~ msgid "Digging particles" +#~ msgstr "Partículas de excavación" + #~ msgid "Disable anticheat" #~ msgstr "Desactivar Anticheat" @@ -7799,6 +7877,9 @@ msgstr "Límite de cURL en paralelo" #~ msgid "Dynamic shadows:" #~ msgstr "Sombras dinámicas:" +#~ msgid "Enable" +#~ msgstr "Habilitar" + #~ msgid "Enable VBO" #~ msgstr "Activar VBO" @@ -7833,6 +7914,14 @@ msgstr "Límite de cURL en paralelo" #~ "automaticamente.\n" #~ "Requiere habilitar sombreadores." +#~ msgid "" +#~ "Enables caching of facedir rotated meshes.\n" +#~ "This is only effective with shaders disabled." +#~ msgstr "" +#~ "Habilita el almacenamiento en caché de mallas rotadas por dirección de " +#~ "cara.\n" +#~ "Esto solo es efectivo con los shaders desactivados." + #~ msgid "Enables filmic tone mapping" #~ msgstr "Habilita el mapeado de tonos fílmico" @@ -7883,9 +7972,6 @@ msgstr "Límite de cURL en paralelo" #~ "Opción experimental, puede causar espacios visibles entre los\n" #~ "bloques si se le da un valor mayor a 0." -#~ msgid "FPS in pause menu" -#~ msgstr "FPS (cuadros/s) en el menú de pausa" - #~ msgid "FSAA" #~ msgstr "FSAA" @@ -7973,8 +8059,8 @@ msgstr "Límite de cURL en paralelo" #~ msgid "Full screen BPP" #~ msgstr "Profundidad de color en pantalla completa" -#~ msgid "Game" -#~ msgstr "Juego" +#~ msgid "GUI scaling filter txr2img" +#~ msgstr "Filtro de escala de IGU \"txr2img\"" #~ msgid "Gamma" #~ msgstr "Gamma" @@ -8145,668 +8231,676 @@ msgstr "Límite de cURL en paralelo" #~ msgid "Instrumentation" #~ msgstr "Instrumentación" +#~ msgid "Interval of sending time of day to clients, stated in seconds." +#~ msgstr "" +#~ "Intervalo de envío de la hora del día a los clientes, expresado en " +#~ "segundos." + #~ msgid "Invalid gamespec." #~ msgstr "Juego especificado no válido." #~ msgid "Inventory key" #~ msgstr "Tecla Inventario" +#~ msgid "Irrlicht device:" +#~ msgstr "Dispositivo Irrlicht:" + #~ msgid "Jump key" #~ msgstr "Tecla Saltar" #~ msgid "" #~ "Key for decreasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para disminuir la distancia de visión.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for decreasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para disminuir el volumen.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for digging.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para cavar.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for dropping the currently selected item.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para eliminar el elemento seleccionado actualmente.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para aumentar la distancia de visión.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para incrementar el volumen.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for jumping.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para saltar.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving fast in fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para moverse rápido en modo rápido.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player backward.\n" #~ "Will also disable autoforward, when active.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para desplazar el jugador hacia atrás.\n" #~ "Cuando esté activa, También desactivará el desplazamiento automático " #~ "hacia adelante.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player forward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para mover el jugador hacia delante.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player left.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para desplazar el jugador hacia la izquierda.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player right.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para desplazar el jugador hacia la derecha.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for muting the game.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para silenciar el juego.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para abrir la ventana de chat y escribir comandos.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type local commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para abrir la ventana de chat y escribir comandos.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para abrir la ventana de chat.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the inventory.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para abrir la ventana de chat.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for placing.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para colocar.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 11th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar el elemento 11 en la barra de acceso directo.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 12th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar el elemento 12 en la barra de acceso directo.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 13th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar el elemento 13 en la barra de acceso directo.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 14th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar el decimocuarto elemento en la barra de acceso " #~ "directo.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 15th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar el decimoquinto elemento en la barra de acceso " #~ "directo.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 16th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar el elemento 16 en la barra de acceso directo.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 17th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar el elemento 17 en la barra de acceso directo.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 18th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar el elemento 18 en la barra de acceso directo.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 19th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar el elemento 19 en la barra de acceso directo.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 20th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar el elemento 20 en la barra de acceso directo.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 21st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar el elemento 21 en la barra de acceso directo.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 22nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar el elemento 22 en la barra de acceso directo.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 23rd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar el elemento 23 en la barra de acceso directo.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 24th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar el elemento 24 en la barra de acceso directo.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 25th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar el elemento 25 en la barra de acceso directo.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 26th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar el elemento 26 en la barra de acceso directo.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 27th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar el elemento 27 en la barra de acceso directo.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 28th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar el elemento 28 en la barra de acceso directo.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 29th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar el elemento 29 en la barra de acceso directo.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 30th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar el elemento 30 en la barra de acceso directo.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 31st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar el elemento 31 en la barra de acceso directo.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 32nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar el elemento 32 en la barra de acceso directo.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the eighth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar el octavo elemento en la barra de acceso directo.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the fifth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar el quinto elemento en la barra de acceso directo.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the first hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar el primer elemento en la barra de acceso directo.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the fourth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar el cuarto elemento en la barra de acceso directo.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the next item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar el siguiente elemento en la barra de acceso " #~ "directo.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the ninth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar el noveno elemento en la barra de acceso directo.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the previous item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar el siguiente elemento en la barra de acceso " #~ "directo.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the second hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar el segundo elemento en la barra de acceso " #~ "directo.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the seventh hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar el septimo elemento en la barra de acceso " #~ "directo.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the sixth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar el sexto elemento en la barra de acceso directo.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the tenth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar el decimo elemento en la barra de acceso directo.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the third hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar el tercer elemento en la barra de acceso directo.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for sneaking.\n" #~ "Also used for climbing down and descending in water if aux1_descends is " #~ "disabled.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para agacharse.\n" #~ "También utilizada para escalar hacia abajo y hundirse en agua si " #~ "aux1_descends está deshabilitado.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for switching between first- and third-person camera.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para alternar entre cámar en primera y tercera persona.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for taking screenshots.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para tomar capturas de pantalla.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling autoforward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla activar/desactivar el avance automatico.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling cinematic mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para activar/desactivar el modo cinemático.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling display of minimap.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para activar/desactivar la vista del minimapa.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para activar/desactivar el modo veloz.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling flying.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para activar/desactivar el vuelo.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling noclip mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para activar/desactivar el modo noclip.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling pitch move mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla activar/desactivar el modo de inclinacion.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the camera update. Only used for development\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para activar/desactivar la actualización de la cámara. Solo usada " #~ "para desarrollo\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of chat.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para activar/desactivar el chat.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of debug info.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para activar/desactivar la visualización de información de " #~ "depuración.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of fog.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para activar/desactivar visualización de niebla.\n" -#~ "Véase http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Véase http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the HUD.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para activar/desactivar la visualización del HUD.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the large chat console.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para activar/desactivar la consola de chat larga.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the profiler. Used for development.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para activar/desactivar el perfilador. Usado para desarrollo.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling unlimited view range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para activar/desactivar rango de vista ilimitado.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key to use view zoom when possible.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para hacer zoom cuando sea posible.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Keybindings. (If this menu screws up, remove stuff from minetest.conf)" @@ -8879,6 +8973,9 @@ msgstr "Límite de cURL en paralelo" #~ msgid "Menus" #~ msgstr "Menús" +#~ msgid "Mesh cache" +#~ msgstr "Caché de mallas poligonales" + #~ msgid "Minimap" #~ msgstr "Minimapa" @@ -9059,6 +9156,9 @@ msgstr "Límite de cURL en paralelo" #~ msgid "Server / Singleplayer" #~ msgstr "Servidor / Un jugador" +#~ msgid "Shaders" +#~ msgstr "Shaders (Sombreador)" + #~ msgid "Shaders (experimental)" #~ msgstr "Sombreadores (experimental)" @@ -9074,6 +9174,16 @@ msgstr "Límite de cURL en paralelo" #~ "rendimiento\n" #~ "en algunas tarjetas de vídeo." +#~ msgid "" +#~ "Shaders are a fundamental part of rendering and enable advanced visual " +#~ "effects." +#~ msgstr "" +#~ "Los Shaders son una parte fundamental del renderizado y permiten efectos " +#~ "visuales avanzados." + +#~ msgid "Shaders are disabled." +#~ msgstr "Los Shaders están deshabilitados." + #, fuzzy #~ msgid "" #~ "Shadow offset (in pixels) of the fallback font. If 0, then shadow will " @@ -9104,6 +9214,9 @@ msgstr "Límite de cURL en paralelo" #~ msgid "Smooths rotation of camera. 0 to disable." #~ msgstr "Suaviza la rotación de la cámara. 0 para desactivar." +#~ msgid "Sound system is disabled" +#~ msgstr "El sistema de sonido está desactivado" + #~ msgid "Special" #~ msgstr "Especial" @@ -9140,6 +9253,12 @@ msgstr "Límite de cURL en paralelo" #~ "cámara al mirar a su alrededor.\n" #~ "Útil para grabar vídeos" +#~ msgid "This is not a recommended configuration." +#~ msgstr "Esta no es una configuración recomendada." + +#~ msgid "Time send interval" +#~ msgstr "Intervalo de envío de la hora del día" + #~ msgid "To enable shaders the OpenGL driver needs to be used." #~ msgstr "" #~ "Para habilitar los sombreadores debe utilizar el controlador OpenGL." @@ -9225,6 +9344,23 @@ msgstr "Límite de cURL en paralelo" #~ msgid "Waving water" #~ msgstr "Oleaje en el agua" +#~ msgid "" +#~ "When gui_scaling_filter_txr2img is true, copy those images\n" +#~ "from hardware to software for scaling. When false, fall back\n" +#~ "to the old scaling method, for video drivers that don't\n" +#~ "properly support downloading textures back from hardware." +#~ msgstr "" +#~ "Cuando gui_scaling_filter_txr2img es verdadero, copiar imágenes\n" +#~ "del hardware al software para escalarlas. Cuando es falso,\n" +#~ "vuelve al método de escalado anterior para controladores de video\n" +#~ "que no admiten la descarga de texturas desde el hardware." + +#~ msgid "" +#~ "Whether node texture animations should be desynchronized per mapblock." +#~ msgstr "" +#~ "Si las animaciones de textura de nodo deben desincronizarse por bloque de " +#~ "mapa." + #~ msgid "X" #~ msgstr "X" diff --git a/po/es_US/luanti.po b/po/es_US/luanti.po index 0d8500e7e..4f4eba81a 100644 --- a/po/es_US/luanti.po +++ b/po/es_US/luanti.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: luanti\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" -"PO-Revision-Date: 2024-11-10 17:11+0000\n" -"Last-Translator: chocomint \n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" +"PO-Revision-Date: 2024-12-26 19:00+0000\n" +"Last-Translator: Hugo \n" "Language-Team: Spanish (American) \n" "Language: es_US\n" @@ -17,48 +17,60 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.8.2\n" - -#: builtin/client/chatcommands.lua -msgid "Issued command: " -msgstr "Comando emitido: " - -#: builtin/client/chatcommands.lua -msgid "Empty command." -msgstr "Comando vacío." - -#: builtin/client/chatcommands.lua -msgid "Invalid command: " -msgstr "Comando inválido: " - -#: builtin/client/chatcommands.lua -msgid "List online players" -msgstr "Lista de los jugadores conectados" - -#: builtin/client/chatcommands.lua -msgid "This command is disabled by server." -msgstr "Este comando esta deshabiitado por el servidor." - -#: builtin/client/chatcommands.lua -msgid "Online players: " -msgstr "Jugadores en línea: " - -#: builtin/client/chatcommands.lua -msgid "Exit to main menu" -msgstr "Salir al menu principal" +"X-Generator: Weblate 5.10-dev\n" #: builtin/client/chatcommands.lua msgid "Clear the out chat queue" msgstr "Limpiar la cola de chat" +#: builtin/client/chatcommands.lua +msgid "Empty command." +msgstr "Comando vacío." + +#: builtin/client/chatcommands.lua +msgid "Exit to main menu" +msgstr "Salir al menu principal" + +#: builtin/client/chatcommands.lua +msgid "Invalid command: " +msgstr "Comando inválido: " + +#: builtin/client/chatcommands.lua +msgid "Issued command: " +msgstr "Comando emitido: " + +#: builtin/client/chatcommands.lua +msgid "List online players" +msgstr "Lista de los jugadores conectados" + +#: builtin/client/chatcommands.lua +msgid "Online players: " +msgstr "Jugadores en línea: " + #: builtin/client/chatcommands.lua msgid "The out chat queue is now empty." msgstr "La cola de chat está ahora vacía." +#: builtin/client/chatcommands.lua +msgid "This command is disabled by server." +msgstr "Este comando esta deshabiitado por el servidor." + +#: builtin/common/chatcommands.lua +msgid "Available commands:" +msgstr "Comandos disponibles:" + #: builtin/common/chatcommands.lua msgid "Available commands: " msgstr "Comandos disponibles: " +#: builtin/common/chatcommands.lua +msgid "Command not available: " +msgstr "Comando no disponible: " + +#: builtin/common/chatcommands.lua +msgid "Get help for commands (-t: output in chat)" +msgstr "Obtén ayuda para comandos (-t: salida en el chat)" + #: builtin/common/chatcommands.lua msgid "" "Use '.help ' to get more information, or '.help all' to list everything." @@ -66,42 +78,252 @@ msgstr "" "Usa '.help ' para obtener más información, o '.help all' para enlistar " "todo." -#: builtin/common/chatcommands.lua -msgid "Available commands:" -msgstr "Comandos disponibles:" - -#: builtin/common/chatcommands.lua -msgid "Command not available: " -msgstr "Comando no disponible: " - #: builtin/common/chatcommands.lua msgid "[all | ] [-t]" msgstr "[all | ] [-t]" -#: builtin/common/chatcommands.lua -msgid "Get help for commands (-t: output in chat)" -msgstr "Obtén ayuda para comandos (-t: salida en el chat)" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "Navegar" -#: builtin/fstk/ui.lua -msgid "OK" -msgstr "OK" +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "Editar" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "Seleccionar directorio" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "Seleccionar archivo" + +#: builtin/common/settings/components.lua +msgid "Set" +msgstr "Establecer" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(No se proporciona descripción del entorno)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "Ruido 2D" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "Cancelar" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "Lacunaridad" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "Octavos" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "Compensar" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "Persistencia" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "Guardar" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "Escalar" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "Semilla" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "Propagación en X" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "Propagación en Y" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "Propagación en Z" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "absvalor" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "Por predeterminado" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "aliviado" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "(El juego también deberá habilitar la exposición automática)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "(El juego también deberá habilitar el bloom)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "(El juego también deberá habilitar la iluminación volumétrica)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "(Utilice el idioma del sistema)" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "Accesibilidad" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "Auto" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "Chat" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "Claro" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "Controles" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "Deshabilitado" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "Habilitado" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "General" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "Movimiento" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "Sin resultados" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default" +msgstr "Restablecer la configuración a los valores predeterminados" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "Restablecer la configuración predeterminada ($1)" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "Buscar" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "Mostrar configuraciones avanzadas" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "Mostrar nombres tecnicos" + +#: builtin/common/settings/dlg_settings.lua +msgid "Touchscreen layout" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "pause_menu" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Client Mods" +msgstr "Mods del Cliente" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "Contenido: Juegos" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "Contenido: Mods" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "(El juego también deberá habilitar las sombras)" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "Personalizado" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "Sombras Dinámicas" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "Alto" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "Bajo" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "Medio" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "Muy Alto" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "Muy Bajo" #: builtin/fstk/ui.lua msgid "" msgstr "" -#: builtin/fstk/ui.lua -msgid "The server has requested a reconnect:" -msgstr "El servidor ha solicitado una reconexión:" - -#: builtin/fstk/ui.lua -msgid "Reconnect" -msgstr "Reconectar" - -#: builtin/fstk/ui.lua -msgid "Main menu" -msgstr "Menu principal" - #: builtin/fstk/ui.lua msgid "An error occurred in a Lua script:" msgstr "Ocurrió un error en un script de Lua:" @@ -110,31 +332,55 @@ msgstr "Ocurrió un error en un script de Lua:" msgid "An error occurred:" msgstr "Un error ha ocurrido:" +#: builtin/fstk/ui.lua +msgid "Main menu" +msgstr "Menu principal" + +#: builtin/fstk/ui.lua +msgid "OK" +msgstr "OK" + +#: builtin/fstk/ui.lua +msgid "Reconnect" +msgstr "Reconectar" + +#: builtin/fstk/ui.lua +msgid "The server has requested a reconnect:" +msgstr "El servidor ha solicitado una reconexión:" + #: builtin/mainmenu/common.lua -msgid "Server supports protocol versions between $1 and $2. " -msgstr "El servidor admite versiones de protocolo entre $1 y $2. " +msgid "Protocol version mismatch. " +msgstr "Desajuste de versión del protocolo. " #: builtin/mainmenu/common.lua msgid "Server enforces protocol version $1. " msgstr "El servidor impone la versión del protocolo $1. " #: builtin/mainmenu/common.lua -msgid "We support protocol versions between version $1 and $2." -msgstr "" -"Apoyamos las versiones de protocolo entre la versión $1 y la versión $2." +msgid "Server supports protocol versions between $1 and $2. " +msgstr "El servidor admite versiones de protocolo entre $1 y $2. " #: builtin/mainmenu/common.lua msgid "We only support protocol version $1." msgstr "Solo soportamos la versión de protocolo $1." #: builtin/mainmenu/common.lua -msgid "Protocol version mismatch. " -msgstr "Desajuste de versión del protocolo. " +msgid "We support protocol versions between version $1 and $2." +msgstr "" +"Apoyamos las versiones de protocolo entre la versión $1 y la versión $2." + +#: builtin/mainmenu/content/contentdb.lua +msgid "Error installing \"$1\": $2" +msgstr "Error al instalar \"$1\": $2" #: builtin/mainmenu/content/contentdb.lua msgid "Failed to download \"$1\"" msgstr "Error al descargar \"$1\"" +#: builtin/mainmenu/content/contentdb.lua +msgid "Failed to download $1" +msgstr "Fallo al descargar $1" + #: builtin/mainmenu/content/contentdb.lua msgid "" "Failed to extract \"$1\" (insufficient disk space, unsupported file type or " @@ -143,56 +389,6 @@ msgstr "" "Error al extraer \"$1\" (espacio en disco insuficiente, tipo de archivo no " "soportado o archivo dañado)" -#: builtin/mainmenu/content/contentdb.lua -msgid "Error installing \"$1\": $2" -msgstr "Error al instalar \"$1\": $2" - -#: builtin/mainmenu/content/contentdb.lua -msgid "Failed to download $1" -msgstr "Fallo al descargar $1" - -#: builtin/mainmenu/content/dlg_contentdb.lua -msgid "ContentDB is not available when Luanti was compiled without cURL" -msgstr "ContentDB no está disponible cuando Luanti fue compilado sin cURL" - -#: builtin/mainmenu/content/dlg_contentdb.lua -msgid "The package $1 was not found." -msgstr "El paquete $1 no se encuentra." - -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Back" -msgstr "Atrás" - -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_package.lua builtin/mainmenu/serverlistmgr.lua -#: src/client/game.cpp -msgid "Loading..." -msgstr "Cargando..." - -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/content/dlg_package.lua -msgid "No packages could be retrieved" -msgstr "No se pueden recuperar paquetes" - -#: builtin/mainmenu/content/dlg_contentdb.lua -msgid "All" -msgstr "Todo" - -#: builtin/mainmenu/content/dlg_contentdb.lua -msgid "Games" -msgstr "Juegos" - -#: builtin/mainmenu/content/dlg_contentdb.lua -msgid "Mods" -msgstr "Mods" - -#: builtin/mainmenu/content/dlg_contentdb.lua -msgid "Texture Packs" -msgstr "Paquetes de texturas" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "" "$1 downloading,\n" @@ -206,61 +402,85 @@ msgid "$1 downloading..." msgstr "$1 descargando..." #: builtin/mainmenu/content/dlg_contentdb.lua -msgid "No updates" -msgstr "Sin actualizaciones" +msgid "All" +msgstr "Todo" #: builtin/mainmenu/content/dlg_contentdb.lua -msgid "Update All [$1]" -msgstr "Actualizar Todo [$1]" +#: builtin/mainmenu/content/dlg_package.lua +msgid "Back" +msgstr "Atrás" #: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "Sin resultados" +msgid "ContentDB is not available when Luanti was compiled without cURL" +msgstr "ContentDB no está disponible cuando Luanti fue compilado sin cURL" #: builtin/mainmenu/content/dlg_contentdb.lua msgid "Downloading..." msgstr "Descargando..." +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "Featured" +msgstr "Destacado" + +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "Games" +msgstr "Juegos" + +#: builtin/mainmenu/content/dlg_contentdb.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_package.lua builtin/mainmenu/serverlistmgr.lua +#: src/client/game.cpp +msgid "Loading..." +msgstr "Cargando..." + +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "Mods" +msgstr "Mods" + +#: builtin/mainmenu/content/dlg_contentdb.lua +#: builtin/mainmenu/content/dlg_package.lua +msgid "No packages could be retrieved" +msgstr "No se pueden recuperar paquetes" + +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No updates" +msgstr "Sin actualizaciones" + #: builtin/mainmenu/content/dlg_contentdb.lua msgid "Queued" msgstr "En cola" #: builtin/mainmenu/content/dlg_contentdb.lua -msgid "Featured" -msgstr "Destacado" +msgid "Texture Packs" +msgstr "Paquetes de texturas" -#: builtin/mainmenu/content/dlg_install.lua -msgid "Already installed" -msgstr "Ya está instalado" +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "The package $1 was not found." +msgstr "El paquete $1 no se encuentra." -#: builtin/mainmenu/content/dlg_install.lua -msgid "$1 by $2" -msgstr "$1 por $2" - -#: builtin/mainmenu/content/dlg_install.lua -msgid "Not found" -msgstr "No se encontró" +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "Update All [$1]" +msgstr "Actualizar Todo [$1]" #: builtin/mainmenu/content/dlg_install.lua msgid "$1 and $2 dependencies will be installed." msgstr "se instalarán $1 y $2 dependencias." #: builtin/mainmenu/content/dlg_install.lua -msgid "$1 will be installed, and $2 dependencies will be skipped." -msgstr "$1 será instalado, y las dependencias de $2 serán saltadas." +msgid "$1 by $2" +msgstr "$1 por $2" #: builtin/mainmenu/content/dlg_install.lua msgid "$1 required dependencies could not be found." msgstr "Las dependencias requeridas de $1 no se pudieron encontrar." #: builtin/mainmenu/content/dlg_install.lua -msgid "Please check that the base game is correct." -msgstr "Por favor, compruebe que el juego base es correcto." +msgid "$1 will be installed, and $2 dependencies will be skipped." +msgstr "$1 será instalado, y las dependencias de $2 serán saltadas." #: builtin/mainmenu/content/dlg_install.lua -msgid "Install $1" -msgstr "Instalar $1" +msgid "Already installed" +msgstr "Ya está instalado" #: builtin/mainmenu/content/dlg_install.lua msgid "Base Game:" @@ -272,28 +492,28 @@ msgid "Dependencies:" msgstr "Dependencias:" #: builtin/mainmenu/content/dlg_install.lua -msgid "Install missing dependencies" -msgstr "Instalar las dependencias faltantes" +msgid "Error getting dependencies for package $1" +msgstr "Error en obtener las dependencias para el paquete $1" #: builtin/mainmenu/content/dlg_install.lua msgid "Install" msgstr "Instalar" #: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "Cancelar" +msgid "Install $1" +msgstr "Instalar $1" #: builtin/mainmenu/content/dlg_install.lua -msgid "Error getting dependencies for package $1" -msgstr "Error en obtener las dependencias para el paquete $1" +msgid "Install missing dependencies" +msgstr "Instalar las dependencias faltantes" + +#: builtin/mainmenu/content/dlg_install.lua +msgid "Not found" +msgstr "No se encontró" + +#: builtin/mainmenu/content/dlg_install.lua +msgid "Please check that the base game is correct." +msgstr "Por favor, compruebe que el juego base es correcto." #: builtin/mainmenu/content/dlg_install.lua msgid "You need to install a game before you can install a mod" @@ -307,70 +527,74 @@ msgstr "\"$1\" ya existe. ¿Te gustaría sobreescribirlo?" msgid "Overwrite" msgstr "Sobreescribir" -#: builtin/mainmenu/content/dlg_package.lua -msgid "by $1 — $2 downloads — +$3 / $4 / -$5" -msgstr "por$1 — $2 descargas — +$3 / $4 / -$5" - #: builtin/mainmenu/content/dlg_package.lua msgid "ContentDB page" msgstr "Página de ContentDB" -#: builtin/mainmenu/content/dlg_package.lua -msgid "Install [$1]" -msgstr "Instalar [$1]" - -#: builtin/mainmenu/content/dlg_package.lua builtin/mainmenu/tab_content.lua -msgid "Update" -msgstr "Actualizar" - -#: builtin/mainmenu/content/dlg_package.lua builtin/mainmenu/tab_content.lua -msgid "Uninstall" -msgstr "Desinstalar" - #: builtin/mainmenu/content/dlg_package.lua msgid "Description" msgstr "Descripción" -#: builtin/mainmenu/content/dlg_package.lua -msgid "Information" -msgstr "Información" - #: builtin/mainmenu/content/dlg_package.lua msgid "Donate" msgstr "Donar" #: builtin/mainmenu/content/dlg_package.lua -msgid "Website" -msgstr "Sitio web" +msgid "Forum Topic" +msgstr "Tema del Foro" #: builtin/mainmenu/content/dlg_package.lua -msgid "Source" -msgstr "Fuente" +msgid "Information" +msgstr "Información" + +#: builtin/mainmenu/content/dlg_package.lua +msgid "Install [$1]" +msgstr "Instalar [$1]" #: builtin/mainmenu/content/dlg_package.lua msgid "Issue Tracker" msgstr "Rastreador de problemas" +#: builtin/mainmenu/content/dlg_package.lua +msgid "Source" +msgstr "Fuente" + #: builtin/mainmenu/content/dlg_package.lua msgid "Translate" msgstr "Traducir" +#: builtin/mainmenu/content/dlg_package.lua builtin/mainmenu/tab_content.lua +msgid "Uninstall" +msgstr "Desinstalar" + +#: builtin/mainmenu/content/dlg_package.lua builtin/mainmenu/tab_content.lua +msgid "Update" +msgstr "Actualizar" + #: builtin/mainmenu/content/dlg_package.lua -msgid "Forum Topic" -msgstr "Tema del Foro" +msgid "Website" +msgstr "Sitio web" + +#: builtin/mainmenu/content/dlg_package.lua +msgid "by $1 — $2 downloads — +$3 / $4 / -$5" +msgstr "por$1 — $2 descargas — +$3 / $4 / -$5" #: builtin/mainmenu/content/pkgmgr.lua msgid "$1 (Enabled)" msgstr "$1 (Habilitado)" #: builtin/mainmenu/content/pkgmgr.lua -msgid "Unable to install a $1 as a texture pack" -msgstr "No se puede instalar un paquete de texturas de $1" +msgid "$1 mods" +msgstr "$1 mods" #: builtin/mainmenu/content/pkgmgr.lua msgid "Failed to install $1 to $2" msgstr "Falló al instalar $1 a $2" +#: builtin/mainmenu/content/pkgmgr.lua +msgid "Install: Unable to find suitable folder name for $1" +msgstr "Instalar: Incapaz de encontrar el nombre de carpeta adecuado para $1" + #: builtin/mainmenu/content/pkgmgr.lua msgid "Unable to find a valid mod, modpack, or game" msgstr "Incapaz de encontrar un mod válido, modpack o juego" @@ -380,32 +604,50 @@ msgid "Unable to install a $1 as a $2" msgstr "Incapaz de instalar un $1 como un $2" #: builtin/mainmenu/content/pkgmgr.lua -msgid "Install: Unable to find suitable folder name for $1" -msgstr "Instalar: Incapaz de encontrar el nombre de carpeta adecuado para $1" +msgid "Unable to install a $1 as a texture pack" +msgstr "No se puede instalar un paquete de texturas de $1" -#: builtin/mainmenu/content/pkgmgr.lua -msgid "$1 mods" -msgstr "$1 mods" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" #: builtin/mainmenu/dlg_config_world.lua -msgid "World:" -msgstr "Mundo:" - -#: builtin/mainmenu/dlg_config_world.lua -msgid "No modpack description provided." -msgstr "Ninguna descripción del modpack proporcionada." - -#: builtin/mainmenu/dlg_config_world.lua -msgid "No game description provided." -msgstr "Ninguna descripción del juego proporcionada." +msgid "(Enabled, has error)" +msgstr "(Habilitado, tiene error)" #: builtin/mainmenu/dlg_config_world.lua msgid "(Unsatisfied)" msgstr "(Insatisfecho)" #: builtin/mainmenu/dlg_config_world.lua -msgid "(Enabled, has error)" -msgstr "(Habilitado, tiene error)" +msgid "Disable all" +msgstr "Desactivar todo" + +#: builtin/mainmenu/dlg_config_world.lua +msgid "Disable modpack" +msgstr "Desactivar modpack" + +#: builtin/mainmenu/dlg_config_world.lua +msgid "Enable all" +msgstr "Activar todo" + +#: builtin/mainmenu/dlg_config_world.lua +msgid "Enable modpack" +msgstr "Activar modpack" + +#: builtin/mainmenu/dlg_config_world.lua +msgid "" +"Failed to enable mod \"$1\" as it contains disallowed characters. Only " +"characters [a-z0-9_] are allowed." +msgstr "" +"No se pudo habilitar el mod \"$1\" porque contiene caracteres no permitidos. " +"Sólo se permiten caracteres [a-z0-9_]." + +#: builtin/mainmenu/dlg_config_world.lua +msgid "Find More Mods" +msgstr "Encontrar Más Mods" #: builtin/mainmenu/dlg_config_world.lua msgid "Mod:" @@ -415,152 +657,82 @@ msgstr "Mod:" msgid "No (optional) dependencies" msgstr "Sin dependencias (opcionales)" +#: builtin/mainmenu/dlg_config_world.lua +msgid "No game description provided." +msgstr "Ninguna descripción del juego proporcionada." + #: builtin/mainmenu/dlg_config_world.lua msgid "No hard dependencies" msgstr "Sin dependencias duras" +#: builtin/mainmenu/dlg_config_world.lua +msgid "No modpack description provided." +msgstr "Ninguna descripción del modpack proporcionada." + +#: builtin/mainmenu/dlg_config_world.lua +msgid "No optional dependencies" +msgstr "Sin dependencias opcionales" + #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Optional dependencies:" msgstr "Dependencias opcionales:" #: builtin/mainmenu/dlg_config_world.lua -msgid "No optional dependencies" -msgstr "Sin dependencias opcionales" - -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "Guardar" - -#: builtin/mainmenu/dlg_config_world.lua -msgid "Find More Mods" -msgstr "Encontrar Más Mods" - -#: builtin/mainmenu/dlg_config_world.lua -msgid "Disable modpack" -msgstr "Desactivar modpack" - -#: builtin/mainmenu/dlg_config_world.lua -msgid "Enable modpack" -msgstr "Activar modpack" +msgid "World:" +msgstr "Mundo:" #: builtin/mainmenu/dlg_config_world.lua msgid "enabled" msgstr "habilitado" -#: builtin/mainmenu/dlg_config_world.lua -msgid "Disable all" -msgstr "Desactivar todo" - -#: builtin/mainmenu/dlg_config_world.lua -msgid "Enable all" -msgstr "Activar todo" - -#: builtin/mainmenu/dlg_config_world.lua -msgid "" -"Failed to enable mod \"$1\" as it contains disallowed characters. Only " -"characters [a-z0-9_] are allowed." -msgstr "" -"No se pudo habilitar el mod \"$1\" porque contiene caracteres no permitidos. " -"Sólo se permiten caracteres [a-z0-9_]." +#: builtin/mainmenu/dlg_create_world.lua +msgid "A world named \"$1\" already exists" +msgstr "Ya existe un mundo llamado \"$1\"" #: builtin/mainmenu/dlg_create_world.lua -msgid "Caverns" -msgstr "Cavernas" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Very large caverns deep in the underground" -msgstr "Cavernas muy grandes en lo profundo del subsuelo" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Rivers" -msgstr "Ríos" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Sea level rivers" -msgstr "Nivel del mar de los ríos" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Mountains" -msgstr "Montañas" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Floatlands (experimental)" -msgstr "Tierras Flotantes (experimental)" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Floating landmasses in the sky" -msgstr "Masas de tierra flotantes en el cielo" +msgid "Additional terrain" +msgstr "Terreno Adicional" #: builtin/mainmenu/dlg_create_world.lua src/settings_translation_file.cpp msgid "Altitude chill" msgstr "Altitud tranquila" -#: builtin/mainmenu/dlg_create_world.lua -msgid "Reduces heat with altitude" -msgstr "Reduce el calor con la altitud" - #: builtin/mainmenu/dlg_create_world.lua msgid "Altitude dry" msgstr "Altitud seca" #: builtin/mainmenu/dlg_create_world.lua -msgid "Reduces humidity with altitude" -msgstr "Reduce la humedad con la altitud" +msgid "Biome blending" +msgstr "Mezcla de biomas" #: builtin/mainmenu/dlg_create_world.lua -msgid "Humid rivers" -msgstr "Ríos húmedos" +msgid "Biomes" +msgstr "Biomas" #: builtin/mainmenu/dlg_create_world.lua -msgid "Increases humidity around rivers" -msgstr "Incrementa la humedad alrededor de los ríos" +msgid "Caverns" +msgstr "Cavernas" #: builtin/mainmenu/dlg_create_world.lua -msgid "Vary river depth" -msgstr "Varía la profundidad del río" +msgid "Caves" +msgstr "Cuevas" #: builtin/mainmenu/dlg_create_world.lua -msgid "Low humidity and high heat causes shallow or dry rivers" -msgstr "La baja humedad y el alto calor provocan ríos poco profundos o secos" +msgid "Create" +msgstr "Crear" #: builtin/mainmenu/dlg_create_world.lua -msgid "Hills" -msgstr "Colinas" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Lakes" -msgstr "Lagos" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Additional terrain" -msgstr "Terreno Adicional" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Generate non-fractal terrain: Oceans and underground" -msgstr "Generar terreno no fractal: Océanos y subsuelo" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Trees and jungle grass" -msgstr "Árboles y hierba de la selva" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Flat terrain" -msgstr "Terreno plano" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Mud flow" -msgstr "Flujo de lodo" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Terrain surface erosion" -msgstr "Erosión de la superficie del terreno" +msgid "Decorations" +msgstr "Decoraciones" #: builtin/mainmenu/dlg_create_world.lua msgid "Desert temples" msgstr "Templos del desierto" +#: builtin/mainmenu/dlg_create_world.lua +msgid "Development Test is meant for developers." +msgstr "La prueba de desarrollo está destinada a desarrolladores." + #: builtin/mainmenu/dlg_create_world.lua msgid "" "Different dungeon variant generated in desert biomes (only if dungeons " @@ -569,29 +741,97 @@ msgstr "" "Variante de mazmorra diferente generada en biomas desérticos (solo si las " "mazmorras están habilitadas)" -#: builtin/mainmenu/dlg_create_world.lua -msgid "Temperate, Desert, Jungle, Tundra, Taiga" -msgstr "Templado, Desierto, Selva, Tundra, Taiga" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Temperate, Desert, Jungle" -msgstr "Templado, Desierto, Selva" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Temperate, Desert" -msgstr "Templado, Desierto" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Caves" -msgstr "Cuevas" - #: builtin/mainmenu/dlg_create_world.lua msgid "Dungeons" msgstr "Mazmorras" #: builtin/mainmenu/dlg_create_world.lua -msgid "Decorations" -msgstr "Decoraciones" +msgid "Flat terrain" +msgstr "Terreno plano" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Floating landmasses in the sky" +msgstr "Masas de tierra flotantes en el cielo" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Floatlands (experimental)" +msgstr "Tierras Flotantes (experimental)" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Generate non-fractal terrain: Oceans and underground" +msgstr "Generar terreno no fractal: Océanos y subsuelo" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Hills" +msgstr "Colinas" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Humid rivers" +msgstr "Ríos húmedos" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Increases humidity around rivers" +msgstr "Incrementa la humedad alrededor de los ríos" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Install another game" +msgstr "instalar otro juego" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Lakes" +msgstr "Lagos" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Low humidity and high heat causes shallow or dry rivers" +msgstr "La baja humedad y el alto calor provocan ríos poco profundos o secos" + +#: builtin/mainmenu/dlg_create_world.lua src/settings_translation_file.cpp +msgid "Mapgen" +msgstr "Mapgen" + +#: builtin/mainmenu/dlg_create_world.lua src/settings_translation_file.cpp +msgid "Mapgen flags" +msgstr "Banderas de Mapgen" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Mapgen-specific flags" +msgstr "Banderas específicas de Mapgen" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Mountains" +msgstr "Montañas" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Mud flow" +msgstr "Flujo de lodo" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Network of tunnels and caves" +msgstr "Red de túneles y cuevas" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "No game selected" +msgstr "Ningún juego seleccionado" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Reduces heat with altitude" +msgstr "Reduce el calor con la altitud" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Reduces humidity with altitude" +msgstr "Reduce la humedad con la altitud" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Rivers" +msgstr "Ríos" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Sea level rivers" +msgstr "Nivel del mar de los ríos" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Smooth transition between biomes" +msgstr "Transición suave entre biomas" #: builtin/mainmenu/dlg_create_world.lua msgid "" @@ -606,62 +846,37 @@ msgid "Structures appearing on the terrain, typically trees and plants" msgstr "Estructuras que aparecen en el terreno, típicamente árboles y plantas" #: builtin/mainmenu/dlg_create_world.lua -msgid "Network of tunnels and caves" -msgstr "Red de túneles y cuevas" +msgid "Temperate, Desert" +msgstr "Templado, Desierto" #: builtin/mainmenu/dlg_create_world.lua -msgid "Biomes" -msgstr "Biomas" +msgid "Temperate, Desert, Jungle" +msgstr "Templado, Desierto, Selva" #: builtin/mainmenu/dlg_create_world.lua -msgid "Biome blending" -msgstr "Mezcla de biomas" +msgid "Temperate, Desert, Jungle, Tundra, Taiga" +msgstr "Templado, Desierto, Selva, Tundra, Taiga" #: builtin/mainmenu/dlg_create_world.lua -msgid "Smooth transition between biomes" -msgstr "Transición suave entre biomas" - -#: builtin/mainmenu/dlg_create_world.lua src/settings_translation_file.cpp -msgid "Mapgen flags" -msgstr "Banderas de Mapgen" +msgid "Terrain surface erosion" +msgstr "Erosión de la superficie del terreno" #: builtin/mainmenu/dlg_create_world.lua -msgid "Mapgen-specific flags" -msgstr "Banderas específicas de Mapgen" +msgid "Trees and jungle grass" +msgstr "Árboles y hierba de la selva" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Vary river depth" +msgstr "Varía la profundidad del río" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Very large caverns deep in the underground" +msgstr "Cavernas muy grandes en lo profundo del subsuelo" #: builtin/mainmenu/dlg_create_world.lua msgid "World name" msgstr "Nombre del mundo" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "Semilla" - -#: builtin/mainmenu/dlg_create_world.lua src/settings_translation_file.cpp -msgid "Mapgen" -msgstr "Mapgen" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Development Test is meant for developers." -msgstr "La prueba de desarrollo está destinada a desarrolladores." - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Install another game" -msgstr "instalar otro juego" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Create" -msgstr "Crear" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "No game selected" -msgstr "Ningún juego seleccionado" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "A world named \"$1\" already exists" -msgstr "Ya existe un mundo llamado \"$1\"" - #: builtin/mainmenu/dlg_delete_content.lua msgid "Are you sure you want to delete \"$1\"?" msgstr "¿Estás seguro de que quieres eliminar \"$ 1\"?" @@ -683,10 +898,18 @@ msgstr "pkgmgr: ruta no válida \"$1\"" msgid "Delete World \"$1\"?" msgstr "¿Eliminar el mundo \"$1\"?" +#: builtin/mainmenu/dlg_register.lua src/gui/guiPasswordChange.cpp +msgid "Confirm Password" +msgstr "Confirmar Contraseña" + #: builtin/mainmenu/dlg_register.lua msgid "Joining $1" msgstr "Unirse $1" +#: builtin/mainmenu/dlg_register.lua +msgid "Missing name" +msgstr "Nombre faltante" + #: builtin/mainmenu/dlg_register.lua builtin/mainmenu/tab_local.lua #: builtin/mainmenu/tab_online.lua msgid "Name" @@ -697,25 +920,17 @@ msgstr "Nombre" msgid "Password" msgstr "Contraseña" -#: builtin/mainmenu/dlg_register.lua src/gui/guiPasswordChange.cpp -msgid "Confirm Password" -msgstr "Confirmar Contraseña" +#: builtin/mainmenu/dlg_register.lua +msgid "Passwords do not match" +msgstr "Las contraseñas no coinciden" #: builtin/mainmenu/dlg_register.lua builtin/mainmenu/tab_online.lua msgid "Register" msgstr "Registrarse" -#: builtin/mainmenu/dlg_register.lua -msgid "Missing name" -msgstr "Nombre faltante" - -#: builtin/mainmenu/dlg_register.lua -msgid "Passwords do not match" -msgstr "Las contraseñas no coinciden" - #: builtin/mainmenu/dlg_reinstall_mtg.lua -msgid "Minetest Game is no longer installed by default" -msgstr "Minetest Game ya no está instalado por defecto" +msgid "Dismiss" +msgstr "Permitir" #: builtin/mainmenu/dlg_reinstall_mtg.lua msgid "" @@ -735,8 +950,8 @@ msgstr "" "Minetest Game." #: builtin/mainmenu/dlg_reinstall_mtg.lua -msgid "Dismiss" -msgstr "Permitir" +msgid "Minetest Game is no longer installed by default" +msgstr "Minetest Game ya no está instalado por defecto" #: builtin/mainmenu/dlg_reinstall_mtg.lua msgid "Reinstall Minetest Game" @@ -746,6 +961,10 @@ msgstr "Reinstalar Minetest Game" msgid "Accept" msgstr "Aceptar" +#: builtin/mainmenu/dlg_rename_modpack.lua +msgid "Rename Modpack:" +msgstr "Renombrar Modpack:" + #: builtin/mainmenu/dlg_rename_modpack.lua msgid "" "This modpack has an explicit name given in its modpack.conf which will " @@ -754,9 +973,22 @@ msgstr "" "Este modpack tiene un nombre explícito en su modpack.conf que anulará " "cualquier cambio de nombre aquí." -#: builtin/mainmenu/dlg_rename_modpack.lua -msgid "Rename Modpack:" -msgstr "Renombrar Modpack:" +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "Activar todo" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" @@ -774,10 +1006,6 @@ msgstr "" "Visita $3 para descubrir cómo obtener la versión más reciente y mantenerse " "actualizado con funciones y correcciones de errores." -#: builtin/mainmenu/dlg_version_info.lua -msgid "Visit website" -msgstr "Visitar página web" - #: builtin/mainmenu/dlg_version_info.lua msgid "Later" msgstr "Después" @@ -786,241 +1014,36 @@ msgstr "Después" msgid "Never" msgstr "Nunca" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/dlg_version_info.lua +msgid "Visit website" +msgstr "Visitar página web" + +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "Configuraciones" +#: builtin/mainmenu/serverlistmgr.lua +msgid "Public server list is disabled" +msgstr "La lista de servidores públicos está deshabilitada" + #: builtin/mainmenu/serverlistmgr.lua msgid "Try reenabling public serverlist and check your internet connection." msgstr "" "Intente volver a habilitar la lista de servidores públicos y verifique su " "conexión a Internet." -#: builtin/mainmenu/serverlistmgr.lua -msgid "Public server list is disabled" -msgstr "La lista de servidores públicos está deshabilitada" - -#: builtin/mainmenu/settings/components.lua -msgid "Set" -msgstr "Establecer" - -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "Navegar" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "Seleccionar directorio" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "Seleccionar archivo" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "Editar" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "Compensar" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "Escalar" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "Propagación en X" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "Propagación en Y" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "Ruido 2D" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "Propagación en Z" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "Octavos" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "Persistencia" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "Lacunaridad" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "Por predeterminado" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "aliviado" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "absvalor" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(No se proporciona descripción del entorno)" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "General" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "Controles" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "Accesibilidad" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "Chat" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "Movimiento" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "(El juego también deberá habilitar la exposición automática)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "(El juego también deberá habilitar el bloom)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "(El juego también deberá habilitar la iluminación volumétrica)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "(Utilice el idioma del sistema)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "Auto" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "Habilitado" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "Deshabilitado" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "Mostrar nombres tecnicos" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "Mostrar configuraciones avanzadas" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "Buscar" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "Claro" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "Restablecer la configuración predeterminada ($1)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default" -msgstr "Restablecer la configuración a los valores predeterminados" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "Contenido: Juegos" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "Contenido: Mods" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "Mods del Cliente" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "Shaders are disabled." -msgstr "Los Shaders estan desactivados." - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "Esta no es una configuración recomendada." - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "Enable" -msgstr "Habilitar" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "Muy Bajo" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "Bajo" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "Medio" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "Alto" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "Muy Alto" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "Personalizado" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "Sombras Dinámicas" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "(El juego también deberá habilitar las sombras)" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "Acerca de" +#: builtin/mainmenu/tab_about.lua +msgid "Active Contributors" +msgstr "Colaboradores activos" + +#: builtin/mainmenu/tab_about.lua +msgid "Active renderer:" +msgstr "Renderizado activo:" + #: builtin/mainmenu/tab_about.lua msgid "Core Developers" msgstr "Desarrolladores principales" @@ -1030,28 +1053,8 @@ msgid "Core Team" msgstr "Equipo principal" #: builtin/mainmenu/tab_about.lua -msgid "Active Contributors" -msgstr "Colaboradores activos" - -#: builtin/mainmenu/tab_about.lua -msgid "Previous Core Developers" -msgstr "Desarrolladores principales anteriores" - -#: builtin/mainmenu/tab_about.lua -msgid "Previous Contributors" -msgstr "Colaboradores anteriores" - -#: builtin/mainmenu/tab_about.lua -msgid "Active renderer:" -msgstr "Renderizado activo:" - -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "Dispositivo Irrlicht:" - -#: builtin/mainmenu/tab_about.lua -msgid "Share debug log" -msgstr "Compartir registro de depuración" +msgid "Open User Data Directory" +msgstr "Abrir directorio de datos de usuario" #: builtin/mainmenu/tab_about.lua msgid "" @@ -1063,8 +1066,16 @@ msgstr "" "y paquetes de texturas en un administrador/explorador de archivos." #: builtin/mainmenu/tab_about.lua -msgid "Open User Data Directory" -msgstr "Abrir directorio de datos de usuario" +msgid "Previous Contributors" +msgstr "Colaboradores anteriores" + +#: builtin/mainmenu/tab_about.lua +msgid "Previous Core Developers" +msgstr "Desarrolladores principales anteriores" + +#: builtin/mainmenu/tab_about.lua +msgid "Share debug log" +msgstr "Compartir registro de depuración" #: builtin/mainmenu/tab_content.lua msgid "Browse online content" @@ -1074,13 +1085,25 @@ msgstr "Explorar contenido en línea" msgid "Browse online content [$1]" msgstr "Explorar contenido en linea [$1]" +#: builtin/mainmenu/tab_content.lua +msgid "Content" +msgstr "Contenido" + +#: builtin/mainmenu/tab_content.lua +msgid "Content [$1]" +msgstr "Contenido [$1]" + +#: builtin/mainmenu/tab_content.lua +msgid "Disable Texture Pack" +msgstr "Deshabilitar Paquete de Textura" + #: builtin/mainmenu/tab_content.lua msgid "Installed Packages:" msgstr "Paquetes Instalados:" #: builtin/mainmenu/tab_content.lua -msgid "Update available?" -msgstr "¿Actualización disponible?" +msgid "No dependencies." +msgstr "Sin dependencias." #: builtin/mainmenu/tab_content.lua msgid "No package description available" @@ -1091,48 +1114,20 @@ msgid "Rename" msgstr "Renombrar" #: builtin/mainmenu/tab_content.lua -msgid "No dependencies." -msgstr "Sin dependencias." - -#: builtin/mainmenu/tab_content.lua -msgid "Disable Texture Pack" -msgstr "Deshabilitar Paquete de Textura" +msgid "Update available?" +msgstr "¿Actualización disponible?" #: builtin/mainmenu/tab_content.lua msgid "Use Texture Pack" msgstr "Usar Paquete de Textura" -#: builtin/mainmenu/tab_content.lua -msgid "Content" -msgstr "Contenido" - -#: builtin/mainmenu/tab_content.lua -msgid "Content [$1]" -msgstr "Contenido [$1]" +#: builtin/mainmenu/tab_local.lua +msgid "Announce Server" +msgstr "Anunciar Servidor" #: builtin/mainmenu/tab_local.lua -msgid "Install games from ContentDB" -msgstr "Instalar juegos desde ContentDB" - -#: builtin/mainmenu/tab_local.lua -msgid "" -"Luanti is a game-creation platform that allows you to play many different " -"games." -msgstr "" -"Luanti es una plataforma de creación de juegos que te permite jugar muchos " -"diferentes juegos." - -#: builtin/mainmenu/tab_local.lua -msgid "Luanti doesn't come with a game by default." -msgstr "Luanti no viene con un juego por defecto." - -#: builtin/mainmenu/tab_local.lua -msgid "You need to install a game before you can create a world." -msgstr "Necesitas instalar un juego antes de poder crear un mundo." - -#: builtin/mainmenu/tab_local.lua -msgid "Install a game" -msgstr "Instalar un juego" +msgid "Bind Address" +msgstr "Dirección de Enlace" #: builtin/mainmenu/tab_local.lua msgid "Creative Mode" @@ -1142,77 +1137,85 @@ msgstr "Modo Creativo" msgid "Enable Damage" msgstr "Habilitar Daño" +#: builtin/mainmenu/tab_local.lua +msgid "Host Game" +msgstr "Hostear Juego" + #: builtin/mainmenu/tab_local.lua msgid "Host Server" msgstr "Hostear Servidor" #: builtin/mainmenu/tab_local.lua -msgid "Select Mods" -msgstr "Seleccionar Mods" +msgid "Install a game" +msgstr "Instalar un juego" + +#: builtin/mainmenu/tab_local.lua +msgid "Install games from ContentDB" +msgstr "Instalar juegos desde ContentDB" + +#: builtin/mainmenu/tab_local.lua +msgid "Luanti doesn't come with a game by default." +msgstr "Luanti no viene con un juego por defecto." + +#: builtin/mainmenu/tab_local.lua +msgid "" +"Luanti is a game-creation platform that allows you to play many different " +"games." +msgstr "" +"Luanti es una plataforma de creación de juegos que te permite jugar muchos " +"diferentes juegos." #: builtin/mainmenu/tab_local.lua msgid "New" msgstr "Nuevo" #: builtin/mainmenu/tab_local.lua -msgid "Select World:" -msgstr "Seleccionar Mundo:" +msgid "No world created or selected!" +msgstr "¡Ningún mundo creado o seleccionado!" #: builtin/mainmenu/tab_local.lua -msgid "Host Game" -msgstr "Hostear Juego" - -#: builtin/mainmenu/tab_local.lua -msgid "Announce Server" -msgstr "Anunciar Servidor" - -#: builtin/mainmenu/tab_local.lua -msgid "Bind Address" -msgstr "Dirección de Enlace" +msgid "Play Game" +msgstr "Jugar" #: builtin/mainmenu/tab_local.lua builtin/mainmenu/tab_online.lua msgid "Port" msgstr "Puerto" +#: builtin/mainmenu/tab_local.lua +msgid "Select Mods" +msgstr "Seleccionar Mods" + +#: builtin/mainmenu/tab_local.lua +msgid "Select World:" +msgstr "Seleccionar Mundo:" + #: builtin/mainmenu/tab_local.lua msgid "Server Port" msgstr "Puerto del Servidor" -#: builtin/mainmenu/tab_local.lua -msgid "Play Game" -msgstr "Jugar" - -#: builtin/mainmenu/tab_local.lua -msgid "No world created or selected!" -msgstr "¡Ningún mundo creado o seleccionado!" - #: builtin/mainmenu/tab_local.lua msgid "Start Game" msgstr "Iniciar Juego" +#: builtin/mainmenu/tab_local.lua +msgid "You need to install a game before you can create a world." +msgstr "Necesitas instalar un juego antes de poder crear un mundo." + #: builtin/mainmenu/tab_online.lua -msgid "Refresh" -msgstr "Refrescar" +#, fuzzy +msgid "Add favorite" +msgstr "Remover favorito" #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "Dirección" #: builtin/mainmenu/tab_online.lua -msgid "Server Description" -msgstr "Descripción del Servidor" - -#: builtin/mainmenu/tab_online.lua -msgid "Login" -msgstr "Acceder" - -#: builtin/mainmenu/tab_online.lua -msgid "Remove favorite" -msgstr "Remover favorito" - -#: builtin/mainmenu/tab_online.lua -msgid "Ping" -msgstr "Ping" +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "Mods del Cliente" #: builtin/mainmenu/tab_online.lua msgid "Creative mode" @@ -1228,8 +1231,9 @@ msgid "Favorites" msgstr "Favoritos" #: builtin/mainmenu/tab_online.lua -msgid "Public Servers" -msgstr "Servidores Públicos" +#, fuzzy +msgid "Game: $1" +msgstr "Juegos" #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" @@ -1239,13 +1243,65 @@ msgstr "Servidores Incompatibles" msgid "Join Game" msgstr "Unirse al Juego" +#: builtin/mainmenu/tab_online.lua +msgid "Login" +msgstr "Acceder" + +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +msgid "Open server website" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +msgid "Ping" +msgstr "Ping" + +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +msgid "Public Servers" +msgstr "Servidores Públicos" + +#: builtin/mainmenu/tab_online.lua +msgid "Refresh" +msgstr "Refrescar" + +#: builtin/mainmenu/tab_online.lua +msgid "Remove favorite" +msgstr "Remover favorito" + +#: builtin/mainmenu/tab_online.lua +msgid "Server Description" +msgstr "Descripción del Servidor" + +#: src/client/client.cpp +msgid "Connection aborted (protocol error?)." +msgstr "Conexión cancelada (¿error de protocolo?)." + #: src/client/client.cpp src/client/game.cpp msgid "Connection timed out." msgstr "Se agotó el tiempo de conexión." #: src/client/client.cpp -msgid "Connection aborted (protocol error?)." -msgstr "Conexión cancelada (¿error de protocolo?)." +msgid "Done!" +msgstr "¡Hecho!" + +#: src/client/client.cpp +msgid "Initializing nodes" +msgstr "Inicializando nodos" + +#: src/client/client.cpp +msgid "Initializing nodes..." +msgstr "Inicializando nodos…" #: src/client/client.cpp msgid "Loading textures..." @@ -1255,34 +1311,14 @@ msgstr "Cargando Texturas…" msgid "Rebuilding shaders..." msgstr "Reconstruyendo shaders…" -#: src/client/client.cpp -msgid "Initializing nodes..." -msgstr "Inicializando nodos…" - -#: src/client/client.cpp -msgid "Initializing nodes" -msgstr "Inicializando nodos" - -#: src/client/client.cpp -msgid "Done!" -msgstr "¡Hecho!" +#: src/client/clientlauncher.cpp +msgid "Could not find or load game: " +msgstr "No se pudo encontrar ni cargar el juego: " #: src/client/clientlauncher.cpp msgid "Main Menu" msgstr "Menu Principal" -#: src/client/clientlauncher.cpp -msgid "Provided password file failed to open: " -msgstr "El archivo de contraseña proporcionado no se pudo abrir: " - -#: src/client/clientlauncher.cpp -msgid "Please choose a name!" -msgstr "¡Por favor elige un nombre!" - -#: src/client/clientlauncher.cpp -msgid "Player name too long." -msgstr "Nombre de jugador muy largo." - #: src/client/clientlauncher.cpp msgid "No world selected and no address provided. Nothing to do." msgstr "" @@ -1290,64 +1326,34 @@ msgstr "" "hacer." #: src/client/clientlauncher.cpp -msgid "Provided world path doesn't exist: " -msgstr "La ruta de mundo proporcionado no existe: " +msgid "Player name too long." +msgstr "Nombre de jugador muy largo." #: src/client/clientlauncher.cpp -msgid "Could not find or load game: " -msgstr "No se pudo encontrar ni cargar el juego: " +msgid "Please choose a name!" +msgstr "¡Por favor elige un nombre!" + +#: src/client/clientlauncher.cpp +msgid "Provided password file failed to open: " +msgstr "El archivo de contraseña proporcionado no se pudo abrir: " + +#: src/client/clientlauncher.cpp +msgid "Provided world path doesn't exist: " +msgstr "La ruta de mundo proporcionado no existe: " #: src/client/clientmedia.cpp src/client/game.cpp msgid "Media..." msgstr "Media…" -#: src/client/game.cpp -msgid "Shutting down..." -msgstr "Cerrando..." +#: src/client/game.cpp src/client/shader.cpp src/server.cpp +msgid "" +"\n" +"Check debug.txt for details." +msgstr "" #: src/client/game.cpp -msgid "Creating server..." -msgstr "Creando servidor..." - -#: src/client/game.cpp -#, c-format -msgid "Unable to listen on %s because IPv6 is disabled" -msgstr "No se puede escuchar en %s porque IPv6 está deshabilitado" - -#: src/client/game.cpp -msgid "Creating client..." -msgstr "Creando cliente..." - -#: src/client/game.cpp -msgid "Connection failed for unknown reason" -msgstr "La conexión falló por motivo desconocido" - -#: src/client/game.cpp -msgid "Singleplayer" -msgstr "Un Jugador" - -#: src/client/game.cpp -msgid "Multiplayer" -msgstr "Multijugador" - -#: src/client/game.cpp -msgid "Resolving address..." -msgstr "Resolviendo dirección..." - -#: src/client/game.cpp -#, c-format -msgid "Couldn't resolve address: %s" -msgstr "No se pudo resolver la dirección: %s" - -#: src/client/game.cpp -#, c-format -msgid "Unable to connect to %s because IPv6 is disabled" -msgstr "No se puede conectar a %s porque IPv6 está deshabilitado" - -#: src/client/game.cpp -#, c-format -msgid "Error creating client: %s" -msgstr "Error al crear cliente: %s" +msgid "A serialization error occurred:" +msgstr "" #: src/client/game.cpp #, c-format @@ -1355,111 +1361,17 @@ msgid "Access denied. Reason: %s" msgstr "Acceso denegado. Razón: %s" #: src/client/game.cpp -msgid "Connecting to server..." -msgstr "Conectando al servidor..." +#, fuzzy +msgid "All debug info hidden" +msgstr "Información de depuración mostrado" #: src/client/game.cpp -msgid "Client disconnected" -msgstr "Cliente desconectado" +msgid "Automatic forward disabled" +msgstr "Avanzado automático deshabilitado" #: src/client/game.cpp -msgid "Item definitions..." -msgstr "Definiciones de Objetos..." - -#: src/client/game.cpp -msgid "Node definitions..." -msgstr "Definiciones de nodos…" - -#: src/client/game.cpp -msgid "KiB/s" -msgstr "KiB/s" - -#: src/client/game.cpp -msgid "MiB/s" -msgstr "MiB/s" - -#: src/client/game.cpp -msgid "Client side scripting is disabled" -msgstr "Las secuencias de comandos del lado del cliente están deshabilitadas" - -#: src/client/game.cpp -msgid "Sound muted" -msgstr "Sonido muteado" - -#: src/client/game.cpp -msgid "Sound unmuted" -msgstr "Sonido desmuteado" - -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "El sonido del sistema está deshabilitado" - -#: src/client/game.cpp -#, c-format -msgid "Volume changed to %d%%" -msgstr "Volumen cambiado a %d%%" - -#: src/client/game.cpp -msgid "Sound system is not supported on this build" -msgstr "El sistema de sonido no es compatible con esta compilación" - -#: src/client/game.cpp -msgid "Fly mode enabled" -msgstr "Modo vuelo habilitado" - -#: src/client/game.cpp -msgid "Fly mode enabled (note: no 'fly' privilege)" -msgstr "Modo de vuelo habilitado (nota: sin privilegio de \"volar\")" - -#: src/client/game.cpp -msgid "Fly mode disabled" -msgstr "Modo vuelo deshabilitado" - -#: src/client/game.cpp -msgid "Pitch move mode enabled" -msgstr "Modo inclinado habilitado" - -#: src/client/game.cpp -msgid "Pitch move mode disabled" -msgstr "Modo inclinado deshabilitado" - -#: src/client/game.cpp -msgid "Fast mode enabled" -msgstr "Modo rápido habilitado" - -#: src/client/game.cpp -msgid "Fast mode enabled (note: no 'fast' privilege)" -msgstr "Modo rápido habilitado (nota: sin privilegio \"fast\")" - -#: src/client/game.cpp -msgid "Fast mode disabled" -msgstr "Modo rápido deshabilitado" - -#: src/client/game.cpp -msgid "Noclip mode enabled" -msgstr "Modo Noclip habilitado" - -#: src/client/game.cpp -msgid "Noclip mode enabled (note: no 'noclip' privilege)" -msgstr "Modo Noclip habilitado (nota: sin privilegio 'noclip')" - -#: src/client/game.cpp -msgid "Noclip mode disabled" -msgstr "Modo Noclip deshabilitado" - -#: src/client/game.cpp -msgid "Cinematic mode enabled" -msgstr "Modo cinemático habilitado" - -#: src/client/game.cpp -msgid "Cinematic mode disabled" -msgstr "Modo cinemática deshabilitado" - -#: src/client/game.cpp -msgid "Can't show block bounds (disabled by game or mod)" -msgstr "" -"No se pueden mostrar los límites de los bloques (deshabilitado por el juego " -"o mod)" +msgid "Automatic forward enabled" +msgstr "Avanzado automático habilitado" #: src/client/game.cpp msgid "Block bounds hidden" @@ -1474,49 +1386,8 @@ msgid "Block bounds shown for nearby blocks" msgstr "Se muestran los límites de los bloques cercanos" #: src/client/game.cpp -msgid "Automatic forward enabled" -msgstr "Avanzado automático habilitado" - -#: src/client/game.cpp -msgid "Automatic forward disabled" -msgstr "Avanzado automático deshabilitado" - -#: src/client/game.cpp -msgid "Minimap currently disabled by game or mod" -msgstr "Minimapa actualmente deshabilitado por juego o mod" - -#: src/client/game.cpp -msgid "Fog enabled by game or mod" -msgstr "Niebla habilitada por juego o mod" - -#: src/client/game.cpp -msgid "Fog enabled" -msgstr "Niebla habilitada" - -#: src/client/game.cpp -msgid "Fog disabled" -msgstr "Niebla deshabilitado" - -#: src/client/game.cpp -msgid "Debug info shown" -msgstr "Información de depuración mostrado" - -#: src/client/game.cpp -msgid "Profiler graph shown" -msgstr "Gráfico del perfilador mostrado" - -#: src/client/game.cpp -msgid "Wireframe shown" -msgstr "Estructura alámbrica mostrado" - -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" +msgid "Bounding boxes shown" msgstr "" -"Información de depuración, gráfico de perfilado y estructura alámbrica oculto" - -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "Información de depuración y gráfico del perfilador ocultos" #: src/client/game.cpp msgid "Camera update disabled" @@ -1526,6 +1397,221 @@ msgstr "Actualización de cámara deshabilitado" msgid "Camera update enabled" msgstr "Actualización de cámara habilitada" +#: src/client/game.cpp +msgid "Can't show block bounds (disabled by game or mod)" +msgstr "" +"No se pueden mostrar los límites de los bloques (deshabilitado por el juego " +"o mod)" + +#: src/client/game.cpp +msgid "Cinematic mode disabled" +msgstr "Modo cinemática deshabilitado" + +#: src/client/game.cpp +msgid "Cinematic mode enabled" +msgstr "Modo cinemático habilitado" + +#: src/client/game.cpp +msgid "Client disconnected" +msgstr "Cliente desconectado" + +#: src/client/game.cpp +msgid "Client side scripting is disabled" +msgstr "Las secuencias de comandos del lado del cliente están deshabilitadas" + +#: src/client/game.cpp +msgid "Connecting to server..." +msgstr "Conectando al servidor..." + +#: src/client/game.cpp +msgid "Connection error (timed out?)" +msgstr "" + +#: src/client/game.cpp +msgid "Connection failed for unknown reason" +msgstr "La conexión falló por motivo desconocido" + +#: src/client/game.cpp +#, c-format +msgid "Couldn't resolve address: %s" +msgstr "No se pudo resolver la dirección: %s" + +#: src/client/game.cpp +msgid "Creating client..." +msgstr "Creando cliente..." + +#: src/client/game.cpp +msgid "Creating server..." +msgstr "Creando servidor..." + +#: src/client/game.cpp +msgid "Debug info shown" +msgstr "Información de depuración mostrado" + +#: src/client/game.cpp +#, c-format +msgid "Error creating client: %s" +msgstr "Error al crear cliente: %s" + +#: src/client/game.cpp +msgid "Fast mode disabled" +msgstr "Modo rápido deshabilitado" + +#: src/client/game.cpp +msgid "Fast mode enabled" +msgstr "Modo rápido habilitado" + +#: src/client/game.cpp +msgid "Fast mode enabled (note: no 'fast' privilege)" +msgstr "Modo rápido habilitado (nota: sin privilegio \"fast\")" + +#: src/client/game.cpp +msgid "Fly mode disabled" +msgstr "Modo vuelo deshabilitado" + +#: src/client/game.cpp +msgid "Fly mode enabled" +msgstr "Modo vuelo habilitado" + +#: src/client/game.cpp +msgid "Fly mode enabled (note: no 'fly' privilege)" +msgstr "Modo de vuelo habilitado (nota: sin privilegio de \"volar\")" + +#: src/client/game.cpp +msgid "Fog disabled" +msgstr "Niebla deshabilitado" + +#: src/client/game.cpp +msgid "Fog enabled" +msgstr "Niebla habilitada" + +#: src/client/game.cpp +msgid "Fog enabled by game or mod" +msgstr "Niebla habilitada por juego o mod" + +#: src/client/game.cpp +msgid "Item definitions..." +msgstr "Definiciones de Objetos..." + +#: src/client/game.cpp +msgid "KiB/s" +msgstr "KiB/s" + +#: src/client/game.cpp +msgid "MiB/s" +msgstr "MiB/s" + +#: src/client/game.cpp +msgid "Minimap currently disabled by game or mod" +msgstr "Minimapa actualmente deshabilitado por juego o mod" + +#: src/client/game.cpp +msgid "Multiplayer" +msgstr "Multijugador" + +#: src/client/game.cpp +msgid "Noclip mode disabled" +msgstr "Modo Noclip deshabilitado" + +#: src/client/game.cpp +msgid "Noclip mode enabled" +msgstr "Modo Noclip habilitado" + +#: src/client/game.cpp +msgid "Noclip mode enabled (note: no 'noclip' privilege)" +msgstr "Modo Noclip habilitado (nota: sin privilegio 'noclip')" + +#: src/client/game.cpp +msgid "Node definitions..." +msgstr "Definiciones de nodos…" + +#: src/client/game.cpp +msgid "Pitch move mode disabled" +msgstr "Modo inclinado deshabilitado" + +#: src/client/game.cpp +msgid "Pitch move mode enabled" +msgstr "Modo inclinado habilitado" + +#: src/client/game.cpp +msgid "Profiler graph shown" +msgstr "Gráfico del perfilador mostrado" + +#: src/client/game.cpp +msgid "Resolving address..." +msgstr "Resolviendo dirección..." + +#: src/client/game.cpp +msgid "Shutting down..." +msgstr "Cerrando..." + +#: src/client/game.cpp src/client/game_formspec.cpp +msgid "Singleplayer" +msgstr "Un Jugador" + +#: src/client/game.cpp +msgid "Sound muted" +msgstr "Sonido muteado" + +#: src/client/game.cpp +msgid "Sound system is not supported on this build" +msgstr "El sistema de sonido no es compatible con esta compilación" + +#: src/client/game.cpp +msgid "Sound unmuted" +msgstr "Sonido desmuteado" + +#: src/client/game.cpp +#, c-format +msgid "The server is probably running a different version of %s." +msgstr "" + +#: src/client/game.cpp +#, c-format +msgid "Unable to connect to %s because IPv6 is disabled" +msgstr "No se puede conectar a %s porque IPv6 está deshabilitado" + +#: src/client/game.cpp +#, c-format +msgid "Unable to listen on %s because IPv6 is disabled" +msgstr "No se puede escuchar en %s porque IPv6 está deshabilitado" + +#: src/client/game.cpp +msgid "Unlimited viewing range disabled" +msgstr "Rango de visualización ilimitado deshabilitado" + +#: src/client/game.cpp +msgid "Unlimited viewing range enabled" +msgstr "Rango de visualización ilimitado habilitado" + +#: src/client/game.cpp +msgid "Unlimited viewing range enabled, but forbidden by game or mod" +msgstr "" +"Rango de visualización ilimitado habilitado, pero prohibido por el juego o " +"mod" + +#: src/client/game.cpp +#, c-format +msgid "Viewing changed to %d (the minimum)" +msgstr "La visualización cambió a %d (el mínimo)" + +#: src/client/game.cpp +#, c-format +msgid "Viewing changed to %d (the minimum), but limited to %d by game or mod" +msgstr "" +"La visualización cambió a %d (el mínimo), pero está limitada a %d por juego " +"o mod" + +#: src/client/game.cpp +#, c-format +msgid "Viewing range changed to %d" +msgstr "El rango de visión cambió a %d" + +#: src/client/game.cpp +#, c-format +msgid "Viewing range changed to %d (the maximum)" +msgstr "El rango de visión cambió a %d (el máximo)" + #: src/client/game.cpp #, c-format msgid "" @@ -1534,60 +1620,55 @@ msgstr "" "El rango de visión cambió a %d (el máximo), pero está limitado a %d por " "juego o mod" -#: src/client/game.cpp -#, c-format -msgid "Viewing range changed to %d (the maximum)" -msgstr "El rango de visión cambió a %d (el máximo)" - #: src/client/game.cpp #, c-format msgid "Viewing range changed to %d, but limited to %d by game or mod" -msgstr "El rango de visión cambió a %d, pero está limitado a %d por juego o mod" - -#: src/client/game.cpp -#, c-format -msgid "Viewing range changed to %d" -msgstr "El rango de visión cambió a %d" - -#: src/client/game.cpp -#, c-format -msgid "Viewing changed to %d (the minimum), but limited to %d by game or mod" msgstr "" -"La visualización cambió a %d (el mínimo), pero está limitada a %d por juego " -"o mod" +"El rango de visión cambió a %d, pero está limitado a %d por juego o mod" #: src/client/game.cpp #, c-format -msgid "Viewing changed to %d (the minimum)" -msgstr "La visualización cambió a %d (el mínimo)" +msgid "Volume changed to %d%%" +msgstr "Volumen cambiado a %d%%" #: src/client/game.cpp -msgid "Unlimited viewing range enabled, but forbidden by game or mod" +msgid "Wireframe not supported by video driver" msgstr "" -"Rango de visualización ilimitado habilitado, pero prohibido por el juego o " -"mod" #: src/client/game.cpp -msgid "Unlimited viewing range enabled" -msgstr "Rango de visualización ilimitado habilitado" - -#: src/client/game.cpp -msgid "Unlimited viewing range disabled" -msgstr "Rango de visualización ilimitado deshabilitado" +msgid "Wireframe shown" +msgstr "Estructura alámbrica mostrado" #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "Zoom actualmente deshabilitado por juego o mod" -#: src/client/game.cpp -msgid "You died" -msgstr "Has muerto" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "" -#: src/client/game.cpp -msgid "Respawn" -msgstr "Reaparecer" +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "" -#: src/client/game.cpp +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "Cambiar contraseña" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "Continuar" + +#: src/client/game_formspec.cpp msgid "" "Controls:\n" "No menu open:\n" @@ -1615,96 +1696,64 @@ msgstr "" "- tocar y arrastrar, tocar el segundo dedo\n" " -> colocar un solo elemento en un slot\n" -#: src/client/game.cpp -msgid "Continue" -msgstr "" - -#: src/client/game.cpp -msgid "Change Password" -msgstr "" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "" - -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "" - -#: src/client/game.cpp +#: src/client/game_formspec.cpp msgid "Exit to Menu" -msgstr "" +msgstr "Salir al menú" -#: src/client/game.cpp +#: src/client/game_formspec.cpp msgid "Exit to OS" -msgstr "" +msgstr "Salir al sistema operativo" -#: src/client/game.cpp +#: src/client/game_formspec.cpp msgid "Game info:" -msgstr "" +msgstr "Información del juego:" -#: src/client/game.cpp -msgid "- Mode: " -msgstr "" +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "Juego pausado" -#: src/client/game.cpp +#: src/client/game_formspec.cpp msgid "Hosting server" msgstr "" -#: src/client/game.cpp -msgid "Remote server" -msgstr "" - -#: src/client/game.cpp -msgid "On" -msgstr "" - -#: src/client/game.cpp +#: src/client/game_formspec.cpp msgid "Off" msgstr "" -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " +#: src/client/game_formspec.cpp +msgid "On" msgstr "" -#: src/client/game.cpp -msgid "- Public: " +#: src/client/game_formspec.cpp +msgid "Remote server" msgstr "" -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "" +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "Reaparecer" -#: src/client/game.cpp -#, c-format -msgid "The server is probably running a different version of %s." -msgstr "" +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "Volumen del sonido" -#: src/client/game.cpp -msgid "A serialization error occurred:" -msgstr "" - -#: src/client/game.cpp src/client/shader.cpp src/server.cpp -msgid "" -"\n" -"Check debug.txt for details." -msgstr "" - -#: src/client/game.cpp -msgid "Connection error (timed out?)" -msgstr "" - -#: src/client/gameui.cpp -msgid "Chat shown" -msgstr "" - -#: src/client/gameui.cpp -msgid "Chat hidden" -msgstr "" +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "Has muerto" #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" +msgstr "Chat actualmente desactivado por el juego o mod" + +#: src/client/gameui.cpp +msgid "Chat hidden" +msgstr "Chat escondido" + +#: src/client/gameui.cpp +msgid "Chat shown" +msgstr "Chat mostrado" + +#: src/client/gameui.cpp +msgid "HUD hidden" msgstr "" #: src/client/gameui.cpp @@ -1712,7 +1761,7 @@ msgid "HUD shown" msgstr "" #: src/client/gameui.cpp -msgid "HUD hidden" +msgid "Profiler hidden" msgstr "" #: src/client/gameui.cpp @@ -1720,16 +1769,12 @@ msgstr "" msgid "Profiler shown (page %d of %d)" msgstr "" -#: src/client/gameui.cpp -msgid "Profiler hidden" +#: src/client/keycode.cpp +msgid "Apps" msgstr "" #: src/client/keycode.cpp -msgid "Left Button" -msgstr "" - -#: src/client/keycode.cpp -msgid "Right Button" +msgid "Backspace" msgstr "" #. ~ Usually paired with the Pause key @@ -1738,127 +1783,124 @@ msgid "Break Key" msgstr "" #: src/client/keycode.cpp -msgid "Middle Button" -msgstr "" - -#: src/client/keycode.cpp -msgid "X Button 1" -msgstr "" - -#: src/client/keycode.cpp -msgid "X Button 2" -msgstr "" - -#: src/client/keycode.cpp -msgid "Backspace" -msgstr "" - -#: src/client/keycode.cpp -msgid "Tab" +msgid "Caps Lock" msgstr "" #: src/client/keycode.cpp msgid "Clear Key" msgstr "" -#: src/client/keycode.cpp -msgid "Return Key" -msgstr "" - -#: src/client/keycode.cpp -msgid "Shift Key" -msgstr "" - #: src/client/keycode.cpp msgid "Control Key" msgstr "" -#. ~ Key name, common on Windows keyboards -#: src/client/keycode.cpp -msgid "Menu Key" -msgstr "" - -#. ~ Usually paired with the Break key -#: src/client/keycode.cpp -msgid "Pause Key" -msgstr "" - -#: src/client/keycode.cpp -msgid "Caps Lock" -msgstr "" - -#: src/client/keycode.cpp -msgid "Space" -msgstr "" - -#: src/client/keycode.cpp -msgid "Page Up" -msgstr "" - -#: src/client/keycode.cpp -msgid "Page Down" -msgstr "" - -#: src/client/keycode.cpp -msgid "End" -msgstr "" - -#: src/client/keycode.cpp -msgid "Home" -msgstr "" - -#: src/client/keycode.cpp -msgid "Left Arrow" -msgstr "" - -#: src/client/keycode.cpp -msgid "Up Arrow" -msgstr "" - -#: src/client/keycode.cpp -msgid "Right Arrow" -msgstr "" - -#: src/client/keycode.cpp -msgid "Down Arrow" -msgstr "" - -#. ~ Key name -#: src/client/keycode.cpp -msgid "Select" -msgstr "" - -#. ~ "Print screen" key -#: src/client/keycode.cpp -msgid "Print" -msgstr "" - -#: src/client/keycode.cpp -msgid "Execute" -msgstr "" - -#: src/client/keycode.cpp -msgid "Snapshot" -msgstr "" - -#: src/client/keycode.cpp -msgid "Insert" -msgstr "" - #: src/client/keycode.cpp msgid "Delete Key" msgstr "" +#: src/client/keycode.cpp +msgid "Down Arrow" +msgstr "" + +#: src/client/keycode.cpp +msgid "End" +msgstr "" + +#: src/client/keycode.cpp +msgid "Erase EOF" +msgstr "" + +#: src/client/keycode.cpp +msgid "Execute" +msgstr "" + #: src/client/keycode.cpp msgid "Help" +msgstr "Ayuda" + +#: src/client/keycode.cpp +msgid "Home" +msgstr "" + +#: src/client/keycode.cpp +msgid "IME Accept" +msgstr "" + +#: src/client/keycode.cpp +msgid "IME Convert" +msgstr "" + +#: src/client/keycode.cpp +msgid "IME Escape" +msgstr "" + +#: src/client/keycode.cpp +msgid "IME Mode Change" +msgstr "" + +#: src/client/keycode.cpp +msgid "IME Nonconvert" +msgstr "" + +#: src/client/keycode.cpp +msgid "Insert" +msgstr "Introducir" + +#: src/client/keycode.cpp +msgid "Left Arrow" +msgstr "" + +#: src/client/keycode.cpp +msgid "Left Button" +msgstr "Botón izquierdo" + +#: src/client/keycode.cpp +msgid "Left Control" +msgstr "" + +#: src/client/keycode.cpp +msgid "Left Menu" +msgstr "" + +#: src/client/keycode.cpp +msgid "Left Shift" msgstr "" #: src/client/keycode.cpp msgid "Left Windows" msgstr "" +#. ~ Key name, common on Windows keyboards #: src/client/keycode.cpp -msgid "Right Windows" +msgid "Menu Key" +msgstr "" + +#: src/client/keycode.cpp +msgid "Middle Button" +msgstr "" + +#: src/client/keycode.cpp +msgid "Num Lock" +msgstr "" + +#: src/client/keycode.cpp +msgid "Numpad *" +msgstr "" + +#: src/client/keycode.cpp +msgid "Numpad +" +msgstr "" + +#: src/client/keycode.cpp +msgid "Numpad -" +msgstr "" + +#: src/client/keycode.cpp +msgid "Numpad ." +msgstr "" + +#: src/client/keycode.cpp +msgid "Numpad /" msgstr "" #: src/client/keycode.cpp @@ -1902,79 +1944,70 @@ msgid "Numpad 9" msgstr "" #: src/client/keycode.cpp -msgid "Numpad *" +msgid "OEM Clear" msgstr "" #: src/client/keycode.cpp -msgid "Numpad +" +msgid "Page Down" msgstr "" #: src/client/keycode.cpp -msgid "Numpad ." +msgid "Page Up" +msgstr "" + +#. ~ Usually paired with the Break key +#: src/client/keycode.cpp +msgid "Pause Key" msgstr "" #: src/client/keycode.cpp -msgid "Numpad -" +msgid "Play" +msgstr "" + +#. ~ "Print screen" key +#: src/client/keycode.cpp +msgid "Print" msgstr "" #: src/client/keycode.cpp -msgid "Numpad /" +msgid "Return Key" msgstr "" #: src/client/keycode.cpp -msgid "Num Lock" +msgid "Right Arrow" msgstr "" #: src/client/keycode.cpp -msgid "Scroll Lock" -msgstr "" - -#: src/client/keycode.cpp -msgid "Left Shift" -msgstr "" - -#: src/client/keycode.cpp -msgid "Right Shift" -msgstr "" - -#: src/client/keycode.cpp -msgid "Left Control" -msgstr "" +msgid "Right Button" +msgstr "Botón derecho" #: src/client/keycode.cpp msgid "Right Control" msgstr "" -#: src/client/keycode.cpp -msgid "Left Menu" -msgstr "" - #: src/client/keycode.cpp msgid "Right Menu" msgstr "" #: src/client/keycode.cpp -msgid "IME Escape" +msgid "Right Shift" msgstr "" #: src/client/keycode.cpp -msgid "IME Convert" +msgid "Right Windows" msgstr "" #: src/client/keycode.cpp -msgid "IME Nonconvert" +msgid "Scroll Lock" msgstr "" +#. ~ Key name #: src/client/keycode.cpp -msgid "IME Accept" -msgstr "" +msgid "Select" +msgstr "Seleccionar" #: src/client/keycode.cpp -msgid "IME Mode Change" -msgstr "" - -#: src/client/keycode.cpp -msgid "Apps" +msgid "Shift Key" msgstr "" #: src/client/keycode.cpp @@ -1982,51 +2015,60 @@ msgid "Sleep" msgstr "" #: src/client/keycode.cpp -msgid "Erase EOF" +msgid "Snapshot" msgstr "" #: src/client/keycode.cpp -msgid "Play" +msgid "Space" +msgstr "Espacio" + +#: src/client/keycode.cpp +msgid "Tab" +msgstr "Pestaña" + +#: src/client/keycode.cpp +msgid "Up Arrow" +msgstr "" + +#: src/client/keycode.cpp +msgid "X Button 1" +msgstr "" + +#: src/client/keycode.cpp +msgid "X Button 2" msgstr "" #: src/client/keycode.cpp msgid "Zoom Key" msgstr "" -#: src/client/keycode.cpp -msgid "OEM Clear" -msgstr "" - #: src/client/minimap.cpp msgid "Minimap hidden" msgstr "" #: src/client/minimap.cpp #, c-format -msgid "Minimap in surface mode, Zoom x%d" +msgid "Minimap in radar mode, Zoom x%d" msgstr "" #: src/client/minimap.cpp #, c-format -msgid "Minimap in radar mode, Zoom x%d" +msgid "Minimap in surface mode, Zoom x%d" msgstr "" #: src/client/minimap.cpp msgid "Minimap in texture mode" msgstr "" -#: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." -msgstr "" - #: src/client/shader.cpp #, c-format msgid "Failed to compile the \"%s\" shader." msgstr "" -#: src/content/mod_configuration.cpp -msgid "Some mods have unsatisfied dependencies:" -msgstr "" +#: src/client/shader.cpp +#, fuzzy +msgid "GLSL is not supported by the driver" +msgstr "El sistema de sonido no es compatible con esta compilación" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" #: src/content/mod_configuration.cpp @@ -2045,44 +2087,36 @@ msgid "" "the mods." msgstr "" -#: src/gui/guiChatConsole.cpp -msgid "Opening webpage" +#: src/content/mod_configuration.cpp +msgid "Some mods have unsatisfied dependencies:" msgstr "" #: src/gui/guiChatConsole.cpp msgid "Failed to open webpage" msgstr "" +#: src/gui/guiChatConsole.cpp +msgid "Opening webpage" +msgstr "" + #: src/gui/guiFormSpecMenu.cpp msgid "Proceed" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp -msgid "Keybindings." -msgstr "" - #: src/gui/guiKeyChangeMenu.cpp msgid "\"Aux1\" = climb down" msgstr "" #: src/gui/guiKeyChangeMenu.cpp -msgid "Double tap \"jump\" to toggle fly" +msgid "Autoforward" msgstr "" #: src/gui/guiKeyChangeMenu.cpp src/settings_translation_file.cpp msgid "Automatic jumping" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp -msgid "Key already in use" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "press key" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Forward" +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp +msgid "Aux1" msgstr "" #: src/gui/guiKeyChangeMenu.cpp @@ -2090,129 +2124,145 @@ msgid "Backward" msgstr "" #: src/gui/guiKeyChangeMenu.cpp -msgid "Left" +msgid "Block bounds" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp -msgid "Right" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp -msgid "Aux1" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp -msgid "Jump" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp -msgid "Sneak" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp -msgid "Drop" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp -msgid "Inventory" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Prev. item" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Next item" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp -msgid "Zoom" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp -msgid "Toggle minimap" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp -msgid "Toggle fly" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Toggle pitchmove" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp -msgid "Toggle fast" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp -msgid "Toggle noclip" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Mute" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Dec. volume" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Inc. volume" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Autoforward" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Screenshot" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp -msgid "Range select" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Dec. range" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Inc. range" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Console" -msgstr "" - #: src/gui/guiKeyChangeMenu.cpp msgid "Command" msgstr "" +#: src/gui/guiKeyChangeMenu.cpp +msgid "Console" +msgstr "" + +#: src/gui/guiKeyChangeMenu.cpp +msgid "Dec. range" +msgstr "" + +#: src/gui/guiKeyChangeMenu.cpp +msgid "Dec. volume" +msgstr "" + +#: src/gui/guiKeyChangeMenu.cpp +msgid "Double tap \"jump\" to toggle fly" +msgstr "" + +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp +msgid "Drop" +msgstr "" + +#: src/gui/guiKeyChangeMenu.cpp +msgid "Forward" +msgstr "" + +#: src/gui/guiKeyChangeMenu.cpp +msgid "Inc. range" +msgstr "" + +#: src/gui/guiKeyChangeMenu.cpp +msgid "Inc. volume" +msgstr "" + +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp +msgid "Inventory" +msgstr "" + +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp +msgid "Jump" +msgstr "" + +#: src/gui/guiKeyChangeMenu.cpp +msgid "Key already in use" +msgstr "" + +#: src/gui/guiKeyChangeMenu.cpp +msgid "Keybindings." +msgstr "" + +#: src/gui/guiKeyChangeMenu.cpp +msgid "Left" +msgstr "" + #: src/gui/guiKeyChangeMenu.cpp msgid "Local command" msgstr "" #: src/gui/guiKeyChangeMenu.cpp -msgid "Block bounds" +msgid "Mute" +msgstr "" + +#: src/gui/guiKeyChangeMenu.cpp +msgid "Next item" +msgstr "" + +#: src/gui/guiKeyChangeMenu.cpp +msgid "Prev. item" +msgstr "" + +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp +msgid "Range select" +msgstr "" + +#: src/gui/guiKeyChangeMenu.cpp +msgid "Right" +msgstr "" + +#: src/gui/guiKeyChangeMenu.cpp +msgid "Screenshot" +msgstr "" + +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp +msgid "Sneak" msgstr "" #: src/gui/guiKeyChangeMenu.cpp msgid "Toggle HUD" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "" +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp +msgid "Toggle fast" +msgstr "" + +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp +msgid "Toggle fly" +msgstr "" + #: src/gui/guiKeyChangeMenu.cpp msgid "Toggle fog" msgstr "" +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp +msgid "Toggle minimap" +msgstr "" + +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp +msgid "Toggle noclip" +msgstr "" + +#: src/gui/guiKeyChangeMenu.cpp +msgid "Toggle pitchmove" +msgstr "" + +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp +msgid "Zoom" +msgstr "" + +#: src/gui/guiKeyChangeMenu.cpp +msgid "press key" +msgstr "" + +#: src/gui/guiOpenURL.cpp +msgid "Open" +msgstr "" + #: src/gui/guiOpenURL.cpp msgid "Open URL?" msgstr "" @@ -2221,12 +2271,8 @@ msgstr "" msgid "Unable to open URL" msgstr "" -#: src/gui/guiOpenURL.cpp -msgid "Open" -msgstr "" - #: src/gui/guiPasswordChange.cpp -msgid "Old Password" +msgid "Change" msgstr "" #: src/gui/guiPasswordChange.cpp @@ -2234,19 +2280,14 @@ msgid "New Password" msgstr "" #: src/gui/guiPasswordChange.cpp -msgid "Change" +msgid "Old Password" msgstr "" #: src/gui/guiPasswordChange.cpp msgid "Passwords do not match!" msgstr "" -#: src/gui/guiVolumeChange.cpp -#, c-format -msgid "Sound Volume: %d%%" -msgstr "" - -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "" @@ -2254,52 +2295,50 @@ msgstr "" msgid "Muted" msgstr "" -#: src/gui/touchcontrols.cpp -msgid "Overflow menu" +#: src/gui/guiVolumeChange.cpp +#, c-format +msgid "Sound Volume: %d%%" msgstr "" -#: src/gui/touchcontrols.cpp -msgid "Toggle debug" +#: src/gui/touchscreeneditor.cpp +msgid "Add button" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "¡Hecho!" + +#: src/gui/touchscreeneditor.cpp +msgid "Remove" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp msgid "Joystick" msgstr "" -#: src/network/clientpackethandler.cpp -msgid "Invalid password" +#: src/gui/touchscreenlayout.cpp +msgid "Overflow menu" msgstr "" -#: src/network/clientpackethandler.cpp -msgid "" -"Your client sent something the server didn't expect. Try reconnecting or " -"updating your client." -msgstr "" - -#: src/network/clientpackethandler.cpp -msgid "The server is running in singleplayer mode. You cannot connect." -msgstr "" - -#: src/network/clientpackethandler.cpp -msgid "" -"Your client's version is not supported.\n" -"Please contact the server administrator." -msgstr "" - -#: src/network/clientpackethandler.cpp -msgid "Player name contains disallowed characters" -msgstr "" - -#: src/network/clientpackethandler.cpp -msgid "Player name not allowed" -msgstr "" - -#: src/network/clientpackethandler.cpp -msgid "Too many users" -msgstr "" - -#: src/network/clientpackethandler.cpp -msgid "Empty passwords are disallowed. Set a password and try again." +#: src/gui/touchscreenlayout.cpp +msgid "Toggle debug" msgstr "" #: src/network/clientpackethandler.cpp @@ -2308,10 +2347,43 @@ msgid "" "unexpectedly, try again in a minute." msgstr "" +#: src/network/clientpackethandler.cpp +msgid "Empty passwords are disallowed. Set a password and try again." +msgstr "" + #: src/network/clientpackethandler.cpp msgid "Internal server error" msgstr "" +#: src/network/clientpackethandler.cpp +msgid "Invalid password" +msgstr "" + +#. ~ DO NOT TRANSLATE THIS LITERALLY! +#. This is a special string which needs to contain the translation's +#. language code (e.g. "de" for German). +#: src/network/clientpackethandler.cpp src/script/lua_api/l_client.cpp +#: src/script/lua_api/l_mainmenu.cpp +msgid "LANG_CODE" +msgstr "" + +#: src/network/clientpackethandler.cpp +msgid "" +"Name is not registered. To create an account on this server, click 'Register'" +msgstr "" + +#: src/network/clientpackethandler.cpp +msgid "Name is taken. Please choose another name" +msgstr "" + +#: src/network/clientpackethandler.cpp +msgid "Player name contains disallowed characters" +msgstr "" + +#: src/network/clientpackethandler.cpp +msgid "Player name not allowed" +msgstr "" + #: src/network/clientpackethandler.cpp msgid "Server shutting down" msgstr "" @@ -2322,383 +2394,135 @@ msgid "" msgstr "" #: src/network/clientpackethandler.cpp -msgid "" -"Name is not registered. To create an account on this server, click 'Register'" +msgid "The server is running in singleplayer mode. You cannot connect." msgstr "" #: src/network/clientpackethandler.cpp -msgid "Name is taken. Please choose another name" -msgstr "" - -#. ~ DO NOT TRANSLATE THIS LITERALLY! -#. This is a special string which needs to contain the translation's -#. language code (e.g. "de" for German). -#: src/network/clientpackethandler.cpp src/script/lua_api/l_client.cpp -#: src/script/lua_api/l_mainmenu.cpp -msgid "LANG_CODE" +msgid "Too many users" msgstr "" #: src/network/clientpackethandler.cpp msgid "Unknown disconnect reason." msgstr "" +#: src/network/clientpackethandler.cpp +msgid "" +"Your client sent something the server didn't expect. Try reconnecting or " +"updating your client." +msgstr "" + +#: src/network/clientpackethandler.cpp +msgid "" +"Your client's version is not supported.\n" +"Please contact the server administrator." +msgstr "" + #: src/server.cpp #, c-format msgid "%s while shutting down: " msgstr "" #: src/settings_translation_file.cpp -msgid "Camera smoothing" +msgid "" +"(X,Y,Z) offset of fractal from world center in units of 'scale'.\n" +"Can be used to move a desired point to (0, 0) to create a\n" +"suitable spawn point, or to allow 'zooming in' on a desired\n" +"point by increasing 'scale'.\n" +"The default is tuned for a suitable spawn point for Mandelbrot\n" +"sets with default parameters, it may need altering in other\n" +"situations.\n" +"Range roughly -2 to 2. Multiply by 'scale' for offset in nodes." msgstr "" #: src/settings_translation_file.cpp msgid "" -"Smooths rotation of camera, also called look or mouse smoothing. 0 to " -"disable." +"(X,Y,Z) scale of fractal in nodes.\n" +"Actual fractal size will be 2 to 3 times larger.\n" +"These numbers can be made very large, the fractal does\n" +"not have to fit inside the world.\n" +"Increase these to 'zoom' into the detail of the fractal.\n" +"Default is for a vertically-squashed shape suitable for\n" +"an island, set all 3 numbers equal for the raw shape." msgstr "" #: src/settings_translation_file.cpp -msgid "Camera smoothing in cinematic mode" +msgid "2D noise that controls the shape/size of ridged mountains." msgstr "" #: src/settings_translation_file.cpp -msgid "" -"Smooths rotation of camera when in cinematic mode, 0 to disable. Enter " -"cinematic mode by using the key set in Controls." +msgid "2D noise that controls the shape/size of rolling hills." msgstr "" #: src/settings_translation_file.cpp -msgid "Build inside player" +msgid "2D noise that controls the shape/size of step mountains." msgstr "" #: src/settings_translation_file.cpp -msgid "" -"If enabled, you can place nodes at the position (feet + eye level) where you " -"stand.\n" -"This is helpful when working with nodeboxes in small areas." +msgid "2D noise that controls the size/occurrence of ridged mountain ranges." msgstr "" #: src/settings_translation_file.cpp -msgid "Aux1 key for climbing/descending" +msgid "2D noise that controls the size/occurrence of rolling hills." msgstr "" #: src/settings_translation_file.cpp -msgid "" -"If enabled, \"Aux1\" key instead of \"Sneak\" key is used for climbing down " -"and\n" -"descending." +msgid "2D noise that controls the size/occurrence of step mountain ranges." msgstr "" #: src/settings_translation_file.cpp -msgid "Double tap jump for fly" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Double-tapping the jump key toggles fly mode." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Always fly fast" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"If disabled, \"Aux1\" key is used to fly fast if both fly and fast mode are\n" -"enabled." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Place repetition interval" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"The time in seconds it takes between repeated node placements when holding\n" -"the place button." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Minimum dig repetition interval" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"The minimum time in seconds it takes between digging nodes when holding\n" -"the dig button." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Automatically jump up single-node obstacles." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Safe digging and placing" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Prevent digging and placing from repeating when holding the respective " -"buttons.\n" -"Enable this when you dig or place too often by accident.\n" -"On touchscreens, this only affects digging." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Keyboard and Mouse" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Invert mouse" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Invert vertical mouse movement." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mouse sensitivity" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mouse sensitivity multiplier." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Hotbar: Enable mouse wheel for selection" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enable mouse wheel (scroll) for item selection in hotbar." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Hotbar: Invert mouse wheel direction" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Invert mouse wheel (scroll) direction for item selection in hotbar." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Touchscreen" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Touchscreen controls" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Enables the touchscreen controls, allowing you to play the game with a " -"touchscreen.\n" -"\"auto\" means that the touchscreen controls will be enabled and disabled\n" -"automatically depending on the last used input method." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Touchscreen sensitivity" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Touchscreen sensitivity multiplier." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Movement threshold" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"The length in pixels after which a touch interaction is considered movement." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Threshold for long taps" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"The delay in milliseconds after which a touch interaction is considered a " -"long tap." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Use crosshair for touch screen" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Use crosshair to select object instead of whole screen.\n" -"If enabled, a crosshair will be shown and will be used for selecting object." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Fixed virtual joystick" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Fixes the position of virtual joystick.\n" -"If disabled, virtual joystick will center to first-touch's position." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Virtual joystick triggers Aux1 button" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Use virtual joystick to trigger \"Aux1\" button.\n" -"If enabled, virtual joystick will also tap \"Aux1\" button when out of main " -"circle." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Punch gesture" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"The gesture for punching players/entities.\n" -"This can be overridden by games and mods.\n" -"\n" -"* short_tap\n" -"Easy to use and well-known from other games that shall not be named.\n" -"\n" -"* long_tap\n" -"Known from the classic Luanti mobile controls.\n" -"Combat is more or less impossible." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Graphics and Audio" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Graphics" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Screen" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Screen width" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Width component of the initial window size." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Screen height" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Height component of the initial window size." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Window maximized" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Whether the window is maximized." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Remember screen size" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Save window size automatically when modified.\n" -"If true, screen size is saved in screen_w and screen_h, and whether the " -"window\n" -"is maximized is stored in window_maximized.\n" -"(Autosaving window_maximized only works if compiled with SDL.)" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Full screen" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Fullscreen mode." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Pause on lost window focus" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Open the pause menu when the window's focus is lost. Does not pause if a " -"formspec is\n" -"open." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "FPS" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Maximum FPS" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"If FPS would go higher than this, limit it by sleeping\n" -"to not waste CPU power for no benefit." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "VSync" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Vertical screen synchronization. Your system may still force VSync on even " -"if this is disabled." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "FPS when unfocused or paused" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Maximum FPS when the window is not focused, or when the game is paused." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Viewing range" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "View distance in nodes." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Undersampling" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Undersampling is similar to using a lower screen resolution, but it applies\n" -"to the game world only, keeping the GUI intact.\n" -"It should give a significant performance boost at the cost of less detailed " -"image.\n" -"Higher values result in a less detailed image." +msgid "2D noise that locates the river valleys and channels." msgstr "" #: src/settings_translation_file.cpp msgid "3D" msgstr "" +#: src/settings_translation_file.cpp +msgid "3D clouds" +msgstr "" + #: src/settings_translation_file.cpp msgid "3D mode" msgstr "" +#: src/settings_translation_file.cpp +msgid "3D mode parallax strength" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "3D noise defining giant caverns." +msgstr "Ruido 3D que define cavernas gigantes." + +#: src/settings_translation_file.cpp +msgid "" +"3D noise defining mountain structure and height.\n" +"Also defines structure of floatland mountain terrain." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"3D noise defining structure of floatlands.\n" +"If altered from the default, the noise 'scale' (0.7 by default) may need\n" +"to be adjusted, as floatland tapering functions best when this noise has\n" +"a value range of approximately -2.0 to 2.0." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "3D noise defining structure of river canyon walls." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "3D noise defining terrain." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "3D noise for mountain overhangs, cliffs, etc. Usually small variations." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "3D noise that determines number of dungeons per mapchunk." +msgstr "" + #: src/settings_translation_file.cpp msgid "" "3D support.\n" @@ -2708,66 +2532,93 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "3D mode parallax strength" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Strength of 3D mode parallax." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Bobbing" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Arm inertia" +"- crossview: Cross-eyed 3d" msgstr "" #: src/settings_translation_file.cpp msgid "" -"Arm inertia, gives a more realistic movement of\n" -"the arm when the camera moves." +"A chosen map seed for a new map, leave empty for random.\n" +"Will be overridden when creating a new world in the main menu." msgstr "" #: src/settings_translation_file.cpp -msgid "View bobbing factor" +msgid "A message to be displayed to all clients when the server crashes." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "A message to be displayed to all clients when the server shuts down." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "ABM interval" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "ABM time budget" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Absolute limit of queued blocks to emerge" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Acceleration in air" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Acceleration of gravity, in nodes per second per second." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Active Block Modifiers" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Active block management interval" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Active block range" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Active object send range" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Adjust the detected display density, used for scaling UI elements." +msgstr "" + +#: src/settings_translation_file.cpp +#, c-format +msgid "" +"Adjusts the density of the floatland layer.\n" +"Increase value to increase density. Can be positive or negative.\n" +"Value = 0.0: 50% of volume is floatland.\n" +"Value = 2.0 (can be higher depending on 'mgv7_np_floatland', always test\n" +"to be sure) creates a solid floatland layer." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Admin name" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Advanced" msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable view bobbing and amount of view bobbing.\n" -"For example: 0 for no view bobbing; 1.0 for normal; 2.0 for double." +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." msgstr "" #: src/settings_translation_file.cpp -msgid "Fall bobbing factor" +msgid "Allow clouds to look 3D instead of flat." msgstr "" #: src/settings_translation_file.cpp -msgid "" -"Multiplier for fall bobbing.\n" -"For example: 0 for no view bobbing; 1.0 for normal; 2.0 for double." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Camera" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Field of view" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Field of view in degrees." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Light curve gamma" +msgid "Allows liquids to be translucent." msgstr "" #: src/settings_translation_file.cpp @@ -2779,190 +2630,16 @@ msgid "" "light, it has very little effect on natural night light." msgstr "" +#: src/settings_translation_file.cpp +msgid "Always fly fast" +msgstr "" + #: src/settings_translation_file.cpp msgid "Ambient occlusion gamma" msgstr "" #: src/settings_translation_file.cpp -msgid "" -"The strength (darkness) of node ambient-occlusion shading.\n" -"Lower is darker, Higher is lighter. The valid range of values for this\n" -"setting is 0.25 to 4.0 inclusive. If the value is out of range it will be\n" -"set to the nearest valid value." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Screenshots" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Screenshot folder" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Path to save screenshots at. Can be an absolute or relative path.\n" -"The folder will be created if it doesn't already exist." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Screenshot format" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Format of screenshots." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Screenshot quality" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Screenshot quality. Only used for JPEG format.\n" -"1 means worst quality; 100 means best quality.\n" -"Use 0 for default quality." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Node and Entity Highlighting" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Node highlighting" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Method used to highlight selected object." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Show entity selection boxes" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Show entity selection boxes\n" -"A restart is required after changing this." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Selection box color" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Selection box border color (R,G,B)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Selection box width" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Width of the selection box lines around nodes." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Crosshair color" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Crosshair color (R,G,B).\n" -"Also controls the object crosshair color" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Crosshair alpha" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Crosshair alpha (opaqueness, between 0 and 255).\n" -"This also applies to the object crosshair." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Fog" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Whether to fog out the end of the visible area." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Colored fog" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Make fog and sky colors depend on daytime (dawn/sunset) and view direction." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Fog start" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Fraction of the visible distance at which fog starts to be rendered" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Clouds" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "3D clouds" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Soft clouds" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Use smooth cloud shading." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Filtering and Antialiasing" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mipmapping" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Use mipmaps when scaling textures. May slightly increase performance,\n" -"especially when using a high-resolution texture pack.\n" -"Gamma-correct downscaling is not supported." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Bilinear filtering" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Use bilinear filtering when scaling textures." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Trilinear filtering" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Use trilinear filtering when scaling textures.\n" -"If both bilinear and trilinear filtering are enabled, trilinear filtering\n" -"is applied." +msgid "Amplifies the valleys." msgstr "" #: src/settings_translation_file.cpp @@ -2970,33 +2647,11 @@ msgid "Anisotropic filtering" msgstr "" #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "Announce server" msgstr "" #: src/settings_translation_file.cpp -msgid "Antialiasing method" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Select the antialiasing method to apply.\n" -"\n" -"* None - No antialiasing (default)\n" -"\n" -"* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" -"A.K.A multi-sample antialiasing (MSAA)\n" -"Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" -"\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" -"Applies a post-processing filter to detect and smoothen high-contrast " -"edges.\n" -"Provides balance between speed and image quality.\n" -"\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" -"Renders higher-resolution image of the scene, then scales down to reduce\n" -"the aliasing effects. This is the slowest and the most accurate method." +msgid "Announce to this serverlist." msgstr "" #: src/settings_translation_file.cpp @@ -3004,317 +2659,27 @@ msgid "Anti-aliasing scale" msgstr "" #: src/settings_translation_file.cpp -msgid "" -"Defines the size of the sampling grid for FSAA and SSAA antialiasing " -"methods.\n" -"Value of 2 means taking 2x2 = 4 samples." +msgid "Antialiasing method" msgstr "" #: src/settings_translation_file.cpp -msgid "Occlusion Culling" +msgid "Anticheat flags" msgstr "" #: src/settings_translation_file.cpp -msgid "Occlusion Culler" +msgid "Anticheat movement tolerance" msgstr "" #: src/settings_translation_file.cpp -msgid "" -"Type of occlusion_culler\n" -"\n" -"\"loops\" is the legacy algorithm with nested loops and O(n³) complexity\n" -"\"bfs\" is the new algorithm based on breadth-first-search and side culling\n" -"\n" -"This setting should only be changed if you have performance problems." +msgid "Append item name" msgstr "" #: src/settings_translation_file.cpp -msgid "Enable Raytraced Culling" +msgid "Append item name to tooltip." msgstr "" #: src/settings_translation_file.cpp -msgid "" -"Use raytraced occlusion culling in the new culler.\n" -"This flag enables use of raytraced occlusion culling test for\n" -"client mesh sizes smaller than 4x4x4 map blocks." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Effects" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Translucent liquids" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Allows liquids to be translucent." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Leaves style" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Leaves style:\n" -"- Fancy: all faces visible\n" -"- Simple: only outer faces\n" -"- Opaque: disable transparency" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Connect glass" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Connects glass if supported by node." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Smooth lighting" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enable smooth lighting with simple ambient occlusion." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Tradeoffs for performance" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Enables tradeoffs that reduce CPU load or increase rendering performance\n" -"at the expense of minor visual glitches that do not impact game playability." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Waving Nodes" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Waving leaves" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Set to true to enable waving leaves." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Waving plants" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Set to true to enable waving plants." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Waving liquids" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Set to true to enable waving liquids (like water)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Waving liquids wave height" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"The maximum height of the surface of waving liquids.\n" -"4.0 = Wave height is two nodes.\n" -"0.0 = Wave doesn't move at all.\n" -"Default is 1.0 (1/2 node)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Waving liquids wavelength" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Length of liquid waves." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Waving liquids wave speed" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"How fast liquid waves will move. Higher = faster.\n" -"If negative, liquid waves will move backwards." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Set to true to enable Shadow Mapping." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Shadow strength gamma" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Set the shadow strength gamma.\n" -"Adjusts the intensity of in-game dynamic shadows.\n" -"Lower value means lighter shadows, higher value means darker shadows." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Shadow map max distance in nodes to render shadows" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Maximum distance to render shadows." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Shadow map texture size" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Texture size to render the shadow map on.\n" -"This must be a power of two.\n" -"Bigger numbers create better shadows but it is also more expensive." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Shadow map texture in 32 bits" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Sets shadow texture quality to 32 bits.\n" -"On false, 16 bits texture will be used.\n" -"This can cause much more artifacts in the shadow." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Poisson filtering" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Enable Poisson disk filtering.\n" -"On true uses Poisson disk to make \"soft shadows\". Otherwise uses PCF " -"filtering." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Shadow filter quality" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Define shadow filtering quality.\n" -"This simulates the soft shadows effect by applying a PCF or Poisson disk\n" -"but also uses more resources." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Colored shadows" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Map shadows update frames" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Spread a complete update of shadow map over given number of frames.\n" -"Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Soft shadow radius" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Set the soft shadow radius size.\n" -"Lower values mean sharper shadows, bigger values mean softer shadows.\n" -"Minimum value: 1.0; maximum value: 15.0" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Sky Body Orbit Tilt" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Set the default tilt of Sun/Moon orbit in degrees.\n" -"Games may change orbit tilt via API.\n" -"Value of 0 means no tilt / vertical orbit." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Post Processing" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enable Post Processing" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enables the post processing pipeline." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Filmic tone mapping" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Enables Hable's 'Uncharted 2' filmic tone mapping.\n" -"Simulates the tone curve of photographic film and how this approximates the\n" -"appearance of high dynamic range images. Mid-range contrast is slightly\n" -"enhanced, highlights and shadows are gradually compressed." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enable Automatic Exposure" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Enable automatic exposure correction\n" -"When enabled, the post-processing engine will\n" -"automatically adjust to the brightness of the scene,\n" -"simulating the behavior of human eye." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Exposure compensation" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Set the exposure compensation in EV units.\n" -"Value of 0.0 (default) means no exposure compensation.\n" -"Range: from -1 to 1.0" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enable Debanding" +msgid "Apple trees noise" msgstr "" #: src/settings_translation_file.cpp @@ -3328,50 +2693,46 @@ msgid "" "floating-point precision and it may have a higher performance impact." msgstr "" -#: src/settings_translation_file.cpp -msgid "Enable Bloom" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Set to true to enable bloom effect.\n" -"Bright colors will bleed over the neighboring objects." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Volumetric lighting" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Set to true to enable volumetric lighting effect (a.k.a. \"Godrays\")." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Other Effects" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Translucent foliage" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Simulate translucency when looking at foliage in the sunlight." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Node specular" -msgstr "" - #: src/settings_translation_file.cpp msgid "Apply specular shading to nodes." msgstr "" #: src/settings_translation_file.cpp -msgid "Liquid reflections" +msgid "Arm inertia" msgstr "" #: src/settings_translation_file.cpp -msgid "When enabled, liquid reflections are simulated." +msgid "" +"Arm inertia, gives a more realistic movement of\n" +"the arm when the camera moves." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Ask to reconnect after crash" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"At this distance the server will aggressively optimize which blocks are sent " +"to\n" +"clients.\n" +"Small values potentially improve performance a lot, at the expense of " +"visible\n" +"rendering glitches (some blocks might not be rendered correctly in caves).\n" +"Setting this to a value greater than max_block_send_distance disables this\n" +"optimization.\n" +"Stated in MapBlocks (16 nodes)." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"At this distance the server will perform a simpler and cheaper occlusion " +"check.\n" +"Smaller values potentially improve performance, at the expense of " +"temporarily visible\n" +"rendering glitches (missing blocks).\n" +"This is especially useful for very large viewing range (upwards of 500).\n" +"Stated in MapBlocks (16 nodes)." msgstr "" #: src/settings_translation_file.cpp @@ -3379,184 +2740,59 @@ msgid "Audio" msgstr "" #: src/settings_translation_file.cpp -msgid "Volume" +msgid "Automatically jump up single-node obstacles." msgstr "" #: src/settings_translation_file.cpp -msgid "" -"Volume of all sounds.\n" -"Requires the sound system to be enabled." +msgid "Automatically report to the serverlist." msgstr "" #: src/settings_translation_file.cpp -msgid "Volume when unfocused" +msgid "Autoscaling mode" msgstr "" #: src/settings_translation_file.cpp -msgid "Volume multiplier when the window is unfocused." +msgid "Aux1 key for climbing/descending" msgstr "" #: src/settings_translation_file.cpp -msgid "Mute sound" +msgid "Base ground level" msgstr "" #: src/settings_translation_file.cpp -msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" -"In-game, you can toggle the mute state with the mute key or by using the\n" -"pause menu." +msgid "Base terrain height." msgstr "" #: src/settings_translation_file.cpp -msgid "User Interfaces" +msgid "Base texture size" msgstr "" #: src/settings_translation_file.cpp -msgid "Language" +msgid "Basic privileges" msgstr "" #: src/settings_translation_file.cpp -msgid "" -"Set the language. By default, the system language is used.\n" -"A restart is required after changing this." +msgid "Beach noise" msgstr "" #: src/settings_translation_file.cpp -msgid "GUI" +msgid "Beach noise threshold" msgstr "" #: src/settings_translation_file.cpp -msgid "Optimize GUI for touchscreens" +msgid "Bilinear filtering" msgstr "" #: src/settings_translation_file.cpp -msgid "" -"When enabled, the GUI is optimized to be more usable on touchscreens.\n" -"Whether this is enabled by default depends on your hardware form-factor." +msgid "Bind address" msgstr "" #: src/settings_translation_file.cpp -msgid "GUI scaling" +msgid "Biome API" msgstr "" #: src/settings_translation_file.cpp -msgid "" -"Scale GUI by a user specified value.\n" -"Use a nearest-neighbor-anti-alias filter to scale the GUI.\n" -"This will smooth over some of the rough edges, and blend\n" -"pixels when scaling down, at the cost of blurring some\n" -"edge pixels when images are scaled by non-integer sizes." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Smooth scrolling" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enables smooth scrolling." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Inventory items animations" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enables animation of inventory items." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Formspec Full-Screen Background Opacity" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Formspec full-screen background opacity (between 0 and 255)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Formspec Full-Screen Background Color" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Formspec full-screen background color (R,G,B)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "GUI scaling filter" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When gui_scaling_filter is true, all GUI images need to be\n" -"filtered in software, but some images are generated directly\n" -"to hardware (e.g. render-to-texture for nodes in inventory)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Tooltip delay" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Delay showing tooltips, stated in milliseconds." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Append item name" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Append item name to tooltip." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Clouds in menu" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Use a cloud animation for the main menu background." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "HUD" -msgstr "HUD" - -#: src/settings_translation_file.cpp -msgid "HUD scaling" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Modifies the size of the HUD elements." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Show name tag backgrounds by default" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Whether name tag backgrounds should be shown by default.\n" -"Mods may still set a background." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Show debug info" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Whether to show the client debug info (has the same effect as hitting F5)." +msgid "Biome noise" msgstr "" #: src/settings_translation_file.cpp @@ -3564,55 +2800,143 @@ msgid "Block bounds HUD radius" msgstr "" #: src/settings_translation_file.cpp -msgid "Radius to use when the block bounds HUD feature is set to near blocks." +msgid "Block cull optimize distance" msgstr "" #: src/settings_translation_file.cpp -msgid "Maximum hotbar width" +msgid "Block send optimize distance" msgstr "" +#: src/settings_translation_file.cpp +msgid "Bobbing" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Bold and italic font path" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Bold and italic monospace font path" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Bold font path" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Bold monospace font path" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Build inside player" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Builtin" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Camera" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Camera smoothing" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Camera smoothing in cinematic mode" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Cave noise" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Cave noise #1" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Cave noise #2" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Cave width" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Cave1 noise" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Cave2 noise" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Cavern limit" +msgstr "Límite de la caverna" + +#: src/settings_translation_file.cpp +msgid "Cavern noise" +msgstr "Ruido de caverna" + +#: src/settings_translation_file.cpp +msgid "Cavern taper" +msgstr "Cono de caverna" + +#: src/settings_translation_file.cpp +msgid "Cavern threshold" +msgstr "Umbral de la caverna" + +#: src/settings_translation_file.cpp +msgid "Cavern upper limit" +msgstr "Límite superior de la caverna" + #: src/settings_translation_file.cpp msgid "" -"Maximum proportion of current window to be used for hotbar.\n" -"Useful if there's something to be displayed right or left of hotbar." +"Center of light curve boost range.\n" +"Where 0.0 is minimum light level, 1.0 is maximum light level." msgstr "" #: src/settings_translation_file.cpp -msgid "Recent Chat Messages" +msgid "Chat command time message threshold" msgstr "" #: src/settings_translation_file.cpp -msgid "Maximum number of recent chat messages to show" +msgid "Chat commands" msgstr "" #: src/settings_translation_file.cpp -msgid "Console height" +msgid "Chat font size" msgstr "" #: src/settings_translation_file.cpp -msgid "In-game chat console height, between 0.1 (10%) and 1.0 (100%)." +msgid "Chat log level" msgstr "" #: src/settings_translation_file.cpp -msgid "Console color" +msgid "Chat message count limit" msgstr "" #: src/settings_translation_file.cpp -msgid "In-game chat console background color (R,G,B)." +msgid "Chat message format" msgstr "" #: src/settings_translation_file.cpp -msgid "Console alpha" +msgid "Chat message kick threshold" msgstr "" #: src/settings_translation_file.cpp -msgid "In-game chat console background alpha (opaqueness, between 0 and 255)." +msgid "Chat message max length" msgstr "" #: src/settings_translation_file.cpp msgid "Chat weblinks" msgstr "" +#: src/settings_translation_file.cpp +msgid "Chunk size" +msgstr "" + #: src/settings_translation_file.cpp msgid "" "Clickable weblinks (middle-click or Ctrl+left-click) enabled in chat console " @@ -3620,48 +2944,65 @@ msgid "" msgstr "" #: src/settings_translation_file.cpp -msgid "Weblink color" +msgid "Client" msgstr "" #: src/settings_translation_file.cpp -msgid "Optional override for chat weblink color." +msgid "Client Mesh Chunksize" msgstr "" #: src/settings_translation_file.cpp -msgid "Chat font size" +msgid "Client and Server" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Client modding" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Client side modding restrictions" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Client-side Modding" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Client-side node lookup range restriction" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Climbing speed" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Cloud radius" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Clouds" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Clouds in menu" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Color depth for post-processing texture" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Colored fog" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Colored shadows" msgstr "" #: src/settings_translation_file.cpp msgid "" -"Font size of the recent chat text and chat prompt in point (pt).\n" -"Value 0 will use the default font size." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Content Repository" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "ContentDB URL" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "The URL for the content repository" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enable updates available indicator on content tab" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"If enabled and you have ContentDB packages installed, Luanti may contact " -"ContentDB to\n" -"check for package updates when opening the mainmenu." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "ContentDB Flag Blacklist" +"Comma-separated list of AL and ALC extensions that should not be used.\n" +"Useful for testing. See al_extensions.[h,cpp] for details." msgstr "" #: src/settings_translation_file.cpp @@ -3672,7 +3013,67 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Comma-separated list of mods that are allowed to access HTTP APIs, which\n" +"allow them to upload and download data to/from the internet." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Comma-separated list of trusted mods that are allowed to access insecure\n" +"functions even when mod security is on (via request_insecure_environment())." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Compression level to use when saving mapblocks to disk.\n" +"-1 - use default compression level\n" +"0 - least compression, fastest\n" +"9 - best compression, slowest" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Compression level to use when sending mapblocks to the client.\n" +"-1 - use default compression level\n" +"0 - least compression, fastest\n" +"9 - best compression, slowest" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Connect glass" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Connect to external media server" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Connects glass if supported by node." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Console alpha" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Console color" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Console height" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Content Repository" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "ContentDB Flag Blacklist" msgstr "" #: src/settings_translation_file.cpp @@ -3680,194 +3081,116 @@ msgid "ContentDB Max Concurrent Downloads" msgstr "" #: src/settings_translation_file.cpp -msgid "" -"Maximum number of concurrent downloads. Downloads exceeding this limit will " -"be queued.\n" -"This should be lower than curl_parallel_limit." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Client and Server" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Client" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Saving map received from server" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Save the map received by the client on disk." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Serverlist URL" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "URL to the server list displayed in the Multiplayer Tab." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enable split login/register" +msgid "ContentDB URL" msgstr "" #: src/settings_translation_file.cpp msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Update information URL" +"Controls length of day/night cycle.\n" +"Examples:\n" +"72 = 20min, 360 = 4min, 1 = 24hour, 0 = day/night/whatever stays unchanged." msgstr "" #: src/settings_translation_file.cpp msgid "" -"URL to JSON file which provides information about the newest Luanti " -"release.\n" -"If this is empty the engine will never check for updates." +"Controls sinking speed in liquid when idling. Negative values will cause\n" +"you to rise instead." msgstr "" #: src/settings_translation_file.cpp -msgid "Server" +msgid "Controls steepness/depth of lake depressions." msgstr "" #: src/settings_translation_file.cpp -msgid "Admin name" +msgid "Controls steepness/height of hills." msgstr "" #: src/settings_translation_file.cpp msgid "" -"Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" -"When starting from the main menu, this is overridden." +"Controls width of tunnels, a smaller value creates wider tunnels.\n" +"Value >= 10.0 completely disables generation of tunnels and avoids the\n" +"intensive noise calculations." msgstr "" #: src/settings_translation_file.cpp -msgid "Serverlist and MOTD" +msgid "Crash message" msgstr "" #: src/settings_translation_file.cpp -msgid "Server name" +msgid "Crosshair alpha" msgstr "" #: src/settings_translation_file.cpp msgid "" -"Name of the server, to be displayed when players join and in the serverlist." +"Crosshair alpha (opaqueness, between 0 and 255).\n" +"This also applies to the object crosshair." msgstr "" #: src/settings_translation_file.cpp -msgid "Server description" +msgid "Crosshair color" msgstr "" #: src/settings_translation_file.cpp msgid "" -"Description of server, to be displayed when players join and in the " -"serverlist." +"Crosshair color (R,G,B).\n" +"Also controls the object crosshair color" msgstr "" #: src/settings_translation_file.cpp -msgid "Server address" +msgid "Debug log file size threshold" msgstr "" #: src/settings_translation_file.cpp -msgid "Domain name of server, to be displayed in the serverlist." +msgid "Debug log level" msgstr "" #: src/settings_translation_file.cpp -msgid "Server URL" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Homepage of server, to be displayed in the serverlist." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Announce server" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Automatically report to the serverlist." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Send player names to the server list" +msgid "Debugging" msgstr "" #: src/settings_translation_file.cpp msgid "" -"Send names of online players to the serverlist. If disabled only the player " -"count is revealed." +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." msgstr "" #: src/settings_translation_file.cpp -msgid "Announce to this serverlist." +msgid "Dedicated server step" msgstr "" #: src/settings_translation_file.cpp -msgid "Message of the day" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Message of the day displayed to players connecting." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Maximum users" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Maximum number of players that can be connected simultaneously." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Static spawn point" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "If this is set, players will always (re)spawn at the given position." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Networking" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Server port" +msgid "Default acceleration" msgstr "" #: src/settings_translation_file.cpp msgid "" -"Network port to listen (UDP).\n" -"This value will be overridden when starting from the main menu." +"Default maximum number of forceloaded mapblocks.\n" +"Set this to -1 to disable the limit." msgstr "" #: src/settings_translation_file.cpp -msgid "Bind address" +msgid "Default password" msgstr "" #: src/settings_translation_file.cpp -msgid "The network interface that the server listens on." +msgid "Default privileges" msgstr "" #: src/settings_translation_file.cpp -msgid "Strict protocol checking" +msgid "Default report format" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Default stack size" msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable to disallow old clients from connecting.\n" -"Older clients are compatible in the sense that they will not crash when " -"connecting\n" -"to new servers, but they may not support all new features that you are " -"expecting." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Protocol version minimum" +"Define shadow filtering quality.\n" +"This simulates the soft shadows effect by applying a PCF or Poisson disk\n" +"but also uses more resources." msgstr "" #: src/settings_translation_file.cpp @@ -3884,15 +3207,801 @@ msgid "" msgstr "" #: src/settings_translation_file.cpp -msgid "Remote media" +msgid "Defines areas where trees have apples." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Defines areas with sandy beaches." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Defines distribution of higher terrain and steepness of cliffs." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Defines distribution of higher terrain." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Defines full size of caverns, smaller values create larger caverns." +msgstr "" +"Define el tamaño completo de las cavernas, los valores más pequeños crean " +"cavernas más grandes." + +#: src/settings_translation_file.cpp +msgid "Defines large-scale river channel structure." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Defines location and terrain of optional hills and lakes." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Defines the base ground level." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Defines the depth of the river channel." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Defines the maximal player transfer distance in blocks (0 = unlimited)." msgstr "" #: src/settings_translation_file.cpp msgid "" -"Specifies URL from which client fetches media instead of using UDP.\n" -"$filename should be accessible from $remote_media$filename via cURL\n" -"(obviously, remote_media should end with a slash).\n" -"Files that are not present will be fetched the usual way." +"Defines the size of the sampling grid for FSAA and SSAA antialiasing " +"methods.\n" +"Value of 2 means taking 2x2 = 4 samples." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Defines the width of the river channel." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Defines the width of the river valley." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Defines tree areas and tree density." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Delay between mesh updates on the client in ms. Increasing this will slow\n" +"down the rate of mesh updates, thus reducing jitter on slower clients." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Delay in sending blocks after building" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Delay showing tooltips, stated in milliseconds." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Deprecated Lua API handling" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Depth below which you'll find giant caverns." +msgstr "Profundidad debajo de la cual encontrarás cavernas gigantes." + +#: src/settings_translation_file.cpp +msgid "Depth below which you'll find large caves." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Description of server, to be displayed when players join and in the " +"serverlist." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Desert noise threshold" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Deserts occur when np_biome exceeds this value.\n" +"When the 'snowbiomes' flag is enabled, this is ignored." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Developer Options" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Disallow empty passwords" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Display Density Scaling Factor" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Distance in nodes at which transparency depth sorting is enabled.\n" +"Use this to limit the performance impact of transparency depth sorting.\n" +"Set to 0 to disable it entirely." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Domain name of server, to be displayed in the serverlist." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Double tap jump for fly" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Double-tapping the jump key toggles fly mode." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Dump the mapgen debug information." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Dungeon maximum Y" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Dungeon minimum Y" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Dungeon noise" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Effects" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Enable Automatic Exposure" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Enable Bloom" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Enable Bloom Debug" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Enable Debanding" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Enable IPv6 support (for both client and server).\n" +"Required for IPv6 connections to work at all." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Enable Lua modding support on client.\n" +"This support is experimental and API can change." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Enable Poisson disk filtering.\n" +"On true uses Poisson disk to make \"soft shadows\". Otherwise uses PCF " +"filtering." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Enable Post Processing" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Enable Raytraced Culling" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Enable automatic exposure correction\n" +"When enabled, the post-processing engine will\n" +"automatically adjust to the brightness of the scene,\n" +"simulating the behavior of human eye." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Enable colored shadows for transculent nodes.\n" +"This is expensive." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Enable console window" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Enable joysticks" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Enable joysticks. Requires a restart to take effect" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Enable mod channels support." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Enable mod security" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Enable mouse wheel (scroll) for item selection in hotbar." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Enable random mod loading (mainly used for testing)." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Enable random user input (only used for testing)." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Enable smooth lighting with simple ambient occlusion." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Enable split login/register" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Enable to disallow old clients from connecting.\n" +"Older clients are compatible in the sense that they will not crash when " +"connecting\n" +"to new servers, but they may not support all new features that you are " +"expecting." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Enable updates available indicator on content tab" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Enable usage of remote media server (if provided by server).\n" +"Remote servers offer a significantly faster way to download media (e.g. " +"textures)\n" +"when connecting to the server." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Enable view bobbing and amount of view bobbing.\n" +"For example: 0 for no view bobbing; 1.0 for normal; 2.0 for double." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Enable/disable running an IPv6 server.\n" +"Ignored if bind_address is set." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Enables Hable's 'Uncharted 2' filmic tone mapping.\n" +"Simulates the tone curve of photographic film and how this approximates the\n" +"appearance of high dynamic range images. Mid-range contrast is slightly\n" +"enhanced, highlights and shadows are gradually compressed." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Enables animation of inventory items." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Enables debug and error-checking in the OpenGL driver." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Enables smooth scrolling." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Enables the post processing pipeline." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Enables the touchscreen controls, allowing you to play the game with a " +"touchscreen.\n" +"\"auto\" means that the touchscreen controls will be enabled and disabled\n" +"automatically depending on the last used input method." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Enables tradeoffs that reduce CPU load or increase rendering performance\n" +"at the expense of minor visual glitches that do not impact game playability." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Engine Profiler" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Engine profiling data print interval" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Entity methods" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Exponent of the floatland tapering. Alters the tapering behavior.\n" +"Value = 1.0 creates a uniform, linear tapering.\n" +"Values > 1.0 create a smooth tapering suitable for the default separated\n" +"floatlands.\n" +"Values < 1.0 (for example 0.25) create a more defined surface level with\n" +"flatter lowlands, suitable for a solid floatland layer." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Exposure compensation" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "FPS" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "FPS when unfocused or paused" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Factor noise" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Fall bobbing factor" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Fallback font path" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Fast mode acceleration" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Fast mode speed" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Field of view" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Field of view in degrees." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"File in client/serverlist/ that contains your favorite servers displayed in " +"the\n" +"Multiplayer Tab." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Filler depth" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Filler depth noise" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Filmic tone mapping" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Filtering and Antialiasing" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "First of 4 2D noises that together define hill/mountain range height." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "First of two 3D noises that together define tunnels." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Fixed map seed" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Fixed virtual joystick" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Fixes the position of virtual joystick.\n" +"If disabled, virtual joystick will center to first-touch's position." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Floatland density" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Floatland maximum Y" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Floatland minimum Y" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Floatland noise" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Floatland taper exponent" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Floatland tapering distance" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Floatland water level" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Fog" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Fog start" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Font" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Font bold by default" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Font italic by default" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Font shadow" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Font shadow alpha" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Font size" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Font size divisible by" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Font size of the default font where 1 unit = 1 pixel at 96 DPI" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Font size of the monospace font where 1 unit = 1 pixel at 96 DPI" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Font size of the recent chat text and chat prompt in point (pt).\n" +"Value 0 will use the default font size." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"For pixel-style fonts that do not scale well, this ensures that font sizes " +"used\n" +"with this font will always be divisible by this value, in pixels. For " +"instance,\n" +"a pixel font 16 pixels tall should have this set to 16, so it will only ever " +"be\n" +"sized 16, 32, 48, etc., so a mod requesting a size of 25 will get 32." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Format of player chat messages. The following strings are valid " +"placeholders:\n" +"@name, @message, @timestamp (optional)" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Format of screenshots." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Formspec Full-Screen Background Color" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Formspec Full-Screen Background Opacity" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Formspec full-screen background color (R,G,B)." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Formspec full-screen background opacity (between 0 and 255)." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Fourth of 4 2D noises that together define hill/mountain range height." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Fractal type" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Fraction of the visible distance at which fog starts to be rendered" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"From how far blocks are generated for clients, stated in mapblocks (16 " +"nodes)." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"From how far blocks are sent to clients, stated in mapblocks (16 nodes)." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"From how far clients know about objects, stated in mapblocks (16 nodes).\n" +"\n" +"Setting this larger than active_block_range will also cause the server\n" +"to maintain active objects up to this distance in the direction the\n" +"player is looking. (This can avoid mobs suddenly disappearing from view)" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Full screen" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Fullscreen mode." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "GUI" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "GUI scaling" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "GUI scaling filter" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Gamepads" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Global callbacks" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Global map generation attributes.\n" +"In Mapgen v6 the 'decorations' flag controls all decorations except trees\n" +"and jungle grass, in all other mapgens this flag controls all decorations." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Gradient of light curve at maximum light level.\n" +"Controls the contrast of the highest light levels." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Gradient of light curve at minimum light level.\n" +"Controls the contrast of the lowest light levels." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Graphics" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Graphics and Audio" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Gravity" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Ground level" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Ground noise" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "HTTP mods" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "HUD" +msgstr "HUD" + +#: src/settings_translation_file.cpp +msgid "HUD scaling" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Handling for deprecated Lua API calls:\n" +"- none: Do not log deprecated calls\n" +"- log: mimic and log backtrace of deprecated call (default).\n" +"- error: abort on usage of deprecated call (suggested for mod developers)." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Have the profiler instrument itself:\n" +"* Instrument an empty function.\n" +"This estimates the overhead, that instrumentation is adding (+1 function " +"call).\n" +"* Instrument the sampler being used to update the statistics." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Heat blend noise" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Heat noise" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Height component of the initial window size." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Height noise" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Height select noise" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Hill steepness" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Hill threshold" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Hilliness1 noise" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Hilliness2 noise" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Hilliness3 noise" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Hilliness4 noise" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Homepage of server, to be displayed in the serverlist." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Horizontal acceleration in air when jumping or falling,\n" +"in nodes per second per second." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Horizontal and vertical acceleration in fast mode,\n" +"in nodes per second per second." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Horizontal and vertical acceleration on ground or when climbing,\n" +"in nodes per second per second." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Hotbar: Enable mouse wheel for selection" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Hotbar: Invert mouse wheel direction" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "How deep to make rivers." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"How fast liquid waves will move. Higher = faster.\n" +"If negative, liquid waves will move backwards." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"How long the server will wait before unloading unused mapblocks, stated in " +"seconds.\n" +"Higher value is smoother, but will use more RAM." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"How much you are slowed down when moving inside a liquid.\n" +"Decrease this to increase liquid resistance to movement." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "How wide to make rivers." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Humidity blend noise" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Humidity noise" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Humidity variation for biomes." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "IPv6" msgstr "" #: src/settings_translation_file.cpp @@ -3901,74 +4010,28 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Server Security" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Default password" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "New users need to input this password." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Disallow empty passwords" +"If FPS would go higher than this, limit it by sleeping\n" +"to not waste CPU power for no benefit." msgstr "" #: src/settings_translation_file.cpp msgid "" -"If enabled, players cannot join without a password or change theirs to an " -"empty password." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Default privileges" +"If disabled, \"Aux1\" key is used to fly fast if both fly and fast mode are\n" +"enabled." msgstr "" #: src/settings_translation_file.cpp msgid "" -"The privileges that new users automatically get.\n" -"See /privs in game for a full list on your server and mod configuration." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Basic privileges" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Privileges that players with basic_privs can grant" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Anticheat flags" +"If enabled and you have ContentDB packages installed, Luanti may contact " +"ContentDB to\n" +"check for package updates when opening the mainmenu." msgstr "" #: src/settings_translation_file.cpp msgid "" -"Server anticheat configuration.\n" -"Flags are positive. Uncheck the flag to disable corresponding anticheat " -"module." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Anticheat movement tolerance" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Tolerance of movement cheat detector.\n" -"Increase the value if players experience stuttery movement." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Rollback recording" +"If enabled, \"Aux1\" key instead of \"Sneak\" key is used for climbing down " +"and\n" +"descending." msgstr "" #: src/settings_translation_file.cpp @@ -3978,11 +4041,1140 @@ msgid "" msgstr "" #: src/settings_translation_file.cpp -msgid "Client-side Modding" +msgid "" +"If enabled, invalid world data won't cause the server to shut down.\n" +"Only enable this if you know what you are doing." msgstr "" #: src/settings_translation_file.cpp -msgid "Client side modding restrictions" +msgid "" +"If enabled, players cannot join without a password or change theirs to an " +"empty password." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"If enabled, the server will perform map block occlusion culling based on\n" +"on the eye position of the player. This can reduce the number of blocks\n" +"sent to the client by 50-80%. Clients will no longer receive most\n" +"invisible blocks, so that the utility of noclip mode is reduced." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"If enabled, you can place nodes at the position (feet + eye level) where you " +"stand.\n" +"This is helpful when working with nodeboxes in small areas." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"If the CSM restriction for node range is enabled, get_node calls are " +"limited\n" +"to this distance from the player to the node." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"If the execution of a chat command takes longer than this specified time in\n" +"seconds, add the time information to the chat command message" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"If the file size of debug.txt exceeds the number of megabytes specified in\n" +"this setting when it is opened, the file is moved to debug.txt.1,\n" +"deleting an older debug.txt.1 if it exists.\n" +"debug.txt is only moved if this setting is positive." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "If this is set, players will always (re)spawn at the given position." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Ignore world errors" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "In-game chat console background alpha (opaqueness, between 0 and 255)." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "In-game chat console background color (R,G,B)." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "In-game chat console height, between 0.1 (10%) and 1.0 (100%)." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Initial vertical speed when jumping, in nodes per second." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Instrument builtin.\n" +"This is usually only needed by core/builtin contributors" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Instrument chat commands on registration." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Instrument global callback functions on registration.\n" +"(anything you pass to a core.register_*() function)" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Instrument the action function of Active Block Modifiers on registration." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Instrument the action function of Loading Block Modifiers on registration." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Instrument the methods of entities on registration." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Interval of saving important changes in the world, stated in seconds." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Inventory items animations" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Invert mouse" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Invert mouse wheel (scroll) direction for item selection in hotbar." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Invert vertical mouse movement." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Italic font path" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Italic monospace font path" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Item entity TTL" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Iterations" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Iterations of the recursive function.\n" +"Increasing this increases the amount of fine detail, but also\n" +"increases processing load.\n" +"At iterations = 20 this mapgen has a similar load to mapgen V7." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Joystick ID" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Joystick button repetition interval" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Joystick dead zone" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Joystick frustum sensitivity" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Joystick type" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Julia set only.\n" +"W component of hypercomplex constant.\n" +"Alters the shape of the fractal.\n" +"Has no effect on 3D fractals.\n" +"Range roughly -2 to 2." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Julia set only.\n" +"X component of hypercomplex constant.\n" +"Alters the shape of the fractal.\n" +"Range roughly -2 to 2." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Julia set only.\n" +"Y component of hypercomplex constant.\n" +"Alters the shape of the fractal.\n" +"Range roughly -2 to 2." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Julia set only.\n" +"Z component of hypercomplex constant.\n" +"Alters the shape of the fractal.\n" +"Range roughly -2 to 2." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Julia w" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Julia x" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Julia y" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Julia z" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Jumping speed" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Keyboard and Mouse" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Kick players who sent more than X messages per 10 seconds." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Lake steepness" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Lake threshold" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Language" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Large cave depth" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Large cave maximum number" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Large cave minimum number" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Large cave proportion flooded" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Leaves style" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Leaves style:\n" +"- Fancy: all faces visible\n" +"- Simple: only outer faces\n" +"- Opaque: disable transparency" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Length of a server tick (the interval at which everything is generally " +"updated),\n" +"stated in seconds.\n" +"Does not apply to sessions hosted from the client menu.\n" +"This is a lower bound, i.e. server steps may not be shorter than this, but\n" +"they are often longer." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Length of liquid waves." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Length of time between Active Block Modifier (ABM) execution cycles, stated " +"in seconds." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Length of time between NodeTimer execution cycles, stated in seconds." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Length of time between active block management cycles, stated in seconds." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Level of logging to be written to debug.txt:\n" +"- (no logging)\n" +"- none (messages with no level)\n" +"- error\n" +"- warning\n" +"- action\n" +"- info\n" +"- verbose\n" +"- trace" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Light curve boost" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Light curve boost center" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Light curve boost spread" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Light curve gamma" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Light curve high gradient" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Light curve low gradient" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Lighting" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Limit of map generation, in nodes, in all 6 directions from (0, 0, 0).\n" +"Only mapchunks completely within the mapgen limit are generated.\n" +"Value is stored per-world." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Limits number of parallel HTTP requests. Affects:\n" +"- Media fetch if server uses remote_media setting.\n" +"- Serverlist download and server announcement.\n" +"- Downloads performed by main menu (e.g. mod manager).\n" +"Only has an effect if compiled with cURL." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Liquid fluidity" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Liquid fluidity smoothing" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Liquid loop max" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Liquid queue purge time" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Liquid reflections" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Liquid sinking" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Liquid update interval in seconds." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Liquid update tick" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Load the game profiler" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Load the game profiler to collect game profiling data.\n" +"Provides a /profiler command to access the compiled profile.\n" +"Useful for mod developers and server operators." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Loading Block Modifiers" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Lower Y limit of dungeons." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Lower Y limit of floatlands." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Main menu script" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Make fog and sky colors depend on daytime (dawn/sunset) and view direction." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Map Compression Level for Disk Storage" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Map Compression Level for Network Transfer" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Map directory" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Map generation attributes specific to Mapgen Carpathian." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Map generation attributes specific to Mapgen Flat.\n" +"Occasional lakes and hills can be added to the flat world." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Map generation attributes specific to Mapgen Fractal.\n" +"'terrain' enables the generation of non-fractal terrain:\n" +"ocean, islands and underground." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Map generation attributes specific to Mapgen Valleys.\n" +"'altitude_chill': Reduces heat with altitude.\n" +"'humid_rivers': Increases humidity around rivers.\n" +"'vary_river_depth': If enabled, low humidity and high heat causes rivers\n" +"to become shallower and occasionally dry.\n" +"'altitude_dry': Reduces humidity with altitude." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Map generation attributes specific to Mapgen v5." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Map generation attributes specific to Mapgen v6.\n" +"The 'snowbiomes' flag enables the new 5 biome system.\n" +"When the 'snowbiomes' flag is enabled jungles are automatically enabled and\n" +"the 'jungles' flag is ignored.\n" +"The 'temples' flag disables generation of desert temples. Normal dungeons " +"will appear instead." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Map generation attributes specific to Mapgen v7.\n" +"'ridges': Rivers.\n" +"'floatlands': Floating land masses in the atmosphere.\n" +"'caverns': Giant caves deep underground." +msgstr "" +"Atributos de generación de mapas específicos de Mapgen v7.\n" +"'crestas': Ríos.\n" +"'floatlands': Masas de tierra flotantes en la atmósfera.\n" +"'Cavernas': Cuevas gigantes en las profundidades del subsuelo." + +#: src/settings_translation_file.cpp +msgid "Map generation limit" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Map save interval" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Map shadows update frames" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Mapblock limit" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Mapblock mesh generation delay" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Mapblock mesh generation threads" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Mapblock unload timeout" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Mapgen Carpathian" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Mapgen Carpathian specific flags" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Mapgen Flat" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Mapgen Flat specific flags" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Mapgen Fractal" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Mapgen Fractal specific flags" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Mapgen V5" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Mapgen V5 specific flags" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Mapgen V6" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Mapgen V6 specific flags" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Mapgen V7" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Mapgen V7 specific flags" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Mapgen Valleys" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Mapgen Valleys specific flags" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Mapgen debug" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Mapgen name" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Max block generate distance" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Max block send distance" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Max liquids processed per step." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Max. clearobjects extra blocks" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Max. packets per iteration" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Maximum FPS" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Maximum FPS when the window is not focused, or when the game is paused." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Maximum distance to render shadows." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Maximum forceloaded blocks" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Maximum hotbar width" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Maximum limit of random number of large caves per mapchunk." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Maximum limit of random number of small caves per mapchunk." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Maximum liquid resistance. Controls deceleration when entering liquid at\n" +"high speed." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Maximum number of blocks that are simultaneously sent per client.\n" +"The maximum total count is calculated dynamically:\n" +"max_total = ceil((#clients + max_users) * per_client / 4)" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Maximum number of blocks that can be queued for loading." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Maximum number of blocks to be queued that are to be generated.\n" +"This limit is enforced per player." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Maximum number of blocks to be queued that are to be loaded from file.\n" +"This limit is enforced per player." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Maximum number of concurrent downloads. Downloads exceeding this limit will " +"be queued.\n" +"This should be lower than curl_parallel_limit." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Maximum number of mapblocks for client to be kept in memory.\n" +"Set to -1 for unlimited amount." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Maximum number of packets sent per send step in the low-level networking " +"code.\n" +"You generally don't need to change this, however busy servers may benefit " +"from a higher number." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Maximum number of players that can be connected simultaneously." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Maximum number of recent chat messages to show" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Maximum number of statically stored objects in a block." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Maximum objects per block" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Maximum proportion of current window to be used for hotbar.\n" +"Useful if there's something to be displayed right or left of hotbar." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Maximum simultaneous block sends per client" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Maximum size of the outgoing chat queue" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Maximum size of the outgoing chat queue.\n" +"0 to disable queueing and -1 to make the queue size unlimited." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Maximum time a file download (e.g. a mod download) may take, stated in " +"milliseconds." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Maximum time an interactive request (e.g. server list fetch) may take, " +"stated in milliseconds." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Maximum users" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Message of the day" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Message of the day displayed to players connecting." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Method used to highlight selected object." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Minimal level of logging to be written to chat." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Minimap scan height" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Minimum dig repetition interval" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Minimum limit of random number of large caves per mapchunk." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Minimum limit of random number of small caves per mapchunk." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Mipmapping" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Miscellaneous" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Mod Profiler" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Mod Security" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Mod channels" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Modifies the size of the HUD elements." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Monospace font path" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Monospace font size" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Monospace font size divisible by" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Mountain height noise" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Mountain noise" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Mountain variation noise" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Mountain zero level" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Mouse sensitivity" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Mouse sensitivity multiplier." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Movement threshold" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Mud noise" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Multiplier for fall bobbing.\n" +"For example: 0 for no view bobbing; 1.0 for normal; 2.0 for double." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Mute sound" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Name of map generator to be used when creating a new world.\n" +"Creating a world in the main menu will override this.\n" +"Current mapgens in a highly unstable state:\n" +"- The optional floatlands of v7 (disabled by default)." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Name of the player.\n" +"When running a server, a client connecting with this name is admin.\n" +"When starting from the main menu, this is overridden." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Name of the server, to be displayed when players join and in the serverlist." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Network port to listen (UDP).\n" +"This value will be overridden when starting from the main menu." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Networking" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "New users need to input this password." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Node and Entity Highlighting" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Node highlighting" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Node specular" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "NodeTimer interval" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Noises" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Number of emerge threads" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Number of emerge threads to use.\n" +"Value 0:\n" +"- Automatic selection. The number of emerge threads will be\n" +"- 'number of processors - 2', with a lower limit of 1.\n" +"Any other value:\n" +"- Specifies the number of emerge threads, with a lower limit of 1.\n" +"WARNING: Increasing the number of emerge threads increases engine mapgen\n" +"speed, but this may harm game performance by interfering with other\n" +"processes, especially in singleplayer and/or when running Lua code in\n" +"'on_generated'. For many users the optimum setting may be '1'." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Number of extra blocks that can be loaded by /clearobjects at once.\n" +"This is a trade-off between SQLite transaction overhead and\n" +"memory consumption (4096=100MB, as a rule of thumb)." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Number of messages a player may send per 10 seconds." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Number of threads to use for mesh generation.\n" +"Value of 0 (default) will let Luanti autodetect the number of available " +"threads." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Occlusion Culler" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Occlusion Culling" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Opaqueness (alpha) of the shadow behind the default font, between 0 and 255." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Open the pause menu when the window's focus is lost. Does not pause if a " +"formspec is\n" +"open." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "OpenGL debug" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Optimize GUI for touchscreens" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Optional override for chat weblink color." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Other Effects" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Path of the fallback font. Must be a TrueType font.\n" +"This font will be used for certain languages or if the default font is " +"unavailable." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Path to save screenshots at. Can be an absolute or relative path.\n" +"The folder will be created if it doesn't already exist." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Path to shader directory. If no path is defined, default location will be " +"used." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Path to the default font. Must be a TrueType font.\n" +"The fallback font will be used if the font cannot be loaded." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Path to the monospace font. Must be a TrueType font.\n" +"This font is used for e.g. the console and profiler screen." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Pause on lost window focus" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Per-player limit of queued blocks load from disk" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Per-player limit of queued blocks to generate" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Physics" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Place repetition interval" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Player transfer distance" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Poisson filtering" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Post Processing" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Prevent digging and placing from repeating when holding the respective " +"buttons.\n" +"Enable this when you dig or place too often by accident.\n" +"On touchscreens, this only affects digging." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Prevent mods from doing insecure things like running shell commands." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Print the engine's profiling data in regular intervals (in seconds).\n" +"0 = disable. Useful for developers." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Privileges that players with basic_privs can grant" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Profiler" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Prometheus listener address" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Prometheus listener address.\n" +"If Luanti is compiled with ENABLE_PROMETHEUS option enabled,\n" +"enable metrics listener for Prometheus on that address.\n" +"Metrics can be fetched on http://127.0.0.1:30000/metrics" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Proportion of large caves that contain liquid." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Protocol version minimum" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Punch gesture" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Radius of cloud area stated in number of 64 node cloud squares.\n" +"Values larger than 26 will start to produce sharp cutoffs at cloud area " +"corners." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Radius to use when the block bounds HUD feature is set to near blocks." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Raises terrain to make valleys around the rivers." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Random input" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Random mod load order" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Recent Chat Messages" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Regular font path" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Remember screen size" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Remote media" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Remove color codes from incoming chat messages\n" +"Use this to stop players from being able to use color in their messages" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Replaces the default main menu with a custom one." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Report path" msgstr "" #: src/settings_translation_file.cpp @@ -4000,743 +5192,7 @@ msgid "" msgstr "" #: src/settings_translation_file.cpp -msgid "Client-side node lookup range restriction" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"If the CSM restriction for node range is enabled, get_node calls are " -"limited\n" -"to this distance from the player to the node." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Strip color codes" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Remove color codes from incoming chat messages\n" -"Use this to stop players from being able to use color in their messages" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Chat message max length" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Set the maximum length of a chat message (in characters) sent by clients." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Chat message count limit" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Number of messages a player may send per 10 seconds." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Chat message kick threshold" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Kick players who sent more than X messages per 10 seconds." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Server Gameplay" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Time speed" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Controls length of day/night cycle.\n" -"Examples:\n" -"72 = 20min, 360 = 4min, 1 = 24hour, 0 = day/night/whatever stays unchanged." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "World start time" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Time of day when a new world is started, in millihours (0-23999)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Item entity TTL" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Time in seconds for item entity (dropped items) to live.\n" -"Setting it to -1 disables the feature." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Default stack size" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Specifies the default stack size of nodes, items and tools.\n" -"Note that mods or games may explicitly set a stack for certain (or all) " -"items." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Physics" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Default acceleration" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Horizontal and vertical acceleration on ground or when climbing,\n" -"in nodes per second per second." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Acceleration in air" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Horizontal acceleration in air when jumping or falling,\n" -"in nodes per second per second." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Fast mode acceleration" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Horizontal and vertical acceleration in fast mode,\n" -"in nodes per second per second." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Walking speed" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Walking and flying speed, in nodes per second." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Sneaking speed" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Sneaking speed, in nodes per second." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Fast mode speed" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Walking, flying and climbing speed in fast mode, in nodes per second." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Climbing speed" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Vertical climbing speed, in nodes per second." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Jumping speed" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Initial vertical speed when jumping, in nodes per second." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Liquid fluidity" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"How much you are slowed down when moving inside a liquid.\n" -"Decrease this to increase liquid resistance to movement." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Liquid fluidity smoothing" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Maximum liquid resistance. Controls deceleration when entering liquid at\n" -"high speed." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Liquid sinking" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Controls sinking speed in liquid when idling. Negative values will cause\n" -"you to rise instead." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Gravity" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Acceleration of gravity, in nodes per second per second." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Fixed map seed" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"A chosen map seed for a new map, leave empty for random.\n" -"Will be overridden when creating a new world in the main menu." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapgen name" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Name of map generator to be used when creating a new world.\n" -"Creating a world in the main menu will override this.\n" -"Current mapgens in a highly unstable state:\n" -"- The optional floatlands of v7 (disabled by default)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Water level" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Water surface level of the world." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Max block generate distance" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"From how far blocks are generated for clients, stated in mapblocks (16 " -"nodes)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Map generation limit" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Limit of map generation, in nodes, in all 6 directions from (0, 0, 0).\n" -"Only mapchunks completely within the mapgen limit are generated.\n" -"Value is stored per-world." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Global map generation attributes.\n" -"In Mapgen v6 the 'decorations' flag controls all decorations except trees\n" -"and jungle grass, in all other mapgens this flag controls all decorations." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Biome API" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Heat noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Temperature variation for biomes." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Heat blend noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Small-scale temperature variation for blending biomes on borders." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Humidity noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Humidity variation for biomes." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Humidity blend noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Small-scale humidity variation for blending biomes on borders." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapgen V5" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapgen V5 specific flags" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Map generation attributes specific to Mapgen v5." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Cave width" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Controls width of tunnels, a smaller value creates wider tunnels.\n" -"Value >= 10.0 completely disables generation of tunnels and avoids the\n" -"intensive noise calculations." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Large cave depth" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Y of upper limit of large caves." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Small cave minimum number" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Minimum limit of random number of small caves per mapchunk." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Small cave maximum number" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Maximum limit of random number of small caves per mapchunk." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Large cave minimum number" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Minimum limit of random number of large caves per mapchunk." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Large cave maximum number" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Maximum limit of random number of large caves per mapchunk." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Large cave proportion flooded" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Proportion of large caves that contain liquid." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Cavern limit" -msgstr "Límite de la caverna" - -#: src/settings_translation_file.cpp -msgid "Y-level of cavern upper limit." -msgstr "Nivel Y del límite superior de la caverna." - -#: src/settings_translation_file.cpp -msgid "Cavern taper" -msgstr "Cono de caverna" - -#: src/settings_translation_file.cpp -msgid "Y-distance over which caverns expand to full size." -msgstr "" -"Distancia Y sobre la cual las cavernas se expanden hasta su tamaño completo." - -#: src/settings_translation_file.cpp -msgid "Cavern threshold" -msgstr "Umbral de la caverna" - -#: src/settings_translation_file.cpp -msgid "Defines full size of caverns, smaller values create larger caverns." -msgstr "" -"Define el tamaño completo de las cavernas, los valores más pequeños crean " -"cavernas más grandes." - -#: src/settings_translation_file.cpp -msgid "Dungeon minimum Y" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Lower Y limit of dungeons." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Dungeon maximum Y" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Upper Y limit of dungeons." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Noises" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Filler depth noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Variation of biome filler depth." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Factor noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Variation of terrain vertical scale.\n" -"When noise is < -0.55 terrain is near-flat." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Height noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Y-level of average terrain surface." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Cave1 noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "First of two 3D noises that together define tunnels." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Cave2 noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Second of two 3D noises that together define tunnels." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Cavern noise" -msgstr "Ruido de caverna" - -#: src/settings_translation_file.cpp -msgid "3D noise defining giant caverns." -msgstr "Ruido 3D que define cavernas gigantes." - -#: src/settings_translation_file.cpp -msgid "Ground noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "3D noise defining terrain." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Dungeon noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "3D noise that determines number of dungeons per mapchunk." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapgen V6" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapgen V6 specific flags" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Map generation attributes specific to Mapgen v6.\n" -"The 'snowbiomes' flag enables the new 5 biome system.\n" -"When the 'snowbiomes' flag is enabled jungles are automatically enabled and\n" -"the 'jungles' flag is ignored.\n" -"The 'temples' flag disables generation of desert temples. Normal dungeons " -"will appear instead." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Desert noise threshold" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Deserts occur when np_biome exceeds this value.\n" -"When the 'snowbiomes' flag is enabled, this is ignored." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Beach noise threshold" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Sandy beaches occur when np_beach exceeds this value." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Terrain base noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Y-level of lower terrain and seabed." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Terrain higher noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Y-level of higher terrain that creates cliffs." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Steepness noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Varies steepness of cliffs." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Height select noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Defines distribution of higher terrain." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mud noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Varies depth of biome surface nodes." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Beach noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Defines areas with sandy beaches." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Biome noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Cave noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Variation of number of caves." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Trees noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Defines tree areas and tree density." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Apple trees noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Defines areas where trees have apples." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapgen V7" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapgen V7 specific flags" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Map generation attributes specific to Mapgen v7.\n" -"'ridges': Rivers.\n" -"'floatlands': Floating land masses in the atmosphere.\n" -"'caverns': Giant caves deep underground." -msgstr "" -"Atributos de generación de mapas específicos de Mapgen v7.\n" -"'crestas': Ríos.\n" -"'floatlands': Masas de tierra flotantes en la atmósfera.\n" -"'Cavernas': Cuevas gigantes en las profundidades del subsuelo." - -#: src/settings_translation_file.cpp -msgid "Mountain zero level" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Y of mountain density gradient zero level. Used to shift mountains " -"vertically." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Floatland minimum Y" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Lower Y limit of floatlands." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Floatland maximum Y" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Upper Y limit of floatlands." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Floatland tapering distance" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Y-distance over which floatlands taper from full density to nothing.\n" -"Tapering starts at this distance from the Y limit.\n" -"For a solid floatland layer, this controls the height of hills/mountains.\n" -"Must be less than or equal to half the distance between the Y limits." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Floatland taper exponent" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Exponent of the floatland tapering. Alters the tapering behavior.\n" -"Value = 1.0 creates a uniform, linear tapering.\n" -"Values > 1.0 create a smooth tapering suitable for the default separated\n" -"floatlands.\n" -"Values < 1.0 (for example 0.25) create a more defined surface level with\n" -"flatter lowlands, suitable for a solid floatland layer." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Floatland density" -msgstr "" - -#: src/settings_translation_file.cpp -#, c-format -msgid "" -"Adjusts the density of the floatland layer.\n" -"Increase value to increase density. Can be positive or negative.\n" -"Value = 0.0: 50% of volume is floatland.\n" -"Value = 2.0 (can be higher depending on 'mgv7_np_floatland', always test\n" -"to be sure) creates a solid floatland layer." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Floatland water level" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Surface level of optional water placed on a solid floatland layer.\n" -"Water is disabled by default and will only be placed if this value is set\n" -"to above 'mgv7_floatland_ymax' - 'mgv7_floatland_taper' (the start of the\n" -"upper tapering).\n" -"***WARNING, POTENTIAL DANGER TO WORLDS AND SERVER PERFORMANCE***:\n" -"When enabling water placement, floatlands must be configured and tested\n" -"to be a solid layer by setting 'mgv7_floatland_density' to 2.0 (or other\n" -"required value depending on 'mgv7_np_floatland'), to avoid\n" -"server-intensive extreme water flow and to avoid vast flooding of the\n" -"world surface below." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Terrain alternative noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Terrain persistence noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Varies roughness of terrain.\n" -"Defines the 'persistence' value for terrain_base and terrain_alt noises." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Defines distribution of higher terrain and steepness of cliffs." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mountain height noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Variation of maximum mountain height (in nodes)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Ridge underwater noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Defines large-scale river channel structure." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mountain noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"3D noise defining mountain structure and height.\n" -"Also defines structure of floatland mountain terrain." +msgid "Ridge mountain spread noise" msgstr "" #: src/settings_translation_file.cpp @@ -4744,127 +5200,7 @@ msgid "Ridge noise" msgstr "" #: src/settings_translation_file.cpp -msgid "3D noise defining structure of river canyon walls." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Floatland noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"3D noise defining structure of floatlands.\n" -"If altered from the default, the noise 'scale' (0.7 by default) may need\n" -"to be adjusted, as floatland tapering functions best when this noise has\n" -"a value range of approximately -2.0 to 2.0." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapgen Carpathian" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapgen Carpathian specific flags" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Map generation attributes specific to Mapgen Carpathian." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Base ground level" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Defines the base ground level." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "River channel width" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Defines the width of the river channel." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "River channel depth" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Defines the depth of the river channel." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "River valley width" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Defines the width of the river valley." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Hilliness1 noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "First of 4 2D noises that together define hill/mountain range height." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Hilliness2 noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Second of 4 2D noises that together define hill/mountain range height." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Hilliness3 noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Third of 4 2D noises that together define hill/mountain range height." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Hilliness4 noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Fourth of 4 2D noises that together define hill/mountain range height." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Rolling hills spread noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "2D noise that controls the size/occurrence of rolling hills." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Ridge mountain spread noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "2D noise that controls the size/occurrence of ridged mountain ranges." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Step mountain spread noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "2D noise that controls the size/occurrence of step mountain ranges." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Rolling hill size noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "2D noise that controls the shape/size of rolling hills." +msgid "Ridge underwater noise" msgstr "" #: src/settings_translation_file.cpp @@ -4872,15 +5208,15 @@ msgid "Ridged mountain size noise" msgstr "" #: src/settings_translation_file.cpp -msgid "2D noise that controls the shape/size of ridged mountains." +msgid "River channel depth" msgstr "" #: src/settings_translation_file.cpp -msgid "Step mountain size noise" +msgid "River channel width" msgstr "" #: src/settings_translation_file.cpp -msgid "2D noise that controls the shape/size of step mountains." +msgid "River depth" msgstr "" #: src/settings_translation_file.cpp @@ -4888,102 +5224,144 @@ msgid "River noise" msgstr "" #: src/settings_translation_file.cpp -msgid "2D noise that locates the river valleys and channels." +msgid "River size" msgstr "" #: src/settings_translation_file.cpp -msgid "Mountain variation noise" +msgid "River valley width" msgstr "" #: src/settings_translation_file.cpp -msgid "3D noise for mountain overhangs, cliffs, etc. Usually small variations." +msgid "Rollback recording" msgstr "" #: src/settings_translation_file.cpp -msgid "Mapgen Flat" +msgid "Rolling hill size noise" msgstr "" #: src/settings_translation_file.cpp -msgid "Mapgen Flat specific flags" +msgid "Rolling hills spread noise" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Safe digging and placing" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Sandy beaches occur when np_beach exceeds this value." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Save the map received by the client on disk." msgstr "" #: src/settings_translation_file.cpp msgid "" -"Map generation attributes specific to Mapgen Flat.\n" -"Occasional lakes and hills can be added to the flat world." +"Save window size automatically when modified.\n" +"If true, screen size is saved in screen_w and screen_h, and whether the " +"window\n" +"is maximized is stored in window_maximized.\n" +"(Autosaving window_maximized only works if compiled with SDL.)" msgstr "" #: src/settings_translation_file.cpp -msgid "Ground level" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Y of flat ground." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Lake threshold" +msgid "Saving map received from server" msgstr "" #: src/settings_translation_file.cpp msgid "" -"Terrain noise threshold for lakes.\n" -"Controls proportion of world area covered by lakes.\n" -"Adjust towards 0.0 for a larger proportion." +"Scale GUI by a user specified value.\n" +"Use a nearest-neighbor-anti-alias filter to scale the GUI.\n" +"This will smooth over some of the rough edges, and blend\n" +"pixels when scaling down, at the cost of blurring some\n" +"edge pixels when images are scaled by non-integer sizes." msgstr "" #: src/settings_translation_file.cpp -msgid "Lake steepness" +msgid "Screen" msgstr "" #: src/settings_translation_file.cpp -msgid "Controls steepness/depth of lake depressions." +msgid "Screen height" msgstr "" #: src/settings_translation_file.cpp -msgid "Hill threshold" +msgid "Screen width" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Screenshot folder" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Screenshot format" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Screenshot quality" msgstr "" #: src/settings_translation_file.cpp msgid "" -"Terrain noise threshold for hills.\n" -"Controls proportion of world area covered by hills.\n" -"Adjust towards 0.0 for a larger proportion." +"Screenshot quality. Only used for JPEG format.\n" +"1 means worst quality; 100 means best quality.\n" +"Use 0 for default quality." msgstr "" #: src/settings_translation_file.cpp -msgid "Hill steepness" +msgid "Screenshots" msgstr "" #: src/settings_translation_file.cpp -msgid "Controls steepness/height of hills." +msgid "Seabed noise" msgstr "" #: src/settings_translation_file.cpp -msgid "Terrain noise" +msgid "Second of 4 2D noises that together define hill/mountain range height." msgstr "" #: src/settings_translation_file.cpp -msgid "Defines location and terrain of optional hills and lakes." +msgid "Second of two 3D noises that together define tunnels." msgstr "" #: src/settings_translation_file.cpp -msgid "Mapgen Fractal" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapgen Fractal specific flags" +msgid "See https://www.sqlite.org/pragma.html#pragma_synchronous" msgstr "" #: src/settings_translation_file.cpp msgid "" -"Map generation attributes specific to Mapgen Fractal.\n" -"'terrain' enables the generation of non-fractal terrain:\n" -"ocean, islands and underground." +"Select the antialiasing method to apply.\n" +"\n" +"* None - No antialiasing (default)\n" +"\n" +"* FSAA - Hardware-provided full-screen antialiasing\n" +"A.K.A multi-sample antialiasing (MSAA)\n" +"Smoothens out block edges but does not affect the insides of textures.\n" +"\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" +"Applies a post-processing filter to detect and smoothen high-contrast " +"edges.\n" +"Provides balance between speed and image quality.\n" +"\n" +"* SSAA - Super-sampling antialiasing\n" +"Renders higher-resolution image of the scene, then scales down to reduce\n" +"the aliasing effects. This is the slowest and the most accurate method." msgstr "" #: src/settings_translation_file.cpp -msgid "Fractal type" +msgid "Selection box border color (R,G,B)." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Selection box color" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Selection box width" msgstr "" #: src/settings_translation_file.cpp @@ -5010,489 +5388,152 @@ msgid "" msgstr "" #: src/settings_translation_file.cpp -msgid "Iterations" +msgid "" +"Send names of online players to the serverlist. If disabled only the player " +"count is revealed." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Send player names to the server list" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Server" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Server Gameplay" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Server Security" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Server URL" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Server address" msgstr "" #: src/settings_translation_file.cpp msgid "" -"Iterations of the recursive function.\n" -"Increasing this increases the amount of fine detail, but also\n" -"increases processing load.\n" -"At iterations = 20 this mapgen has a similar load to mapgen V7." +"Server anticheat configuration.\n" +"Flags are positive. Uncheck the flag to disable corresponding anticheat " +"module." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Server description" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Server name" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Server port" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Server-side occlusion culling" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Server/Env Performance" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Serverlist URL" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Serverlist and MOTD" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Serverlist file" msgstr "" #: src/settings_translation_file.cpp msgid "" -"(X,Y,Z) scale of fractal in nodes.\n" -"Actual fractal size will be 2 to 3 times larger.\n" -"These numbers can be made very large, the fractal does\n" -"not have to fit inside the world.\n" -"Increase these to 'zoom' into the detail of the fractal.\n" -"Default is for a vertically-squashed shape suitable for\n" -"an island, set all 3 numbers equal for the raw shape." +"Set the default tilt of Sun/Moon orbit in degrees.\n" +"Games may change orbit tilt via API.\n" +"Value of 0 means no tilt / vertical orbit." msgstr "" #: src/settings_translation_file.cpp msgid "" -"(X,Y,Z) offset of fractal from world center in units of 'scale'.\n" -"Can be used to move a desired point to (0, 0) to create a\n" -"suitable spawn point, or to allow 'zooming in' on a desired\n" -"point by increasing 'scale'.\n" -"The default is tuned for a suitable spawn point for Mandelbrot\n" -"sets with default parameters, it may need altering in other\n" -"situations.\n" -"Range roughly -2 to 2. Multiply by 'scale' for offset in nodes." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Slice w" +"Set the exposure compensation in EV units.\n" +"Value of 0.0 (default) means no exposure compensation.\n" +"Range: from -1 to 1.0" msgstr "" #: src/settings_translation_file.cpp msgid "" -"W coordinate of the generated 3D slice of a 4D fractal.\n" -"Determines which 3D slice of the 4D shape is generated.\n" -"Alters the shape of the fractal.\n" -"Has no effect on 3D fractals.\n" -"Range roughly -2 to 2." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Julia x" +"Set the language. By default, the system language is used.\n" +"A restart is required after changing this." msgstr "" #: src/settings_translation_file.cpp msgid "" -"Julia set only.\n" -"X component of hypercomplex constant.\n" -"Alters the shape of the fractal.\n" -"Range roughly -2 to 2." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Julia y" +"Set the maximum length of a chat message (in characters) sent by clients." msgstr "" #: src/settings_translation_file.cpp msgid "" -"Julia set only.\n" -"Y component of hypercomplex constant.\n" -"Alters the shape of the fractal.\n" -"Range roughly -2 to 2." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Julia z" +"Set the shadow strength gamma.\n" +"Adjusts the intensity of in-game dynamic shadows.\n" +"Lower value means lighter shadows, higher value means darker shadows." msgstr "" #: src/settings_translation_file.cpp msgid "" -"Julia set only.\n" -"Z component of hypercomplex constant.\n" -"Alters the shape of the fractal.\n" -"Range roughly -2 to 2." +"Set the soft shadow radius size.\n" +"Lower values mean sharper shadows, bigger values mean softer shadows.\n" +"Minimum value: 1.0; maximum value: 15.0" msgstr "" #: src/settings_translation_file.cpp -msgid "Julia w" +msgid "Set to true to enable Shadow Mapping." msgstr "" #: src/settings_translation_file.cpp msgid "" -"Julia set only.\n" -"W component of hypercomplex constant.\n" -"Alters the shape of the fractal.\n" -"Has no effect on 3D fractals.\n" -"Range roughly -2 to 2." +"Set to true to enable bloom effect.\n" +"Bright colors will bleed over the neighboring objects." msgstr "" #: src/settings_translation_file.cpp -msgid "Seabed noise" +msgid "Set to true to enable volumetric lighting effect (a.k.a. \"Godrays\")." msgstr "" #: src/settings_translation_file.cpp -msgid "Y-level of seabed." +msgid "Set to true to enable waving leaves." msgstr "" #: src/settings_translation_file.cpp -msgid "Mapgen Valleys" +msgid "Set to true to enable waving liquids (like water)." msgstr "" #: src/settings_translation_file.cpp -msgid "Mapgen Valleys specific flags" +msgid "Set to true to enable waving plants." msgstr "" #: src/settings_translation_file.cpp msgid "" -"Map generation attributes specific to Mapgen Valleys.\n" -"'altitude_chill': Reduces heat with altitude.\n" -"'humid_rivers': Increases humidity around rivers.\n" -"'vary_river_depth': If enabled, low humidity and high heat causes rivers\n" -"to become shallower and occasionally dry.\n" -"'altitude_dry': Reduces humidity with altitude." +"Set to true to render debugging breakdown of the bloom effect.\n" +"In debug mode, the screen is split into 4 quadrants:\n" +"top-left - processed base image, top-right - final image\n" +"bottom-left - raw base image, bottom-right - bloom texture." msgstr "" #: src/settings_translation_file.cpp msgid "" -"The vertical distance over which heat drops by 20 if 'altitude_chill' is\n" -"enabled. Also, the vertical distance over which humidity drops by 10 if\n" -"'altitude_dry' is enabled." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Depth below which you'll find large caves." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Cavern upper limit" -msgstr "Límite superior de la caverna" - -#: src/settings_translation_file.cpp -msgid "Depth below which you'll find giant caverns." -msgstr "Profundidad debajo de la cual encontrarás cavernas gigantes." - -#: src/settings_translation_file.cpp -msgid "River depth" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "How deep to make rivers." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "River size" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "How wide to make rivers." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Cave noise #1" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Cave noise #2" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Filler depth" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Terrain height" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Base terrain height." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Valley depth" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Raises terrain to make valleys around the rivers." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Valley fill" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Slope and fill work together to modify the heights." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Valley profile" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Amplifies the valleys." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Valley slope" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Advanced" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Developer Options" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Client modding" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Enable Lua modding support on client.\n" -"This support is experimental and API can change." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Main menu script" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Replaces the default main menu with a custom one." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mod Security" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enable mod security" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Prevent mods from doing insecure things like running shell commands." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Trusted mods" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Comma-separated list of trusted mods that are allowed to access insecure\n" -"functions even when mod security is on (via request_insecure_environment())." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "HTTP mods" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Comma-separated list of mods that are allowed to access HTTP APIs, which\n" -"allow them to upload and download data to/from the internet." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Debugging" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Debug log level" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Level of logging to be written to debug.txt:\n" -"- (no logging)\n" -"- none (messages with no level)\n" -"- error\n" -"- warning\n" -"- action\n" -"- info\n" -"- verbose\n" -"- trace" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Debug log file size threshold" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"If the file size of debug.txt exceeds the number of megabytes specified in\n" -"this setting when it is opened, the file is moved to debug.txt.1,\n" -"deleting an older debug.txt.1 if it exists.\n" -"debug.txt is only moved if this setting is positive." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Chat log level" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Minimal level of logging to be written to chat." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Deprecated Lua API handling" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Handling for deprecated Lua API calls:\n" -"- none: Do not log deprecated calls\n" -"- log: mimic and log backtrace of deprecated call (default).\n" -"- error: abort on usage of deprecated call (suggested for mod developers)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Random input" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enable random user input (only used for testing)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Random mod load order" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enable random mod loading (mainly used for testing)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mod channels" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enable mod channels support." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mod Profiler" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Load the game profiler" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Load the game profiler to collect game profiling data.\n" -"Provides a /profiler command to access the compiled profile.\n" -"Useful for mod developers and server operators." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Default report format" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"The default format in which profiles are being saved,\n" -"when calling `/profiler save [format]` without format." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Report path" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"The file path relative to your world path in which profiles will be saved to." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Entity methods" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Instrument the methods of entities on registration." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Active Block Modifiers" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Instrument the action function of Active Block Modifiers on registration." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Loading Block Modifiers" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Instrument the action function of Loading Block Modifiers on registration." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Chat commands" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Instrument chat commands on registration." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Global callbacks" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Instrument global callback functions on registration.\n" -"(anything you pass to a core.register_*() function)" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Builtin" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Instrument builtin.\n" -"This is usually only needed by core/builtin contributors" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Profiler" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Have the profiler instrument itself:\n" -"* Instrument an empty function.\n" -"This estimates the overhead, that instrumentation is adding (+1 function " -"call).\n" -"* Instrument the sampler being used to update the statistics." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Engine Profiler" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Engine profiling data print interval" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Print the engine's profiling data in regular intervals (in seconds).\n" -"0 = disable. Useful for developers." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "IPv6" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Enable IPv6 support (for both client and server).\n" -"Required for IPv6 connections to work at all." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Ignore world errors" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"If enabled, invalid world data won't cause the server to shut down.\n" -"Only enable this if you know what you are doing." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "Shaders" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." +"Sets shadow texture quality to 32 bits.\n" +"On false, 16 bits texture will be used.\n" +"This can cause much more artifacts in the shadow." msgstr "" #: src/settings_translation_file.cpp @@ -5500,96 +5541,277 @@ msgid "Shader path" msgstr "" #: src/settings_translation_file.cpp -msgid "" -"Path to shader directory. If no path is defined, default location will be " -"used." +msgid "Shadow filter quality" msgstr "" #: src/settings_translation_file.cpp -msgid "Video driver" +msgid "Shadow map max distance in nodes to render shadows" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Shadow map texture in 32 bits" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Shadow map texture size" msgstr "" #: src/settings_translation_file.cpp msgid "" -"The rendering back-end.\n" -"Note: A restart is required after changing this!\n" -"OpenGL is the default for desktop, and OGLES2 for Android." +"Shadow offset (in pixels) of the default font. If 0, then shadow will not be " +"drawn." msgstr "" #: src/settings_translation_file.cpp -msgid "Transparency Sorting Distance" +msgid "Shadow strength gamma" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Show debug info" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Show entity selection boxes" msgstr "" #: src/settings_translation_file.cpp msgid "" -"Distance in nodes at which transparency depth sorting is enabled.\n" -"Use this to limit the performance impact of transparency depth sorting.\n" -"Set to 0 to disable it entirely." +"Show entity selection boxes\n" +"A restart is required after changing this." msgstr "" #: src/settings_translation_file.cpp -msgid "Cloud radius" +msgid "Show name tag backgrounds by default" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Shutdown message" msgstr "" #: src/settings_translation_file.cpp msgid "" -"Radius of cloud area stated in number of 64 node cloud squares.\n" -"Values larger than 26 will start to produce sharp cutoffs at cloud area " -"corners." +"Side length of a cube of map blocks that the client will consider together\n" +"when generating meshes.\n" +"Larger values increase the utilization of the GPU by reducing the number of\n" +"draw calls, benefiting especially high-end GPUs.\n" +"Systems with a low-end GPU (or no GPU) would benefit from smaller values." msgstr "" #: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mesh cache" +msgid "Simulate translucency when looking at foliage in the sunlight." msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." +"Size of mapchunks generated by mapgen, stated in mapblocks (16 nodes).\n" +"WARNING: There is no benefit, and there are several dangers, in\n" +"increasing this value above 5.\n" +"Reducing this value increases cave and dungeon density.\n" +"Altering this value is for special usage, leaving it unchanged is\n" +"recommended." msgstr "" #: src/settings_translation_file.cpp -msgid "Mapblock mesh generation delay" +msgid "Sky Body Orbit Tilt" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Slice w" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Slope and fill work together to modify the heights." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Small cave maximum number" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Small cave minimum number" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Small-scale humidity variation for blending biomes on borders." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Small-scale temperature variation for blending biomes on borders." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Smooth lighting" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Smooth scrolling" msgstr "" #: src/settings_translation_file.cpp msgid "" -"Delay between mesh updates on the client in ms. Increasing this will slow\n" -"down the rate of mesh updates, thus reducing jitter on slower clients." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapblock mesh generation threads" +"Smooths rotation of camera when in cinematic mode, 0 to disable. Enter " +"cinematic mode by using the key set in Controls." msgstr "" #: src/settings_translation_file.cpp msgid "" -"Number of threads to use for mesh generation.\n" -"Value of 0 (default) will let Luanti autodetect the number of available " -"threads." +"Smooths rotation of camera, also called look or mouse smoothing. 0 to " +"disable." msgstr "" #: src/settings_translation_file.cpp -msgid "Minimap scan height" +msgid "Sneaking speed" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Sneaking speed, in nodes per second." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Soft clouds" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Soft shadow radius" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Sound" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Sound Extensions Blacklist" msgstr "" #: src/settings_translation_file.cpp msgid "" -"True = 256\n" -"False = 128\n" -"Usable to make minimap smoother on slower machines." +"Specifies URL from which client fetches media instead of using UDP.\n" +"$filename should be accessible from $remote_media$filename via cURL\n" +"(obviously, remote_media should end with a slash).\n" +"Files that are not present will be fetched the usual way." msgstr "" #: src/settings_translation_file.cpp -msgid "World-aligned textures mode" +msgid "" +"Specifies the default stack size of nodes, items and tools.\n" +"Note that mods or games may explicitly set a stack for certain (or all) " +"items." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Spread a complete update of the shadow map over a given number of frames.\n" +"Higher values might make shadows laggy, lower values\n" +"will consume more resources." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Spread of light curve boost range.\n" +"Controls the width of the range to be boosted.\n" +"Standard deviation of the light curve boost Gaussian." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Static spawn point" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Steepness noise" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Step mountain size noise" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Step mountain spread noise" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Strength of 3D mode parallax." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Strength of light curve boost.\n" +"The 3 'boost' parameters define a range of the light\n" +"curve that is boosted in brightness." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Strict protocol checking" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Strip color codes" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Surface level of optional water placed on a solid floatland layer.\n" +"Water is disabled by default and will only be placed if this value is set\n" +"to above 'mgv7_floatland_ymax' - 'mgv7_floatland_taper' (the start of the\n" +"upper tapering).\n" +"***WARNING, POTENTIAL DANGER TO WORLDS AND SERVER PERFORMANCE***:\n" +"When enabling water placement, floatlands must be configured and tested\n" +"to be a solid layer by setting 'mgv7_floatland_density' to 2.0 (or other\n" +"required value depending on 'mgv7_np_floatland'), to avoid\n" +"server-intensive extreme water flow and to avoid vast flooding of the\n" +"world surface below." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Synchronous SQLite" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Temperature variation for biomes." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Terrain alternative noise" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Terrain base noise" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Terrain height" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Terrain higher noise" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Terrain noise" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Terrain noise threshold for hills.\n" +"Controls proportion of world area covered by hills.\n" +"Adjust towards 0.0 for a larger proportion." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Terrain noise threshold for lakes.\n" +"Controls proportion of world area covered by lakes.\n" +"Adjust towards 0.0 for a larger proportion." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Terrain persistence noise" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Texture size to render the shadow map on.\n" +"This must be a power of two.\n" +"Bigger numbers create better shadows but it is also more expensive." msgstr "" #: src/settings_translation_file.cpp @@ -5603,444 +5825,74 @@ msgid "" msgstr "" #: src/settings_translation_file.cpp -msgid "Autoscaling mode" +msgid "The URL for the content repository" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "The dead zone of the joystick" msgstr "" #: src/settings_translation_file.cpp msgid "" -"World-aligned textures may be scaled to span several nodes. However,\n" -"the server may not send the scale you want, especially if you use\n" -"a specially-designed texture pack; with this option, the client tries\n" -"to determine the scale automatically basing on the texture size.\n" -"See also texture_min_size.\n" -"Warning: This option is EXPERIMENTAL!" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Base texture size" +"The default format in which profiles are being saved,\n" +"when calling `/profiler save [format]` without format." msgstr "" #: src/settings_translation_file.cpp msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" -"This is also used as the base node texture size for world-aligned\n" -"texture autoscaling." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Client Mesh Chunksize" +"The delay in milliseconds after which a touch interaction is considered a " +"long tap." msgstr "" #: src/settings_translation_file.cpp msgid "" -"Side length of a cube of map blocks that the client will consider together\n" -"when generating meshes.\n" -"Larger values increase the utilization of the GPU by reducing the number of\n" -"draw calls, benefiting especially high-end GPUs.\n" -"Systems with a low-end GPU (or no GPU) would benefit from smaller values." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "OpenGL debug" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enables debug and error-checking in the OpenGL driver." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enable Bloom Debug" +"The file path relative to your world path in which profiles will be saved to." msgstr "" #: src/settings_translation_file.cpp msgid "" -"Set to true to render debugging breakdown of the bloom effect.\n" -"In debug mode, the screen is split into 4 quadrants:\n" -"top-left - processed base image, top-right - final image\n" -"bottom-left - raw base image, bottom-right - bloom texture." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Sound" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Sound Extensions Blacklist" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Comma-separated list of AL and ALC extensions that should not be used.\n" -"Useful for testing. See al_extensions.[h,cpp] for details." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Font" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Font bold by default" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Font italic by default" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Font shadow" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Shadow offset (in pixels) of the default font. If 0, then shadow will not be " -"drawn." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Font shadow alpha" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Opaqueness (alpha) of the shadow behind the default font, between 0 and 255." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Font size" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Font size of the default font where 1 unit = 1 pixel at 96 DPI" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Font size divisible by" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"For pixel-style fonts that do not scale well, this ensures that font sizes " -"used\n" -"with this font will always be divisible by this value, in pixels. For " -"instance,\n" -"a pixel font 16 pixels tall should have this set to 16, so it will only ever " -"be\n" -"sized 16, 32, 48, etc., so a mod requesting a size of 25 will get 32." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Regular font path" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Path to the default font. Must be a TrueType font.\n" -"The fallback font will be used if the font cannot be loaded." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Bold font path" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Italic font path" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Bold and italic font path" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Monospace font size" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Font size of the monospace font where 1 unit = 1 pixel at 96 DPI" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Monospace font size divisible by" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Monospace font path" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Path to the monospace font. Must be a TrueType font.\n" -"This font is used for e.g. the console and profiler screen." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Bold monospace font path" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Italic monospace font path" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Bold and italic monospace font path" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Fallback font path" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Path of the fallback font. Must be a TrueType font.\n" -"This font will be used for certain languages or if the default font is " -"unavailable." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Lighting" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Light curve low gradient" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Gradient of light curve at minimum light level.\n" -"Controls the contrast of the lowest light levels." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Light curve high gradient" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Gradient of light curve at maximum light level.\n" -"Controls the contrast of the highest light levels." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Light curve boost" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Strength of light curve boost.\n" -"The 3 'boost' parameters define a range of the light\n" -"curve that is boosted in brightness." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Light curve boost center" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Center of light curve boost range.\n" -"Where 0.0 is minimum light level, 1.0 is maximum light level." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Light curve boost spread" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Spread of light curve boost range.\n" -"Controls the width of the range to be boosted.\n" -"Standard deviation of the light curve boost Gaussian." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Prometheus listener address" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Prometheus listener address.\n" -"If Luanti is compiled with ENABLE_PROMETHEUS option enabled,\n" -"enable metrics listener for Prometheus on that address.\n" -"Metrics can be fetched on http://127.0.0.1:30000/metrics" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Maximum size of the outgoing chat queue" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Maximum size of the outgoing chat queue.\n" -"0 to disable queueing and -1 to make the queue size unlimited." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapblock unload timeout" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Timeout for client to remove unused map data from memory, in seconds." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapblock limit" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Maximum number of mapblocks for client to be kept in memory.\n" -"Set to -1 for unlimited amount." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Maximum simultaneous block sends per client" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Maximum number of blocks that are simultaneously sent per client.\n" -"The maximum total count is calculated dynamically:\n" -"max_total = ceil((#clients + max_users) * per_client / 4)" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Delay in sending blocks after building" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"To reduce lag, block transfers are slowed down when a player is building " -"something.\n" -"This determines how long they are slowed down after placing or removing a " -"node." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Max. packets per iteration" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Maximum number of packets sent per send step in the low-level networking " -"code.\n" -"You generally don't need to change this, however busy servers may benefit " -"from a higher number." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Map Compression Level for Network Transfer" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Compression level to use when sending mapblocks to the client.\n" -"-1 - use default compression level\n" -"0 - least compression, fastest\n" -"9 - best compression, slowest" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Chat message format" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Format of player chat messages. The following strings are valid " -"placeholders:\n" -"@name, @message, @timestamp (optional)" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Chat command time message threshold" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"If the execution of a chat command takes longer than this specified time in\n" -"seconds, add the time information to the chat command message" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Shutdown message" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "A message to be displayed to all clients when the server shuts down." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Crash message" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "A message to be displayed to all clients when the server crashes." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Ask to reconnect after crash" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Whether to ask clients to reconnect after a (Lua) crash.\n" -"Set this to true if your server is set up to restart automatically." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Server/Env Performance" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Dedicated server step" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Length of a server tick (the interval at which everything is generally " -"updated),\n" -"stated in seconds.\n" -"Does not apply to sessions hosted from the client menu.\n" -"This is a lower bound, i.e. server steps may not be shorter than this, but\n" -"they are often longer." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Unlimited player transfer distance" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Whether players are shown to clients without any range limit.\n" -"Deprecated, use the setting player_transfer_distance instead." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Player transfer distance" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Defines the maximal player transfer distance in blocks (0 = unlimited)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Active object send range" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"From how far clients know about objects, stated in mapblocks (16 nodes).\n" +"The gesture for punching players/entities.\n" +"This can be overridden by games and mods.\n" "\n" -"Setting this larger than active_block_range will also cause the server\n" -"to maintain active objects up to this distance in the direction the\n" -"player is looking. (This can avoid mobs suddenly disappearing from view)" +"* short_tap\n" +"Easy to use and well-known from other games that shall not be named.\n" +"\n" +"* long_tap\n" +"Known from the classic Luanti mobile controls.\n" +"Combat is more or less impossible." msgstr "" #: src/settings_translation_file.cpp -msgid "Active block range" +msgid "The identifier of the joystick to use" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"The length in pixels after which a touch interaction is considered movement." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"The maximum height of the surface of waving liquids.\n" +"4.0 = Wave height is two nodes.\n" +"0.0 = Wave doesn't move at all.\n" +"Default is 1.0 (1/2 node)." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"The minimum time in seconds it takes between digging nodes when holding\n" +"the dig button." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "The network interface that the server listens on." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"The privileges that new users automatically get.\n" +"See /privs in game for a full list on your server and mod configuration." msgstr "" #: src/settings_translation_file.cpp @@ -6055,106 +5907,24 @@ msgid "" msgstr "" #: src/settings_translation_file.cpp -msgid "Max block send distance" +msgid "" +"The rendering back-end.\n" +"Note: A restart is required after changing this!\n" +"OpenGL is the default for desktop, and OGLES2 for Android." msgstr "" #: src/settings_translation_file.cpp msgid "" -"From how far blocks are sent to clients, stated in mapblocks (16 nodes)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Maximum forceloaded blocks" +"The sensitivity of the joystick axes for moving the\n" +"in-game view frustum around." msgstr "" #: src/settings_translation_file.cpp msgid "" -"Default maximum number of forceloaded mapblocks.\n" -"Set this to -1 to disable the limit." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Map save interval" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Interval of saving important changes in the world, stated in seconds." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Unload unused server data" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"How long the server will wait before unloading unused mapblocks, stated in " -"seconds.\n" -"Higher value is smoother, but will use more RAM." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Maximum objects per block" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Maximum number of statically stored objects in a block." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Active block management interval" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Length of time between active block management cycles, stated in seconds." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "ABM interval" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Length of time between Active Block Modifier (ABM) execution cycles, stated " -"in seconds." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "ABM time budget" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"The time budget allowed for ABMs to execute on each step\n" -"(as a fraction of the ABM Interval)" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "NodeTimer interval" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Length of time between NodeTimer execution cycles, stated in seconds." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Liquid loop max" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Max liquids processed per step." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Liquid queue purge time" +"The strength (darkness) of node ambient-occlusion shading.\n" +"Lower is darker, Higher is lighter. The valid range of values for this\n" +"setting is 0.25 to 4.0 inclusive. If the value is out of range it will be\n" +"set to the nearest valid value." msgstr "" #: src/settings_translation_file.cpp @@ -6165,176 +5935,492 @@ msgid "" msgstr "" #: src/settings_translation_file.cpp -msgid "Liquid update tick" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Liquid update interval in seconds." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Block send optimize distance" +msgid "" +"The time budget allowed for ABMs to execute on each step\n" +"(as a fraction of the ABM Interval)" msgstr "" #: src/settings_translation_file.cpp msgid "" -"At this distance the server will aggressively optimize which blocks are sent " -"to\n" -"clients.\n" -"Small values potentially improve performance a lot, at the expense of " -"visible\n" -"rendering glitches (some blocks might not be rendered correctly in caves).\n" -"Setting this to a value greater than max_block_send_distance disables this\n" -"optimization.\n" -"Stated in MapBlocks (16 nodes)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Server-side occlusion culling" +"The time in seconds it takes between repeated events\n" +"when holding down a joystick button combination." msgstr "" #: src/settings_translation_file.cpp msgid "" -"If enabled, the server will perform map block occlusion culling based on\n" -"on the eye position of the player. This can reduce the number of blocks\n" -"sent to the client by 50-80%. Clients will no longer receive most\n" -"invisible blocks, so that the utility of noclip mode is reduced." +"The time in seconds it takes between repeated node placements when holding\n" +"the place button." msgstr "" #: src/settings_translation_file.cpp -msgid "Block cull optimize distance" +msgid "The type of joystick" msgstr "" #: src/settings_translation_file.cpp msgid "" -"At this distance the server will perform a simpler and cheaper occlusion " -"check.\n" -"Smaller values potentially improve performance, at the expense of " -"temporarily visible\n" -"rendering glitches (missing blocks).\n" -"This is especially useful for very large viewing range (upwards of 500).\n" -"Stated in MapBlocks (16 nodes)." +"The vertical distance over which heat drops by 20 if 'altitude_chill' is\n" +"enabled. Also, the vertical distance over which humidity drops by 10 if\n" +"'altitude_dry' is enabled." msgstr "" #: src/settings_translation_file.cpp -msgid "Chunk size" +msgid "Third of 4 2D noises that together define hill/mountain range height." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Threshold for long taps" msgstr "" #: src/settings_translation_file.cpp msgid "" -"Size of mapchunks generated by mapgen, stated in mapblocks (16 nodes).\n" -"WARNING: There is no benefit, and there are several dangers, in\n" -"increasing this value above 5.\n" -"Reducing this value increases cave and dungeon density.\n" -"Altering this value is for special usage, leaving it unchanged is\n" -"recommended." +"Time in seconds for item entity (dropped items) to live.\n" +"Setting it to -1 disables the feature." msgstr "" #: src/settings_translation_file.cpp -msgid "Mapgen debug" +msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "" #: src/settings_translation_file.cpp -msgid "Dump the mapgen debug information." +msgid "Time speed" msgstr "" #: src/settings_translation_file.cpp -msgid "Absolute limit of queued blocks to emerge" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Maximum number of blocks that can be queued for loading." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Per-player limit of queued blocks load from disk" +msgid "Timeout for client to remove unused map data from memory, in seconds." msgstr "" #: src/settings_translation_file.cpp msgid "" -"Maximum number of blocks to be queued that are to be loaded from file.\n" -"This limit is enforced per player." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Per-player limit of queued blocks to generate" +"To reduce lag, block transfers are slowed down when a player is building " +"something.\n" +"This determines how long they are slowed down after placing or removing a " +"node." msgstr "" #: src/settings_translation_file.cpp msgid "" -"Maximum number of blocks to be queued that are to be generated.\n" -"This limit is enforced per player." +"Tolerance of movement cheat detector.\n" +"Increase the value if players experience stuttery movement." msgstr "" #: src/settings_translation_file.cpp -msgid "Number of emerge threads" +msgid "Tooltip delay" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Touchscreen" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Touchscreen controls" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Touchscreen sensitivity" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Touchscreen sensitivity multiplier." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Tradeoffs for performance" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Translucent foliage" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Translucent liquids" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Distance" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Trees noise" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Trilinear filtering" msgstr "" #: src/settings_translation_file.cpp msgid "" -"Number of emerge threads to use.\n" -"Value 0:\n" -"- Automatic selection. The number of emerge threads will be\n" -"- 'number of processors - 2', with a lower limit of 1.\n" -"Any other value:\n" -"- Specifies the number of emerge threads, with a lower limit of 1.\n" -"WARNING: Increasing the number of emerge threads increases engine mapgen\n" -"speed, but this may harm game performance by interfering with other\n" -"processes, especially in singleplayer and/or when running Lua code in\n" -"'on_generated'. For many users the optimum setting may be '1'." +"True = 256\n" +"False = 128\n" +"Usable to make minimap smoother on slower machines." msgstr "" #: src/settings_translation_file.cpp -msgid "cURL" -msgstr "cURL" - -#: src/settings_translation_file.cpp -msgid "cURL interactive timeout" +msgid "Trusted mods" msgstr "" #: src/settings_translation_file.cpp msgid "" -"Maximum time an interactive request (e.g. server list fetch) may take, " -"stated in milliseconds." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "cURL parallel limit" +"Type of occlusion_culler\n" +"\n" +"\"loops\" is the legacy algorithm with nested loops and O(n³) complexity\n" +"\"bfs\" is the new algorithm based on breadth-first-search and side culling\n" +"\n" +"This setting should only be changed if you have performance problems." msgstr "" #: src/settings_translation_file.cpp msgid "" -"Limits number of parallel HTTP requests. Affects:\n" -"- Media fetch if server uses remote_media setting.\n" -"- Serverlist download and server announcement.\n" -"- Downloads performed by main menu (e.g. mod manager).\n" -"Only has an effect if compiled with cURL." +"URL to JSON file which provides information about the newest Luanti " +"release.\n" +"If this is empty the engine will never check for updates." msgstr "" #: src/settings_translation_file.cpp -msgid "cURL file download timeout" +msgid "URL to the server list displayed in the Multiplayer Tab." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Undersampling" msgstr "" #: src/settings_translation_file.cpp msgid "" -"Maximum time a file download (e.g. a mod download) may take, stated in " -"milliseconds." +"Undersampling is similar to using a lower screen resolution, but it applies\n" +"to the game world only, keeping the GUI intact.\n" +"It should give a significant performance boost at the cost of less detailed " +"image.\n" +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" #: src/settings_translation_file.cpp -msgid "Miscellaneous" +msgid "Unlimited player transfer distance" msgstr "" #: src/settings_translation_file.cpp -msgid "Display Density Scaling Factor" +msgid "Unload unused server data" msgstr "" #: src/settings_translation_file.cpp -msgid "Adjust the detected display density, used for scaling UI elements." +msgid "Update information URL" msgstr "" #: src/settings_translation_file.cpp -msgid "Enable console window" +msgid "Upper Y limit of dungeons." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Upper Y limit of floatlands." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Use a cloud animation for the main menu background." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Use bilinear filtering when scaling textures." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Use crosshair for touch screen" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Use crosshair to select object instead of whole screen.\n" +"If enabled, a crosshair will be shown and will be used for selecting object." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Use mipmaps when scaling textures. May slightly increase performance,\n" +"especially when using a high-resolution texture pack.\n" +"Gamma-correct downscaling is not supported." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Use raytraced occlusion culling in the new culler.\n" +"This flag enables use of raytraced occlusion culling test for\n" +"client mesh sizes smaller than 4x4x4 map blocks." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Use smooth cloud shading." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Use trilinear filtering when scaling textures.\n" +"If both bilinear and trilinear filtering are enabled, trilinear filtering\n" +"is applied." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Use virtual joystick to trigger \"Aux1\" button.\n" +"If enabled, virtual joystick will also tap \"Aux1\" button when out of main " +"circle." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "User Interfaces" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "VSync" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Valley depth" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Valley fill" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Valley profile" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Valley slope" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Variation of biome filler depth." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Variation of maximum mountain height (in nodes)." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Variation of number of caves." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Variation of terrain vertical scale.\n" +"When noise is < -0.55 terrain is near-flat." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Varies depth of biome surface nodes." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Varies roughness of terrain.\n" +"Defines the 'persistence' value for terrain_base and terrain_alt noises." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Varies steepness of cliffs." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Vertical climbing speed, in nodes per second." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Vertical screen synchronization. Your system may still force VSync on even " +"if this is disabled." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Video driver" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "View bobbing factor" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "View distance in nodes." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Viewing range" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Virtual joystick triggers Aux1 button" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Volume" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Volume multiplier when the window is unfocused." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Volume of all sounds.\n" +"Requires the sound system to be enabled." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Volume when unfocused" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Volumetric lighting" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"W coordinate of the generated 3D slice of a 4D fractal.\n" +"Determines which 3D slice of the 4D shape is generated.\n" +"Alters the shape of the fractal.\n" +"Has no effect on 3D fractals.\n" +"Range roughly -2 to 2." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Walking and flying speed, in nodes per second." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Walking speed" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Walking, flying and climbing speed in fast mode, in nodes per second." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Water level" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Water surface level of the world." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Waving Nodes" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Waving leaves" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Waving liquids" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Waving liquids wave height" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Waving liquids wave speed" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Waving liquids wavelength" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Waving plants" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Weblink color" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "When enabled, liquid reflections are simulated." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"When enabled, the GUI is optimized to be more usable on touchscreens.\n" +"Whether this is enabled by default depends on your hardware form-factor." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"When gui_scaling_filter is true, all GUI images need to be\n" +"filtered in software, but some images are generated directly\n" +"to hardware (e.g. render-to-texture for nodes in inventory)." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" +"This is also used as the base node texture size for world-aligned\n" +"texture autoscaling." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Whether name tag backgrounds should be shown by default.\n" +"Mods may still set a background." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Whether players are shown to clients without any range limit.\n" +"Deprecated, use the setting player_transfer_distance instead." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Whether the window is maximized." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Whether to ask clients to reconnect after a (Lua) crash.\n" +"Set this to true if your server is set up to restart automatically." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Whether to fog out the end of the visible area." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Whether to mute sounds. You can unmute sounds at any time.\n" +"In-game, you can toggle the mute state with the mute key or by using the\n" +"pause menu." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Whether to show the client debug info (has the same effect as hitting F5)." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Width component of the initial window size." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Width of the selection box lines around nodes." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Window maximized" msgstr "" #: src/settings_translation_file.cpp @@ -6344,21 +6430,6 @@ msgid "" "Contains the same information as the file debug.txt (default name)." msgstr "" -#: src/settings_translation_file.cpp -msgid "Max. clearobjects extra blocks" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Number of extra blocks that can be loaded by /clearobjects at once.\n" -"This is a trade-off between SQLite transaction overhead and\n" -"memory consumption (4096=100MB, as a rule of thumb)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Map directory" -msgstr "" - #: src/settings_translation_file.cpp msgid "" "World directory (everything in the world is stored here).\n" @@ -6366,100 +6437,108 @@ msgid "" msgstr "" #: src/settings_translation_file.cpp -msgid "Synchronous SQLite" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "See https://www.sqlite.org/pragma.html#pragma_synchronous" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Map Compression Level for Disk Storage" +msgid "World start time" msgstr "" #: src/settings_translation_file.cpp msgid "" -"Compression level to use when saving mapblocks to disk.\n" -"-1 - use default compression level\n" -"0 - least compression, fastest\n" -"9 - best compression, slowest" +"World-aligned textures may be scaled to span several nodes. However,\n" +"the server may not send the scale you want, especially if you use\n" +"a specially-designed texture pack; with this option, the client tries\n" +"to determine the scale automatically basing on the texture size.\n" +"See also texture_min_size.\n" +"Warning: This option is EXPERIMENTAL!" msgstr "" #: src/settings_translation_file.cpp -msgid "Connect to external media server" +msgid "World-aligned textures mode" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Y of flat ground." msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable usage of remote media server (if provided by server).\n" -"Remote servers offer a significantly faster way to download media (e.g. " -"textures)\n" -"when connecting to the server." +"Y of mountain density gradient zero level. Used to shift mountains " +"vertically." msgstr "" #: src/settings_translation_file.cpp -msgid "Serverlist file" +msgid "Y of upper limit of large caves." msgstr "" +#: src/settings_translation_file.cpp +msgid "Y-distance over which caverns expand to full size." +msgstr "" +"Distancia Y sobre la cual las cavernas se expanden hasta su tamaño completo." + #: src/settings_translation_file.cpp msgid "" -"File in client/serverlist/ that contains your favorite servers displayed in " -"the\n" -"Multiplayer Tab." +"Y-distance over which floatlands taper from full density to nothing.\n" +"Tapering starts at this distance from the Y limit.\n" +"For a solid floatland layer, this controls the height of hills/mountains.\n" +"Must be less than or equal to half the distance between the Y limits." msgstr "" #: src/settings_translation_file.cpp -msgid "Gamepads" +msgid "Y-level of average terrain surface." msgstr "" #: src/settings_translation_file.cpp -msgid "Enable joysticks" +msgid "Y-level of cavern upper limit." +msgstr "Nivel Y del límite superior de la caverna." + +#: src/settings_translation_file.cpp +msgid "Y-level of higher terrain that creates cliffs." msgstr "" #: src/settings_translation_file.cpp -msgid "Enable joysticks. Requires a restart to take effect" +msgid "Y-level of lower terrain and seabed." msgstr "" #: src/settings_translation_file.cpp -msgid "Joystick ID" +msgid "Y-level of seabed." msgstr "" #: src/settings_translation_file.cpp -msgid "The identifier of the joystick to use" +msgid "cURL" +msgstr "cURL" + +#: src/settings_translation_file.cpp +msgid "cURL file download timeout" msgstr "" #: src/settings_translation_file.cpp -msgid "Joystick type" +msgid "cURL interactive timeout" msgstr "" #: src/settings_translation_file.cpp -msgid "The type of joystick" +msgid "cURL parallel limit" msgstr "" -#: src/settings_translation_file.cpp -msgid "Joystick button repetition interval" -msgstr "" +#~ msgid "Debug info and profiler graph hidden" +#~ msgstr "Información de depuración y gráfico del perfilador ocultos" -#: src/settings_translation_file.cpp -msgid "" -"The time in seconds it takes between repeated events\n" -"when holding down a joystick button combination." -msgstr "" +#~ msgid "Debug info, profiler graph, and wireframe hidden" +#~ msgstr "" +#~ "Información de depuración, gráfico de perfilado y estructura alámbrica " +#~ "oculto" -#: src/settings_translation_file.cpp -msgid "Joystick dead zone" -msgstr "" +#~ msgid "Enable" +#~ msgstr "Habilitar" -#: src/settings_translation_file.cpp -msgid "The dead zone of the joystick" -msgstr "" +#~ msgid "Irrlicht device:" +#~ msgstr "Dispositivo Irrlicht:" -#: src/settings_translation_file.cpp -msgid "Joystick frustum sensitivity" -msgstr "" +#~ msgid "Shaders" +#~ msgstr "Shaders" -#: src/settings_translation_file.cpp -msgid "" -"The sensitivity of the joystick axes for moving the\n" -"in-game view frustum around." -msgstr "" +#~ msgid "Shaders are disabled." +#~ msgstr "Los Shaders estan desactivados." + +#~ msgid "Sound system is disabled" +#~ msgstr "El sonido del sistema está deshabilitado" + +#~ msgid "This is not a recommended configuration." +#~ msgstr "Esta no es una configuración recomendada." diff --git a/po/et/luanti.po b/po/et/luanti.po index 5d1544f62..ca04ea02e 100644 --- a/po/et/luanti.po +++ b/po/et/luanti.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Estonian (Minetest)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" "PO-Revision-Date: 2023-10-22 17:18+0000\n" "Last-Translator: Janar Leas \n" "Language-Team: Estonian ] [-t]" msgstr "[all | ]" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "Sirvi" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "Muuda" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "Vali kataloog" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "Vali fail" + +#: builtin/common/settings/components.lua +#, fuzzy +msgid "Set" +msgstr "Vali" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(Kirjeldus seadistusele puudub)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "Kahemõõtmeline müra" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "Tühista" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "Pinna auklikus" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "Oktavid" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "Nihe" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "Püsivus" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "Salvesta" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "Ulatus" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "Külv" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "X levi" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "Y levi" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "Z levi" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "täisväärtus" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "algsed" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "pehmendatud" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "Jututuba" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "Tühjenda" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "Juhtklahvid" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "Keelatud" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "Lubatud" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "Tulemused puuduvad" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Reset setting to default" +msgstr "Taasta vaikeväärtus" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "Otsi" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "Kuva tehnilised nimetused" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Touchscreen layout" +msgstr "Puuteekraan" + +#: builtin/common/settings/dlg_settings.lua +msgid "pause_menu" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Client Mods" +msgstr "Kliendi mod-id" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "Sisu: Mängud" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "Sisu: Mod-id" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "Elavad varjud" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "Kõrge" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "Madal" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "Keskmine" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "Väga kõrge" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "Vägamadal" + #: builtin/fstk/ui.lua msgid "" msgstr "" @@ -164,7 +405,6 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "Tagasi" @@ -201,11 +441,6 @@ msgstr "Mod-id" msgid "No packages could be retrieved" msgstr "Ei õnnestunud ühtki pakki vastu võtta" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "Tulemused puuduvad" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "Värskendusi pole" @@ -251,18 +486,6 @@ msgstr "Juba installeeritud" msgid "Base Game:" msgstr "Põhi Mäng:" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "Tühista" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -389,6 +612,12 @@ msgstr "Pole võimalik $1 paigaldamine kui $2" msgid "Unable to install a $1 as a texture pack" msgstr "$1 paigaldamine tekstuurikomplektiks nurjus" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "(Lubatud, vigane)" @@ -453,12 +682,6 @@ msgstr "Valikulised sõltuvused puuduvad" msgid "Optional dependencies:" msgstr "Valikulised sõltuvused:" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "Salvesta" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "Maailm:" @@ -610,11 +833,6 @@ msgstr "Jõed" msgid "Sea level rivers" msgstr "Jõed merekõrgusel" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "Külv" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "Sujuv loodusvööndi vaheldumine" @@ -755,6 +973,23 @@ msgstr "" "Selle MOD-i pakk nimi on määratud oma „modpack.conf“ failid, mis asendab " "siinse ümber nimetamise." +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "Luba kõik" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "Uus $1 versioon on saadaval" @@ -783,7 +1018,7 @@ msgstr "Ealeski" msgid "Visit website" msgstr "Külasta veebilehte" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "Sätted" @@ -797,227 +1032,6 @@ msgstr "" "Proovi lubada uuesti avalike serverite loend ja kontrolli oma " "internetiühendust." -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "Sirvi" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "Muuda" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "Vali kataloog" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "Vali fail" - -#: builtin/mainmenu/settings/components.lua -#, fuzzy -msgid "Set" -msgstr "Vali" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(Kirjeldus seadistusele puudub)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "Kahemõõtmeline müra" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "Pinna auklikus" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "Oktavid" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "Nihe" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "Püsivus" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "Ulatus" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "X levi" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "Y levi" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "Z levi" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "täisväärtus" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "algsed" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "pehmendatud" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "Jututuba" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "Tühjenda" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "Juhtklahvid" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "Keelatud" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "Lubatud" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Reset setting to default" -msgstr "Taasta vaikeväärtus" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "Otsi" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "Kuva tehnilised nimetused" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "Kliendi mod-id" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "Sisu: Mängud" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "Sisu: Mod-id" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "Lubatud" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Shaders are disabled." -msgstr "Kaamera värskendamine on keelatud" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "Elavad varjud" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "Kõrge" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "Madal" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "Keskmine" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "Väga kõrge" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "Vägamadal" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "Teavet" @@ -1038,10 +1052,6 @@ msgstr "Põhi arendajad" msgid "Core Team" msgstr "Tuumik meeskond" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "Avalik Kasutaja Andmete Kaust" @@ -1191,10 +1201,22 @@ msgstr "Alusta mängu" msgid "You need to install a game before you can create a world." msgstr "" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "Eemalda lemmik" + #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "Aadress" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "Kliendi mod-id" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "Loov-laad" @@ -1208,6 +1230,11 @@ msgstr "Vigastused mängijatelt" msgid "Favorites" msgstr "Lemmikud" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "Mäng" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "Ühildumatud Võõrustajad" @@ -1220,10 +1247,26 @@ msgstr "Ühine mänguga" msgid "Login" msgstr "Logi sisse" +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +msgid "Open server website" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "Viivitus" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Public Servers" msgstr "Avalikud võõrustajad" @@ -1308,23 +1351,6 @@ msgstr "" "\n" "Vaata debug.txt info jaoks." -#: src/client/game.cpp -msgid "- Mode: " -msgstr "- Režiim: " - -#: src/client/game.cpp -msgid "- Public: " -msgstr "- Avalik: " - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "- Üksteise vastu: " - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "- Serveri nimi: " - #: src/client/game.cpp msgid "A serialization error occurred:" msgstr "Esines tõrge jadastamisega:" @@ -1334,6 +1360,11 @@ msgstr "Esines tõrge jadastamisega:" msgid "Access denied. Reason: %s" msgstr "Ligipääsust keelduti. Põhjus: %s" +#: src/client/game.cpp +#, fuzzy +msgid "All debug info hidden" +msgstr "Silumisteave kuvatud" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "Automaatne edastus keelatud" @@ -1354,6 +1385,10 @@ msgstr "Ääriste kuvamine hoitavale klotsile" msgid "Block bounds shown for nearby blocks" msgstr "Ääriste kuvamine lähedastele klotsidele" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "Kaamera värskendamine on keelatud" @@ -1367,10 +1402,6 @@ msgstr "Kaamera värskendamine on lubatud" msgid "Can't show block bounds (disabled by game or mod)" msgstr "Klotsi ääri ei kuvata (mod või mäng tõkestab)" -#: src/client/game.cpp -msgid "Change Password" -msgstr "Vaheta parooli" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "Filmirežiim on keelatud" @@ -1399,39 +1430,6 @@ msgstr "Ühenduse viga (Aeg otsas?)" msgid "Connection failed for unknown reason" msgstr "Ühendus nurjus teadmata põhjusel" -#: src/client/game.cpp -msgid "Continue" -msgstr "Jätka" - -#: src/client/game.cpp -#, fuzzy -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" -"Vaikimisi juhtimine:\n" -"Menüü pole nähtav:\n" -"- toksa: nupu käitamine\n" -"- kaksiktoksa: aseta/kasuta\n" -"- libista näpuga: vaata ringi\n" -"Menüü/varamu nähtav:\n" -"- kaksiktoksa (välja):\n" -" -->sulgeb\n" -"- puutu vihku, puutu pesa:\n" -" --> teisaldab vihu\n" -"- puutu&lohista, toksa 2-se näpuga\n" -" --> asetab ühe eseme pessa\n" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1445,31 +1443,15 @@ msgstr "Kliendi loomine..." msgid "Creating server..." msgstr "Serveri loomine..." -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "Siluri info ja profiileri graafik peidetud" - #: src/client/game.cpp msgid "Debug info shown" msgstr "Silumisteave kuvatud" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "Siluri info, profiileri graafik ja sõrestik peidetud" - #: src/client/game.cpp #, c-format msgid "Error creating client: %s" msgstr "Tõrge kliendi loomisega: %s" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "Välju menüüsse" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "Välju mängust" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "Kiirrežiim on keelatud" @@ -1507,18 +1489,6 @@ msgstr "Udu lubatud" msgid "Fog enabled by game or mod" msgstr "Suumimine on praegu mängu või modi tõttu keelatud" -#: src/client/game.cpp -msgid "Game info:" -msgstr "Mängu teave:" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "Mäng pausil" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "Majutan serverit" - #: src/client/game.cpp msgid "Item definitions..." msgstr "Esemete määratlused..." @@ -1555,14 +1525,6 @@ msgstr "Haakumatus lubatud (pole 'haakumatus' volitust)" msgid "Node definitions..." msgstr "Klotsi määratlused..." -#: src/client/game.cpp -msgid "Off" -msgstr "Väljas" - -#: src/client/game.cpp -msgid "On" -msgstr "Sees" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "" @@ -1575,38 +1537,22 @@ msgstr "" msgid "Profiler graph shown" msgstr "Koormushinnangu kuvamine" -#: src/client/game.cpp -msgid "Remote server" -msgstr "Kaug võõrustaja" - #: src/client/game.cpp msgid "Resolving address..." msgstr "Aadressi lahendamine..." -#: src/client/game.cpp -msgid "Respawn" -msgstr "Ärka ellu" - #: src/client/game.cpp msgid "Shutting down..." msgstr "Sulgemine..." -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "Üksikmäng" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "Hääle volüüm" - #: src/client/game.cpp msgid "Sound muted" msgstr "Heli vaigistatud" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "Heli süsteem on keelatud" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "See kooste ei toeta heli süsteemi" @@ -1680,18 +1626,116 @@ msgstr "Vaate kaugus on nüüd: %d" msgid "Volume changed to %d%%" msgstr "Helitugevus muutus %d%%" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "Raamvõrgustiku paljastus" -#: src/client/game.cpp -msgid "You died" -msgstr "Said surma" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "Suumimine on praegu mängu või modi tõttu keelatud" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "- Režiim: " + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "- Avalik: " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "- Üksteise vastu: " + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "- Serveri nimi: " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "Vaheta parooli" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "Jätka" + +#: src/client/game_formspec.cpp +#, fuzzy +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" +"Vaikimisi juhtimine:\n" +"Menüü pole nähtav:\n" +"- toksa: nupu käitamine\n" +"- kaksiktoksa: aseta/kasuta\n" +"- libista näpuga: vaata ringi\n" +"Menüü/varamu nähtav:\n" +"- kaksiktoksa (välja):\n" +" -->sulgeb\n" +"- puutu vihku, puutu pesa:\n" +" --> teisaldab vihu\n" +"- puutu&lohista, toksa 2-se näpuga\n" +" --> asetab ühe eseme pessa\n" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "Välju menüüsse" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "Välju mängust" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "Mängu teave:" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "Mäng pausil" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "Majutan serverit" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "Väljas" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "Sees" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "Kaug võõrustaja" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "Ärka ellu" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "Hääle volüüm" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "Said surma" + #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" msgstr "Vestlus on hetkel tõkestatud mängu või mod-i poolt" @@ -2031,8 +2075,9 @@ msgid "Failed to compile the \"%s\" shader." msgstr "Veebilehe avamine ebaõnnestus" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." -msgstr "" +#, fuzzy +msgid "GLSL is not supported by the driver" +msgstr "See kooste ei toeta heli süsteemi" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" #: src/content/mod_configuration.cpp @@ -2079,7 +2124,7 @@ msgstr "Iseastuja" msgid "Automatic jumping" msgstr "Automaatne hüppamine" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "Aux1" @@ -2091,7 +2136,7 @@ msgstr "Tagasi" msgid "Block bounds" msgstr "Klotsi piirid" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "Muuda kaamerat" @@ -2115,7 +2160,7 @@ msgstr "Vähenda valjust" msgid "Double tap \"jump\" to toggle fly" msgstr "Topeltklõpsa \"Hüppamist\" et sisse lülitada lendamine" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "Viska maha" @@ -2131,11 +2176,11 @@ msgstr "Suurenda ulatust" msgid "Inc. volume" msgstr "Helitugevus üles" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "Seljakott" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "Hüppamine" @@ -2167,7 +2212,7 @@ msgstr "Järgmine üksus" msgid "Prev. item" msgstr "Eelmine asi" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "Kauguse valik" @@ -2179,7 +2224,7 @@ msgstr "Paremale" msgid "Screenshot" msgstr "Kuvatõmmis" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "Hiilimine" @@ -2187,15 +2232,15 @@ msgstr "Hiilimine" msgid "Toggle HUD" msgstr "Lülita HUD sisse/välja" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "Lülita vestluslogi sisse/välja" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "Lülita kiirus sisse" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "Lülita lendamine sisse" @@ -2203,11 +2248,11 @@ msgstr "Lülita lendamine sisse" msgid "Toggle fog" msgstr "Lülita udu sisse/välja" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "Lülita minikaart sisse/välja" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "Lülita läbi seinte minek sisse" @@ -2215,7 +2260,7 @@ msgstr "Lülita läbi seinte minek sisse" msgid "Toggle pitchmove" msgstr "Lülita pitchmove sisse/välja" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "Suumi" @@ -2252,7 +2297,7 @@ msgstr "Vana parool" msgid "Passwords do not match!" msgstr "Paroolid ei ole samad!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "Välju" @@ -2265,15 +2310,46 @@ msgstr "Vaigistatud" msgid "Sound Volume: %d%%" msgstr "Heli valjus: %d%%" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Add button" +msgstr "Keskmine nupp" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "Valmis!" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Remove" +msgstr "Kaug võõrustaja" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp msgid "Joystick" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Toggle debug" msgstr "Lülita udu sisse/välja" @@ -2473,8 +2549,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" #: src/settings_translation_file.cpp @@ -2527,10 +2602,6 @@ msgstr "" msgid "Active object send range" msgstr "" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "Lendlevad osakesed klotsi kaevandamisel." - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2553,6 +2624,16 @@ msgstr "Haldaja nimi" msgid "Advanced" msgstr "Arenenud sätted" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Allow clouds to look 3D instead of flat." +msgstr "" + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "" @@ -2924,14 +3005,14 @@ msgstr "" msgid "Clouds" msgstr "Pilved" -#: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." -msgstr "" - #: src/settings_translation_file.cpp msgid "Clouds in menu" msgstr "Pilved menüüs" +#: src/settings_translation_file.cpp +msgid "Color depth for post-processing texture" +msgstr "" + #: src/settings_translation_file.cpp msgid "Colored fog" msgstr "" @@ -2954,7 +3035,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" #: src/settings_translation_file.cpp @@ -3089,6 +3170,14 @@ msgstr "" msgid "Debugging" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "" @@ -3242,18 +3331,10 @@ msgstr "" "Lagendikud ilmuvad kui np_biome ületab selle väärtuse.\n" "Seda eiratakse, kui lipp 'lumistud' on lubatud." -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "" - #: src/settings_translation_file.cpp msgid "Developer Options" msgstr "Arendaja valikud" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "Kaevamisel tekkivad osakesed" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "" @@ -3281,6 +3362,14 @@ msgstr "Topeltklõpsa \"hüppamist\" lendamiseks" msgid "Double-tapping the jump key toggles fly mode." msgstr "Topeltklõpsates \"hüppamist\" lülitatakse lennurežiim sisse/välja." +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "" @@ -3356,8 +3445,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" #: src/settings_translation_file.cpp @@ -3430,8 +3519,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" #: src/settings_translation_file.cpp @@ -3446,12 +3534,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "" - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -3757,10 +3839,6 @@ msgstr "" msgid "GUI scaling filter" msgstr "" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "" - #: src/settings_translation_file.cpp msgid "Gamepads" msgstr "Juhtpuldid" @@ -3988,12 +4066,6 @@ msgid "" "descending." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -4012,6 +4084,13 @@ msgid "" "empty password." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4106,10 +4185,6 @@ msgstr "" msgid "Interval of saving important changes in the world, stated in seconds." msgstr "" -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "" - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "" @@ -4732,10 +4807,6 @@ msgstr "" msgid "Maximum users" msgstr "Enim kasutajaid" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "Päevasõnum" @@ -4768,6 +4839,10 @@ msgstr "" msgid "Minimum limit of random number of small caves per mapchunk." msgstr "" +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "Astmik-tapeetimine" @@ -4858,7 +4933,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" @@ -5300,17 +5375,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5503,16 +5580,6 @@ msgstr "" msgid "Shader path" msgstr "Varjutaja asukoht" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "Varjutajad" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "Varju filtreerimis aste" @@ -5676,10 +5743,9 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" #: src/settings_translation_file.cpp @@ -5958,10 +6024,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "" -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "" @@ -6024,6 +6086,10 @@ msgstr "Lainetavad vedelikud" msgid "Transparency Sorting Distance" msgstr "" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "" @@ -6074,7 +6140,10 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" #: src/settings_translation_file.cpp @@ -6097,16 +6166,14 @@ msgstr "" msgid "Upper Y limit of floatlands." msgstr "" -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "" - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "" #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" #: src/settings_translation_file.cpp @@ -6347,20 +6414,12 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -6371,10 +6430,6 @@ msgid "" "Mods may still set a background." msgstr "" -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -6397,8 +6452,7 @@ msgstr "Kas nähtava ala lõpp udutada." #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -6543,6 +6597,9 @@ msgstr "" #~ msgid "Address / Port" #~ msgstr "Aadress / kanal" +#~ msgid "Adds particles when digging a node." +#~ msgstr "Lendlevad osakesed klotsi kaevandamisel." + #~ msgid "All Settings" #~ msgstr "Kõik sätted" @@ -6660,12 +6717,21 @@ msgstr "" #~ msgid "Darkness sharpness" #~ msgstr "Pimeduse teravus" +#~ msgid "Debug info and profiler graph hidden" +#~ msgstr "Siluri info ja profiileri graafik peidetud" + +#~ msgid "Debug info, profiler graph, and wireframe hidden" +#~ msgstr "Siluri info, profiileri graafik ja sõrestik peidetud" + #~ msgid "Default game" #~ msgstr "Vaikemäng" #~ msgid "Dig key" #~ msgstr "Kaevuri klahv" +#~ msgid "Digging particles" +#~ msgstr "Kaevamisel tekkivad osakesed" + #~ msgid "Disable anticheat" #~ msgstr "Lülita sohituvastus välja" @@ -6687,6 +6753,10 @@ msgstr "" #~ msgid "Dynamic shadows:" #~ msgstr "Elavad varjud:" +#, fuzzy +#~ msgid "Enable" +#~ msgstr "Lubatud" + #~ msgid "Enable VBO" #~ msgstr "Luba VBO" @@ -6712,9 +6782,6 @@ msgstr "" #~ msgid "Forward key" #~ msgstr "Edasi klahv" -#~ msgid "Game" -#~ msgstr "Mäng" - #~ msgid "Generate Normal Maps" #~ msgstr "Loo normaalkaardistusi" @@ -6852,18 +6919,28 @@ msgstr "" #~ msgid "Select Package File:" #~ msgstr "Vali modifikatsiooni fail:" +#~ msgid "Shaders" +#~ msgstr "Varjutajad" + #~ msgid "Shaders (experimental)" #~ msgstr "Shaderid (katselised)" #~ msgid "Shaders (unavailable)" #~ msgstr "Varjutajad (pole saadaval)" +#, fuzzy +#~ msgid "Shaders are disabled." +#~ msgstr "Kaamera värskendamine on keelatud" + #~ msgid "Simple Leaves" #~ msgstr "Lihtsad lehed" #~ msgid "Smooth Lighting" #~ msgstr "Sujuv valgustus" +#~ msgid "Sound system is disabled" +#~ msgstr "Heli süsteem on keelatud" + #~ msgid "Special key" #~ msgstr "Eri klahv" diff --git a/po/eu/luanti.po b/po/eu/luanti.po index 32c0b2c9d..d723da17f 100644 --- a/po/eu/luanti.po +++ b/po/eu/luanti.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: minetest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" "PO-Revision-Date: 2022-04-29 20:12+0000\n" "Last-Translator: JonAnder Oier \n" "Language-Team: Basque ] [-t]" msgstr "[guztia | ]" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "Arakatu" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "Editatu" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "Hautatu direktorioa" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "Hautatu fitxategia" + +#: builtin/common/settings/components.lua +#, fuzzy +msgid "Set" +msgstr "Hautatu" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(Ez da ezarpenaren deskripziorik eman)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "2D Zarata" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "Utzi" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "Hutsunetasuna" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "Zortzigarrenak" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "Desplazamendua" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#, fuzzy +msgid "Persistence" +msgstr "Iraunkortasuna" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "Gorde" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "Eskala" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "Hazia" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "X hedapena" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "Y hedapena" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "Z hedapena" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "Balio absolutua" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "lehenespenak" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "Arindua" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "Txata" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "Garbi" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "Desgaituta" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "Gaituta" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "Emaitzarik ez" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Reset setting to default" +msgstr "Berrezarri lehenespena" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "Bilatu" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "Erakutsi izen teknikoak" + +#: builtin/common/settings/dlg_settings.lua +msgid "Touchscreen layout" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "pause_menu" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Client Mods" +msgstr "Hautatu Modak" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Content: Games" +msgstr "Edukia" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Content: Mods" +msgstr "Edukia" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "Itzal dinamikoak" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "Altua" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "Baxua" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "Erdi" + +#: builtin/common/settings/shadows_component.lua +#, fuzzy +msgid "Very High" +msgstr "Ultra Altua" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "Oso Baxua" + #: builtin/fstk/ui.lua msgid "" msgstr "" @@ -166,7 +411,6 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "Atzera" @@ -203,11 +447,6 @@ msgstr "Mod-ak" msgid "No packages could be retrieved" msgstr "Ezin izan da paketerik eskuratu" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "Emaitzarik ez" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "Eguneraketarik ez" @@ -254,18 +493,6 @@ msgstr "Instalaturik jada" msgid "Base Game:" msgstr "Oinarri jokoa:" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "Utzi" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -395,6 +622,12 @@ msgstr "Ezinezkoa mod bat $1 moduan instalatzea" msgid "Unable to install a $1 as a texture pack" msgstr "Akatsa $1 testura pakete moduan instalatzea" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "" @@ -459,12 +692,6 @@ msgstr "Aukerako mendekotasunik ez" msgid "Optional dependencies:" msgstr "Aukerako mendekotasunak:" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "Gorde" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "Mundua:" @@ -618,11 +845,6 @@ msgstr "Ibaiak" msgid "Sea level rivers" msgstr "Itsas mailako ibaiak" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "Hazia" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "Biomen arteko trantsizio leuna" @@ -764,6 +986,23 @@ msgstr "" "Mod pakete honek berezko izen zehatza du emanda bere modpack.conf-ean eta " "berrizendatutako edozein gainidatziko du hemen." +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "Gaitu denak" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "" @@ -788,7 +1027,7 @@ msgstr "" msgid "Visit website" msgstr "" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "Ezarpenak" @@ -802,232 +1041,6 @@ msgstr "" "Saia zaitez zerbitzari publikoen zerrenda birgaitzen eta egiazta ezazu zure " "internet konexioa." -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "Arakatu" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "Editatu" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "Hautatu direktorioa" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "Hautatu fitxategia" - -#: builtin/mainmenu/settings/components.lua -#, fuzzy -msgid "Set" -msgstr "Hautatu" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(Ez da ezarpenaren deskripziorik eman)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "2D Zarata" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "Hutsunetasuna" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "Zortzigarrenak" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "Desplazamendua" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#, fuzzy -msgid "Persistence" -msgstr "Iraunkortasuna" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "Eskala" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "X hedapena" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "Y hedapena" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "Z hedapena" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "Balio absolutua" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "lehenespenak" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "Arindua" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "Txata" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "Garbi" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "Desgaituta" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "Gaituta" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Reset setting to default" -msgstr "Berrezarri lehenespena" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "Bilatu" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "Erakutsi izen teknikoak" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Client Mods" -msgstr "Hautatu Modak" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Content: Games" -msgstr "Edukia" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Content: Mods" -msgstr "Edukia" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "Gaituta" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Shaders are disabled." -msgstr "Kameraren eguneraketa desaktibatuta dago" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "Itzal dinamikoak" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "Altua" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "Baxua" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "Erdi" - -#: builtin/mainmenu/settings/shadows_component.lua -#, fuzzy -msgid "Very High" -msgstr "Ultra Altua" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "Oso Baxua" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "Buruz" @@ -1048,10 +1061,6 @@ msgstr "Garatzaile nagusiak" msgid "Core Team" msgstr "" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "Ireki Erabiltzaile Datuen Direktorioa" @@ -1202,10 +1211,22 @@ msgstr "Hasi partida" msgid "You need to install a game before you can create a world." msgstr "" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "Ez. gogokoena" + #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "Helbidea" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "Hautatu Modak" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "Sormen modua" @@ -1219,6 +1240,11 @@ msgstr "Mina / PvP" msgid "Favorites" msgstr "Gogokoak" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "Jolasa" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "Zerbitzari bateraezinak" @@ -1231,10 +1257,26 @@ msgstr "Elkartu partidara" msgid "Login" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +msgid "Open server website" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "Ping" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua #, fuzzy msgid "Public Servers" @@ -1320,23 +1362,6 @@ msgid "" "Check debug.txt for details." msgstr "" -#: src/client/game.cpp -msgid "- Mode: " -msgstr "- Modua: " - -#: src/client/game.cpp -msgid "- Public: " -msgstr "- Publikoa: " - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "- Jokalaria Jokalariaren aurka (PvP): " - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "- Zerbitzariaren izena: " - #: src/client/game.cpp #, fuzzy msgid "A serialization error occurred:" @@ -1347,6 +1372,11 @@ msgstr "Errore bat gertatu da:" msgid "Access denied. Reason: %s" msgstr "Sarbidea ukatuta. Arrazoia: %s" +#: src/client/game.cpp +#, fuzzy +msgid "All debug info hidden" +msgstr "Arazketari buruzko informazioa erakusten da" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "" @@ -1367,6 +1397,10 @@ msgstr "" msgid "Block bounds shown for nearby blocks" msgstr "" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "Kameraren eguneraketa desaktibatuta dago" @@ -1379,10 +1413,6 @@ msgstr "Kameraren eguneraketa gaituta dago" msgid "Can't show block bounds (disabled by game or mod)" msgstr "" -#: src/client/game.cpp -msgid "Change Password" -msgstr "Pasahitza aldatu" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "Modu zinematografiko desaktibatuta" @@ -1411,26 +1441,6 @@ msgstr "Konexio-errorea (denbora agortua?)" msgid "Connection failed for unknown reason" msgstr "Konexioak huts egin du arrazoi ezezagun batengatik" -#: src/client/game.cpp -msgid "Continue" -msgstr "Jarraitu" - -#: src/client/game.cpp -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1444,31 +1454,15 @@ msgstr "Bezeroa sortzen..." msgid "Creating server..." msgstr "Zerbitzaria sortzen..." -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "Arazte informazioa eta profilariaren grafikoa ezkutatuta" - #: src/client/game.cpp msgid "Debug info shown" msgstr "Arazketari buruzko informazioa erakusten da" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "Arazte informazioa, profilariaren grafikoa, eta hari-sareta ezkutatuta" - #: src/client/game.cpp #, fuzzy, c-format msgid "Error creating client: %s" msgstr "Bezeroa sortzen..." -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "Irten menura" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "Irten sistema eragilera" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "Modu azkarra desaktibatuta" @@ -1505,18 +1499,6 @@ msgstr "Lainoa gaituta" msgid "Fog enabled by game or mod" msgstr "" -#: src/client/game.cpp -msgid "Game info:" -msgstr "Jokoari buruzko informazioa:" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "" - #: src/client/game.cpp msgid "Item definitions..." msgstr "Itemen definizioak..." @@ -1553,14 +1535,6 @@ msgstr "" msgid "Node definitions..." msgstr "Nodoen definizioak..." -#: src/client/game.cpp -msgid "Off" -msgstr "" - -#: src/client/game.cpp -msgid "On" -msgstr "" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "" @@ -1573,38 +1547,22 @@ msgstr "" msgid "Profiler graph shown" msgstr "Profilariaren grafikoa ikusigai" -#: src/client/game.cpp -msgid "Remote server" -msgstr "Urruneko zerbitzaria" - #: src/client/game.cpp msgid "Resolving address..." msgstr "" -#: src/client/game.cpp -msgid "Respawn" -msgstr "Birsortu" - #: src/client/game.cpp msgid "Shutting down..." msgstr "Itzaltzen..." -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "Jokalari bakarra" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "Soinuaren bolumena" - #: src/client/game.cpp msgid "Sound muted" msgstr "" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "" @@ -1678,18 +1636,103 @@ msgstr "Ikusmen barrutia aldatu da: %d" msgid "Volume changed to %d%%" msgstr "Bolumena %d%%ra aldatu da" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "" -#: src/client/game.cpp -msgid "You died" -msgstr "Hil zara" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "- Modua: " + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "- Publikoa: " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "- Jokalaria Jokalariaren aurka (PvP): " + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "- Zerbitzariaren izena: " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "Pasahitza aldatu" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "Jarraitu" + +#: src/client/game_formspec.cpp +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "Irten menura" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "Irten sistema eragilera" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "Jokoari buruzko informazioa:" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "Urruneko zerbitzaria" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "Birsortu" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "Soinuaren bolumena" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "Hil zara" + #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" msgstr "" @@ -2029,7 +2072,7 @@ msgid "Failed to compile the \"%s\" shader." msgstr "Huts egin du $1 deskargatzean" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." +msgid "GLSL is not supported by the driver" msgstr "" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" @@ -2079,7 +2122,7 @@ msgstr "Aurrera automatikoki" msgid "Automatic jumping" msgstr "Jauzi automatikoa" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "" @@ -2091,7 +2134,7 @@ msgstr "Atzera" msgid "Block bounds" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "Aldatu kamera" @@ -2115,7 +2158,7 @@ msgstr "Jaitsi bolumena" msgid "Double tap \"jump\" to toggle fly" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "Laga" @@ -2131,11 +2174,11 @@ msgstr "Handitu barrutia" msgid "Inc. volume" msgstr "Igo bolumena" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "Inbentarioa" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "Jauzi" @@ -2167,7 +2210,7 @@ msgstr "Hurrengoa elementua" msgid "Prev. item" msgstr "Aurreko elementua" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "Barruti hautaketa" @@ -2179,7 +2222,7 @@ msgstr "Eskuina" msgid "Screenshot" msgstr "Pantaila-argazkia" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "isilean mugitu" @@ -2187,15 +2230,15 @@ msgstr "isilean mugitu" msgid "Toggle HUD" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "Txandakatu azkar" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "Txandakatu hegaz egitea" @@ -2203,11 +2246,11 @@ msgstr "Txandakatu hegaz egitea" msgid "Toggle fog" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "Txandakatu minimapa" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "" @@ -2215,7 +2258,7 @@ msgstr "" msgid "Toggle pitchmove" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "Zoom" @@ -2252,7 +2295,7 @@ msgstr "" msgid "Passwords do not match!" msgstr "Pasahitzak ez datoz bat!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "" @@ -2265,16 +2308,47 @@ msgstr "" msgid "Sound Volume: %d%%" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Add button" +msgstr "Erdiko botoia" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "Egina!" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Remove" +msgstr "Urruneko zerbitzaria" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Joystick" msgstr "Joystick mota" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Toggle debug" msgstr "Txandakatu hegaz egitea" @@ -2474,8 +2548,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" #: src/settings_translation_file.cpp @@ -2528,10 +2601,6 @@ msgstr "Bloke aktiboaren barrutia" msgid "Active object send range" msgstr "Objektu aktiboak bidaltzeko barrutia" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "" - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2555,6 +2624,16 @@ msgstr "Munduaren izena" msgid "Advanced" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Allow clouds to look 3D instead of flat." +msgstr "" + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "" @@ -2928,11 +3007,11 @@ msgid "Clouds" msgstr "" #: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." +msgid "Clouds in menu" msgstr "" #: src/settings_translation_file.cpp -msgid "Clouds in menu" +msgid "Color depth for post-processing texture" msgstr "" #: src/settings_translation_file.cpp @@ -2957,7 +3036,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" #: src/settings_translation_file.cpp @@ -3093,6 +3172,14 @@ msgstr "" msgid "Debugging" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "" @@ -3246,19 +3333,11 @@ msgid "" "When the 'snowbiomes' flag is enabled, this is ignored." msgstr "" -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Developer Options" msgstr "Apaingarriak" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "" @@ -3286,6 +3365,14 @@ msgstr "" msgid "Double-tapping the jump key toggles fly mode." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "" @@ -3361,8 +3448,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" #: src/settings_translation_file.cpp @@ -3439,8 +3526,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" #: src/settings_translation_file.cpp @@ -3455,12 +3541,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "" - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -3771,10 +3851,6 @@ msgstr "" msgid "GUI scaling filter" msgstr "" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Gamepads" @@ -3999,12 +4075,6 @@ msgid "" "descending." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -4023,6 +4093,13 @@ msgid "" "empty password." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4117,10 +4194,6 @@ msgstr "" msgid "Interval of saving important changes in the world, stated in seconds." msgstr "" -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "" - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "" @@ -4741,10 +4814,6 @@ msgstr "" msgid "Maximum users" msgstr "" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "" @@ -4777,6 +4846,10 @@ msgstr "" msgid "Minimum limit of random number of small caves per mapchunk." msgstr "" +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "" @@ -4867,7 +4940,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" @@ -5310,17 +5383,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5517,16 +5592,6 @@ msgstr "" msgid "Shader path" msgstr "" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "Itzalgailuak" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "" @@ -5689,10 +5754,9 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" #: src/settings_translation_file.cpp @@ -5974,10 +6038,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "" -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "" @@ -6039,6 +6099,10 @@ msgstr "" msgid "Transparency Sorting Distance" msgstr "" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "" @@ -6089,7 +6153,10 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" #: src/settings_translation_file.cpp @@ -6112,16 +6179,14 @@ msgstr "" msgid "Upper Y limit of floatlands." msgstr "" -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "" - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "" #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" #: src/settings_translation_file.cpp @@ -6359,20 +6424,12 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -6383,10 +6440,6 @@ msgid "" "Mods may still set a background." msgstr "" -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -6411,8 +6464,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -6608,9 +6660,16 @@ msgstr "" #~ msgid "Damage" #~ msgstr "Kaltea" +#~ msgid "Debug info and profiler graph hidden" +#~ msgstr "Arazte informazioa eta profilariaren grafikoa ezkutatuta" + #~ msgid "Debug info toggle key" #~ msgstr "Arazte informazioa txandakatzeko tekla" +#~ msgid "Debug info, profiler graph, and wireframe hidden" +#~ msgstr "" +#~ "Arazte informazioa, profilariaren grafikoa, eta hari-sareta ezkutatuta" + #, fuzzy #~ msgid "Dig key" #~ msgstr "Eskuinera tekla" @@ -6636,6 +6695,10 @@ msgstr "" #~ msgid "Dynamic shadows:" #~ msgstr "Itzal dinamikoak: " +#, fuzzy +#~ msgid "Enable" +#~ msgstr "Gaituta" + #, fuzzy #~ msgid "Enable creative mode for all players" #~ msgstr "Gaitu sormen modua mapa sortu berrietan." @@ -6656,9 +6719,6 @@ msgstr "" #~ msgid "Forward key" #~ msgstr "Aurrera tekla" -#~ msgid "Game" -#~ msgstr "Jolasa" - #, fuzzy #~ msgid "Hide: Temporary Settings" #~ msgstr "Ezarpenak" @@ -6680,86 +6740,86 @@ msgstr "" #~ msgid "" #~ "Key for decreasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Ikusmen barrutia txikitzeko tekla.\n" -#~ "Ikusi http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ikusi http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for digging.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Ikusmen barrutia txikitzeko tekla.\n" -#~ "Ikusi http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ikusi http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Ikusmen barrutia handitzeko tekla.\n" -#~ "Ikusi http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ikusi http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type local commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Komando lokalak idazteko txat leihoa irekitzeko tekla.\n" -#~ "Ikusi http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ikusi http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for placing.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Ikusmen barrutia txikitzeko tekla.\n" -#~ "Ikusi http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ikusi http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the camera update. Only used for development\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kameraren eguneraketa txandakatzeko tekla. Garapenerako soilik erabilia\n" -#~ "Ikusi http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ikusi http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of debug info.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Arazte informazioa txandakatzeko tekla\n" -#~ "Ikusi http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ikusi http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the profiler. Used for development.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Profilaria txandakatzeko tekla. Garapenerako soilik erabilia.\n" -#~ "Ikusi http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ikusi http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling unlimited view range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Ikusmen barruti mugagabea txandakatzeko tekla.\n" -#~ "Ikusi http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ikusi http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "Left key" #~ msgstr "Ezkerrera tekla" @@ -6815,12 +6875,19 @@ msgstr "" #~ msgid "Screen:" #~ msgstr "Pantaila:" +#~ msgid "Shaders" +#~ msgstr "Itzalgailuak" + #~ msgid "Shaders (experimental)" #~ msgstr "Itzalgailuak (esperimentala)" #~ msgid "Shaders (unavailable)" #~ msgstr "Itzalgailuak (ez dago eskuragarri)" +#, fuzzy +#~ msgid "Shaders are disabled." +#~ msgstr "Kameraren eguneraketa desaktibatuta dago" + #~ msgid "Simple Leaves" #~ msgstr "Orri sinpleak" diff --git a/po/fa/luanti.po b/po/fa/luanti.po index 62725de1f..b117aa578 100644 --- a/po/fa/luanti.po +++ b/po/fa/luanti.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: minetest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" -"PO-Revision-Date: 2023-12-03 17:17+0000\n" -"Last-Translator: Krock \n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" +"PO-Revision-Date: 2025-02-07 06:13+0000\n" +"Last-Translator: Ilia \n" "Language-Team: Persian \n" "Language: fa\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 5.3-dev\n" +"X-Generator: Weblate 5.10-dev\n" #: builtin/client/chatcommands.lua msgid "Clear the out chat queue" @@ -29,7 +29,7 @@ msgstr "" #: builtin/client/chatcommands.lua msgid "Exit to main menu" -msgstr "" +msgstr "خروج به منوی اصلی" #: builtin/client/chatcommands.lua msgid "Invalid command: " @@ -80,6 +80,244 @@ msgstr "" msgid "[all | ] [-t]" msgstr "" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "ویرایش" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Set" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "لغو" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "ذخیره" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "(استفاده از زبان سیستم)" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "چت" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "پاک کردن" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "غیرفعال شده" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "فعال شده" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "حرکت" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "بدون نتیجه" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default" +msgstr "بازگشت به تنظیمات پیشفرض" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "جست و جو" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Touchscreen layout" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "pause_menu" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Client Mods" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "زیاد" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "کم" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "متوسط" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "خیلی زیاد" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "خیلی کم" + #: builtin/fstk/ui.lua msgid "" msgstr "" @@ -90,23 +328,23 @@ msgstr "" #: builtin/fstk/ui.lua msgid "An error occurred:" -msgstr "" +msgstr "خطایی رخ داد:" #: builtin/fstk/ui.lua msgid "Main menu" -msgstr "" +msgstr "منوی اصلی" #: builtin/fstk/ui.lua msgid "OK" -msgstr "" +msgstr "باشه" #: builtin/fstk/ui.lua msgid "Reconnect" -msgstr "" +msgstr "اتصال دوباره" #: builtin/fstk/ui.lua msgid "The server has requested a reconnect:" -msgstr "" +msgstr "سرور درخواست اتصال دوباره کرده است:" #: builtin/mainmenu/common.lua msgid "Protocol version mismatch. " @@ -158,11 +396,10 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua msgid "All" -msgstr "" +msgstr "همه" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "" @@ -180,7 +417,7 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua msgid "Games" -msgstr "" +msgstr "بازی ها" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_install.lua @@ -191,18 +428,13 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua msgid "Mods" -msgstr "" +msgstr "ماد ها" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua msgid "No packages could be retrieved" msgstr "" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "" @@ -212,8 +444,9 @@ msgid "Queued" msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua +#, fuzzy msgid "Texture Packs" -msgstr "" +msgstr "تکسچر پک ها" #: builtin/mainmenu/content/dlg_contentdb.lua msgid "The package $1 was not found." @@ -247,18 +480,6 @@ msgstr "" msgid "Base Game:" msgstr "" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -270,7 +491,7 @@ msgstr "" #: builtin/mainmenu/content/dlg_install.lua msgid "Install" -msgstr "" +msgstr "نصب" #: builtin/mainmenu/content/dlg_install.lua msgid "Install $1" @@ -306,7 +527,7 @@ msgstr "" #: builtin/mainmenu/content/dlg_package.lua msgid "Description" -msgstr "" +msgstr "توضیحات" #: builtin/mainmenu/content/dlg_package.lua msgid "Donate" @@ -318,7 +539,7 @@ msgstr "" #: builtin/mainmenu/content/dlg_package.lua msgid "Information" -msgstr "" +msgstr "اطلاعات" #: builtin/mainmenu/content/dlg_package.lua msgid "Install [$1]" @@ -334,19 +555,19 @@ msgstr "" #: builtin/mainmenu/content/dlg_package.lua msgid "Translate" -msgstr "" +msgstr "ترجمه" #: builtin/mainmenu/content/dlg_package.lua builtin/mainmenu/tab_content.lua msgid "Uninstall" -msgstr "" +msgstr "حذف نصب" #: builtin/mainmenu/content/dlg_package.lua builtin/mainmenu/tab_content.lua msgid "Update" -msgstr "" +msgstr "آپدیت" #: builtin/mainmenu/content/dlg_package.lua msgid "Website" -msgstr "" +msgstr "وبسایت" #: builtin/mainmenu/content/dlg_package.lua msgid "by $1 — $2 downloads — +$3 / $4 / -$5" @@ -380,6 +601,12 @@ msgstr "" msgid "Unable to install a $1 as a texture pack" msgstr "" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "" @@ -390,7 +617,7 @@ msgstr "" #: builtin/mainmenu/dlg_config_world.lua msgid "Disable all" -msgstr "" +msgstr "غیرفعال کردن همه" #: builtin/mainmenu/dlg_config_world.lua msgid "Disable modpack" @@ -398,7 +625,7 @@ msgstr "" #: builtin/mainmenu/dlg_config_world.lua msgid "Enable all" -msgstr "" +msgstr "فعال کردن همه" #: builtin/mainmenu/dlg_config_world.lua msgid "Enable modpack" @@ -416,7 +643,7 @@ msgstr "" #: builtin/mainmenu/dlg_config_world.lua msgid "Mod:" -msgstr "" +msgstr "ماد:" #: builtin/mainmenu/dlg_config_world.lua msgid "No (optional) dependencies" @@ -442,15 +669,9 @@ msgstr "" msgid "Optional dependencies:" msgstr "" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" -msgstr "" +msgstr "جهان:" #: builtin/mainmenu/dlg_config_world.lua msgid "enabled" @@ -486,7 +707,7 @@ msgstr "" #: builtin/mainmenu/dlg_create_world.lua msgid "Caves" -msgstr "" +msgstr "غار ها" #: builtin/mainmenu/dlg_create_world.lua msgid "Create" @@ -516,7 +737,7 @@ msgstr "" #: builtin/mainmenu/dlg_create_world.lua msgid "Flat terrain" -msgstr "" +msgstr "زمین صاف" #: builtin/mainmenu/dlg_create_world.lua msgid "Floating landmasses in the sky" @@ -532,7 +753,7 @@ msgstr "" #: builtin/mainmenu/dlg_create_world.lua msgid "Hills" -msgstr "" +msgstr "تپه ها" #: builtin/mainmenu/dlg_create_world.lua msgid "Humid rivers" @@ -544,11 +765,11 @@ msgstr "" #: builtin/mainmenu/dlg_create_world.lua msgid "Install another game" -msgstr "" +msgstr "نصب بازی دیگر" #: builtin/mainmenu/dlg_create_world.lua msgid "Lakes" -msgstr "" +msgstr "دریاچه ها" #: builtin/mainmenu/dlg_create_world.lua msgid "Low humidity and high heat causes shallow or dry rivers" @@ -568,7 +789,7 @@ msgstr "" #: builtin/mainmenu/dlg_create_world.lua msgid "Mountains" -msgstr "" +msgstr "کوه ها" #: builtin/mainmenu/dlg_create_world.lua msgid "Mud flow" @@ -580,7 +801,7 @@ msgstr "" #: builtin/mainmenu/dlg_create_world.lua msgid "No game selected" -msgstr "" +msgstr "هیچ بازی ای انتخاب نشده" #: builtin/mainmenu/dlg_create_world.lua msgid "Reduces heat with altitude" @@ -592,17 +813,12 @@ msgstr "" #: builtin/mainmenu/dlg_create_world.lua msgid "Rivers" -msgstr "" +msgstr "رود ها" #: builtin/mainmenu/dlg_create_world.lua msgid "Sea level rivers" msgstr "" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "" @@ -647,16 +863,16 @@ msgstr "" #: builtin/mainmenu/dlg_create_world.lua msgid "World name" -msgstr "" +msgstr "نام جهان" #: builtin/mainmenu/dlg_delete_content.lua msgid "Are you sure you want to delete \"$1\"?" -msgstr "" +msgstr "آیا از حذف \"$1\" مطمئن هستید؟" #: builtin/mainmenu/dlg_delete_content.lua #: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/tab_local.lua msgid "Delete" -msgstr "" +msgstr "حذف" #: builtin/mainmenu/dlg_delete_content.lua msgid "pkgmgr: failed to delete \"$1\"" @@ -668,11 +884,11 @@ msgstr "" #: builtin/mainmenu/dlg_delete_world.lua msgid "Delete World \"$1\"?" -msgstr "" +msgstr "جهان \"$1\" حذف شود؟" #: builtin/mainmenu/dlg_register.lua src/gui/guiPasswordChange.cpp msgid "Confirm Password" -msgstr "" +msgstr "تائید گذرواژه" #: builtin/mainmenu/dlg_register.lua msgid "Joining $1" @@ -685,20 +901,20 @@ msgstr "" #: builtin/mainmenu/dlg_register.lua builtin/mainmenu/tab_local.lua #: builtin/mainmenu/tab_online.lua msgid "Name" -msgstr "" +msgstr "نام" #: builtin/mainmenu/dlg_register.lua builtin/mainmenu/tab_local.lua #: builtin/mainmenu/tab_online.lua msgid "Password" -msgstr "" +msgstr "گذرواژه" #: builtin/mainmenu/dlg_register.lua msgid "Passwords do not match" -msgstr "" +msgstr "گذرواژه ها یکسان نیستند" #: builtin/mainmenu/dlg_register.lua builtin/mainmenu/tab_online.lua msgid "Register" -msgstr "" +msgstr "ثبت نام" #: builtin/mainmenu/dlg_reinstall_mtg.lua msgid "Dismiss" @@ -726,7 +942,7 @@ msgstr "" #: builtin/mainmenu/dlg_rename_modpack.lua msgid "Accept" -msgstr "" +msgstr "تائید" #: builtin/mainmenu/dlg_rename_modpack.lua msgid "Rename Modpack:" @@ -738,6 +954,23 @@ msgid "" "override any renaming here." msgstr "" +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "فعال کردن همه" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "" @@ -752,19 +985,19 @@ msgstr "" #: builtin/mainmenu/dlg_version_info.lua msgid "Later" -msgstr "" +msgstr "بعدا" #: builtin/mainmenu/dlg_version_info.lua msgid "Never" -msgstr "" +msgstr "هیچوقت" #: builtin/mainmenu/dlg_version_info.lua msgid "Visit website" msgstr "" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" -msgstr "" +msgstr "تنظیمات" #: builtin/mainmenu/serverlistmgr.lua msgid "Public server list is disabled" @@ -774,226 +1007,9 @@ msgstr "" msgid "Try reenabling public serverlist and check your internet connection." msgstr "" -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Set" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "Enable" -msgstr "" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "Shaders are disabled." -msgstr "" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "About" -msgstr "" +msgstr "درباره" #: builtin/mainmenu/tab_about.lua msgid "Active Contributors" @@ -1011,10 +1027,6 @@ msgstr "" msgid "Core Team" msgstr "" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "" @@ -1059,7 +1071,7 @@ msgstr "" #: builtin/mainmenu/tab_content.lua msgid "Installed Packages:" -msgstr "" +msgstr "پکیج های نصب شده:" #: builtin/mainmenu/tab_content.lua msgid "No dependencies." @@ -1071,7 +1083,7 @@ msgstr "" #: builtin/mainmenu/tab_content.lua msgid "Rename" -msgstr "" +msgstr "تغییر نام" #: builtin/mainmenu/tab_content.lua msgid "Update available?" @@ -1099,15 +1111,15 @@ msgstr "" #: builtin/mainmenu/tab_local.lua msgid "Host Game" -msgstr "" +msgstr "میزبانی بازی" #: builtin/mainmenu/tab_local.lua msgid "Host Server" -msgstr "" +msgstr "میزبانی سرور" #: builtin/mainmenu/tab_local.lua msgid "Install a game" -msgstr "" +msgstr "نصب بازی" #: builtin/mainmenu/tab_local.lua msgid "Install games from ContentDB" @@ -1125,11 +1137,11 @@ msgstr "" #: builtin/mainmenu/tab_local.lua msgid "New" -msgstr "" +msgstr "جدید" #: builtin/mainmenu/tab_local.lua msgid "No world created or selected!" -msgstr "" +msgstr "هیچ جهانی ساخته یا انتخاب نشده!" #: builtin/mainmenu/tab_local.lua msgid "Play Game" @@ -1149,18 +1161,29 @@ msgstr "" #: builtin/mainmenu/tab_local.lua msgid "Server Port" -msgstr "" +msgstr "پورت سرور" #: builtin/mainmenu/tab_local.lua msgid "Start Game" -msgstr "" +msgstr "شروع بازی" #: builtin/mainmenu/tab_local.lua msgid "You need to install a game before you can create a world." msgstr "" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "حذف از علاقه مندی" + #: builtin/mainmenu/tab_online.lua msgid "Address" +msgstr "آدرس" + +#: builtin/mainmenu/tab_online.lua +msgid "" +"Clients:\n" +"$1" msgstr "" #: builtin/mainmenu/tab_online.lua @@ -1174,39 +1197,60 @@ msgstr "" #: builtin/mainmenu/tab_online.lua msgid "Favorites" -msgstr "" +msgstr "علاقه ها" + +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "بازی ها" #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" -msgstr "" +msgstr "سرور های ناسازگار" #: builtin/mainmenu/tab_online.lua msgid "Join Game" -msgstr "" +msgstr "پیوستن به بازی" #: builtin/mainmenu/tab_online.lua msgid "Login" +msgstr "لاگین" + +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +msgid "Open server website" msgstr "" #: builtin/mainmenu/tab_online.lua msgid "Ping" +msgstr "پینگ" + +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" msgstr "" #: builtin/mainmenu/tab_online.lua msgid "Public Servers" -msgstr "" +msgstr "سرور های عمومی" #: builtin/mainmenu/tab_online.lua msgid "Refresh" -msgstr "" +msgstr "رفرش" #: builtin/mainmenu/tab_online.lua msgid "Remove favorite" -msgstr "" +msgstr "حذف از علاقه مندی" #: builtin/mainmenu/tab_online.lua msgid "Server Description" -msgstr "" +msgstr "توضیحات سرور" #: src/client/client.cpp msgid "Connection aborted (protocol error?)." @@ -1218,7 +1262,7 @@ msgstr "" #: src/client/client.cpp msgid "Done!" -msgstr "" +msgstr "انجام شد!" #: src/client/client.cpp msgid "Initializing nodes" @@ -1242,7 +1286,7 @@ msgstr "" #: src/client/clientlauncher.cpp msgid "Main Menu" -msgstr "" +msgstr "منوی اصلی" #: src/client/clientlauncher.cpp msgid "No world selected and no address provided. Nothing to do." @@ -1250,11 +1294,11 @@ msgstr "" #: src/client/clientlauncher.cpp msgid "Player name too long." -msgstr "" +msgstr "اسم بازیکن زیادی طولانی است." #: src/client/clientlauncher.cpp msgid "Please choose a name!" -msgstr "" +msgstr "لطفا یک اسم انتخاب کنید!" #: src/client/clientlauncher.cpp msgid "Provided password file failed to open: " @@ -1274,23 +1318,6 @@ msgid "" "Check debug.txt for details." msgstr "" -#: src/client/game.cpp -msgid "- Mode: " -msgstr "" - -#: src/client/game.cpp -msgid "- Public: " -msgstr "" - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "" - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "" - #: src/client/game.cpp msgid "A serialization error occurred:" msgstr "" @@ -1300,6 +1327,10 @@ msgstr "" msgid "Access denied. Reason: %s" msgstr "" +#: src/client/game.cpp +msgid "All debug info hidden" +msgstr "" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "" @@ -1320,6 +1351,10 @@ msgstr "" msgid "Block bounds shown for nearby blocks" msgstr "" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "" @@ -1332,10 +1367,6 @@ msgstr "" msgid "Can't show block bounds (disabled by game or mod)" msgstr "" -#: src/client/game.cpp -msgid "Change Password" -msgstr "" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "" @@ -1364,26 +1395,6 @@ msgstr "" msgid "Connection failed for unknown reason" msgstr "" -#: src/client/game.cpp -msgid "Continue" -msgstr "" - -#: src/client/game.cpp -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1395,33 +1406,17 @@ msgstr "" #: src/client/game.cpp msgid "Creating server..." -msgstr "" - -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "" +msgstr "ساخت سرور..." #: src/client/game.cpp msgid "Debug info shown" msgstr "" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "" - #: src/client/game.cpp #, c-format msgid "Error creating client: %s" msgstr "" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "" @@ -1448,27 +1443,15 @@ msgstr "" #: src/client/game.cpp msgid "Fog disabled" -msgstr "" +msgstr "مه غیرفعال شد" #: src/client/game.cpp msgid "Fog enabled" -msgstr "" +msgstr "مه فعال شد" #: src/client/game.cpp msgid "Fog enabled by game or mod" -msgstr "" - -#: src/client/game.cpp -msgid "Game info:" -msgstr "" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "" +msgstr "مه توسط بازی یا ماد فعال شد" #: src/client/game.cpp msgid "Item definitions..." @@ -1506,14 +1489,6 @@ msgstr "" msgid "Node definitions..." msgstr "" -#: src/client/game.cpp -msgid "Off" -msgstr "" - -#: src/client/game.cpp -msgid "On" -msgstr "" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "" @@ -1526,38 +1501,22 @@ msgstr "" msgid "Profiler graph shown" msgstr "" -#: src/client/game.cpp -msgid "Remote server" -msgstr "" - #: src/client/game.cpp msgid "Resolving address..." msgstr "" -#: src/client/game.cpp -msgid "Respawn" -msgstr "" - #: src/client/game.cpp msgid "Shutting down..." msgstr "" -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" -msgstr "" - -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "" +msgstr "تک نفره" #: src/client/game.cpp msgid "Sound muted" msgstr "" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "" @@ -1630,24 +1589,109 @@ msgid "Volume changed to %d%%" msgstr "" #: src/client/game.cpp -msgid "Wireframe shown" +msgid "Wireframe not supported by video driver" msgstr "" #: src/client/game.cpp -msgid "You died" +msgid "Wireframe shown" msgstr "" #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "" + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "ادامه" + +#: src/client/game_formspec.cpp +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "خروج به منو" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "خروج به سیستم عامل" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "اطلاعات بازی:" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "خاموش" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "روشن" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "شما مردید" + #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" msgstr "" #: src/client/gameui.cpp msgid "Chat hidden" -msgstr "" +msgstr "چت پنهان" #: src/client/gameui.cpp msgid "Chat shown" @@ -1672,7 +1716,7 @@ msgstr "" #: src/client/keycode.cpp msgid "Apps" -msgstr "" +msgstr "برنامه ها" #: src/client/keycode.cpp msgid "Backspace" @@ -1717,7 +1761,7 @@ msgstr "" #: src/client/keycode.cpp msgid "Help" -msgstr "" +msgstr "کمک" #: src/client/keycode.cpp msgid "Home" @@ -1967,7 +2011,7 @@ msgid "Failed to compile the \"%s\" shader." msgstr "" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." +msgid "GLSL is not supported by the driver" msgstr "" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" @@ -1980,6 +2024,8 @@ msgstr "" msgid "" "Install and enable the required mods, or disable the mods causing errors." msgstr "" +"ماد های مورد نیاز را نصب و فعال کن، یا ماد هایی که باعث خطا می شوند را " +"غیرفعال کن." #: src/content/mod_configuration.cpp msgid "" @@ -2015,7 +2061,7 @@ msgstr "" msgid "Automatic jumping" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "" @@ -2027,7 +2073,7 @@ msgstr "" msgid "Block bounds" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "" @@ -2051,7 +2097,7 @@ msgstr "" msgid "Double tap \"jump\" to toggle fly" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "" @@ -2067,13 +2113,13 @@ msgstr "" msgid "Inc. volume" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" -msgstr "" +msgstr "پرش" #: src/gui/guiKeyChangeMenu.cpp msgid "Key already in use" @@ -2097,13 +2143,13 @@ msgstr "" #: src/gui/guiKeyChangeMenu.cpp msgid "Next item" -msgstr "" +msgstr "آیتم بعدی" #: src/gui/guiKeyChangeMenu.cpp msgid "Prev. item" -msgstr "" +msgstr "آیتم قبلی" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "" @@ -2115,7 +2161,7 @@ msgstr "" msgid "Screenshot" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "" @@ -2123,15 +2169,15 @@ msgstr "" msgid "Toggle HUD" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "" @@ -2139,11 +2185,11 @@ msgstr "" msgid "Toggle fog" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "" @@ -2151,9 +2197,9 @@ msgstr "" msgid "Toggle pitchmove" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" -msgstr "" +msgstr "زوم" #: src/gui/guiKeyChangeMenu.cpp msgid "press key" @@ -2177,19 +2223,19 @@ msgstr "" #: src/gui/guiPasswordChange.cpp msgid "New Password" -msgstr "" +msgstr "گذرواژه جدید" #: src/gui/guiPasswordChange.cpp msgid "Old Password" -msgstr "" +msgstr "گذرواژه قدیمی" #: src/gui/guiPasswordChange.cpp msgid "Passwords do not match!" -msgstr "" +msgstr "گذرواژه ها یکسان نیستند!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" -msgstr "" +msgstr "خروج" #: src/gui/guiVolumeChange.cpp msgid "Muted" @@ -2200,15 +2246,44 @@ msgstr "" msgid "Sound Volume: %d%%" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +msgid "Add button" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "انجام شد!" + +#: src/gui/touchscreeneditor.cpp +msgid "Remove" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp msgid "Joystick" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Toggle debug" msgstr "" @@ -2257,7 +2332,7 @@ msgstr "" #: src/network/clientpackethandler.cpp msgid "Server shutting down" -msgstr "" +msgstr "سرور در حال خاموش شدن" #: src/network/clientpackethandler.cpp msgid "" @@ -2403,8 +2478,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" #: src/settings_translation_file.cpp @@ -2457,10 +2531,6 @@ msgstr "" msgid "Active object send range" msgstr "" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "" - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2481,11 +2551,21 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Advanced" +msgstr "پیشرفته" + +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Allow clouds to look 3D instead of flat." msgstr "" #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." -msgstr "" +msgstr "بگذار مایعات نیمه شفاف باشند." #: src/settings_translation_file.cpp msgid "" @@ -2603,7 +2683,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Audio" -msgstr "" +msgstr "صدا" #: src/settings_translation_file.cpp msgid "Automatically jump up single-node obstacles." @@ -2703,7 +2783,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Camera" -msgstr "" +msgstr "دوربین" #: src/settings_translation_file.cpp msgid "Camera smoothing" @@ -2773,7 +2853,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Chat font size" -msgstr "" +msgstr "اندازه فونت چت" #: src/settings_translation_file.cpp msgid "Chat log level" @@ -2850,11 +2930,11 @@ msgid "Clouds" msgstr "" #: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." +msgid "Clouds in menu" msgstr "" #: src/settings_translation_file.cpp -msgid "Clouds in menu" +msgid "Color depth for post-processing texture" msgstr "" #: src/settings_translation_file.cpp @@ -2879,7 +2959,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" #: src/settings_translation_file.cpp @@ -2928,7 +3008,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Console color" -msgstr "" +msgstr "رنگ کنسول" #: src/settings_translation_file.cpp msgid "Console height" @@ -3014,6 +3094,14 @@ msgstr "" msgid "Debugging" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "" @@ -3030,7 +3118,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Default password" -msgstr "" +msgstr "گذرواژه پیشفرض" #: src/settings_translation_file.cpp msgid "Default privileges" @@ -3165,18 +3253,10 @@ msgid "" "When the 'snowbiomes' flag is enabled, this is ignored." msgstr "" -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "" - #: src/settings_translation_file.cpp msgid "Developer Options" msgstr "" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "" @@ -3204,6 +3284,14 @@ msgstr "" msgid "Double-tapping the jump key toggles fly mode." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "" @@ -3277,8 +3365,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" #: src/settings_translation_file.cpp @@ -3351,8 +3439,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" #: src/settings_translation_file.cpp @@ -3367,12 +3454,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "" - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -3674,10 +3755,6 @@ msgstr "" msgid "GUI scaling filter" msgstr "" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "" - #: src/settings_translation_file.cpp msgid "Gamepads" msgstr "" @@ -3901,12 +3978,6 @@ msgid "" "descending." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -3925,6 +3996,13 @@ msgid "" "empty password." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4019,10 +4097,6 @@ msgstr "" msgid "Interval of saving important changes in the world, stated in seconds." msgstr "" -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "" - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "" @@ -4154,7 +4228,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Language" -msgstr "" +msgstr "زبان" #: src/settings_translation_file.cpp msgid "Large cave depth" @@ -4637,10 +4711,6 @@ msgstr "" msgid "Maximum users" msgstr "" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "" @@ -4673,6 +4743,10 @@ msgstr "" msgid "Minimum limit of random number of small caves per mapchunk." msgstr "" +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "" @@ -4762,7 +4836,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" @@ -5145,15 +5219,15 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Screen" -msgstr "" +msgstr "صفحه" #: src/settings_translation_file.cpp msgid "Screen height" -msgstr "" +msgstr "طول صفحه" #: src/settings_translation_file.cpp msgid "Screen width" -msgstr "" +msgstr "عرض صفحه" #: src/settings_translation_file.cpp msgid "Screenshot folder" @@ -5176,7 +5250,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Screenshots" -msgstr "" +msgstr "اسکرین شات ها" #: src/settings_translation_file.cpp msgid "Seabed noise" @@ -5201,17 +5275,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5263,7 +5339,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Server" -msgstr "" +msgstr "سرور" #: src/settings_translation_file.cpp msgid "Server Gameplay" @@ -5279,7 +5355,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Server address" -msgstr "" +msgstr "آدرس سرور" #: src/settings_translation_file.cpp msgid "" @@ -5290,15 +5366,15 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Server description" -msgstr "" +msgstr "توضیحات سرور" #: src/settings_translation_file.cpp msgid "Server name" -msgstr "" +msgstr "نام سرور" #: src/settings_translation_file.cpp msgid "Server port" -msgstr "" +msgstr "پورت سرور" #: src/settings_translation_file.cpp msgid "Server-side occlusion culling" @@ -5404,16 +5480,6 @@ msgstr "" msgid "Shader path" msgstr "" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "" @@ -5574,10 +5640,9 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" #: src/settings_translation_file.cpp @@ -5856,10 +5921,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "" -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "" @@ -5918,6 +5979,10 @@ msgstr "" msgid "Transparency Sorting Distance" msgstr "" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "" @@ -5968,7 +6033,10 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" #: src/settings_translation_file.cpp @@ -5991,16 +6059,14 @@ msgstr "" msgid "Upper Y limit of floatlands." msgstr "" -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "" - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "" #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" #: src/settings_translation_file.cpp @@ -6172,7 +6238,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Walking speed" -msgstr "" +msgstr "سرعت راه رفتن" #: src/settings_translation_file.cpp msgid "Walking, flying and climbing speed in fast mode, in nodes per second." @@ -6237,20 +6303,12 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -6261,10 +6319,6 @@ msgid "" "Mods may still set a background." msgstr "" -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -6287,8 +6341,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" diff --git a/po/fi/luanti.po b/po/fi/luanti.po index 78a4dec3d..8631d475a 100644 --- a/po/fi/luanti.po +++ b/po/fi/luanti.po @@ -2,9 +2,9 @@ msgid "" msgstr "" "Project-Id-Version: minetest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" -"PO-Revision-Date: 2024-10-24 18:15+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" +"PO-Revision-Date: 2025-01-15 05:00+0000\n" +"Last-Translator: Ricky Tigg \n" "Language-Team: Finnish \n" "Language: fi\n" @@ -12,7 +12,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.8.2-dev\n" +"X-Generator: Weblate 5.10-dev\n" #: builtin/client/chatcommands.lua msgid "Clear the out chat queue" @@ -79,6 +79,245 @@ msgstr "" msgid "[all | ] [-t]" msgstr "[kaikki | ]" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "Selaa" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "Muokkaa" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "Valitse hakemisto" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "Valitse tiedosto" + +#: builtin/common/settings/components.lua +msgid "Set" +msgstr "Aseta" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "Peruuta" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "Tallenna" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "Siemen" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "(Käytä järjestelmän kieltä)" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "Esteettömyys" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "Keskustelu" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "Tyhjennä" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "Ohjaimet" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "Poistettu käytöstä" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "Otettu käyttöön" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "Yleiset" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "Liikkuminen" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "Ei tuloksia" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default" +msgstr "Palauta oletusarvoon" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "Palauta oletusarvoon ($1)" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "Etsi" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "Näytä lisäasetukset" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "Näytä tekniset nimet" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Touchscreen layout" +msgstr "Kosketusnäyttö" + +#: builtin/common/settings/dlg_settings.lua +msgid "pause_menu" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Client Mods" +msgstr "Asiakasmodit" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "Sisältö: pelit" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "Sisältö: modit" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "Dynaamiset varjot" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "" + #: builtin/fstk/ui.lua msgid "" msgstr "" @@ -164,7 +403,6 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "Takaisin" @@ -201,11 +439,6 @@ msgstr "Modit" msgid "No packages could be retrieved" msgstr "Paketteja ei löydetty" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "Ei tuloksia" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "Ei päivityksiä" @@ -251,18 +484,6 @@ msgstr "Asennettu jo" msgid "Base Game:" msgstr "Peruspeli:" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "Peruuta" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -389,6 +610,12 @@ msgstr "" msgid "Unable to install a $1 as a texture pack" msgstr "" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "" @@ -453,12 +680,6 @@ msgstr "Ei valinnaisia riippuvuuksia" msgid "Optional dependencies:" msgstr "Valinnaiset riippuvuudet:" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "Tallenna" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "Maailma:" @@ -610,11 +831,6 @@ msgstr "Joet" msgid "Sea level rivers" msgstr "" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "Siemen" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "" @@ -750,6 +966,23 @@ msgid "" "override any renaming here." msgstr "" +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "Ota kaikki käyttöön" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "Uusi $1-versio on saatavilla" @@ -778,7 +1011,7 @@ msgstr "Ei koskaan" msgid "Visit website" msgstr "Käy verkkosivustolla" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "Asetukset" @@ -792,225 +1025,6 @@ msgstr "" "Kokeile ottaa julkinen palvelinlista uudelleen käyttöön ja tarkista " "internetyhteytesi." -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "Selaa" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "Muokkaa" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "Valitse hakemisto" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "Valitse tiedosto" - -#: builtin/mainmenu/settings/components.lua -msgid "Set" -msgstr "Aseta" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "(Käytä järjestelmän kieltä)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "Esteettömyys" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "Keskustelu" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "Tyhjennä" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "Ohjaimet" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "Poistettu käytöstä" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "Otettu käyttöön" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "Yleiset" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "Liikkuminen" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default" -msgstr "Palauta oletusarvoon" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "Palauta oletusarvoon ($1)" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "Etsi" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "Näytä lisäasetukset" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "Näytä tekniset nimet" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "Asiakasmodit" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "Sisältö: pelit" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "Sisältö: modit" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "Otettu käyttöön" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Shaders are disabled." -msgstr "Varjostimet (ei käytettävissä)" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "Dynaamiset varjot" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "Tietoja" @@ -1031,10 +1045,6 @@ msgstr "Keskeisimmät kehittäjät" msgid "Core Team" msgstr "" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "Avaa käyttäjätietohakemisto" @@ -1184,10 +1194,22 @@ msgstr "Aloita peli" msgid "You need to install a game before you can create a world." msgstr "Sinun tulee asentaa peli, ennen kuin voit luoda maailman." +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "Poista suosikki" + #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "Osoite" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "Asiakas" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "Luova tila" @@ -1201,6 +1223,11 @@ msgstr "Vahinko / PvP" msgid "Favorites" msgstr "Suosikit" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "Peli" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "Palvelimet eivät ole yhteensopivat" @@ -1213,10 +1240,26 @@ msgstr "Liity peliin" msgid "Login" msgstr "Kirjaudu" +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +msgid "Open server website" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "Viive" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Public Servers" msgstr "Julkiset palvelimet" @@ -1300,23 +1343,6 @@ msgid "" "Check debug.txt for details." msgstr "" -#: src/client/game.cpp -msgid "- Mode: " -msgstr "- Tila: " - -#: src/client/game.cpp -msgid "- Public: " -msgstr "- Julkinen: " - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "- PvP: " - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "- Palvelimen nimi: " - #: src/client/game.cpp #, fuzzy msgid "A serialization error occurred:" @@ -1327,6 +1353,10 @@ msgstr "Tapahtui virhe:" msgid "Access denied. Reason: %s" msgstr "Pääsy estetty. Syy: %s" +#: src/client/game.cpp +msgid "All debug info hidden" +msgstr "" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "" @@ -1347,6 +1377,10 @@ msgstr "" msgid "Block bounds shown for nearby blocks" msgstr "" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "" @@ -1359,10 +1393,6 @@ msgstr "" msgid "Can't show block bounds (disabled by game or mod)" msgstr "" -#: src/client/game.cpp -msgid "Change Password" -msgstr "Vaihda salasana" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "" @@ -1391,26 +1421,6 @@ msgstr "" msgid "Connection failed for unknown reason" msgstr "" -#: src/client/game.cpp -msgid "Continue" -msgstr "Jatka" - -#: src/client/game.cpp -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1424,30 +1434,14 @@ msgstr "Luodaan asiakasta..." msgid "Creating server..." msgstr "Luodaan palvelinta..." -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "" - #: src/client/game.cpp msgid "Debug info shown" msgstr "" #: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "" - -#: src/client/game.cpp -#, fuzzy, c-format +#, c-format msgid "Error creating client: %s" -msgstr "Luodaan asiakasta..." - -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "Poistu valikkoon" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "Poistu käyttöjärjestelmään" +msgstr "Virhe luotaessa asiakasta: %s" #: src/client/game.cpp msgid "Fast mode disabled" @@ -1485,18 +1479,6 @@ msgstr "Sumu käytössä" msgid "Fog enabled by game or mod" msgstr "" -#: src/client/game.cpp -msgid "Game info:" -msgstr "Pelin tiedot:" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "Peli keskeytetty" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "" - #: src/client/game.cpp msgid "Item definitions..." msgstr "" @@ -1533,14 +1515,6 @@ msgstr "" msgid "Node definitions..." msgstr "" -#: src/client/game.cpp -msgid "Off" -msgstr "Pois" - -#: src/client/game.cpp -msgid "On" -msgstr "Päällä" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "" @@ -1553,38 +1527,22 @@ msgstr "" msgid "Profiler graph shown" msgstr "" -#: src/client/game.cpp -msgid "Remote server" -msgstr "Etäpalvelin" - #: src/client/game.cpp msgid "Resolving address..." msgstr "Selvitetään osoitetta..." -#: src/client/game.cpp -msgid "Respawn" -msgstr "Synny uudelleen" - #: src/client/game.cpp msgid "Shutting down..." msgstr "Sammutetaan..." -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "Yksinpeli" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "Äänenvoimakkuus" - #: src/client/game.cpp msgid "Sound muted" msgstr "Ääni mykistetty" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "" @@ -1656,18 +1614,103 @@ msgstr "" msgid "Volume changed to %d%%" msgstr "" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "" -#: src/client/game.cpp -msgid "You died" -msgstr "Kuolit" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "- Tila: " + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "- Julkinen: " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "- PvP: " + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "- Palvelimen nimi: " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "Vaihda salasana" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "Jatka" + +#: src/client/game_formspec.cpp +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "Poistu valikkoon" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "Poistu käyttöjärjestelmään" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "Pelin tiedot:" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "Peli keskeytetty" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "Pois" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "Päällä" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "Etäpalvelin" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "Synny uudelleen" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "Äänenvoimakkuus" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "Kuolit" + #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" msgstr "" @@ -1995,12 +2038,12 @@ msgid "Minimap in texture mode" msgstr "Pienoiskartta tekstuuritilassa" #: src/client/shader.cpp -#, fuzzy, c-format +#, c-format msgid "Failed to compile the \"%s\" shader." -msgstr "Verkkosivun avaaminen epäonnistui" +msgstr "Varjostimen \"%s\" kääntäminen epäonnistui." #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." +msgid "GLSL is not supported by the driver" msgstr "" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" @@ -2049,7 +2092,7 @@ msgstr "" msgid "Automatic jumping" msgstr "Hypi automaattisesti" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "" @@ -2061,7 +2104,7 @@ msgstr "Taakse" msgid "Block bounds" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "Vaihda kameraa" @@ -2085,7 +2128,7 @@ msgstr "Vähennä ääntä" msgid "Double tap \"jump\" to toggle fly" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "Pudota" @@ -2101,11 +2144,11 @@ msgstr "" msgid "Inc. volume" msgstr "Lisää ääntä" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "Inventaario" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "Hyppää" @@ -2137,7 +2180,7 @@ msgstr "Seuraava esine" msgid "Prev. item" msgstr "Edellinen esine" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "" @@ -2149,7 +2192,7 @@ msgstr "Oikea" msgid "Screenshot" msgstr "Kuvakaappaus" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "Hiivi" @@ -2157,15 +2200,15 @@ msgstr "Hiivi" msgid "Toggle HUD" msgstr "HUD päällä/pois" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "Keskusteluloki päällä/pois" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "" @@ -2173,11 +2216,11 @@ msgstr "" msgid "Toggle fog" msgstr "Sumu päällä/pois" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "Pienoiskartta päällä/pois" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "" @@ -2185,7 +2228,7 @@ msgstr "" msgid "Toggle pitchmove" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "" @@ -2222,7 +2265,7 @@ msgstr "Vanha salasana" msgid "Passwords do not match!" msgstr "Salasanat eivät täsmää!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "Poistu" @@ -2235,15 +2278,45 @@ msgstr "Mykistetty" msgid "Sound Volume: %d%%" msgstr "Äänenvoimakkuus: %d%%" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +msgid "Add button" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "Valmis!" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Remove" +msgstr "Etäpalvelin" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp msgid "Joystick" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Toggle debug" msgstr "Sumu päällä/pois" @@ -2330,9 +2403,9 @@ msgid "" msgstr "" #: src/server.cpp -#, fuzzy, c-format +#, c-format msgid "%s while shutting down: " -msgstr "Sammutetaan..." +msgstr "%s sammutettaessa: " #: src/settings_translation_file.cpp msgid "" @@ -2444,8 +2517,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" #: src/settings_translation_file.cpp @@ -2498,10 +2570,6 @@ msgstr "" msgid "Active object send range" msgstr "" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "" - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2525,6 +2593,16 @@ msgstr "Maailman nimi" msgid "Advanced" msgstr "Lisäasetukset" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Allow clouds to look 3D instead of flat." +msgstr "" + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "" @@ -2896,14 +2974,14 @@ msgstr "" msgid "Clouds" msgstr "Pilvet" -#: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." -msgstr "" - #: src/settings_translation_file.cpp msgid "Clouds in menu" msgstr "Pilvet valikossa" +#: src/settings_translation_file.cpp +msgid "Color depth for post-processing texture" +msgstr "" + #: src/settings_translation_file.cpp msgid "Colored fog" msgstr "" @@ -2926,7 +3004,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" #: src/settings_translation_file.cpp @@ -3061,6 +3139,14 @@ msgstr "" msgid "Debugging" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "" @@ -3212,18 +3298,10 @@ msgid "" "When the 'snowbiomes' flag is enabled, this is ignored." msgstr "" -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "" - #: src/settings_translation_file.cpp msgid "Developer Options" msgstr "Kehittäjävalinnat" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "Älä salli tyhjiä salasanoja" @@ -3251,6 +3329,14 @@ msgstr "" msgid "Double-tapping the jump key toggles fly mode." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "" @@ -3327,8 +3413,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" #: src/settings_translation_file.cpp @@ -3401,8 +3487,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" #: src/settings_translation_file.cpp @@ -3417,12 +3502,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "" - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -3726,10 +3805,6 @@ msgstr "" msgid "GUI scaling filter" msgstr "" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Gamepads" @@ -3954,12 +4029,6 @@ msgid "" "descending." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -3978,6 +4047,13 @@ msgid "" "empty password." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4072,10 +4148,6 @@ msgstr "" msgid "Interval of saving important changes in the world, stated in seconds." msgstr "" -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "" - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "" @@ -4692,10 +4764,6 @@ msgstr "" msgid "Maximum users" msgstr "Käyttäjiä enintään" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "" @@ -4728,6 +4796,10 @@ msgstr "" msgid "Minimum limit of random number of small caves per mapchunk." msgstr "" +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "" @@ -4819,7 +4891,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" @@ -5261,17 +5333,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5468,16 +5542,6 @@ msgstr "" msgid "Shader path" msgstr "" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "Varjostimet" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "" @@ -5640,10 +5704,9 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" #: src/settings_translation_file.cpp @@ -5922,10 +5985,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "" -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "" @@ -5985,6 +6044,10 @@ msgstr "" msgid "Transparency Sorting Distance" msgstr "" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "" @@ -6035,7 +6098,10 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" #: src/settings_translation_file.cpp @@ -6058,16 +6124,14 @@ msgstr "" msgid "Upper Y limit of floatlands." msgstr "" -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "" - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "" #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" #: src/settings_translation_file.cpp @@ -6304,20 +6368,12 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -6328,10 +6384,6 @@ msgid "" "Mods may still set a background." msgstr "" -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -6354,8 +6406,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -6566,6 +6617,10 @@ msgstr "" #~ msgid "Dynamic shadows:" #~ msgstr "Dynaamiset varjot:" +#, fuzzy +#~ msgid "Enable" +#~ msgstr "Otettu käyttöön" + #~ msgid "Enable touchscreen" #~ msgstr "Ota kosketusnäyttö käyttöön" @@ -6575,9 +6630,6 @@ msgstr "" #~ msgid "FreeType fonts" #~ msgstr "FreeType-fontit" -#~ msgid "Game" -#~ msgstr "Peli" - #, fuzzy #~ msgid "Hide: Temporary Settings" #~ msgstr "Väliaikaiset asetukset" @@ -6633,9 +6685,16 @@ msgstr "" #~ msgid "Server / Singleplayer" #~ msgstr "Palvelin / yksinpeli" +#~ msgid "Shaders" +#~ msgstr "Varjostimet" + #~ msgid "Shaders (experimental)" #~ msgstr "Varjostimet (kokeellinen)" +#, fuzzy +#~ msgid "Shaders are disabled." +#~ msgstr "Varjostimet (ei käytettävissä)" + #~ msgid "Texturing:" #~ msgstr "Teksturointi:" diff --git a/po/fil/luanti.po b/po/fil/luanti.po index 6517795bb..acabb2b56 100644 --- a/po/fil/luanti.po +++ b/po/fil/luanti.po @@ -2,9 +2,9 @@ msgid "" msgstr "" "Project-Id-Version: minetest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" -"PO-Revision-Date: 2022-06-27 03:16+0000\n" -"Last-Translator: Marco Santos \n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" +"PO-Revision-Date: 2024-12-26 19:00+0000\n" +"Last-Translator: Kevin Hagen \n" "Language-Team: Filipino \n" "Language: fil\n" @@ -13,7 +13,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1 && n != 2 && n != 3 && (n % 10 == 4 " "|| n % 10 == 6 || n % 10 == 9);\n" -"X-Generator: Weblate 4.13.1-dev\n" +"X-Generator: Weblate 5.10-dev\n" #: builtin/client/chatcommands.lua msgid "Clear the out chat queue" @@ -80,6 +80,251 @@ msgstr "" msgid "[all | ] [-t]" msgstr "[all | ]" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "Mag-browse" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "Baguhin" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "Pumili ng directory" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "Pumili ng file" + +#: builtin/common/settings/components.lua +#, fuzzy +msgid "Set" +msgstr "Select" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(Walang binigay na paglalarawan)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "2D Noise" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "Ikansela" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "Lacunarity" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "Mga octave" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "Offset" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "Persistence" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "I-save" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "Scale" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "Seed" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "Pagkalat ng X" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "Pagkalat ng Y" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "Pagkalat ng Z" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "absvalue" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "defaults" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "eased" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "Chat" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "Linisin" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "Nakasara" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "Nakabukas" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "Walang mga resulta" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Reset setting to default" +msgstr "I-restore ang Default" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "Maghanap" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "Ipakita ang mga teknikal na pangalan" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Touchscreen layout" +msgstr "Touchthreshold: (px)" + +#: builtin/common/settings/dlg_settings.lua +msgid "pause_menu" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Client Mods" +msgstr "Pumili ng mga Mod" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Content: Games" +msgstr "Content" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Content: Mods" +msgstr "Content" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "Dynamic na mga anino" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "Mataas" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "Mababa" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "Katamtaman" + +#: builtin/common/settings/shadows_component.lua +#, fuzzy +msgid "Very High" +msgstr "Napakataas" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "Napakababa" + #: builtin/fstk/ui.lua msgid "" msgstr "" @@ -168,7 +413,6 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua #, fuzzy msgid "Back" msgstr "Pabalik" @@ -207,11 +451,6 @@ msgstr "Mga Mod" msgid "No packages could be retrieved" msgstr "Walang makuhang mga package" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "Walang mga resulta" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "Walang mga update" @@ -257,18 +496,6 @@ msgstr "Naka-install na" msgid "Base Game:" msgstr "Basehang Laro:" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "Ikansela" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -322,16 +549,15 @@ msgstr "Paglalarawan sa Server" #: builtin/mainmenu/content/dlg_package.lua msgid "Donate" -msgstr "" +msgstr "Magdonate" #: builtin/mainmenu/content/dlg_package.lua msgid "Forum Topic" msgstr "" #: builtin/mainmenu/content/dlg_package.lua -#, fuzzy msgid "Information" -msgstr "Impormasyon:" +msgstr "Impormasyon" #: builtin/mainmenu/content/dlg_package.lua #, fuzzy @@ -399,6 +625,12 @@ msgstr "Bigong ma-install ang mod bilang $1" msgid "Unable to install a $1 as a texture pack" msgstr "Bigong ma-install ang $1 bilang texture pack" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "" @@ -463,12 +695,6 @@ msgstr "Walang mga optional na kailangan" msgid "Optional dependencies:" msgstr "Mga optional na kailangan:" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "I-save" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "Mundo:" @@ -519,7 +745,7 @@ msgstr "Mga dekorasyon" #: builtin/mainmenu/dlg_create_world.lua msgid "Desert temples" -msgstr "" +msgstr "Mga Templo ng Disyerto" #: builtin/mainmenu/dlg_create_world.lua #, fuzzy @@ -622,11 +848,6 @@ msgstr "Mga ilog" msgid "Sea level rivers" msgstr "Lebel ng dagat sa mga ilog" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "Seed" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "Malinis na transition sa pagitan ng mga biome" @@ -769,6 +990,23 @@ msgstr "" "May explicit na pangalan ang modpack na ito na nakalagay sa modpack.conf " "nito na mag-o-override sa kahit anong pag-rename dito." +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "Buksan lahat" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "" @@ -793,7 +1031,7 @@ msgstr "" msgid "Visit website" msgstr "" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "Pagsasaayos" @@ -807,231 +1045,6 @@ msgstr "" "Subukang buksan muli ang listahan ng pampublikong server at tingnan ang " "koneksyon mo sa internet." -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "Mag-browse" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "Baguhin" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "Pumili ng directory" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "Pumili ng file" - -#: builtin/mainmenu/settings/components.lua -#, fuzzy -msgid "Set" -msgstr "Select" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(Walang binigay na paglalarawan)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "2D Noise" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "Lacunarity" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "Mga octave" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "Offset" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "Persistence" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "Scale" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "Pagkalat ng X" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "Pagkalat ng Y" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "Pagkalat ng Z" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "absvalue" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "defaults" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "eased" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "Chat" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "Linisin" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "Nakasara" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "Nakabukas" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Reset setting to default" -msgstr "I-restore ang Default" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "Maghanap" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "Ipakita ang mga teknikal na pangalan" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Client Mods" -msgstr "Pumili ng mga Mod" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Content: Games" -msgstr "Content" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Content: Mods" -msgstr "Content" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "Nakabukas" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Shaders are disabled." -msgstr "Nakasara ang pag-update sa kamera" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "Dynamic na mga anino" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "Mataas" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "Mababa" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "Katamtaman" - -#: builtin/mainmenu/settings/shadows_component.lua -#, fuzzy -msgid "Very High" -msgstr "Napakataas" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "Napakababa" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "Patungkol" @@ -1052,10 +1065,6 @@ msgstr "Mga Core Developer" msgid "Core Team" msgstr "" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "Buksan ang User Data Directory" @@ -1206,10 +1215,22 @@ msgstr "Magsimula" msgid "You need to install a game before you can create a world." msgstr "" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "Burahin Paborito" + #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "Address" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "Client" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "Creative mode" @@ -1223,6 +1244,11 @@ msgstr "Pinsala/PvP" msgid "Favorites" msgstr "Mga Paborito" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "Laro" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "Di compatible na mga Server" @@ -1235,10 +1261,26 @@ msgstr "Sumali sa Laro" msgid "Login" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +msgid "Open server website" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "Ping" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Public Servers" msgstr "Mga Pampublikong Server" @@ -1325,23 +1367,6 @@ msgstr "" "\n" "Tingnan ang debug.txt para sa mga detalye." -#: src/client/game.cpp -msgid "- Mode: " -msgstr "- Mode: " - -#: src/client/game.cpp -msgid "- Public: " -msgstr "- Pampubliko: " - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "- PvP: " - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "- Pangalan ng Server: " - #: src/client/game.cpp msgid "A serialization error occurred:" msgstr "May naganap na serialization error:" @@ -1351,6 +1376,11 @@ msgstr "May naganap na serialization error:" msgid "Access denied. Reason: %s" msgstr "Tinanggihan ang access: Dahilan: %s" +#: src/client/game.cpp +#, fuzzy +msgid "All debug info hidden" +msgstr "Ipinapakita ang debug info" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "Nakasara ang kusang pag-abante" @@ -1371,6 +1401,10 @@ msgstr "Ipinapakita ang block bound para sa kasalukuyang block" msgid "Block bounds shown for nearby blocks" msgstr "Ipinapakita ang mga block bound para sa mga malalapit na block" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "Nakasara ang pag-update sa kamera" @@ -1386,10 +1420,6 @@ msgstr "" "Bawal maipakita ang mga block bound (kailangan ng pribilehiyong " "'basic_debug')" -#: src/client/game.cpp -msgid "Change Password" -msgstr "Baguhin ang Password" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "Nakasara ang cinematic mode" @@ -1418,39 +1448,6 @@ msgstr "Error sa koneksyon (nag-timeout?)" msgid "Connection failed for unknown reason" msgstr "Bigong makakonekta dahil sa di matukoy na dahilan" -#: src/client/game.cpp -msgid "Continue" -msgstr "Magpatuloy" - -#: src/client/game.cpp -#, fuzzy -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" -"Mga Default na Kontrol:\n" -"Kapag walang makikitang Menu:\n" -"- isang pindot: i-activate ang button\n" -"- dobleng pindot: ilagay/gamitin\n" -"- padulasin ang daliri: tumingin-tingin sa paligid\n" -"Kapag makikita ang Menu/Inventory:\n" -"- dobleng pindot (sa labas):\n" -" -->isara\n" -"- pindutin ang stack, pindutin ang slot:\n" -" --> ilipat ang stack\n" -"- pindutin at i-drag, pindutin pangalawang daliri\n" -" --> ilagay ang isang item sa slot\n" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1464,31 +1461,15 @@ msgstr "Ginagawa ang client..." msgid "Creating server..." msgstr "Ginagawa ang server..." -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "Nakatago ang debug info at profiler graph" - #: src/client/game.cpp msgid "Debug info shown" msgstr "Ipinapakita ang debug info" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "Nakatago ang debug info, profiler graph, at wireframe" - #: src/client/game.cpp #, fuzzy, c-format msgid "Error creating client: %s" msgstr "Ginagawa ang client..." -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "Umalis sa Menu" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "Umalis sa OS" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "Nakasara ang fast mode" @@ -1526,18 +1507,6 @@ msgstr "Nakabukas ang hamog" msgid "Fog enabled by game or mod" msgstr "Kasalukuyang sinara ng laro o mod ang pag-zoom" -#: src/client/game.cpp -msgid "Game info:" -msgstr "Info ng laro:" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "Nakahinto ang laro" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "Nagho-host na server" - #: src/client/game.cpp msgid "Item definitions..." msgstr "Mga definition ng item..." @@ -1574,14 +1543,6 @@ msgstr "Nakabukas ang noclip mode (paalala: walang pribilehiyong 'noclip')" msgid "Node definitions..." msgstr "Mga definition ng node..." -#: src/client/game.cpp -msgid "Off" -msgstr "Sarado" - -#: src/client/game.cpp -msgid "On" -msgstr "Bukas" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "Nakasara ang pitch move mode" @@ -1594,38 +1555,22 @@ msgstr "Nakabukas ang pitch move mode" msgid "Profiler graph shown" msgstr "Ipinapakita ang profiler graph" -#: src/client/game.cpp -msgid "Remote server" -msgstr "Remote na server" - #: src/client/game.cpp msgid "Resolving address..." msgstr "Rineresolba ang address..." -#: src/client/game.cpp -msgid "Respawn" -msgstr "Mag-respawn" - #: src/client/game.cpp msgid "Shutting down..." msgstr "Sina-shutdown..." -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "Singleplayer" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "Volume ng Tunog" - #: src/client/game.cpp msgid "Sound muted" msgstr "Naka-mute ang tunog" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "Nakasara ang system ng tunog" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "Di suportado ang system ng tunog sa build na ito" @@ -1699,18 +1644,116 @@ msgstr "Binago ang viewing range papuntang %d" msgid "Volume changed to %d%%" msgstr "Binago ang volume papuntang %d%%" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "Ipinapakita ang wireframe" -#: src/client/game.cpp -msgid "You died" -msgstr "Namatay ka" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "Kasalukuyang sinara ng laro o mod ang pag-zoom" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "- Mode: " + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "- Pampubliko: " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "- PvP: " + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "- Pangalan ng Server: " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "Baguhin ang Password" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "Magpatuloy" + +#: src/client/game_formspec.cpp +#, fuzzy +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" +"Mga Default na Kontrol:\n" +"Kapag walang makikitang Menu:\n" +"- isang pindot: i-activate ang button\n" +"- dobleng pindot: ilagay/gamitin\n" +"- padulasin ang daliri: tumingin-tingin sa paligid\n" +"Kapag makikita ang Menu/Inventory:\n" +"- dobleng pindot (sa labas):\n" +" -->isara\n" +"- pindutin ang stack, pindutin ang slot:\n" +" --> ilipat ang stack\n" +"- pindutin at i-drag, pindutin pangalawang daliri\n" +" --> ilagay ang isang item sa slot\n" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "Umalis sa Menu" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "Umalis sa OS" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "Info ng laro:" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "Nakahinto ang laro" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "Nagho-host na server" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "Sarado" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "Bukas" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "Remote na server" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "Mag-respawn" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "Volume ng Tunog" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "Namatay ka" + #: src/client/gameui.cpp #, fuzzy msgid "Chat currently disabled by game or mod" @@ -2050,8 +2093,9 @@ msgid "Failed to compile the \"%s\" shader." msgstr "Bigong mabuksan ang webpage" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." -msgstr "" +#, fuzzy +msgid "GLSL is not supported by the driver" +msgstr "Di suportado ang system ng tunog sa build na ito" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" #: src/content/mod_configuration.cpp @@ -2099,7 +2143,7 @@ msgstr "Kusang abante" msgid "Automatic jumping" msgstr "Kusang talon" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "Aux1" @@ -2111,7 +2155,7 @@ msgstr "Pabalik" msgid "Block bounds" msgstr "Mga block bound" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "Palitan ang kamera" @@ -2135,7 +2179,7 @@ msgstr "Dec. volume" msgid "Double tap \"jump\" to toggle fly" msgstr "Dobleng pindutin ang \"tumalon\" para makalipad" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "Ihulog" @@ -2151,11 +2195,11 @@ msgstr "Inc. range" msgid "Inc. volume" msgstr "Inc. volume" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "Inventory" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "Tumalon" @@ -2187,7 +2231,7 @@ msgstr "Susunod na item" msgid "Prev. item" msgstr "Nakaraang item" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "Pagpili sa saklaw" @@ -2199,7 +2243,7 @@ msgstr "Right" msgid "Screenshot" msgstr "Mag-screenshot" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "Magdahan-dahan" @@ -2207,15 +2251,15 @@ msgstr "Magdahan-dahan" msgid "Toggle HUD" msgstr "I-toggle ang HUD" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "I-toggle ang chat log" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "I-toggle ang fast" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "I-toggle ang fly" @@ -2223,11 +2267,11 @@ msgstr "I-toggle ang fly" msgid "Toggle fog" msgstr "I-toggle ang hamog" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "I-toggle ang minimap" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "I-toggle ang noclip" @@ -2235,7 +2279,7 @@ msgstr "I-toggle ang noclip" msgid "Toggle pitchmove" msgstr "I-toggle ang pitchmove" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "Zoom" @@ -2272,7 +2316,7 @@ msgstr "Lumang Password" msgid "Passwords do not match!" msgstr "Di tugma ang mga password!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "Umalis" @@ -2285,15 +2329,46 @@ msgstr "Naka-mute" msgid "Sound Volume: %d%%" msgstr "Volume ng Tunog: %d%%" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Add button" +msgstr "Middle Button" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "Tapos na!" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Remove" +msgstr "Remote na server" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp msgid "Joystick" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Toggle debug" msgstr "I-toggle ang hamog" @@ -2526,8 +2601,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" "Suporta sa 3D.\n" "Kasalukuyang suportado:\n" @@ -2595,10 +2669,6 @@ msgstr "Saklaw na aktibong block" msgid "Active object send range" msgstr "Saklaw na mapapadala sa aktibong bagay" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "Nagdadagdag ng mga particle habang naghuhukay ng node." - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2631,6 +2701,16 @@ msgstr "Idagdag ang pangalan ng item" msgid "Advanced" msgstr "Karagdagan" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Allow clouds to look 3D instead of flat." +msgstr "" + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "" @@ -3041,15 +3121,14 @@ msgstr "Radius ng ulap" msgid "Clouds" msgstr "Mga ulap" -#: src/settings_translation_file.cpp -#, fuzzy -msgid "Clouds are a client-side effect." -msgstr "Epekto sa client side ang mga ulap." - #: src/settings_translation_file.cpp msgid "Clouds in menu" msgstr "Mga ulap sa menu" +#: src/settings_translation_file.cpp +msgid "Color depth for post-processing texture" +msgstr "" + #: src/settings_translation_file.cpp msgid "Colored fog" msgstr "May kulay na hamog" @@ -3072,7 +3151,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" #: src/settings_translation_file.cpp @@ -3207,6 +3286,14 @@ msgstr "" msgid "Debugging" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "" @@ -3358,19 +3445,11 @@ msgid "" "When the 'snowbiomes' flag is enabled, this is ignored." msgstr "" -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Developer Options" msgstr "Mga dekorasyon" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "" @@ -3398,6 +3477,14 @@ msgstr "" msgid "Double-tapping the jump key toggles fly mode." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "" @@ -3473,8 +3560,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" #: src/settings_translation_file.cpp @@ -3547,8 +3634,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" #: src/settings_translation_file.cpp @@ -3563,12 +3649,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "" - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -3874,10 +3954,6 @@ msgstr "" msgid "GUI scaling filter" msgstr "" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Gamepads" @@ -4103,12 +4179,6 @@ msgid "" "descending." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -4127,6 +4197,13 @@ msgid "" "empty password." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4221,10 +4298,6 @@ msgstr "" msgid "Interval of saving important changes in the world, stated in seconds." msgstr "" -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "" - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "" @@ -4841,10 +4914,6 @@ msgstr "" msgid "Maximum users" msgstr "" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "" @@ -4877,6 +4946,10 @@ msgstr "" msgid "Minimum limit of random number of small caves per mapchunk." msgstr "" +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "" @@ -4967,7 +5040,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" @@ -5412,17 +5485,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5620,16 +5695,6 @@ msgstr "" msgid "Shader path" msgstr "" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "Mga Shader" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "" @@ -5752,7 +5817,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Sneaking speed" -msgstr "" +msgstr "Tulin ng tiyad" #: src/settings_translation_file.cpp msgid "Sneaking speed, in nodes per second." @@ -5793,10 +5858,9 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" #: src/settings_translation_file.cpp @@ -6075,10 +6139,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "" -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "" @@ -6138,6 +6198,10 @@ msgstr "" msgid "Transparency Sorting Distance" msgstr "" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "" @@ -6188,7 +6252,10 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" #: src/settings_translation_file.cpp @@ -6211,16 +6278,14 @@ msgstr "" msgid "Upper Y limit of floatlands." msgstr "" -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "" - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "" #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" #: src/settings_translation_file.cpp @@ -6442,7 +6507,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Weblink color" -msgstr "" +msgstr "Kulay ng weblink" #: src/settings_translation_file.cpp msgid "When enabled, liquid reflections are simulated." @@ -6463,20 +6528,12 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -6487,10 +6544,6 @@ msgid "" "Mods may still set a background." msgstr "" -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -6513,8 +6566,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -6660,6 +6712,9 @@ msgstr "" #~ "Tandaan na ang ino-override ng pagsasaayos na ito ang address field sa " #~ "main menu." +#~ msgid "Adds particles when digging a node." +#~ msgstr "Nagdadagdag ng mga particle habang naghuhukay ng node." + #~ msgid "" #~ "Adjust dpi configuration to your screen (non X11/Android only) e.g. for " #~ "4k screens." @@ -6743,6 +6798,10 @@ msgstr "" #~ msgid "Clean transparent textures" #~ msgstr "Malilinis na transparent na texture" +#, fuzzy +#~ msgid "Clouds are a client-side effect." +#~ msgstr "Epekto sa client side ang mga ulap." + #~ msgid "Connect" #~ msgstr "Kumonekta" @@ -6781,6 +6840,12 @@ msgstr "" #~ "- Mouse wheel: pumili ng item\n" #~ "- %s: chat\n" +#~ msgid "Debug info and profiler graph hidden" +#~ msgstr "Nakatago ang debug info at profiler graph" + +#~ msgid "Debug info, profiler graph, and wireframe hidden" +#~ msgstr "Nakatago ang debug info, profiler graph, at wireframe" + #~ msgid "Disabled unlimited viewing range" #~ msgstr "Nakasara ang unlimited na viewing range" @@ -6797,15 +6862,16 @@ msgstr "" #~ msgid "Dynamic shadows:" #~ msgstr "Dynamic na mga anino: " +#, fuzzy +#~ msgid "Enable" +#~ msgstr "Nakabukas" + #~ msgid "Enter " #~ msgstr "Ipasok " #~ msgid "Fancy Leaves" #~ msgstr "Magagarang Dahon" -#~ msgid "Game" -#~ msgstr "Laro" - #, fuzzy #~ msgid "Hide: Temporary Settings" #~ msgstr "Pagsasaayos" @@ -6859,15 +6925,25 @@ msgstr "" #~ msgid "Screen:" #~ msgstr "Screen:" +#~ msgid "Shaders" +#~ msgstr "Mga Shader" + #~ msgid "Shaders (experimental)" #~ msgstr "Mga Shader (eksperimento)" #~ msgid "Shaders (unavailable)" #~ msgstr "Mga Shader (di available)" +#, fuzzy +#~ msgid "Shaders are disabled." +#~ msgstr "Nakasara ang pag-update sa kamera" + #~ msgid "Simple Leaves" #~ msgstr "Simpleng Dahon" +#~ msgid "Sound system is disabled" +#~ msgstr "Nakasara ang system ng tunog" + #~ msgid "Texturing:" #~ msgstr "Pagte-texture:" diff --git a/po/fr/luanti.po b/po/fr/luanti.po index ed71726ba..5865425cf 100644 --- a/po/fr/luanti.po +++ b/po/fr/luanti.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: French (Minetest)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" -"PO-Revision-Date: 2024-11-06 18:04+0000\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" +"PO-Revision-Date: 2025-02-12 12:18+0000\n" "Last-Translator: waxtatect \n" "Language-Team: French \n" @@ -12,7 +12,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 5.8.2\n" +"X-Generator: Weblate 5.10-dev\n" #: builtin/client/chatcommands.lua msgid "Clear the out chat queue" @@ -77,9 +77,247 @@ msgstr "" msgid "[all | ] [-t]" msgstr "[all | ] [-t]" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "Parcourir" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "Modifier" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "Choisir un répertoire" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "Choisir un fichier" + +#: builtin/common/settings/components.lua +msgid "Set" +msgstr "Définir" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(Aucune description du paramètre donnée)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "Bruit 2D" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "Annuler" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "Lacunarité" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "Octaves" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "Décalage" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "Persistance" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "Sauvegarder" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "Échelle" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "Graine" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "Écart X" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "Écart Y" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "Écart Z" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "Valeur absolue" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "Paramètres par défaut" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "Lissé" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "(Le jeu doit également activer l'exposition automatique)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "(Le jeu doit également activer le flou lumineux)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "(Le jeu doit également activer l'éclairage volumétrique)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "(Utiliser la langue du système)" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "Accessibilité" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "Automatique" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "Tchat" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "Effacer" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "Contrôles" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "Désactivé" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "Activé" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "Général" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "Mouvement" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "Pas de résultat" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default" +msgstr "Réinitialiser le réglage par défaut" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "Réinitialiser le réglage par défaut ($1)" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "Rechercher" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "Afficher les paramètres avancés" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "Montrer les noms techniques" + +#: builtin/common/settings/dlg_settings.lua +msgid "Touchscreen layout" +msgstr "Disposition de l'écran tactile" + +#: builtin/common/settings/dlg_settings.lua +msgid "pause_menu" +msgstr "pause_menu" + +#: builtin/common/settings/settingtypes.lua +msgid "Client Mods" +msgstr "Mods client" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "Contenu : Jeux" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "Contenu : Mods" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "(Le jeu doit également activer les ombres)" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "Personnalisé" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "Ombres dynamiques" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "Élevées" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "Basses" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "Moyennes" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "Très élevées" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "Très basses" + #: builtin/fstk/ui.lua msgid "" -msgstr "< aucun disponible >" +msgstr "" #: builtin/fstk/ui.lua msgid "An error occurred in a Lua script:" @@ -164,7 +402,6 @@ msgstr "Tout" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "Retour" @@ -200,11 +437,6 @@ msgstr "Mods" msgid "No packages could be retrieved" msgstr "Aucun paquet n'a pu être récupéré" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "Pas de résultat" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "Aucune mise à jour" @@ -249,18 +481,6 @@ msgstr "Déjà installé" msgid "Base Game:" msgstr "Jeu de base :" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "Annuler" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -383,6 +603,14 @@ msgstr "Impossible d'installer un « $1 » comme un « $2 »" msgid "Unable to install a $1 as a texture pack" msgstr "Impossible d'installer un « $1 » comme un pack de textures" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" +"Voici la liste des clients connectés à\n" +"$1" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "(Activé, a une erreur)" @@ -448,12 +676,6 @@ msgstr "Pas de dépendances optionnelles" msgid "Optional dependencies:" msgstr "Dépendances optionnelles :" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "Sauvegarder" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "Monde :" @@ -608,11 +830,6 @@ msgstr "Rivières" msgid "Sea level rivers" msgstr "Rivières au niveau de la mer" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "Graine" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "Transition progressive entre les biomes" @@ -723,8 +940,8 @@ msgid "" "For a long time, Luanti shipped with a default game called \"Minetest " "Game\". Since version 5.8.0, Luanti ships without a default game." msgstr "" -"Pendant longtemps, Luanti était livré avec un jeu par défaut appelé « " -"Minetest Game ». Depuis la version 5.8.0, Luanti est livré sans jeu par " +"Pendant longtemps, Luanti était livré avec un jeu par défaut appelé " +"« Minetest Game ». Depuis la version 5.8.0, Luanti est livré sans jeu par " "défaut." #: builtin/mainmenu/dlg_reinstall_mtg.lua @@ -759,6 +976,22 @@ msgstr "" "Ce pack de mods a un nom explicite, donné dans son fichier modpack.conf qui " "remplace tout renommage effectué ici." +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Expand all" +msgstr "Tout développer" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "Grouper par préfixe" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "Le serveur $1 utilise un jeu appelé $2 et les mods suivants :" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "Le serveur $1 utilise les mods suivants :" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "Une nouvelle version de $1 est disponible" @@ -787,7 +1020,7 @@ msgstr "Jamais" msgid "Visit website" msgstr "Visiter le site web" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "Paramètres" @@ -801,223 +1034,6 @@ msgstr "" "Essayer de réactiver la liste des serveurs et vérifier votre connexion " "Internet." -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "Parcourir" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "Modifier" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "Choisir un répertoire" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "Choisir un fichier" - -#: builtin/mainmenu/settings/components.lua -msgid "Set" -msgstr "Définir" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(Aucune description du paramètre donnée)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "Bruit 2D" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "Lacunarité" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "Octaves" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "Décalage" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "Persistance" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "Échelle" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "Écart X" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "Écart Y" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "Écart Z" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "Valeur absolue" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "Paramètres par défaut" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "Lissé" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "(Le jeu doit également activer l'exposition automatique)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "(Le jeu doit également activer le flou lumineux)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "(Le jeu doit également activer l'éclairage volumétrique)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "(Utiliser la langue du système)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "Accessibilité" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "Automatique" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "Tchat" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "Effacer" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "Contrôles" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "Désactivé" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "Activé" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "Général" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "Mouvement" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default" -msgstr "Réinitialiser le réglage par défaut" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "Réinitialiser le réglage par défaut ($1)" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "Rechercher" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "Afficher les paramètres avancés" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "Montrer les noms techniques" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "Mods client" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "Contenu : Jeux" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "Contenu : Mods" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "Enable" -msgstr "Activer" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "Shaders are disabled." -msgstr "Les nuanceurs sont désactivés." - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "Cette configuration n'est pas recommandée." - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "(Le jeu doit également activer les ombres)" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "Personnalisé" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "Ombres dynamiques" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "Élevées" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "Basses" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "Moyennes" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "Très élevées" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "Très basses" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "À propos" @@ -1038,10 +1054,6 @@ msgstr "Développeurs principaux" msgid "Core Team" msgstr "Équipe principale" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "Périphérique Irrlicht :" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "Répertoire de données utilisateur" @@ -1191,10 +1203,22 @@ msgstr "Démarrer" msgid "You need to install a game before you can create a world." msgstr "Vous devez en installer un pour créer un nouveau monde." +#: builtin/mainmenu/tab_online.lua +msgid "Add favorite" +msgstr "Ajouter aux favoris" + #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "Adresse" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Clients:\n" +"$1" +msgstr "" +"Clients : \n" +"$1" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "Mode créatif" @@ -1208,6 +1232,10 @@ msgstr "Dégâts / JcJ" msgid "Favorites" msgstr "Favoris" +#: builtin/mainmenu/tab_online.lua +msgid "Game: $1" +msgstr "Jeu : $1" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "Serveurs incompatibles" @@ -1220,10 +1248,30 @@ msgstr "Rejoindre une partie" msgid "Login" msgstr "Connexion" +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "Nombre de mods : $1" + +#: builtin/mainmenu/tab_online.lua +msgid "Open server website" +msgstr "Visiter le site web du serveur" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "Ping" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" +"Filtres possibles :\n" +"game:\n" +"mod:\n" +"player:" + #: builtin/mainmenu/tab_online.lua msgid "Public Servers" msgstr "Serveurs publics" @@ -1308,23 +1356,6 @@ msgstr "" "\n" "Voir « debug.txt » pour plus d'informations." -#: src/client/game.cpp -msgid "- Mode: " -msgstr "– Mode : " - -#: src/client/game.cpp -msgid "- Public: " -msgstr "– Public : " - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "– JcJ : " - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "– Nom du serveur : " - #: src/client/game.cpp msgid "A serialization error occurred:" msgstr "Une erreur de sérialisation est survenue :" @@ -1334,6 +1365,10 @@ msgstr "Une erreur de sérialisation est survenue :" msgid "Access denied. Reason: %s" msgstr "Accès refusé. Raison : %s" +#: src/client/game.cpp +msgid "All debug info hidden" +msgstr "Informations de débogage cachées" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "Marche automatique désactivée" @@ -1354,6 +1389,10 @@ msgstr "Limites des blocs affichées pour le bloc actuel" msgid "Block bounds shown for nearby blocks" msgstr "Limites des blocs affichées pour les blocs voisins" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "Limites des boîtes affichées" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "Mise à jour de la caméra désactivée" @@ -1367,10 +1406,6 @@ msgid "Can't show block bounds (disabled by game or mod)" msgstr "" "Impossible d'afficher les limites des blocs (désactivé par un jeu ou un mod)" -#: src/client/game.cpp -msgid "Change Password" -msgstr "Changer le mot de passe" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "Mode cinématique désactivé" @@ -1399,35 +1434,6 @@ msgstr "Erreur de connexion (délai expiré ?)." msgid "Connection failed for unknown reason" msgstr "La connexion a échoué pour une raison inconnue." -#: src/client/game.cpp -msgid "Continue" -msgstr "Continuer" - -#: src/client/game.cpp -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" -"Contrôles :\n" -"Sans menu ouvert :\n" -"– glissement du doigt : regarder autour\n" -"– appui : placer/frapper/utiliser (par défaut)\n" -"– appui long : creuser/utiliser (par défaut)\n" -"Menu/Inventaire ouvert :\n" -"– double-appui (en dehors) : fermer\n" -"– appui sur objets dans l'inventaire : déplacer\n" -"– appui, glissement et appui : pose d'un seul objet par emplacement\n" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1441,31 +1447,15 @@ msgstr "Création du client…" msgid "Creating server..." msgstr "Création du serveur…" -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "Informations de débogage et graphique du profileur cachés" - #: src/client/game.cpp msgid "Debug info shown" msgstr "Informations de débogage affichées" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "Informations de débogage, graphique du profileur et fils de fer cachés" - #: src/client/game.cpp #, c-format msgid "Error creating client: %s" msgstr "Erreur de création du client : %s." -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "Menu principal" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "Quitter le jeu" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "Mode rapide désactivé" @@ -1502,18 +1492,6 @@ msgstr "Brouillard activé" msgid "Fog enabled by game or mod" msgstr "Brouillard actuellement activé par un jeu ou un mod" -#: src/client/game.cpp -msgid "Game info:" -msgstr "Infos de jeu :" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "Jeu en pause" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "Serveur hôte" - #: src/client/game.cpp msgid "Item definitions..." msgstr "Définitions des objets…" @@ -1550,14 +1528,6 @@ msgstr "Collisions désactivées (note : pas de privilège « noclip »)" msgid "Node definitions..." msgstr "Définitions des blocs…" -#: src/client/game.cpp -msgid "Off" -msgstr "Désactivé" - -#: src/client/game.cpp -msgid "On" -msgstr "Activé" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "Mode mouvement de tangage désactivé" @@ -1570,38 +1540,22 @@ msgstr "Mode mouvement de tangage activé" msgid "Profiler graph shown" msgstr "Graphique du profileur affiché" -#: src/client/game.cpp -msgid "Remote server" -msgstr "Serveur distant" - #: src/client/game.cpp msgid "Resolving address..." msgstr "Résolution de l'adresse…" -#: src/client/game.cpp -msgid "Respawn" -msgstr "Réapparaître" - #: src/client/game.cpp msgid "Shutting down..." msgstr "Fermeture du jeu…" -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "Solo" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "Volume du son" - #: src/client/game.cpp msgid "Sound muted" msgstr "Son coupé" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "Le système audio est désactivé" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "" @@ -1679,18 +1633,112 @@ msgstr "Distance de vue réglée à %d, mais limitée à %d par un jeu ou un mod msgid "Volume changed to %d%%" msgstr "Volume réglé sur %d %%" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "Fils de fer non pris en charge par le pilote vidéo" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "Fils de fer affichés" -#: src/client/game.cpp -msgid "You died" -msgstr "Vous êtes mort" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "Zoom actuellement désactivé par un jeu ou un mod" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "– Mode : " + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "– Public : " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "– JcJ : " + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "– Nom du serveur : " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "Changer le mot de passe" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "Continuer" + +#: src/client/game_formspec.cpp +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" +"Contrôles :\n" +"Sans menu ouvert :\n" +"– glissement du doigt : regarder autour\n" +"– appui : placer/frapper/utiliser (par défaut)\n" +"– appui long : creuser/utiliser (par défaut)\n" +"Menu/Inventaire ouvert :\n" +"– double-appui (en dehors) : fermer\n" +"– appui sur objets dans l'inventaire : déplacer\n" +"– appui, glissement et appui : pose d'un seul objet par emplacement\n" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "Menu principal" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "Quitter le jeu" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "Infos de jeu :" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "Jeu en pause" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "Serveur hôte" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "Désactivé" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "Activé" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "Serveur distant" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "Réapparaître" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "Volume du son" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "Vous êtes mort" + #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" msgstr "Tchat actuellement désactivé par un jeu ou un mod" @@ -2017,9 +2065,8 @@ msgid "Failed to compile the \"%s\" shader." msgstr "Échec de la compilation du nuanceur « %s »." #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." -msgstr "" -"Les nuanceurs sont activés mais GLSL n'est pas pris en charge par le pilote." +msgid "GLSL is not supported by the driver" +msgstr "GLSL n'est pas pris en charge par le pilote vidéo" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" #: src/content/mod_configuration.cpp @@ -2039,7 +2086,7 @@ msgid "" "Note: this may be caused by a dependency cycle, in which case try updating " "the mods." msgstr "" -"Note : ceci peut être dû à un cycle de dépendances, dans ce cas essayer de " +"Note : cela peut être dû à un cycle de dépendances, dans ce cas essayer de " "mettre à jour les mods." #: src/content/mod_configuration.cpp @@ -2070,7 +2117,7 @@ msgstr "Avancer autom." msgid "Automatic jumping" msgstr "Sauts automatiques" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "Aux1" @@ -2082,7 +2129,7 @@ msgstr "Reculer" msgid "Block bounds" msgstr "Limites des blocs" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "Changer la caméra" @@ -2106,7 +2153,7 @@ msgstr "Réd. le volume" msgid "Double tap \"jump\" to toggle fly" msgstr "Double-appui sur « saut » pour voler" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "Lâcher" @@ -2122,11 +2169,11 @@ msgstr "Augm. la distance" msgid "Inc. volume" msgstr "Augm. le volume" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "Inventaire" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "Sauter" @@ -2158,7 +2205,7 @@ msgstr "Objet suivant" msgid "Prev. item" msgstr "Objet précédent" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "Distance de vue" @@ -2170,7 +2217,7 @@ msgstr "Droite" msgid "Screenshot" msgstr "Capture d'écran" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "Marcher lentement" @@ -2178,15 +2225,15 @@ msgstr "Marcher lentement" msgid "Toggle HUD" msgstr "Interface" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "Afficher le tchat" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "Mode rapide" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "Voler" @@ -2194,11 +2241,11 @@ msgstr "Voler" msgid "Toggle fog" msgstr "Brouillard" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "Mini-carte" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "Mode sans collisions" @@ -2206,7 +2253,7 @@ msgstr "Mode sans collisions" msgid "Toggle pitchmove" msgstr "Mouvement de tang." -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "Zoom" @@ -2242,7 +2289,7 @@ msgstr "Ancien mot de passe" msgid "Passwords do not match!" msgstr "Les mots de passe ne correspondent pas !" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "Quitter" @@ -2255,15 +2302,46 @@ msgstr "Muet" msgid "Sound Volume: %d%%" msgstr "Volume du son : %d %%" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +msgid "Add button" +msgstr "Ajouter un bouton" + +#: src/gui/touchscreeneditor.cpp +msgid "Done" +msgstr "Terminé" + +#: src/gui/touchscreeneditor.cpp +msgid "Remove" +msgstr "Supprimer" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "Réinitialiser" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" +"Faire glisser un bouton pour ajouter. Appuyer à l'extérieur pour annuler." + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" +"Appuyer sur un bouton pour le sélectionner. Faire glisser un bouton pour le " +"déplacer." + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "Appuyer à l'extérieur pour désélectionner." + +#: src/gui/touchscreenlayout.cpp msgid "Joystick" msgstr "Manette" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "Menu de débordement" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Toggle debug" msgstr "Infos de débogage" @@ -2441,7 +2519,7 @@ msgstr "Nuages 3D" #: src/settings_translation_file.cpp msgid "3D mode" -msgstr "Mode écran 3D" +msgstr "Mode 3D" #: src/settings_translation_file.cpp msgid "3D mode parallax strength" @@ -2498,8 +2576,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" "Prise en charge de la 3D.\n" "Actuellement disponible :\n" @@ -2509,8 +2586,7 @@ msgstr "" "lignes paires/impaires.\n" "– haut-bas : partage haut et bas de l'écran.\n" "– côte-à-côte : partage côte à côte de l'écran.\n" -"– vision croisée : vision croisée 3D.\n" -"Noter que le mode entrelacé nécessite que les nuanceurs soient activés." +"– vision croisée : vision croisée 3D." #: src/settings_translation_file.cpp msgid "" @@ -2565,10 +2641,6 @@ msgstr "Portée des blocs actifs" msgid "Active object send range" msgstr "Portée des objets actifs envoyés" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "Ajoute des particules lorsqu'un bloc est creusé." - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2599,6 +2671,19 @@ msgstr "Nom de l’administrateur" msgid "Advanced" msgstr "Avancé" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" +"Tous les tampons de maillage ayant moins de ce nombre de sommets sont " +"fusionnés lors du rendu de la carte.\n" +"Cela améliore les performances de rendu." + +#: src/settings_translation_file.cpp +msgid "Allow clouds to look 3D instead of flat." +msgstr "Permet aux nuages de paraître en 3D au lieu de plats." + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "Permet aux liquides d'être translucides." @@ -2615,7 +2700,7 @@ msgstr "" "Des valeurs plus élevées rendent les niveaux de lumière moyens et inférieurs " "plus lumineux.\n" "La valeur « 1,0 » laisse la courbe de lumière intacte.\n" -"Ceci a un effet significatif seulement sur la lumière du jour et la lumière " +"Cela a un effet significatif seulement sur la lumière du jour et la lumière " "artificielle, et a très peu d'effet sur la lumière naturelle nocturne." #: src/settings_translation_file.cpp @@ -2687,7 +2772,7 @@ msgstr "" "effectue un tramage supplémentaire ou si les canaux de couleur ne sont pas " "quantifiés à 8 bits.\n" "Avec OpenGL ES, le tramage fonctionne seulement si les nuanceurs prennent en " -"charge une précision élevée en virgule flottante et ceci peut avoir un " +"charge une précision élevée en virgule flottante et cela peut avoir un " "impact plus important sur les performances." #: src/settings_translation_file.cpp @@ -2746,8 +2831,8 @@ msgstr "" "Des valeurs plus faibles peuvent augmenter la performance du serveur, mais " "peut provoquer l'apparition de problèmes de rendu (certains blocs ne sont " "pas visibles).\n" -"Ceci est particulièrement utile pour les très grandes distances de vue (plus " -"de 500).\n" +"C'est particulièrement utile pour les très grandes distances de vue (plus de " +"500).\n" "Établie en blocs de carte (16 nœuds)." #: src/settings_translation_file.cpp @@ -3003,14 +3088,14 @@ msgstr "Niveau de détails des nuages" msgid "Clouds" msgstr "Nuages" -#: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." -msgstr "Activer les nuages côté client." - #: src/settings_translation_file.cpp msgid "Clouds in menu" msgstr "Nuages dans le menu" +#: src/settings_translation_file.cpp +msgid "Color depth for post-processing texture" +msgstr "Profondeur de couleur pour la texture de post-traitement" + #: src/settings_translation_file.cpp msgid "Colored fog" msgstr "Brouillard coloré" @@ -3036,7 +3121,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" "Liste séparés par des virgules des étiquettes des paquets à cacher du dépôt " "de contenus.\n" @@ -3181,7 +3266,7 @@ msgid "" "This also applies to the object crosshair." msgstr "" "Opacité du réticule (entre 0 et 255).\n" -"Ceci s'applique également au réticule de l'objet." +"Cela s'applique également au réticule de l'objet." #: src/settings_translation_file.cpp msgid "Crosshair color" @@ -3193,7 +3278,7 @@ msgid "" "Also controls the object crosshair color" msgstr "" "Couleur du réticule (R,V,B).\n" -"Ceci s'applique également à la couleur du réticule de l'objet." +"Cela s'applique également à la couleur du réticule de l'objet." #: src/settings_translation_file.cpp msgid "Debug log file size threshold" @@ -3207,6 +3292,18 @@ msgstr "Niveau du journal de débogage" msgid "Debugging" msgstr "Débogage" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" +"Détermine la profondeur de couleur de la texture utilisée pour les " +"opérations de post-traitement.\n" +"Réduire cette valeur peut améliorer les performances, mais certains effets (" +"ex. : le tramage) nécessitent plus de 8 bits pour fonctionner." + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "Intervalle de mise à jour des objets sur le serveur" @@ -3246,8 +3343,8 @@ msgid "" "but also uses more resources." msgstr "" "Définir la qualité du filtrage des ombres.\n" -"Ceci simule l'effet d'ombres douces en appliquant un disque PCF ou Poisson " -"mais utilise également plus de ressources." +"Cela simule l'effet d'ombres douces en appliquant le PCF ou le disque de " +"Poisson mais utilise également plus de ressources." #: src/settings_translation_file.cpp msgid "" @@ -3265,7 +3362,7 @@ msgstr "" "Les anciens clients sont compatibles dans le sens où ils ne plantent pas " "lors de la connexion aux serveurs récents,\n" "mais ils peuvent ne pas prendre en charge certaines fonctionnalités.\n" -"Ceci permet un contrôle plus précis que « strict_protocol_version_checking »." +"Cela permet un contrôle plus précis que « strict_protocol_version_checking »." "\n" "Luanti applique toujours son propre minimum interne, activer « " "strict_protocol_version_checking » le remplace." @@ -3342,7 +3439,7 @@ msgid "" "down the rate of mesh updates, thus reducing jitter on slower clients." msgstr "" "Délai entre les mises à jour du maillage du client en ms.\n" -"Augmenter ceci ralentit le taux de mise à jour et réduit donc les " +"Augmenter cela ralentit le taux de mise à jour et réduit donc les " "tremblements sur les clients lents." #: src/settings_translation_file.cpp @@ -3386,18 +3483,10 @@ msgstr "" "Quand l'option « snowbiomes » est activée (avec le nouveau système de " "biomes), ce paramètre est ignoré." -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "Désynchroniser les animations de blocs" - #: src/settings_translation_file.cpp msgid "Developer Options" msgstr "Options de développeur" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "Particules au minage" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "Refuser les mots de passe vides" @@ -3430,6 +3519,18 @@ msgstr "Double-appui sur « saut » pour voler" msgid "Double-tapping the jump key toggles fly mode." msgstr "Double-appui sur la touche « saut » pour voler." +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" +"Dessine les triangles triés par transparence regroupés par leurs tampons de " +"maillage.\n" +"Cela empêche le tri par transparence entre les tampons de maillage, mais " +"évite les situations où le tri par transparence serait très lent autrement." + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "Afficher les informations de débogage de la génération de terrain." @@ -3490,7 +3591,7 @@ msgid "" msgstr "" "Activer le filtrage par disque de Poisson.\n" "Si activé, utilise le disque de Poisson pour créer des « ombres douces ». " -"Sinon, utilise le filtrage PCF." +"Sinon, utilise le PCF." #: src/settings_translation_file.cpp msgid "Enable Post Processing" @@ -3498,7 +3599,7 @@ msgstr "Activer le post-traitement" #: src/settings_translation_file.cpp msgid "Enable Raytraced Culling" -msgstr "Activer l'élimination des blocs invisibles par Ray Tracing" +msgstr "Activer l'élimination des blocs invisibles par lancer de rayons" #: src/settings_translation_file.cpp msgid "" @@ -3515,12 +3616,11 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" -"Activer les ombres colorées.\n" -"Sur les nœuds vraiment transparents, projette des ombres colorées. Ceci est " -"coûteux." +"Activer les ombres colorées pour les nœuds translucides.\n" +"Cela utilise beaucoup de ressources." #: src/settings_translation_file.cpp msgid "Enable console window" @@ -3609,12 +3709,10 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" "Activer/désactiver l'usage d'un serveur IPv6.\n" -"Ignoré si « bind_address » est activé.\n" -"A besoin de « enable_ipv6 » pour être activé." +"Ignoré si « bind_address » est activé." #: src/settings_translation_file.cpp msgid "" @@ -3633,14 +3731,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "Active l'animation des objets de l'inventaire." -#: src/settings_translation_file.cpp -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "" -"Active la mise en cache des mailles orientés « facedir ».\n" -"Ceci n'a d'effet que si les nuanceurs sont désactivées." - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "Active le débogage et la vérification des erreurs du pilote OpenGL." @@ -3886,7 +3976,7 @@ msgid "" "be\n" "sized 16, 32, 48, etc., so a mod requesting a size of 25 will get 32." msgstr "" -"Pour les polices de style pixel qui ne s'adaptent pas bien, ceci garantit " +"Pour les polices de style pixel qui ne s'adaptent pas bien, cela garantit " "que les tailles de police utilisées avec cette police sont toujours " "divisibles par cette valeur, en pixels.\n" "Par exemple une police de style pixel de 16 pixels de haut doit avoir cette " @@ -3965,7 +4055,7 @@ msgstr "" "Distance maximale à laquelle les clients ont connaissance des objets, " "établie en blocs de carte (16 nœuds).\n" "\n" -"Définir ceci plus grand que « active_block_range », ainsi le serveur " +"Définir cela plus grand que « active_block_range », ainsi le serveur " "maintient les objets actifs jusqu’à cette distance dans la direction où un " "joueur regarde (cela peut éviter que des mobs disparaissent soudainement de " "la vue)." @@ -3992,10 +4082,6 @@ msgstr "Taille de l'interface graphique" msgid "GUI scaling filter" msgstr "Filtrage des images de l'interface graphique" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "Filtrage de mise à l'échelle txr2img de l'interface graphique" - #: src/settings_translation_file.cpp msgid "Gamepads" msgstr "Manettes de jeu" @@ -4200,7 +4286,7 @@ msgid "" "Decrease this to increase liquid resistance to movement." msgstr "" "Ralentissement lors du déplacement dans un liquide.\n" -"Réduire ceci pour augmenter la résistance au mouvement." +"Réduire cette valeur pour augmenter la résistance au mouvement." #: src/settings_translation_file.cpp msgid "How wide to make rivers." @@ -4262,16 +4348,6 @@ msgstr "" "Si activé, la touche « Aux1 » est utilisée à la place de la touche « Marcher " "lentement » pour monter ou descendre." -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" -"Si activé, l'enregistrement du compte est séparé de la connexion dans " -"l'interface utilisateur.\n" -"Si désactivé, les nouveaux comptes sont enregistrés automatiquement lors de " -"la connexion." - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -4297,6 +4373,17 @@ msgstr "" "Si activé, les joueurs ne peuvent pas se connecter sans un mot de passe ou " "de le remplacer par un mot de passe vide." +#: src/settings_translation_file.cpp +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" +"Si activé, l'enregistrement du compte sur le serveur est séparé de la " +"connexion dans l'interface utilisateur.\n" +"Si désactivé, la connexion à un serveur entraîne automatiquement " +"l'enregistrement d'un nouveau compte." + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4306,7 +4393,7 @@ msgid "" msgstr "" "Si activé, le serveur effectue la détermination des blocs de carte " "invisibles selon la position des yeux du joueur.\n" -"Ceci peut réduire le nombre de blocs envoyés au client de 50 à 80 %.\n" +"Cela peut réduire le nombre de blocs envoyés au client de 50 à 80 %.\n" "Les clients ne reçoivent plus la plupart des blocs invisibles, de sorte que " "l'utilité du mode sans collisions est réduite." @@ -4383,7 +4470,7 @@ msgid "" "This is usually only needed by core/builtin contributors" msgstr "" "Instrumenter « Intégré » (« builtin »).\n" -"Ceci est habituellement nécessaire seulement pour les développeurs " +"Cela est habituellement nécessaire seulement pour les développeurs " "principaux." #: src/settings_translation_file.cpp @@ -4422,10 +4509,6 @@ msgstr "" "Intervalle de sauvegarde des changements importants dans le monde, établi en " "secondes." -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "Intervalle d'envoi de l'heure aux clients, établi en secondes." - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "Animation des objets de l'inventaire" @@ -4666,7 +4749,7 @@ msgid "" "- trace" msgstr "" "Niveau de journalisation à écrire dans « debug.txt » :\n" -"– < rien > (pas de journalisation)\n" +"–  (pas de journalisation)\n" "– aucun (messages sans niveau)\n" "– erreur\n" "– avertissement\n" @@ -5160,10 +5243,6 @@ msgstr "" msgid "Maximum users" msgstr "Joueurs maximums" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "Mise en cache des maillages" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "Message du jour" @@ -5198,6 +5277,10 @@ msgid "Minimum limit of random number of small caves per mapchunk." msgstr "" "Limite minimale du nombre aléatoire de petites grottes par tranche de carte." +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "Nombre minimal de sommets pour les tampons de maillage" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "Mip-mapping" @@ -5294,12 +5377,12 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" "Nom du joueur.\n" -"Lorsqu'un serveur est lancé, les clients se connectant avec ce nom sont " -"administrateurs.\n" +"Lorsqu'un serveur est lancé, le client se connectant avec ce nom est " +"administrateur.\n" "Lors du démarrage à partir du menu principal, celui-ci est remplacé." #: src/settings_translation_file.cpp @@ -5527,7 +5610,7 @@ msgstr "" "des boutons de la souris.\n" "Activer cette option lorsque vous creusez ou placez trop souvent par " "accident.\n" -"Sur écrans tactiles, ceci a un effet seulement pour creuser." +"Sur écrans tactiles, cela a un effet seulement pour le minage." #: src/settings_translation_file.cpp msgid "Prevent mods from doing insecure things like running shell commands." @@ -5663,8 +5746,8 @@ msgstr "" "CHAT_MESSAGES : 2 (désactive l'appel « send_chat_message » côté client)\n" "READ_ITEMDEFS : 4 (désactive l'appel « get_item_def » côté client)\n" "READ_NODEDEFS : 8 (désactive l'appel « get_node_def » côté client)\n" -"LOOKUP_NODES_LIMIT : 16 (limite l'appel « get_node » côté client à « " -"csm_restriction_noderange »)\n" +"LOOKUP_NODES_LIMIT : 16 (limite l'appel « get_node » côté client à " +"« csm_restriction_noderange »)\n" "READ_PLAYERINFO : 32 (désactive l'appel « get_player_names » côté client)" #: src/settings_translation_file.cpp @@ -5762,7 +5845,7 @@ msgstr "" "Met à l'échelle l'interface graphique par une valeur spécifiée par " "l'utilisateur, à l'aide d'un filtre au plus proche voisin avec anticrénelage." "\n" -"Ceci lisse certains bords grossiers, et mélange les pixels en réduisant " +"Cela lisse certains bords grossiers, et mélange les pixels en réduisant " "l'échelle.\n" "Au détriment d'un effet de flou sur des pixels en bordure quand les images " "sont mises à l'échelle par des valeurs fractionnelles." @@ -5830,17 +5913,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5848,17 +5933,22 @@ msgstr "" "\n" "* Aucun – Pas d'anticrénelage (par défaut)\n" "\n" -"* FSAA – Anticrénelage de la scène complète (incompatible avec « Post-" -"traitement » et « Sous-échantillonnage »)\n" +"* FSAA – Anticrénelage matériel de la scène complète\n" "Alias anticrénelage multi-échantillon (MSAA), lisse les bords des blocs mais " "n'affecte pas l'intérieur des textures.\n" -"Un redémarrage est nécessaire pour modifier cette option.\n" "\n" -"* FXAA – Anticrénelage approximatif rapide (nécessite des nuanceurs)\n" +"Si le post-traitement est désactivé, la modification de FSAA nécessite un " +"redémarrage.\n" +"De même, si le post-traitement est désactivé, le FSAA ne fonctionne pas avec " +"le sous-échantillonnage,\n" +"pour un paramètre « Mode 3D » défini sur une autre valeur que celle par " +"défaut.\n" +"\n" +"* FXAA – Anticrénelage approximatif rapide\n" "Applique un filtre de post-traitement pour détecter et lisser les bords à " "contraste élevé, fournit un équilibre entre vitesse et qualité d'image.\n" "\n" -"* SSAA – Anticrénelage par super-échantillonnage (nécessite des nuanceurs)\n" +"* SSAA – Anticrénelage par super-échantillonnage\n" "Rendu d'une image haute résolution de la scène, puis réduit l'échelle pour " "diminuer le crénelage. C'est la méthode la plus lente et la plus précise." @@ -6097,24 +6187,12 @@ msgid "" msgstr "" "Définit la qualité de la texture de l'ombre sur 32 bits.\n" "Si désactivé, une texture de 16 bits est utilisée.\n" -"Ceci peut causer beaucoup plus d'artefacts sur l'ombre." +"Cela peut causer beaucoup plus d'artefacts sur l'ombre." #: src/settings_translation_file.cpp msgid "Shader path" msgstr "Chemin des nuanceurs" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "Nuanceurs" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" -"Les nuanceurs sont un élément fondamental du rendu et permettent des effets " -"visuels avancés." - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "Qualité du filtre d’ombre" @@ -6312,16 +6390,14 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" "Répartit une mise à jour complète de la carte des ombres sur un nombre donné " "d'images.\n" "Des valeurs plus élevées peuvent rendre les ombres plus lentes, des valeurs " -"plus faibles consomment plus de ressources.\n" -"Valeur minimale : 1 ; valeur maximale : 16" +"plus faibles consomment plus de ressources." #: src/settings_translation_file.cpp msgid "" @@ -6588,11 +6664,11 @@ msgid "" msgstr "" "Le rayon du volume de blocs autour de chaque joueur soumis au bloc actif, " "établi en blocs de carte (16 nœuds).\n" -"Dans les blocs actifs, les objets sont chargés et les « ABMs » sont " -"exécutés.\n" +"Dans les blocs actifs, les objets sont chargés et les « ABMs » sont exécutés." +"\n" "C'est également la distance minimale dans laquelle les objets actifs (mobs) " "sont conservés.\n" -"Ceci doit être configuré avec « active_object_send_range_blocks »." +"Cela doit être configuré avec « active_object_send_range_blocks »." #: src/settings_translation_file.cpp msgid "" @@ -6623,7 +6699,7 @@ msgstr "" "Intensité (obscurité) de l'ombrage des blocs avec l'occlusion ambiante.\n" "Les valeurs plus faibles sont plus sombres, les valeurs plus hautes sont " "plus claires.\n" -"Une plage valide de valeurs pour ceci se situe entre 0,25 et 4,0.\n" +"Une plage valide de valeurs pour cela se situe entre 0,25 et 4,0.\n" "Si la valeur est en dehors de cette plage alors elle est définie à la plus " "proche des valeurs valides." @@ -6701,10 +6777,6 @@ msgstr "" "Heure de la journée lorsqu'un nouveau monde est créé, en milliheures (0–" "23999)." -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "Intervalle d'envoi de l'heure" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "Vitesse du temps" @@ -6724,7 +6796,7 @@ msgid "" msgstr "" "Pour réduire le décalage, le transfert des blocs est ralenti quand un joueur " "construit quelque chose.\n" -"Ceci détermine la durée du ralentissement après placement ou destruction " +"Cela détermine la durée du ralentissement après placement ou destruction " "d'un nœud." #: src/settings_translation_file.cpp @@ -6769,7 +6841,11 @@ msgstr "Liquides translucides" #: src/settings_translation_file.cpp msgid "Transparency Sorting Distance" -msgstr "Distance de tri de la transparence" +msgstr "Tri de la transparence par distance" + +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "Tri de la transparence regroupés par tampons" #: src/settings_translation_file.cpp msgid "Trees noise" @@ -6838,14 +6914,20 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" "Le sous-échantillonnage ressemble à l'utilisation d'une résolution d'écran " "inférieure.\n" "Il ne s'applique qu'au rendu 3D, gardant l'interface graphique intacte.\n" -"Ceci doit donner un bonus de performance conséquent, au détriment de la " +"Cela doit donner un bonus de performance conséquent, au détriment de la " "qualité d'image.\n" -"Les valeurs plus élevées réduisent la qualité du détail des images." +"Les valeurs plus élevées réduisent la qualité du détail des images.\n" +"Note : le sous-échantillonnage n'est actuellement pas pris en charge,\n" +"si le paramètre « Mode 3D » est définie sur une autre valeur que celle par " +"défaut." #: src/settings_translation_file.cpp msgid "Unlimited player transfer distance" @@ -6867,19 +6949,19 @@ msgstr "Limite haute Y des donjons." msgid "Upper Y limit of floatlands." msgstr "Limite haute Y des terrains flottants." -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "Activer les nuages 3D au lieu des nuages 2D (plats)." - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "Utiliser l'animation des nuages pour l'arrière-plan du menu principal." #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" "Utiliser le filtrage anisotrope lorsque l'on regarde les textures sous un " -"certain angle." +"certain angle.\n" +"Cela apporte une amélioration significative lorsqu'il est utilisé avec le " +"mip-mapping." #: src/settings_translation_file.cpp msgid "Use bilinear filtering when scaling textures." @@ -6916,10 +6998,10 @@ msgid "" "This flag enables use of raytraced occlusion culling test for\n" "client mesh sizes smaller than 4x4x4 map blocks." msgstr "" -"Utiliser l'élimination des blocs invisibles par Ray Tracing avec le nouvel " -"algorithme.\n" +"Utiliser l'élimination des blocs invisibles par lancer de rayons avec le " +"nouvel algorithme.\n" "Cette option active l'utilisation du test d'élimination des blocs invisibles " -"par Ray Tracing,\n" +"par lancer de rayons,\n" "pour les maillages clients de taille inférieure à 4 × 4 × 4 blocs de carte." #: src/settings_translation_file.cpp @@ -7156,38 +7238,25 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" -"Quand « gui_scaling_filter_txr2img » est activé, copier les images du " -"matériel au logiciel pour mise à l'échelle.\n" -"Si désactivé, l'ancienne méthode de mise à l'échelle est utilisée, pour les " -"pilotes vidéos qui ne supportent pas le chargement des textures depuis le " -"matériel." - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" -"En utilisant le filtrage bilinéaire/trilinéaire/anisotrope, les textures de " -"basse résolution peuvent être floues.\n" -"Elles sont donc agrandies avec l'interpolation au plus proche voisin pour " -"préserver des pixels nets.\n" -"Ceci détermine la taille minimale pour les textures agrandies ;\n" +"En utilisant le filtrage bilinéaire/trilinéaire, les textures de basse " +"résolution peuvent être floues.\n" +"Cette option les agrandies automatiquement afin de préserver des pixels nets." +"\n" +"Cela définit la taille minimale pour les textures agrandies ;\n" "les valeurs plus élevées ont un rendu plus net, mais nécessitent plus de " -"mémoire. Les puissances de 2 sont recommandées.\n" -"Ce paramètre est appliqué seulement si le filtrage bilinéaire/trilinéaire/" -"anisotrope est activé.\n" -"Ceci est également utilisé comme taille de texture de nœud de base pour " +"mémoire.\n" +"Ce paramètre est appliqué UNIQUEMENT si l'un des filtres mentionnés est " +"activé.\n" +"Cela est également utilisé comme taille de texture de nœud de base pour " "l'agrandissement automatique des textures alignées sur le monde." #: src/settings_translation_file.cpp @@ -7198,12 +7267,6 @@ msgstr "" "Si l'arrière-plan des badges doit être affiché par défaut.\n" "Les mods peuvent toujours définir un arrière-plan." -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" -"Détermine la désynchronisation des animations de texture de nœud par bloc de " -"carte." - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -7230,13 +7293,11 @@ msgstr "Détermine la visibilité du brouillard au bout de l'aire visible." #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" -"S'il faut couper le son. Vous pouvez réactiver le son à tout moment, sauf si " -"le système audio est désactivé (« enable_sound=false »).\n" +"S'il faut couper le son. Vous pouvez réactiver le son à tout moment.\n" "Dans le jeu, vous pouvez basculer l'état du son avec la touche « Muet » ou " "en utilisant le menu pause." @@ -7335,7 +7396,7 @@ msgstr "" "Distance Y sur laquelle les terrains flottants passent d'une densité " "maximale à une densité nulle.\n" "L'effilage commence à cette distance, depuis la limite en Y.\n" -"Pour une couche solide de terrain flottant, ceci contrôle la hauteur des " +"Pour une couche solide de terrain flottant, cela contrôle la hauteur des " "collines et des montagnes.\n" "Doit être inférieure ou égale à la moitié de la distance entre les limites Y." @@ -7428,6 +7489,9 @@ msgstr "Limite parallèle de cURL" #~ "Noter que le champ de l'adresse dans le menu principal remplace ce " #~ "paramètre." +#~ msgid "Adds particles when digging a node." +#~ msgstr "Ajoute des particules lorsqu'un bloc est creusé." + #~ msgid "" #~ "Adjust dpi configuration to your screen (non X11/Android only) e.g. for " #~ "4k screens." @@ -7587,6 +7651,9 @@ msgstr "Limite parallèle de cURL" #~ msgid "Clean transparent textures" #~ msgstr "Textures transparentes filtrées" +#~ msgid "Clouds are a client-side effect." +#~ msgstr "Activer les nuages côté client." + #~ msgid "Command key" #~ msgstr "Touche commande" @@ -7684,9 +7751,16 @@ msgstr "Limite parallèle de cURL" #~ msgid "Darkness sharpness" #~ msgstr "Démarcation de l'obscurité" +#~ msgid "Debug info and profiler graph hidden" +#~ msgstr "Informations de débogage et graphique du profileur cachés" + #~ msgid "Debug info toggle key" #~ msgstr "Touche infos de débogage" +#~ msgid "Debug info, profiler graph, and wireframe hidden" +#~ msgstr "" +#~ "Informations de débogage, graphique du profileur et fils de fer cachés" + #~ msgid "Dec. volume key" #~ msgstr "Touche réduire le volume" @@ -7740,9 +7814,15 @@ msgstr "Limite parallèle de cURL" #~ msgid "Del. Favorite" #~ msgstr "Supprimer favori" +#~ msgid "Desynchronize block animation" +#~ msgstr "Désynchroniser les animations de blocs" + #~ msgid "Dig key" #~ msgstr "Touche creuser" +#~ msgid "Digging particles" +#~ msgstr "Particules au minage" + #~ msgid "Disable anticheat" #~ msgstr "Désactiver l'anti-triche" @@ -7770,6 +7850,9 @@ msgstr "Limite parallèle de cURL" #~ msgid "Dynamic shadows:" #~ msgstr "Ombres dynamiques :" +#~ msgid "Enable" +#~ msgstr "Activer" + #~ msgid "Enable VBO" #~ msgstr "Activer Vertex Buffer Object: objet tampon de vertex" @@ -7804,6 +7887,13 @@ msgstr "Limite parallèle de cURL" #~ "ou bien celui-ci est auto-généré.\n" #~ "Nécessite les shaders pour être activé." +#~ msgid "" +#~ "Enables caching of facedir rotated meshes.\n" +#~ "This is only effective with shaders disabled." +#~ msgstr "" +#~ "Active la mise en cache des mailles orientés « facedir ».\n" +#~ "Ceci n'a d'effet que si les nuanceurs sont désactivées." + #~ msgid "Enables filmic tone mapping" #~ msgstr "Autorise le mappage tonal cinématographique" @@ -7851,9 +7941,6 @@ msgstr "Limite parallèle de cURL" #~ "Option expérimentale, peut causer un espace vide visible entre les blocs\n" #~ "quand paramétré avec un nombre supérieur à 0." -#~ msgid "FPS in pause menu" -#~ msgstr "FPS maximum sur le menu pause" - #~ msgid "FSAA" #~ msgstr "FSAA" @@ -7939,8 +8026,8 @@ msgstr "Limite parallèle de cURL" #~ msgid "Full screen BPP" #~ msgstr "Bits par pixel en mode plein écran" -#~ msgid "Game" -#~ msgstr "Jeu" +#~ msgid "GUI scaling filter txr2img" +#~ msgstr "Filtrage de mise à l'échelle txr2img de l'interface graphique" #~ msgid "Gamma" #~ msgstr "Gamma" @@ -8109,661 +8196,667 @@ msgstr "Limite parallèle de cURL" #~ msgid "Instrumentation" #~ msgstr "Instrumentalisation" +#~ msgid "Interval of sending time of day to clients, stated in seconds." +#~ msgstr "Intervalle d'envoi de l'heure aux clients, établi en secondes." + #~ msgid "Invalid gamespec." #~ msgstr "Jeu spécifié invalide." #~ msgid "Inventory key" #~ msgstr "Touche inventaire" +#~ msgid "Irrlicht device:" +#~ msgstr "Périphérique Irrlicht :" + #~ msgid "Jump key" #~ msgstr "Touche sauter" #~ msgid "" #~ "Key for decreasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour réduire la distance d'affichage.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for decreasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour réduire le volume.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for digging.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour creuser.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for dropping the currently selected item.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour lâcher l'objet sélectionné.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour augmenter la distance d'affichage.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour augmenter le volume.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for jumping.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour sauter.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving fast in fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour se déplacer rapidement en mode rapide.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player backward.\n" #~ "Will also disable autoforward, when active.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour déplacer le joueur en arrière.\n" #~ "Désactive également l’avance automatique, lorsqu’elle est active.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player forward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour déplacer le joueur en avant.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player left.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour déplacer le joueur à gauche.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player right.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour déplacer le joueur à droite.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for muting the game.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour rendre le jeu muet.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour ouvrir la fenêtre de tchat pour entrer des commandes.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type local commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour ouvrir la fenêtre de tchat pour entrer des commandes " #~ "locales.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour ouvrir la fenêtre de tchat.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the inventory.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour ouvrir l'inventaire.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for placing.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour placer.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 11th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour sélectionner la 11ᵉ case de la barre d'action.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 12th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour sélectionner la 12ᵉ case de la barre d'action.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 13th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour sélectionner la 13ᵉ case de la barre d'action.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 14th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour sélectionner la 14ᵉ case de la barre d'action.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 15th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour sélectionner la 15ᵉ case de la barre d'action.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 16th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour sélectionner la 16ᵉ case de la barre d'action.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 17th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour sélectionner la 17ᵉ case de la barre d'action.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 18th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour sélectionner la 18ᵉ case de la barre d'action.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 19th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour sélectionner la 19ᵉ case de la barre d'action.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 20th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour sélectionner la 20ᵉ case de la barre d'action.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 21st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour sélectionner la 21ᵉ case de la barre d'action.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 22nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour sélectionner la 22ᵉ case de la barre d'action.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 23rd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour sélectionner la 23ᵉ case de la barre d'action.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 24th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour sélectionner la 24ᵉ case de la barre d'action.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 25th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour sélectionner la 25ᵉ case de la barre d'action.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 26th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour sélectionner la 26ᵉ case des la barre d'action.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 27th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour sélectionner la 27ᵉ case de la barre d'action.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 28th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour sélectionner la 28ᵉ case de la barre d'action.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 29th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour sélectionner la 29ᵉ case de la barre d'action.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 30th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour sélectionner la 30ᵉ case de la barre d'action.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 31st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour sélectionner la 31ᵉ case de la barre d'action.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 32nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour sélectionner la 32ᵉ case de la barre d'action.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the eighth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour sélectionner la huitième case de la barre d'action.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the fifth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour sélectionner la cinquième case de la barre d'action.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the first hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour sélectionner la première case de la barre d'action.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the fourth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour sélectionner la quatrième case de la barre d'action.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the next item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour sélectionner l'objet suivant dans la barre d'action.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the ninth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour sélectionner la neuvième case de la barre d'action.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the previous item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour sélectionner l'objet précédent dans la barre d'action.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the second hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour sélectionner la deuxième case de la barre d'action.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the seventh hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour sélectionner la septième case de la barre d'action.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the sixth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour sélectionner la sixième case de la barre d'action.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the tenth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour sélectionner la dixième case de la barre d'action.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the third hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour sélectionner la troisième case de la barre d'action.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for sneaking.\n" #~ "Also used for climbing down and descending in water if aux1_descends is " #~ "disabled.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour se déplacer lentement.\n" #~ "Également utilisée pour descendre et plonger dans l'eau si " #~ "« aux1_descends » est désactivé.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for switching between first- and third-person camera.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour changer de vue entre la première et troisième personne.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for taking screenshots.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour prendre des captures d'écran.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling autoforward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche d'avance automatique.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling cinematic mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour passer en mode cinématique.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling display of minimap.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour afficher/cacher la mini-carte.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour passer en mode rapide.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling flying.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour voler.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling noclip mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour passer en mode sans collision.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling pitch move mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour passer en mode mouvement de tangage.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the camera update. Only used for development\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche de mise à jour de la caméra. Seulement utilisé pour le " #~ "développement.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of chat.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour afficher/cacher la zone de tchat.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of debug info.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour afficher/cacher les infos de débogage.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of fog.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour afficher/cacher le brouillard.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the HUD.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour afficher/masquer le HUD (affichage tête haute).\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the large chat console.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour afficher/cacher la grande console de tchat.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the profiler. Used for development.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour afficher/cacher le profileur. Utilisé pour le développement.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling unlimited view range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour activer/désactiver la distance de vue illimitée.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key to use view zoom when possible.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Touche pour zoomer si possible.\n" -#~ "Voir http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Voir http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Keybindings. (If this menu screws up, remove stuff from minetest.conf)" @@ -8838,6 +8931,9 @@ msgstr "Limite parallèle de cURL" #~ msgid "Menus" #~ msgstr "Menus" +#~ msgid "Mesh cache" +#~ msgstr "Mise en cache des maillages" + #~ msgid "Minimap" #~ msgstr "Mini-carte" @@ -9057,6 +9153,9 @@ msgstr "Limite parallèle de cURL" #~ "carte sont plus rapides, mais cela consomme plus de ressources.\n" #~ "Valeur minimale 0,001 seconde et maximale 0,2 seconde." +#~ msgid "Shaders" +#~ msgstr "Nuanceurs" + #~ msgid "Shaders (experimental)" #~ msgstr "Shaders (expérimental)" @@ -9071,6 +9170,16 @@ msgstr "Limite parallèle de cURL" #~ "Les nuanceurs permettent des effets visuels avancés et peuvent améliorer " #~ "les performances de certaines cartes graphiques." +#~ msgid "" +#~ "Shaders are a fundamental part of rendering and enable advanced visual " +#~ "effects." +#~ msgstr "" +#~ "Les nuanceurs sont un élément fondamental du rendu et permettent des " +#~ "effets visuels avancés." + +#~ msgid "Shaders are disabled." +#~ msgstr "Les nuanceurs sont désactivés." + #~ msgid "Shadow limit" #~ msgstr "Limite des ombres" @@ -9102,6 +9211,9 @@ msgstr "Limite parallèle de cURL" #~ msgid "Smooths rotation of camera. 0 to disable." #~ msgstr "Lisse la rotation de la caméra. 0 pour désactiver." +#~ msgid "Sound system is disabled" +#~ msgstr "Le système audio est désactivé" + #~ msgid "Special" #~ msgstr "Spécial" @@ -9152,6 +9264,12 @@ msgstr "Limite parallèle de cURL" #~ msgid "This font will be used for certain languages." #~ msgstr "Cette police sera utilisée pour certaines langues." +#~ msgid "This is not a recommended configuration." +#~ msgstr "Cette configuration n'est pas recommandée." + +#~ msgid "Time send interval" +#~ msgstr "Intervalle d'envoi de l'heure" + #~ msgid "To enable shaders the OpenGL driver needs to be used." #~ msgstr "Pour activer les shaders, le pilote OpenGL doit être utilisé." @@ -9278,6 +9396,18 @@ msgstr "Limite parallèle de cURL" #~ msgid "Waving water" #~ msgstr "Vagues" +#~ msgid "" +#~ "When gui_scaling_filter_txr2img is true, copy those images\n" +#~ "from hardware to software for scaling. When false, fall back\n" +#~ "to the old scaling method, for video drivers that don't\n" +#~ "properly support downloading textures back from hardware." +#~ msgstr "" +#~ "Quand « gui_scaling_filter_txr2img » est activé, copier les images du " +#~ "matériel au logiciel pour mise à l'échelle.\n" +#~ "Si désactivé, l'ancienne méthode de mise à l'échelle est utilisée, pour " +#~ "les pilotes vidéos qui ne supportent pas le chargement des textures " +#~ "depuis le matériel." + #~ msgid "" #~ "Whether FreeType fonts are used, requires FreeType support to be compiled " #~ "in.\n" @@ -9291,6 +9421,12 @@ msgstr "Limite parallèle de cURL" #~ msgid "Whether dungeons occasionally project from the terrain." #~ msgstr "Si les donjons font parfois saillie du terrain." +#~ msgid "" +#~ "Whether node texture animations should be desynchronized per mapblock." +#~ msgstr "" +#~ "Détermine la désynchronisation des animations de texture de nœud par bloc " +#~ "de carte." + #~ msgid "Whether to allow players to damage and kill each other." #~ msgstr "Détermine la possibilité des joueurs de tuer d'autres joueurs." diff --git a/po/ga/luanti.po b/po/ga/luanti.po index 3c1d5aa14..d897f814c 100644 --- a/po/ga/luanti.po +++ b/po/ga/luanti.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: minetest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" "PO-Revision-Date: 2023-12-03 17:17+0000\n" "Last-Translator: Krock \n" "Language-Team: Irish ] [-t]" msgstr "" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Set" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "Cealaigh" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "Sábháil" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "Síol" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "Cuardaigh" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Touchscreen layout" +msgstr "Tairseach ollphluaise" + +#: builtin/common/settings/dlg_settings.lua +msgid "pause_menu" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Client Mods" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "" + #: builtin/fstk/ui.lua msgid "" msgstr "" @@ -163,7 +402,6 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "" @@ -199,11 +437,6 @@ msgstr "" msgid "No packages could be retrieved" msgstr "" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "" @@ -248,18 +481,6 @@ msgstr "" msgid "Base Game:" msgstr "" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "Cealaigh" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -384,6 +605,12 @@ msgstr "" msgid "Unable to install a $1 as a texture pack" msgstr "" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "" @@ -446,12 +673,6 @@ msgstr "" msgid "Optional dependencies:" msgstr "" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "Sábháil" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "Domhan:" @@ -602,11 +823,6 @@ msgstr "Aibhneacha" msgid "Sea level rivers" msgstr "" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "Síol" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "" @@ -742,6 +958,22 @@ msgid "" "override any renaming here." msgstr "" +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Expand all" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "" @@ -766,7 +998,7 @@ msgstr "" msgid "Visit website" msgstr "" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "" @@ -778,223 +1010,6 @@ msgstr "" msgid "Try reenabling public serverlist and check your internet connection." msgstr "" -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Set" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "Cuardaigh" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "Enable" -msgstr "" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "Shaders are disabled." -msgstr "" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "" @@ -1015,10 +1030,6 @@ msgstr "" msgid "Core Team" msgstr "" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "" @@ -1163,10 +1174,20 @@ msgstr "" msgid "You need to install a game before you can create a world." msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "Add favorite" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Clients:\n" +"$1" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "" @@ -1180,6 +1201,11 @@ msgstr "" msgid "Favorites" msgstr "" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "Cluichí" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "" @@ -1192,10 +1218,26 @@ msgstr "" msgid "Login" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +msgid "Open server website" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Public Servers" msgstr "" @@ -1278,23 +1320,6 @@ msgid "" "Check debug.txt for details." msgstr "" -#: src/client/game.cpp -msgid "- Mode: " -msgstr "" - -#: src/client/game.cpp -msgid "- Public: " -msgstr "" - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "" - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "" - #: src/client/game.cpp msgid "A serialization error occurred:" msgstr "" @@ -1304,6 +1329,10 @@ msgstr "" msgid "Access denied. Reason: %s" msgstr "" +#: src/client/game.cpp +msgid "All debug info hidden" +msgstr "" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "" @@ -1324,6 +1353,10 @@ msgstr "" msgid "Block bounds shown for nearby blocks" msgstr "" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "" @@ -1336,10 +1369,6 @@ msgstr "" msgid "Can't show block bounds (disabled by game or mod)" msgstr "" -#: src/client/game.cpp -msgid "Change Password" -msgstr "Athraigh Pasfhocal" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "" @@ -1368,26 +1397,6 @@ msgstr "" msgid "Connection failed for unknown reason" msgstr "" -#: src/client/game.cpp -msgid "Continue" -msgstr "" - -#: src/client/game.cpp -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1401,31 +1410,15 @@ msgstr "" msgid "Creating server..." msgstr "" -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "" - #: src/client/game.cpp msgid "Debug info shown" msgstr "" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "" - #: src/client/game.cpp #, c-format msgid "Error creating client: %s" msgstr "" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "" @@ -1462,18 +1455,6 @@ msgstr "" msgid "Fog enabled by game or mod" msgstr "" -#: src/client/game.cpp -msgid "Game info:" -msgstr "" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "" - #: src/client/game.cpp msgid "Item definitions..." msgstr "" @@ -1510,14 +1491,6 @@ msgstr "" msgid "Node definitions..." msgstr "" -#: src/client/game.cpp -msgid "Off" -msgstr "" - -#: src/client/game.cpp -msgid "On" -msgstr "" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "" @@ -1530,38 +1503,22 @@ msgstr "" msgid "Profiler graph shown" msgstr "" -#: src/client/game.cpp -msgid "Remote server" -msgstr "" - #: src/client/game.cpp msgid "Resolving address..." msgstr "" -#: src/client/game.cpp -msgid "Respawn" -msgstr "Athsceith" - #: src/client/game.cpp msgid "Shutting down..." msgstr "" -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "" - #: src/client/game.cpp msgid "Sound muted" msgstr "" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "" @@ -1633,18 +1590,103 @@ msgstr "" msgid "Volume changed to %d%%" msgstr "" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "" -#: src/client/game.cpp -msgid "You died" -msgstr "Fuair tú bás" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "" + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "Athraigh Pasfhocal" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "Athsceith" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "Fuair tú bás" + #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" msgstr "" @@ -1972,7 +2014,7 @@ msgid "Failed to compile the \"%s\" shader." msgstr "" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." +msgid "GLSL is not supported by the driver" msgstr "" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" @@ -2020,7 +2062,7 @@ msgstr "" msgid "Automatic jumping" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "" @@ -2032,7 +2074,7 @@ msgstr "" msgid "Block bounds" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "" @@ -2056,7 +2098,7 @@ msgstr "" msgid "Double tap \"jump\" to toggle fly" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "" @@ -2072,11 +2114,11 @@ msgstr "" msgid "Inc. volume" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "" @@ -2108,7 +2150,7 @@ msgstr "" msgid "Prev. item" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "" @@ -2120,7 +2162,7 @@ msgstr "" msgid "Screenshot" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "" @@ -2128,15 +2170,15 @@ msgstr "" msgid "Toggle HUD" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "" @@ -2144,11 +2186,11 @@ msgstr "" msgid "Toggle fog" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "" @@ -2156,7 +2198,7 @@ msgstr "" msgid "Toggle pitchmove" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "" @@ -2192,7 +2234,7 @@ msgstr "Sean Pasfhocal" msgid "Passwords do not match!" msgstr "Ní hionann na pasfhocail!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "" @@ -2205,15 +2247,43 @@ msgstr "" msgid "Sound Volume: %d%%" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +msgid "Add button" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Done" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Remove" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp msgid "Joystick" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Toggle debug" msgstr "" @@ -2409,8 +2479,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" #: src/settings_translation_file.cpp @@ -2463,10 +2532,6 @@ msgstr "" msgid "Active object send range" msgstr "" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "" - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2489,6 +2554,16 @@ msgstr "" msgid "Advanced" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Allow clouds to look 3D instead of flat." +msgstr "" + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "" @@ -2857,11 +2932,11 @@ msgid "Clouds" msgstr "" #: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." +msgid "Clouds in menu" msgstr "" #: src/settings_translation_file.cpp -msgid "Clouds in menu" +msgid "Color depth for post-processing texture" msgstr "" #: src/settings_translation_file.cpp @@ -2886,7 +2961,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" #: src/settings_translation_file.cpp @@ -3021,6 +3096,14 @@ msgstr "" msgid "Debugging" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "" @@ -3172,18 +3255,10 @@ msgid "" "When the 'snowbiomes' flag is enabled, this is ignored." msgstr "" -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "" - #: src/settings_translation_file.cpp msgid "Developer Options" msgstr "" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "Dícheadaigh pasfhocail folamh" @@ -3211,6 +3286,14 @@ msgstr "" msgid "Double-tapping the jump key toggles fly mode." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "" @@ -3284,8 +3367,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" #: src/settings_translation_file.cpp @@ -3358,8 +3441,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" #: src/settings_translation_file.cpp @@ -3374,12 +3456,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "" - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -3681,10 +3757,6 @@ msgstr "" msgid "GUI scaling filter" msgstr "" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "" - #: src/settings_translation_file.cpp msgid "Gamepads" msgstr "" @@ -3908,12 +3980,6 @@ msgid "" "descending." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -3932,6 +3998,13 @@ msgid "" "empty password." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4026,10 +4099,6 @@ msgstr "" msgid "Interval of saving important changes in the world, stated in seconds." msgstr "" -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "" - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "" @@ -4644,10 +4713,6 @@ msgstr "" msgid "Maximum users" msgstr "" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "" @@ -4680,6 +4745,10 @@ msgstr "" msgid "Minimum limit of random number of small caves per mapchunk." msgstr "" +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "" @@ -4770,7 +4839,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" @@ -5209,17 +5278,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5412,16 +5483,6 @@ msgstr "" msgid "Shader path" msgstr "" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "" @@ -5582,10 +5643,9 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" #: src/settings_translation_file.cpp @@ -5864,10 +5924,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "" -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "" @@ -5927,6 +5983,10 @@ msgstr "" msgid "Transparency Sorting Distance" msgstr "" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "" @@ -5977,7 +6037,10 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" #: src/settings_translation_file.cpp @@ -6000,16 +6063,14 @@ msgstr "" msgid "Upper Y limit of floatlands." msgstr "" -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "" - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "" #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" #: src/settings_translation_file.cpp @@ -6246,20 +6307,12 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -6270,10 +6323,6 @@ msgid "" "Mods may still set a background." msgstr "" -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -6296,8 +6345,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" diff --git a/po/gd/luanti.po b/po/gd/luanti.po index 6ec37f392..26dddc5d8 100644 --- a/po/gd/luanti.po +++ b/po/gd/luanti.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: minetest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" "PO-Revision-Date: 2023-08-17 10:48+0000\n" "Last-Translator: Eoghan Murray \n" "Language-Team: Gaelic ] [-t]" msgstr "" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Set" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Touchscreen layout" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "pause_menu" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Client Mods" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "" + #: builtin/fstk/ui.lua msgid "" msgstr "" @@ -164,7 +402,6 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua #, fuzzy msgid "Back" msgstr "Backspace" @@ -201,11 +438,6 @@ msgstr "" msgid "No packages could be retrieved" msgstr "" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "" @@ -250,18 +482,6 @@ msgstr "" msgid "Base Game:" msgstr "" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -384,6 +604,12 @@ msgstr "" msgid "Unable to install a $1 as a texture pack" msgstr "" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "" @@ -446,12 +672,6 @@ msgstr "" msgid "Optional dependencies:" msgstr "" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "" @@ -602,11 +822,6 @@ msgstr "Aibhnean" msgid "Sea level rivers" msgstr "Aibhnean air àirde na mara" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "" @@ -743,6 +958,22 @@ msgid "" "override any renaming here." msgstr "" +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Expand all" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "" @@ -767,7 +998,7 @@ msgstr "" msgid "Visit website" msgstr "" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "" @@ -779,223 +1010,6 @@ msgstr "" msgid "Try reenabling public serverlist and check your internet connection." msgstr "" -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Set" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "Enable" -msgstr "" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "Shaders are disabled." -msgstr "" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "" @@ -1016,10 +1030,6 @@ msgstr "" msgid "Core Team" msgstr "" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "" @@ -1165,11 +1175,21 @@ msgstr "" msgid "You need to install a game before you can create a world." msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "Add favorite" +msgstr "" + #: builtin/mainmenu/tab_online.lua #, fuzzy msgid "Address" msgstr " " +#: builtin/mainmenu/tab_online.lua +msgid "" +"Clients:\n" +"$1" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "" @@ -1184,6 +1204,10 @@ msgstr "– Dochann: " msgid "Favorites" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "Game: $1" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "" @@ -1196,10 +1220,26 @@ msgstr "" msgid "Login" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +msgid "Open server website" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua #, fuzzy msgid "Public Servers" @@ -1285,27 +1325,6 @@ msgid "" "Check debug.txt for details." msgstr "" -#: src/client/game.cpp -#, fuzzy -msgid "- Mode: " -msgstr " " - -#: src/client/game.cpp -#, fuzzy -msgid "- Public: " -msgstr " " - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -#, fuzzy -msgid "- PvP: " -msgstr " " - -#: src/client/game.cpp -#, fuzzy -msgid "- Server Name: " -msgstr " " - #: src/client/game.cpp msgid "A serialization error occurred:" msgstr "" @@ -1315,6 +1334,10 @@ msgstr "" msgid "Access denied. Reason: %s" msgstr "" +#: src/client/game.cpp +msgid "All debug info hidden" +msgstr "" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "" @@ -1335,6 +1358,10 @@ msgstr "" msgid "Block bounds shown for nearby blocks" msgstr "" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "" @@ -1347,10 +1374,6 @@ msgstr "" msgid "Can't show block bounds (disabled by game or mod)" msgstr "" -#: src/client/game.cpp -msgid "Change Password" -msgstr "" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "" @@ -1379,26 +1402,6 @@ msgstr "" msgid "Connection failed for unknown reason" msgstr "" -#: src/client/game.cpp -msgid "Continue" -msgstr "" - -#: src/client/game.cpp -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1412,31 +1415,15 @@ msgstr "" msgid "Creating server..." msgstr "" -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "" - #: src/client/game.cpp msgid "Debug info shown" msgstr "" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "" - #: src/client/game.cpp #, c-format msgid "Error creating client: %s" msgstr "" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "" @@ -1473,18 +1460,6 @@ msgstr "" msgid "Fog enabled by game or mod" msgstr "" -#: src/client/game.cpp -msgid "Game info:" -msgstr "Fiosrachadh mun gheama:" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "" - #: src/client/game.cpp msgid "Item definitions..." msgstr "" @@ -1521,14 +1496,6 @@ msgstr "Tha am modh gun bhearradh an comas (an aire: gun sochair “noclip”)" msgid "Node definitions..." msgstr "" -#: src/client/game.cpp -msgid "Off" -msgstr "" - -#: src/client/game.cpp -msgid "On" -msgstr "" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "" @@ -1541,38 +1508,22 @@ msgstr "" msgid "Profiler graph shown" msgstr "" -#: src/client/game.cpp -msgid "Remote server" -msgstr "" - #: src/client/game.cpp msgid "Resolving address..." msgstr "" -#: src/client/game.cpp -msgid "Respawn" -msgstr "" - #: src/client/game.cpp msgid "Shutting down..." msgstr "" -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "" - #: src/client/game.cpp msgid "Sound muted" msgstr "" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "" @@ -1645,16 +1596,105 @@ msgstr "" msgid "Volume changed to %d%%" msgstr "" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "" #: src/client/game.cpp -msgid "You died" +msgid "Zoom currently disabled by game or mod" msgstr "" -#: src/client/game.cpp -msgid "Zoom currently disabled by game or mod" +#: src/client/game_formspec.cpp +#, fuzzy +msgid "- Mode: " +msgstr " " + +#: src/client/game_formspec.cpp +#, fuzzy +msgid "- Public: " +msgstr " " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +#, fuzzy +msgid "- PvP: " +msgstr " " + +#: src/client/game_formspec.cpp +#, fuzzy +msgid "- Server Name: " +msgstr " " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "Fiosrachadh mun gheama:" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "You died" msgstr "" #: src/client/gameui.cpp @@ -1986,7 +2026,7 @@ msgid "Failed to compile the \"%s\" shader." msgstr "" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." +msgid "GLSL is not supported by the driver" msgstr "" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" @@ -2035,7 +2075,7 @@ msgstr "" msgid "Automatic jumping" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "" @@ -2047,7 +2087,7 @@ msgstr "" msgid "Block bounds" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "" @@ -2071,7 +2111,7 @@ msgstr "" msgid "Double tap \"jump\" to toggle fly" msgstr "Thoir gnogag dhùbailte air “leum” airson sgiathadh a thoglachadh" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "" @@ -2087,11 +2127,11 @@ msgstr "Meudaich an t-astar" msgid "Inc. volume" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "" @@ -2123,7 +2163,7 @@ msgstr "" msgid "Prev. item" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "" @@ -2135,7 +2175,7 @@ msgstr "" msgid "Screenshot" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "Tàislich" @@ -2143,15 +2183,15 @@ msgstr "Tàislich" msgid "Toggle HUD" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "Toglaich sgiathadh" @@ -2159,11 +2199,11 @@ msgstr "Toglaich sgiathadh" msgid "Toggle fog" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "Toglaich am modh gun bhearradh" @@ -2171,7 +2211,7 @@ msgstr "Toglaich am modh gun bhearradh" msgid "Toggle pitchmove" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "" @@ -2207,7 +2247,7 @@ msgstr "" msgid "Passwords do not match!" msgstr "" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "" @@ -2220,15 +2260,43 @@ msgstr "" msgid "Sound Volume: %d%%" msgstr " " -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +msgid "Add button" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Done" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Remove" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp msgid "Joystick" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Toggle debug" msgstr "Dì-bhugachadh gineadair nam mapa" @@ -2432,8 +2500,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" #: src/settings_translation_file.cpp @@ -2486,10 +2553,6 @@ msgstr "" msgid "Active object send range" msgstr "" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "" - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2512,6 +2575,16 @@ msgstr "" msgid "Advanced" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Allow clouds to look 3D instead of flat." +msgstr "" + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "" @@ -2891,11 +2964,11 @@ msgid "Clouds" msgstr "" #: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." +msgid "Clouds in menu" msgstr "" #: src/settings_translation_file.cpp -msgid "Clouds in menu" +msgid "Color depth for post-processing texture" msgstr "" #: src/settings_translation_file.cpp @@ -2920,7 +2993,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" #: src/settings_translation_file.cpp @@ -3056,6 +3129,14 @@ msgstr "Ìre an loga dì-bhugachaidh" msgid "Debugging" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "" @@ -3209,18 +3290,10 @@ msgid "" "When the 'snowbiomes' flag is enabled, this is ignored." msgstr "" -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "" - #: src/settings_translation_file.cpp msgid "Developer Options" msgstr "" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "" @@ -3248,6 +3321,14 @@ msgstr "Thoir gnogag dhùbailte airson leum no sgiathadh" msgid "Double-tapping the jump key toggles fly mode." msgstr "Toglaichidh gnogag dhùbailte air iuchair an leuma am modh sgiathaidh." +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "Dumpaich fiosrachadh dì-bhugachaidh aig gineadair nam mapa." @@ -3321,8 +3402,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" #: src/settings_translation_file.cpp @@ -3395,8 +3476,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" #: src/settings_translation_file.cpp @@ -3411,12 +3491,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "" - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -3729,10 +3803,6 @@ msgstr "" msgid "GUI scaling filter" msgstr "" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "" - #: src/settings_translation_file.cpp msgid "Gamepads" msgstr "" @@ -3974,12 +4044,6 @@ msgstr "" "chleachdadh\n" "airson dìreadh." -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -3998,6 +4062,13 @@ msgid "" "empty password." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4097,10 +4168,6 @@ msgstr "" msgid "Interval of saving important changes in the world, stated in seconds." msgstr "" -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "" - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "" @@ -4762,10 +4829,6 @@ msgstr "" msgid "Maximum users" msgstr "" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "" @@ -4800,6 +4863,10 @@ msgid "Minimum limit of random number of small caves per mapchunk." msgstr "" "An àireamh as lugha de dh’uamhan beaga air thuaiream anns gach cnap mapa." +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "" @@ -4894,7 +4961,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" @@ -5341,17 +5408,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5546,16 +5615,6 @@ msgstr "" msgid "Shader path" msgstr "" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "" @@ -5724,10 +5783,9 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" #: src/settings_translation_file.cpp @@ -6025,10 +6083,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "" -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "" @@ -6087,6 +6141,10 @@ msgstr "" msgid "Transparency Sorting Distance" msgstr "" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "" @@ -6141,7 +6199,10 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" #: src/settings_translation_file.cpp @@ -6164,16 +6225,14 @@ msgstr "" msgid "Upper Y limit of floatlands." msgstr "" -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "" - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "" #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" #: src/settings_translation_file.cpp @@ -6412,20 +6471,12 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -6436,10 +6487,6 @@ msgid "" "Mods may still set a background." msgstr "" -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -6462,8 +6509,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -6782,386 +6828,386 @@ msgstr "" #, fuzzy #~ msgid "" #~ "Key for digging.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "An iuchair a thoglaicheas an sgiathadh.\n" -#~ "Faic http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Faic http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving fast in fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "An iuchair a ghluaiseas gu luath sa mhodh luath.\n" -#~ "Faic http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Faic http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player left.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "An iuchair a ghluaiseas an cluicheadair dhan taobh chlì.\n" -#~ "Faic http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Faic http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player right.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "An iuchair a ghluaiseas an cluicheadair dhan taobh deas.\n" -#~ "Faic http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Faic http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for placing.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "An iuchair a thoglaicheas an sgiathadh.\n" -#~ "Faic http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Faic http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 11th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "An iuchair a thaghas an 11mh slot dhen ghrad-bhàr.\n" -#~ "Faic http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Faic http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 12th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "An iuchair a thaghas an 12mh slot dhen ghrad-bhàr.\n" -#~ "Faic http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Faic http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 13th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "An iuchair a thaghas an 13mh slot dhen ghrad-bhàr.\n" -#~ "Faic http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Faic http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 14th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "An iuchair a thaghas an 14mh slot dhen ghrad-bhàr.\n" -#~ "Faic http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Faic http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 15th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "An iuchair a thaghas an 15mh slot dhen ghrad-bhàr.\n" -#~ "Faic http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Faic http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 16th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "An iuchair a thaghas an 16mh slot dhen ghrad-bhàr.\n" -#~ "Faic http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Faic http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 17th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "An iuchair a thaghas an 17mh slot dhen ghrad-bhàr.\n" -#~ "Faic http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Faic http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 18th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "An iuchair a thaghas an 18mh slot dhen ghrad-bhàr.\n" -#~ "Faic http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Faic http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 19th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "An iuchair a thaghas an 19mh slot dhen ghrad-bhàr.\n" -#~ "Faic http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Faic http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 20th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "An iuchair a thaghas am 20mh slot dhen ghrad-bhàr.\n" -#~ "Faic http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Faic http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 21st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "An iuchair a thaghas am 21mh slot dhen ghrad-bhàr.\n" -#~ "Faic http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Faic http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 22nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "An iuchair a thaghas am 22mh slot dhen ghrad-bhàr.\n" -#~ "Faic http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Faic http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 23rd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "An iuchair a thaghas am 23mh slot dhen ghrad-bhàr.\n" -#~ "Faic http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Faic http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 24th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "An iuchair a thaghas am 24mh slot dhen ghrad-bhàr.\n" -#~ "Faic http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Faic http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 25th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "An iuchair a thaghas am 25mh slot dhen ghrad-bhàr.\n" -#~ "Faic http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Faic http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 26th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "An iuchair a thaghas am 26mh slot dhen ghrad-bhàr.\n" -#~ "Faic http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Faic http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 27th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "An iuchair a thaghas am 27mh slot dhen ghrad-bhàr.\n" -#~ "Faic http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Faic http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 28th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "An iuchair a thaghas am 28mh slot dhen ghrad-bhàr.\n" -#~ "Faic http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Faic http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 29th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "An iuchair a thaghas am 29mh slot dhen ghrad-bhàr.\n" -#~ "Faic http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Faic http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 30th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "An iuchair a thaghas am 30mh slot dhen ghrad-bhàr.\n" -#~ "Faic http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Faic http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 31st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "An iuchair a thaghas am 31mh slot dhen ghrad-bhàr.\n" -#~ "Faic http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Faic http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 32nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "An iuchair a thaghas am 32mh slot dhen ghrad-bhàr.\n" -#~ "Faic http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Faic http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the eighth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "An iuchair a thaghas an t-ochdamh slot dhen ghrad-bhàr.\n" -#~ "Faic http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Faic http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the fifth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "An iuchair a thaghas an còigeamh slot dhen ghrad-bhàr.\n" -#~ "Faic http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Faic http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the first hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "An iuchair a thaghas a’ chiad slot dhen ghrad-bhàr.\n" -#~ "Faic http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Faic http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the fourth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "An iuchair a thaghas an ceathramh slot dhen ghrad-bhàr.\n" -#~ "Faic http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Faic http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the next item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "An iuchair a thaghas an ath-nì air a’ ghrad-bhàr.\n" -#~ "Faic http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Faic http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the ninth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "An iuchair a thaghas an naoidheamh slot dhen ghrad-bhàr.\n" -#~ "Faic http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Faic http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the previous item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "An iuchair a thaghas an nì roimhe air a’ ghrad-bhàr.\n" -#~ "Faic http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Faic http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the second hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "An iuchair a thaghas an dàrna slot dhen ghrad-bhàr.\n" -#~ "Faic http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Faic http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the seventh hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "An iuchair a thaghas an seachdamh slot dhen ghrad-bhàr.\n" -#~ "Faic http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Faic http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the sixth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "An iuchair a thaghas an siathamh slot dhen ghrad-bhàr.\n" -#~ "Faic http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Faic http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the tenth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "An iuchair a thaghas an deicheamh slot dhen ghrad-bhàr.\n" -#~ "Faic http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Faic http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the third hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "An iuchair a thaghas an treas slot dhen ghrad-bhàr.\n" -#~ "Faic http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Faic http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for sneaking.\n" #~ "Also used for climbing down and descending in water if aux1_descends is " #~ "disabled.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "An iuchair airson tàisleachadh.\n" #~ "Tha i ‘ga cleachdadh airson dìreadh agus dìreadh san uisge ma bhios " #~ "aux1_descends à comas.\n" -#~ "Faic http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Faic http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling flying.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "An iuchair a thoglaicheas an sgiathadh.\n" -#~ "Faic http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Faic http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling noclip mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "An iuchair a thoglaicheas am modh gun bhearradh.\n" -#~ "Faic http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Faic http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "Makes all liquids opaque" #~ msgstr "Dèan gach lionn trìd-dhoilleir" diff --git a/po/gl/luanti.po b/po/gl/luanti.po index 90dba133f..06cd26432 100644 --- a/po/gl/luanti.po +++ b/po/gl/luanti.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: minetest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" -"PO-Revision-Date: 2024-11-02 23:00+0000\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" +"PO-Revision-Date: 2025-02-13 12:44+0000\n" "Last-Translator: ninjum \n" "Language-Team: Galician \n" @@ -12,7 +12,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.8.2\n" +"X-Generator: Weblate 5.10-dev\n" #: builtin/client/chatcommands.lua msgid "Clear the out chat queue" @@ -77,6 +77,244 @@ msgstr "" msgid "[all | ] [-t]" msgstr "[todo | ] [-t]" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "Explorar" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "Editar" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "Seleccionar directorio" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "Seleccionar ficheiro" + +#: builtin/common/settings/components.lua +msgid "Set" +msgstr "Establecer" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(Ningunha descripción da configuración dada)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "Ruído 2D" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "Cancelar" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "Lacunaridade" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "Oitavas" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "Desprazamento" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "Persistencia" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "Gardar" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "Escala" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "Semente" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "Amplitude X" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "Amplitude Y" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "Amplitude Z" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "Valor absoluto" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "Predefinido" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "Suavizado" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "(O xogo tamén necesitará habilitar a exposición automática.)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "(O xogo tamén necesitará habilitar efecto de bloom.)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "(O xogo tamén necesitará habilitar a iluminación volumétrica.)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "(Usar a linguaxe do sistema)" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "Accesibilidade" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "Automático" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "Chat" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "Limpar" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "Controis" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "Desactivado" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "Activado" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "Xeral" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "Movemento" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "Non hai resultados" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default" +msgstr "Restablecer a configuración predeterminada" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "Restablecer a configuración predeterminada ($1)" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "Procurar" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "Amosar configuracións avanzadas" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "Mostrar nomes técnicos" + +#: builtin/common/settings/dlg_settings.lua +msgid "Touchscreen layout" +msgstr "Disposición da pantalla táctil" + +#: builtin/common/settings/dlg_settings.lua +msgid "pause_menu" +msgstr "_menú de pausa" + +#: builtin/common/settings/settingtypes.lua +msgid "Client Mods" +msgstr "Modificacións de cliente" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "Contido: Xogos" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "Contido: modificacións" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "(O xogo tamén precisará activar as sombras)" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "Personalizado" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "Sombras dinámicas" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "Alto" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "Baixo" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "Medio" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "Moi alto" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "Moi baixo" + #: builtin/fstk/ui.lua msgid "" msgstr "" @@ -163,7 +401,6 @@ msgstr "Todo" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "Voltar" @@ -199,11 +436,6 @@ msgstr "Modificacións" msgid "No packages could be retrieved" msgstr "Non se puido recuperar ningún paquete" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "Non hai resultados" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "Sen actualizacións" @@ -248,18 +480,6 @@ msgstr "Xa está instalado" msgid "Base Game:" msgstr "Xogo base:" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "Cancelar" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -383,6 +603,14 @@ msgstr "Non se puido instalar un $1 como un $2" msgid "Unable to install a $1 as a texture pack" msgstr "Non se puido instalar $1 como paquete de texturas" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" +"Esta é a lista de clientes conectados a\n" +"$1" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "(Activado, ten erro)" @@ -447,12 +675,6 @@ msgstr "Sen dependencias opcionais" msgid "Optional dependencies:" msgstr "Dependencias opcionais:" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "Gardar" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "Mundo:" @@ -606,11 +828,6 @@ msgstr "Ríos" msgid "Sea level rivers" msgstr "Ríos ao nivel do mar" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "Semente" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "Transición suave entre biomas" @@ -666,7 +883,7 @@ msgstr "Desexa eliminar \"$1\"?" #: builtin/mainmenu/dlg_delete_content.lua #: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/tab_local.lua msgid "Delete" -msgstr "Eliminar" +msgstr "Borrar" #: builtin/mainmenu/dlg_delete_content.lua msgid "pkgmgr: failed to delete \"$1\"" @@ -754,6 +971,22 @@ msgstr "" "Este paquete de modificacións ten un nome explícito no seu modpack.conf que " "non permitirá cambios de nome aquí." +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Expand all" +msgstr "Expandir todo" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "Agrupar por prefixo" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "O servidor $1 usa un xogo chamado $2 e as seguintes modificacións:" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "O servidor $1 usa as seguintes modificacións:" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "Unha nova versión $1 está dispoñible" @@ -782,7 +1015,7 @@ msgstr "Nunca" msgid "Visit website" msgstr "Visitar sitio web" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "Configuración" @@ -796,223 +1029,6 @@ msgstr "" "Tente volver activar a lista de servidores públicos e verifique a súa " "conexión a Internet." -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "Explorar" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "Editar" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "Seleccionar directorio" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "Seleccionar ficheiro" - -#: builtin/mainmenu/settings/components.lua -msgid "Set" -msgstr "Establecer" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(Ningunha descripción da configuración dada)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "Ruído 2D" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "Lacunaridade" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "Oitavas" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "Desprazamento" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "Persistencia" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "Escala" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "Amplitude X" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "Amplitude Y" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "Amplitude Z" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "Valor absoluto" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "Predefinido" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "Suavizado" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "(O xogo tamén necesitará habilitar a exposición automática.)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "(O xogo tamén necesitará habilitar efecto de bloom.)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "(O xogo tamén necesitará habilitar a iluminación volumétrica.)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "(Usar a linguaxe do sistema)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "Accesibilidade" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "Automático" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "Chat" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "Limpar" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "Controis" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "Desactivado" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "Activado" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "Xeral" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "Movemento" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default" -msgstr "Restablecer a configuración predeterminada" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "Restablecer a configuración predeterminada ($1)" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "Procurar" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "Amosar configuracións avanzadas" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "Mostrar nomes técnicos" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "Modificacións de cliente" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "Contido: Xogos" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "Contido: modificacións" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "Enable" -msgstr "Habilitar" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "Shaders are disabled." -msgstr "Os sombreadores están deshabilitados." - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "Esta non é unha configuración recomendada." - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "(O xogo tamén precisará activar as sombras)" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "Personalizado" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "Sombras dinámicas" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "Alto" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "Baixo" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "Medio" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "Moi alto" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "Moi baixo" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "Acerca de" @@ -1033,10 +1049,6 @@ msgstr "Desenvolvedores principais" msgid "Core Team" msgstr "Equipo Central" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "Dispositivo Irrlicht:" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "Abrir dir. datos de usuario" @@ -1186,10 +1198,22 @@ msgstr "Xogar só" msgid "You need to install a game before you can create a world." msgstr "Tes que instalar un xogo antes de poder crear un mundo." +#: builtin/mainmenu/tab_online.lua +msgid "Add favorite" +msgstr "Engadir aos favoritos" + #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "Enderezo" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Clients:\n" +"$1" +msgstr "" +"Clientes:\n" +"$1" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "Modo creativo" @@ -1203,6 +1227,10 @@ msgstr "Dano / PvP" msgid "Favorites" msgstr "Favoritos" +#: builtin/mainmenu/tab_online.lua +msgid "Game: $1" +msgstr "Xogo: $1" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "Servidores incompatibles" @@ -1215,10 +1243,30 @@ msgstr "Xogar en liña" msgid "Login" msgstr "Identificarse" +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "Número de modificacións: $1" + +#: builtin/mainmenu/tab_online.lua +msgid "Open server website" +msgstr "Abrir o sitio web do servidor" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "Ping" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" +"Filtros posibles\n" +"xogo:\n" +"mod:\"\n" +"xogador: close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" -"Controis:\n" -"Sen menú aberto:\n" -"- deslizar o dedo: mirar arredor\n" -"- toque: colocar/perforar/utilizar (predeterminado)\n" -"- Toque longo: cavar/utilizar (predeterminado)\n" -"Menú/inventario aberto:\n" -"- Dobre toque (exterior):\n" -" --> pechar\n" -"- pila táctil, rañura táctil:\n" -" --> mover pila\n" -"- toca e arrastra, toca co segundo dedo\n" -" --> coloca un único obxecto na rañura\n" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1439,32 +1442,15 @@ msgstr "Creando cliente..." msgid "Creating server..." msgstr "Creando servidor..." -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "Información de depuración e gráfico de análise do mundo ocultos" - #: src/client/game.cpp msgid "Debug info shown" msgstr "Info de depuración mostrada" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "" -"Info de depuración, gráfico de análise do mundo e estrutura de arames ocultos" - #: src/client/game.cpp #, c-format msgid "Error creating client: %s" msgstr "Erro creando cliente: %s" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "Saír ao menú" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "Saír do xogo" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "Modo rápido desactivado" @@ -1501,18 +1487,6 @@ msgstr "Néboa activada" msgid "Fog enabled by game or mod" msgstr "Néboa habilitada polo xogo ou mod" -#: src/client/game.cpp -msgid "Game info:" -msgstr "Información do xogo:" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "Xogo pausado" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "Servidor anfitrión" - #: src/client/game.cpp msgid "Item definitions..." msgstr "Definicións dos obxectos..." @@ -1549,14 +1523,6 @@ msgstr "Modo espectador activado (nota: sen permiso 'noclip')" msgid "Node definitions..." msgstr "Definicións de nodos..." -#: src/client/game.cpp -msgid "Off" -msgstr "Desactivado" - -#: src/client/game.cpp -msgid "On" -msgstr "Activado" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "Modo de movemiento rotación vertical desactivado" @@ -1569,38 +1535,22 @@ msgstr "Modo de movemiento de rotación vertical activado" msgid "Profiler graph shown" msgstr "Gráfico de análise do mundo mostrado" -#: src/client/game.cpp -msgid "Remote server" -msgstr "Servidor remoto" - #: src/client/game.cpp msgid "Resolving address..." msgstr "Resolvendo enderezo..." -#: src/client/game.cpp -msgid "Respawn" -msgstr "Reaparecer" - #: src/client/game.cpp msgid "Shutting down..." msgstr "Cerrando..." -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "Un xogador" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "Volume do son" - #: src/client/game.cpp msgid "Sound muted" msgstr "Sonido silenciado" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "O sistema de son está desactivado" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "O sistema de son non é compatible con esta versión" @@ -1676,18 +1626,115 @@ msgstr "" msgid "Volume changed to %d%%" msgstr "Volume cambiado a %d%%" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "O wireframe non é compatible co controlador de vídeo" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "Estrutura de arames mostrada" -#: src/client/game.cpp -msgid "You died" -msgstr "Morreches" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "O zoom está actualmente desactivado polo xogo ou mod" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "- Modo: " + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "- Público: " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "- Xogador contra xogador: " + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "- Nome do servidor: " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "Cambiar contrasinal" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "Continuar" + +#: src/client/game_formspec.cpp +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" +"Controis:\n" +"Sen menú aberto:\n" +"- deslizar o dedo: mirar arredor\n" +"- toque: colocar/perforar/utilizar (predeterminado)\n" +"- Toque longo: cavar/utilizar (predeterminado)\n" +"Menú/inventario aberto:\n" +"- Dobre toque (exterior):\n" +" --> pechar\n" +"- pila táctil, rañura táctil:\n" +" --> mover pila\n" +"- toca e arrastra, toca co segundo dedo\n" +" --> coloca un único obxecto na rañura\n" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "Saír ao menú" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "Saír do xogo" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "Información do xogo:" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "Xogo pausado" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "Servidor anfitrión" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "Desactivado" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "Activado" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "Servidor remoto" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "Reaparecer" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "Volume do son" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "Morreches" + #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" msgstr "Chat actualmente desactivado polo xogo ou mod" @@ -2014,8 +2061,8 @@ msgid "Failed to compile the \"%s\" shader." msgstr "Produciuse un erro ao compilar o sombreador \"%s\"." #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." -msgstr "Os sombreadores están habilitados pero o controlador non admite GLSL." +msgid "GLSL is not supported by the driver" +msgstr "GLSL non é compatible co controlador" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" #: src/content/mod_configuration.cpp @@ -2066,7 +2113,7 @@ msgstr "Avance automático" msgid "Automatic jumping" msgstr "Salto automático" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "Aux1" @@ -2078,7 +2125,7 @@ msgstr "Atrás" msgid "Block bounds" msgstr "Lím. bloques" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "Cambiar cámara" @@ -2102,7 +2149,7 @@ msgstr "Baixar volume" msgid "Double tap \"jump\" to toggle fly" msgstr "Con 2 veces \"saltar\" voas" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "Soltar" @@ -2118,11 +2165,11 @@ msgstr "Aum. alcance" msgid "Inc. volume" msgstr "Subir volume" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "Inventario" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "Saltar" @@ -2154,7 +2201,7 @@ msgstr "Seg. obxecto" msgid "Prev. item" msgstr "Obxecto anterior" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "Sel. alcance" @@ -2166,7 +2213,7 @@ msgstr "Dereita" msgid "Screenshot" msgstr "Captura" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "Ir Agachado" @@ -2174,15 +2221,15 @@ msgstr "Ir Agachado" msgid "Toggle HUD" msgstr "Alt. HUD" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "Alt. rexistro chat" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "Alt. correr" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "Alt. voo" @@ -2190,11 +2237,11 @@ msgstr "Alt. voo" msgid "Toggle fog" msgstr "Alt. néboa" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "Alt. minimapa" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "Modo espectar" @@ -2202,7 +2249,7 @@ msgstr "Modo espectar" msgid "Toggle pitchmove" msgstr "Alt. rot. vertical" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "Zoom" @@ -2238,7 +2285,7 @@ msgstr "Anterior contrasinal" msgid "Passwords do not match!" msgstr "Os contrasinais non coinciden!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "Pechar" @@ -2251,15 +2298,43 @@ msgstr "Silenciado" msgid "Sound Volume: %d%%" msgstr "Son: %d%%" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +msgid "Add button" +msgstr "Engadir botón" + +#: src/gui/touchscreeneditor.cpp +msgid "Done" +msgstr "Feito" + +#: src/gui/touchscreeneditor.cpp +msgid "Remove" +msgstr "Eliminar" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "Restablecer" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "Comeza a arrastrar un botón para engadir. Toca fóra para cancelar." + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "Toca un botón para seccionalo. Arrastra un botón para movelo." + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "Toca fóra para deseleccionar." + +#: src/gui/touchscreenlayout.cpp msgid "Joystick" msgstr "Joystick" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "Menú de desbordamento" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Toggle debug" msgstr "Activar/desactivar depuración" @@ -2493,19 +2568,17 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" "Soporte 3D.\n" "Soportado actualmente:\n" -"- none: sen saída 3D.\n" -"- anaglyph: 3D en cor ciano/maxenta.\n" -"- interlaced: soporte de pantalla polarizada baseada en liñas par/ímpar.\n" -"- topbottom: pantalla dividida superior/inferior.\n" -"- sidebyside: pantalla dividida lado a lado.\n" -" - crossview: 3D para ver cruzado\n" -"Teña en conta que o modo entrelazado require cos sombreadores estean " -"activados." +"- ningún: sen saída 3D.\n" +"- anáglifo: 3D en cor ciano/maxenta.\n" +"- entrelazado: soporte de pantalla polarizada baseada en liñas par/ímpar." +"\n" +"- arriba-abaixo: pantalla dividida superior/inferior.\n" +"- lado a lado: pantalla dividida lado a lado.\n" +"- vista cruzada: 3D para ver cruzado" #: src/settings_translation_file.cpp msgid "" @@ -2560,10 +2633,6 @@ msgstr "Rango de bloque activo" msgid "Active object send range" msgstr "Rango de envío en obxetos activos" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "Añade partículas ao excavar un nó." - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2593,6 +2662,19 @@ msgstr "Nome de administrador" msgid "Advanced" msgstr "Avanzado" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" +"Todos os buffers de malla con menos de este número de vértices serán " +"fusionados\n" +"durante o renderizado do mapa. Isto mellora o rendemento do renderizado." + +#: src/settings_translation_file.cpp +msgid "Allow clouds to look 3D instead of flat." +msgstr "Permitir que as nubes se vexan en 3D en vez de planas." + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "Permite que os líquidos sexan translúcidos." @@ -2996,14 +3078,14 @@ msgstr "Radio de nubes" msgid "Clouds" msgstr "Nubes" -#: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." -msgstr "As nubes son un efecto do lado do cliente." - #: src/settings_translation_file.cpp msgid "Clouds in menu" msgstr "Nubes no menú" +#: src/settings_translation_file.cpp +msgid "Color depth for post-processing texture" +msgstr "Profundidade de cor para a textura de post-procesamento" + #: src/settings_translation_file.cpp msgid "Colored fog" msgstr "Néboa colorida" @@ -3028,7 +3110,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" "Lista de bandeiras separadas por comas que se ocultarán no repositorio de " "contido.\n" @@ -3199,6 +3281,19 @@ msgstr "Nivel de rexistro de depuración" msgid "Debugging" msgstr "Depuración" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" +"Decide a profundidade de cor da textura utilizada para o proceso de post-" +"procesamento.\n" +"Reducir isto pode mellorar o rendemento, pero algúns efectos (por exemplo, " +"tramado)\n" +"require máis de 8 bits para funcionar." + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "Intervalo de servidor dedicado" @@ -3379,18 +3474,10 @@ msgstr "" "Os desertos aparecen cando np_biome supera este valor.\n" "Cando a marca 'snowbiomes' actívase, isto é ignorado." -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "Desincronizar a animación dos bloques" - #: src/settings_translation_file.cpp msgid "Developer Options" msgstr "Opcións de desenvolvedor" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "Partículas ao excavar" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "Non permitir contrasinais baleiros" @@ -3423,6 +3510,19 @@ msgstr "Pulsar dúas veces \"salto\" para voar" msgid "Double-tapping the jump key toggles fly mode." msgstr "Pulsar dúas veces \"salto\" serve para activar e desactivar o voo." +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" +"Debuxar triángulos ordenados por transparencia agrupados polos seus buffers " +"de malla.\n" +"Isto rompe a orde de transparencia entre os buffers de malla, pero evita " +"situacións\n" +"onde a orde de transparencia sería moi lenta noutro caso." + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "Mostrar información de depuración do xerador de terreos." @@ -3507,12 +3607,11 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" -"Activar sombras coloridas.\n" -"Se o valor é verdadeiro, os bloques traslúcidos proxectarán sombras " -"coloridas. Esta opción precisa de moitos recursos." +"Activar sombras coloreadas para nós translúcidos.\n" +"Isto é custoso." #: src/settings_translation_file.cpp msgid "Enable console window" @@ -3600,12 +3699,10 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" -"Activa/desactiva a execución dun servidor IPv6.\n" -"Ignorado se establécese bind_address.\n" -"É preciso enable_ipv6 para activalo." +"Activar/desactivar a execución dun servidor IPv6.\n" +"Ignorado se está configurada a bind_address." #: src/settings_translation_file.cpp msgid "" @@ -3623,14 +3720,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "Activa a animación de obxectos no inventario." -#: src/settings_translation_file.cpp -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "" -"Habilita a caché de mallas rotadas por cara.\n" -"Isto só é efectivo cos sombreadores deshabilitados." - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -3982,10 +4071,6 @@ msgstr "Escala de IGU" msgid "GUI scaling filter" msgstr "Filtro de escala de IGU" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "Filtro de escala de IGU \"txr2img\"" - #: src/settings_translation_file.cpp msgid "Gamepads" msgstr "Mandos" @@ -4253,14 +4338,6 @@ msgstr "" "para baixar e\n" "descender." -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" -"Activar confirmación de rexistro ao se conectar ao servidor\n" -"Se está desactivado, rexistrarase unha nova conta automáticamente." - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -4286,6 +4363,17 @@ msgstr "" "Se está habilitado, os xogadores non poden unirse sen un contrasinal ou " "cambiar o seu contrasinal a un contrasinal baleiro." +#: src/settings_translation_file.cpp +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" +"Se está activado, o rexistro da conta do servidor é separado do inicio de " +"sesión na interface de usuario.\n" +"Se está desactivado, conectar a un servidor rexistrará automaticamente unha " +"nova conta." + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4409,10 +4497,6 @@ msgid "Interval of saving important changes in the world, stated in seconds." msgstr "" "Intervalo para gardado de cambios importantes no mundo, indicado en segundos." -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "Intervalo de envío da hora do día aos clientes, expresado en segundos." - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "Animacións dos obxectos do inventario" @@ -5145,10 +5229,6 @@ msgstr "" msgid "Maximum users" msgstr "Usuarios máximos" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "Caché de malla" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "Mensaxe do día" @@ -5181,6 +5261,10 @@ msgstr "Ruído 3D que determina a cantidade de calabozos por chunk." msgid "Minimum limit of random number of small caves per mapchunk." msgstr "Límite mínimo do número aleatorio de covas pequenas por chunk." +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "Contaxe mínima de vértices para os buffers de malla" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "Mapeo de Mip" @@ -5276,13 +5360,13 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" "Nome do xogador.\n" -"Cando se executa un servidor, os clientes que se conectan con este nome son " -"administradores.\n" -"Ao comezar desde o menú principal, isto substitúese." +"Cando se executa un servidor, un cliente que se conecte con este nome será " +"administrador.\n" +"Cando se inicie desde o menú principal, isto será substituído." #: src/settings_translation_file.cpp msgid "" @@ -5795,23 +5879,26 @@ msgid "See https://www.sqlite.org/pragma.html#pragma_synchronous" msgstr "Ver https://www.sqlite.org/pragma.html#pragma_synchronous" #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Select the antialiasing method to apply.\n" "\n" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -6079,18 +6166,6 @@ msgstr "" msgid "Shader path" msgstr "Camiño dos sombreadores" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "Sombreadores" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" -"Os sombreadores son unha parte fundamental do renderizado e permiten efectos " -"visuais avanzados." - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "Calidade do filtro de sombras" @@ -6282,17 +6357,15 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" -"Distribuír unha actualización completa do mapa de sombras sobre unha " -"determinada cantidade de fotogramas.\n" -"Os valores máis altos poden facer cas sombras sexan lentas e os valores máis " -"baixos\n" -"consumirán máis recursos.\n" -"Valor mínimo: 1; Valor máximo 16" +"Espallar unha actualización completa do mapa de sombras ao longo dun número " +"determinado de fotogramas.\n" +"Valores máis altos poden facer que as sombras vaian con retardo, mentres que " +"valores máis baixos\n" +"consumirán máis recursos." #: src/settings_translation_file.cpp msgid "" @@ -6575,7 +6648,7 @@ msgid "" msgstr "" "O backend de renderizado.\n" "Nota: É necesario reiniciar despois de cambiar isto!\n" -"OpenGL é o predeterminado para escritorio, e OGLES2 para Android" +"OpenGL é o predeterminado para escritorio, e OGLES2 para Android." #: src/settings_translation_file.cpp msgid "" @@ -6672,10 +6745,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "Hora do día en que se inicia un novo mundo, en milihoras (0-23999)." -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "Intervalo de envío de tempo" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "Velocidade do tempo" @@ -6742,6 +6811,10 @@ msgstr "Líquidos translúcidos" msgid "Transparency Sorting Distance" msgstr "Distancia de ordenación de transparencias" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "Grupo de orde de transparencia por buffers" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "Ruído das árbores" @@ -6805,14 +6878,20 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" "A submostraxe é semellante ao uso dunha resolución de pantalla inferior, " "pero aplícase\n" "só para o mundo, mantendo a GUI intacta.\n" "Debería dar un aumento máis significativo do rendemento a costa dunha imaxe " "menos detallada.\n" -"Os valores máis altos dan como resultado unha imaxe menos detallada." +"Os valores máis altos dan como resultado unha imaxe menos detallada.\n" +"Nota: A submostraxe actualmente non está soportada se a configuración " +"'3d_mode' está establecida\n" +"cun valor non predeterminado." #: src/settings_translation_file.cpp msgid "Unlimited player transfer distance" @@ -6834,17 +6913,18 @@ msgstr "Límite Y superior dos calabozos." msgid "Upper Y limit of floatlands." msgstr "Límite Y superior dos terreos flotantes." -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "Activa as nubes 3D en lugar de nubes 2D (planas)." - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "Usa unha animación de nube para o fondo do menú principal." #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." -msgstr "Usar filtrado anisotrópico ao observar texturas desde un ángulo." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." +msgstr "" +"Usar filtrado anisotrópico ao observar texturas desde un ángulo.\n" +"Isto proporciona unha mellora significativa cando se usa xunto con " +"mipmapping." #: src/settings_translation_file.cpp msgid "Use bilinear filtering when scaling textures." @@ -6852,15 +6932,15 @@ msgstr "Usar filtrado bilineal ao escalar texturas." #: src/settings_translation_file.cpp msgid "Use crosshair for touch screen" -msgstr "Usar retículo para pantalla táctil" +msgstr "Usar punto de mira na pantalla táctil" #: src/settings_translation_file.cpp msgid "" "Use crosshair to select object instead of whole screen.\n" "If enabled, a crosshair will be shown and will be used for selecting object." msgstr "" -"Usar retículo para seleccionar obxectos en vez de toda a pantalla.\n" -"Se está activado, mostrarase un retículo que se utilizará para seleccionar " +"Usar punto de mira para escoller obxectos en troques de toda a pantalla.\n" +"Se está activado, amosarase un punto de mira que se empregará para escoller " "obxectos." #: src/settings_translation_file.cpp @@ -7117,39 +7197,25 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" -"Cando gui_scaling_filter_txr2img teña un valor verdadeiro, copia esas " -"imaxes\n" -"do hardware ao software para escalar. Cando sexa falso, retrocede\n" -"ao método de escala antigo para controladores de vídeo que non o fan\n" -"admite correctamente a descarga de texturas desde o hardware." - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" -"Cando se usan filtros bilineais/trilineais/anisótropos, texturas de baixa " -"resolución\n" -"poden ser borrosas, polo que amplíaos automaticamente co veciño máis " -"próximo\n" -"interpolación para preservar píxeles nítidos. Isto establece o tamaño mínimo " -"de textura\n" -"para as texturas mejoradas; valores máis altos parecen máis nítidos, pero " -"requiren máis\n" -"memoria. Recoméndase potencias de 2. Esta configuración só se aplica se\n" -"O filtrado bilineal/trilineal/anisótropo está activado.\n" -"Tamén se usa como tamaño de textura do nodo base para aliñados ao mundo\n" +"Cando se usa filtrado bilineal/trilineal, as texturas de baixa resolución\n" +"poden quedar borrosas, polo que esta opción amplía automaticamente as " +"texturas para preservar\n" +"píxeles nítidos. Isto define o tamaño mínimo da textura para as texturas " +"ampliadas;\n" +"valores máis altos son máis nítidos, pero requiren máis memoria.\n" +"Esta configuración APLÍCASE SÓ se algún dos filtros mencionados está " +"habilitado.\n" +"Este tamén se usa como tamaño de textura do nodo base para aliñados ao " +"mundo\n" "autoescalado de texturas." #: src/settings_translation_file.cpp @@ -7160,12 +7226,6 @@ msgstr "" "Indica se os fondos das etiquetas de nome deberían mostrarse por defecto.\n" "As modificacións aínda poden establecer un fondo." -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" -"Indica se as animacións de textura de nós deben desincronizarse por bloque " -"de mapas." - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -7193,16 +7253,15 @@ msgstr "Indica se hai que poñar néboa ao final da zona visible." #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" -"Indica se hai que silenciar os sons. Podes activar o son en calquera " -"momento, a non ser que\n" -"esté desactivado (enable_sound=false).\n" -"No xogo podes cambiar o estado de silencio coa tecla de silencio ou no\n" -"menú de pausa." +"Se activar ou desactivar os sons. Pódese reactivar o son en calquera momento." +"\n" +"No xogo, podes alternar o estado de silencio coa tecla de silencio ou " +"utilizando\n" +"o menú de pausa." #: src/settings_translation_file.cpp msgid "" @@ -7375,6 +7434,9 @@ msgstr "Límite paralelo de cURL" #~ "Teña en conta que o campo de enderezo do menú principal anula esta " #~ "configuración." +#~ msgid "Adds particles when digging a node." +#~ msgstr "Añade partículas ao excavar un nó." + #~ msgid "" #~ "Adjust dpi configuration to your screen (non X11/Android only) e.g. for " #~ "4k screens." @@ -7465,6 +7527,9 @@ msgstr "Límite paralelo de cURL" #~ msgid "Clean transparent textures" #~ msgstr "Limpar texturas transparentes" +#~ msgid "Clouds are a client-side effect." +#~ msgstr "As nubes son un efecto do lado do cliente." + #~ msgid "Command key" #~ msgstr "Tecla comando" @@ -7528,9 +7593,17 @@ msgstr "Límite paralelo de cURL" #~ msgid "Damage" #~ msgstr "Dano" +#~ msgid "Debug info and profiler graph hidden" +#~ msgstr "Información de depuración e gráfico de análise do mundo ocultos" + #~ msgid "Debug info toggle key" #~ msgstr "Alt. inf. para depuración" +#~ msgid "Debug info, profiler graph, and wireframe hidden" +#~ msgstr "" +#~ "Info de depuración, gráfico de análise do mundo e estrutura de arames " +#~ "ocultos" + #~ msgid "Dec. volume key" #~ msgstr "Tecla baixar volume" @@ -7563,9 +7636,15 @@ msgstr "Límite paralelo de cURL" #~ msgid "Del. Favorite" #~ msgstr "Eliminar fav." +#~ msgid "Desynchronize block animation" +#~ msgstr "Desincronizar a animación dos bloques" + #~ msgid "Dig key" #~ msgstr "Tecla romper bloque" +#~ msgid "Digging particles" +#~ msgstr "Partículas ao excavar" + #~ msgid "Disable anticheat" #~ msgstr "Desactivar anticheat" @@ -7587,6 +7666,9 @@ msgstr "Límite paralelo de cURL" #~ msgid "Dynamic shadows:" #~ msgstr "Sombras dinámicas:" +#~ msgid "Enable" +#~ msgstr "Habilitar" + #~ msgid "Enable creative mode for all players" #~ msgstr "Activar o modo creativo para todos os xogadores" @@ -7606,6 +7688,13 @@ msgstr "Límite paralelo de cURL" #~ "Activar os objectos buffer de vértice.\n" #~ "Isto debería mellorar muito o rendimento gráfico." +#~ msgid "" +#~ "Enables caching of facedir rotated meshes.\n" +#~ "This is only effective with shaders disabled." +#~ msgstr "" +#~ "Habilita a caché de mallas rotadas por cara.\n" +#~ "Isto só é efectivo cos sombreadores deshabilitados." + #~ msgid "Enables minimap." #~ msgstr "Activa o minimapa." @@ -7690,8 +7779,8 @@ msgstr "Límite paralelo de cURL" #~ msgid "Forward key" #~ msgstr "Tecla avance" -#~ msgid "Game" -#~ msgstr "Xogo" +#~ msgid "GUI scaling filter txr2img" +#~ msgstr "Filtro de escala de IGU \"txr2img\"" #~ msgid "HUD scale factor" #~ msgstr "Factor de escala HUD" @@ -7838,663 +7927,670 @@ msgstr "Límite paralelo de cURL" #~ msgid "Instrumentation" #~ msgstr "Instrumentación" +#~ msgid "Interval of sending time of day to clients, stated in seconds." +#~ msgstr "" +#~ "Intervalo de envío da hora do día aos clientes, expresado en segundos." + #~ msgid "Invalid gamespec." #~ msgstr "Especificación do xogo non válida." #~ msgid "Inventory key" #~ msgstr "Tecla de inventario" +#~ msgid "Irrlicht device:" +#~ msgstr "Dispositivo Irrlicht:" + #~ msgid "Jump key" #~ msgstr "Tecla de salto" #~ msgid "" #~ "Key for decreasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para disminuir o campo de visión.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for decreasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para disminuir o volume.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for digging.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para romper bloques.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for dropping the currently selected item.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para soltar o obxecto seleccionado.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para aumentar o campo de visión.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para aumentar o volume.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for jumping.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para saltar.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving fast in fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para moverse máis axilmente en modo rápido.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player backward.\n" #~ "Will also disable autoforward, when active.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para mover o xogador cara atrás.\n" #~ "Tamén desactivará o desprazamento automático cando estea activo.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player forward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para moverse cara adiante.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player left.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para moverse cara esquerda.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player right.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para moverse cara dereita.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for muting the game.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para silenciar o xogo.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para abrir a xanela do chat e escribir comandos.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type local commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para abrir a xanela do chat e escribir comandos locales.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para abrir a xanela do chat.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the inventory.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para abrir o inventario.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for placing.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para colocar un obxecto.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 11th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar a rañura 11 do inventario.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 12th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar a rañura 12 do inventario.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 13th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar a rañura 13 do inventario.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 14th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar a rañura 14 do inventario.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 15th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar a rañura 15 do inventario.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 16th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar a rañura 16 do inventario.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 17th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar a rañura 17 do inventario.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 18th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar a rañura 18 do inventario.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 19th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar a rañura 19 do inventario.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 20th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar a rañura 20 do inventario.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 21st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar a rañura 21 do inventario.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 22nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar a rañura 22 do inventario.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 23rd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar a rañura 23 do inventario.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 24th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar a rañura 24 do inventario.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 25th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar a rañura 25 do inventario.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 26th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar a rañura 26 do inventario.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 27th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar a rañura 27 do inventario.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 28th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar a rañura 28 do inventario.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 29th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar a rañura 29 do inventario.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 30th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar a rañura 30 do inventario.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 31st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar a rañura 31 do inventario.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 32nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar a rañura 32 do inventario.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the eighth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar a rañura 8 do inventario.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the fifth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar a rañura 5 do inventario.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the first hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar a rañura 1 do inventario.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the fourth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar a rañura 4 do inventario.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the next item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar o seguinte obxecto na barra de acceso directo do " #~ "inventario.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the ninth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar a rañura 9 do inventario.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the previous item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar o obxecto anterior na barra de acceso directo do " #~ "inventario.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the second hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar a rañura 2 do inventario.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the seventh hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar a rañura 7 do inventario.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the sixth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar a rañura 6 do inventario.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the tenth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar a rañura 10 do inventario.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the third hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para seleccionar a rañura 3 do inventario.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for sneaking.\n" #~ "Also used for climbing down and descending in water if aux1_descends is " #~ "disabled.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para agacharse.\n" #~ "Tamén serve para descender dentro da auga se aux1_descends está " #~ "desactivado.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for switching between first- and third-person camera.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para cambiar entre a cámara en primeira e terceira persoa.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for taking screenshots.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para facer capturas.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling autoforward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para alternar avance automático.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling cinematic mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para alternar modo cinemático.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling display of minimap.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para alternar visualización do minimapa.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para alternar modo rápido.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling flying.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para alternar voo.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling noclip mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para alternar modo espectador.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling pitch move mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para alternar modo de rotación horizontal.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the camera update. Only used for development\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para alternar actualización da cámara. Usado só para o " #~ "desenvolvemento.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of chat.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para alternar chat.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of debug info.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para alternar visualización de información de depuración.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of fog.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para alternar a visualización da néboa.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the HUD.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para alternar visualización do HUD.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the large chat console.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para alternar visualización do chat de consola largo.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the profiler. Used for development.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para alternar a análise do mundo. Emprégase para o " #~ "desenvolvemento.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling unlimited view range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para alternar campo de visión ilimitado.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key to use view zoom when possible.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para facer zoom cando sexa posible.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Keybindings. (If this menu screws up, remove stuff from minetest.conf)" @@ -8549,6 +8645,9 @@ msgstr "Límite paralelo de cURL" #~ msgid "Menus" #~ msgstr "Menús" +#~ msgid "Mesh cache" +#~ msgstr "Caché de malla" + #~ msgid "Minimap" #~ msgstr "Minimapa" @@ -8671,6 +8770,9 @@ msgstr "Límite paralelo de cURL" #~ msgid "Server / Singleplayer" #~ msgstr "Servidor / Un xogador" +#~ msgid "Shaders" +#~ msgstr "Sombreadores" + #~ msgid "Shaders (experimental)" #~ msgstr "Sombreadores (experimental)" @@ -8686,6 +8788,16 @@ msgstr "Límite paralelo de cURL" #~ "rendemento nalgunhas\n" #~ "tarxetas gráficas." +#~ msgid "" +#~ "Shaders are a fundamental part of rendering and enable advanced visual " +#~ "effects." +#~ msgstr "" +#~ "Os sombreadores son unha parte fundamental do renderizado e permiten " +#~ "efectos visuais avanzados." + +#~ msgid "Shaders are disabled." +#~ msgstr "Os sombreadores están deshabilitados." + #~ msgid "Shape of the minimap. Enabled = round, disabled = square." #~ msgstr "Forma do minimapa. Activado = redondo, desactivado = cadrado." @@ -8708,6 +8820,9 @@ msgstr "Límite paralelo de cURL" #~ msgid "Smooths rotation of camera. 0 to disable." #~ msgstr "Suaviza a rotación da cámara. 0 para desactivar." +#~ msgid "Sound system is disabled" +#~ msgstr "O sistema de son está desactivado" + #~ msgid "Texture path" #~ msgstr "Camiño dos packs de textura" @@ -8732,6 +8847,12 @@ msgstr "Límite paralelo de cURL" #~ "Suaviza a cámara ao mirar arredor. Tamén se chama suavización do rato.\n" #~ "Útil para gravar vídeos." +#~ msgid "This is not a recommended configuration." +#~ msgstr "Esta non é unha configuración recomendada." + +#~ msgid "Time send interval" +#~ msgstr "Intervalo de envío de tempo" + #~ msgid "Toggle camera mode key" #~ msgstr "Tecla para alternar o modo cámara" @@ -8811,6 +8932,24 @@ msgstr "Límite paralelo de cURL" #~ msgid "Waving Plants" #~ msgstr "Movemento das plantas" +#~ msgid "" +#~ "When gui_scaling_filter_txr2img is true, copy those images\n" +#~ "from hardware to software for scaling. When false, fall back\n" +#~ "to the old scaling method, for video drivers that don't\n" +#~ "properly support downloading textures back from hardware." +#~ msgstr "" +#~ "Cando gui_scaling_filter_txr2img teña un valor verdadeiro, copia esas " +#~ "imaxes\n" +#~ "do hardware ao software para escalar. Cando sexa falso, retrocede\n" +#~ "ao método de escala antigo para controladores de vídeo que non o fan\n" +#~ "admite correctamente a descarga de texturas desde o hardware." + +#~ msgid "" +#~ "Whether node texture animations should be desynchronized per mapblock." +#~ msgstr "" +#~ "Indica se as animacións de textura de nós deben desincronizarse por " +#~ "bloque de mapas." + #~ msgid "Whether to allow players to damage and kill each other." #~ msgstr "Se permitir que os xogadores se danen e se maten entre si." diff --git a/po/he/luanti.po b/po/he/luanti.po index c1d1248b3..a58aea72e 100644 --- a/po/he/luanti.po +++ b/po/he/luanti.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Hebrew (Minetest)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" "PO-Revision-Date: 2024-05-04 14:07+0000\n" "Last-Translator: jhon game \n" "Language-Team: Hebrew ] [-t]" msgstr "" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "דפדף" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "עריכה" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "נא לבחור תיקיה" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "נא לבחור קובץ" + +#: builtin/common/settings/components.lua +#, fuzzy +msgid "Set" +msgstr "Select" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(לא נוסף תיאור להגדרה)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "רעש דו-מיימדי" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "ביטול" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "מרווחיות" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "אוקטבות" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "היסט" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#, fuzzy +msgid "Persistence" +msgstr "התמדה" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "שמירה" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "קנה מידה" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "זרע" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "מרווחיות X" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "מרווחיות Y" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "מרווחיות Z" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "ערך מוחלט" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "ברירת מחדל" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "החלקת ערכים" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "צ'אט" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "נקה" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "מושבת" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "מופעל" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "אין תוצאות" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Reset setting to default" +msgstr "שחזור לברירת המחדל" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "חיפוש" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "הצגת שמות טכניים" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Touchscreen layout" +msgstr "סף נגיעה: (px)" + +#: builtin/common/settings/dlg_settings.lua +msgid "pause_menu" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Client Mods" +msgstr "בחירת שיפורים" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Content: Games" +msgstr "תוכן" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Content: Mods" +msgstr "תוכן" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "" + #: builtin/fstk/ui.lua msgid "" msgstr "" @@ -169,7 +414,6 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua #, fuzzy msgid "Back" msgstr "אחורה" @@ -207,11 +451,6 @@ msgstr "שיפורים" msgid "No packages could be retrieved" msgstr "לא ניתן להביא את החבילות" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "אין תוצאות" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "אין עדכונים" @@ -257,18 +496,6 @@ msgstr "כבר מותקן" msgid "Base Game:" msgstr "משחק בסיסי:" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "ביטול" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -397,6 +624,12 @@ msgstr "אין אפשרות להתקין שיפור בשם $1" msgid "Unable to install a $1 as a texture pack" msgstr "לא ניתן להתקין $1 כחבילת טקסטורות" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "" @@ -461,12 +694,6 @@ msgstr "אין תלויות רשות" msgid "Optional dependencies:" msgstr "תלויות אופציונאליות:" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "שמירה" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "עולם:" @@ -618,11 +845,6 @@ msgstr "נהרות" msgid "Sea level rivers" msgstr "נהרות בגובה פני הים" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "זרע" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "מעבר חלק בין אזורי אקלים שונים" @@ -762,6 +984,23 @@ msgstr "" "לערכת שיפורים זו יש שם מפורש שניתן בקובץ modpack.conf שלה שיעקוף כל שינוי שם " "מכאן." +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "להפעיל הכול" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "" @@ -786,7 +1025,7 @@ msgstr "" msgid "Visit website" msgstr "" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "הגדרות" @@ -799,231 +1038,6 @@ msgid "Try reenabling public serverlist and check your internet connection." msgstr "" "נא לנסות לצאת ולהיכנס מחדש לרשימת השרתים ולבדוק את החיבור שלך לאינטרנט." -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "דפדף" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "עריכה" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "נא לבחור תיקיה" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "נא לבחור קובץ" - -#: builtin/mainmenu/settings/components.lua -#, fuzzy -msgid "Set" -msgstr "Select" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(לא נוסף תיאור להגדרה)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "רעש דו-מיימדי" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "מרווחיות" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "אוקטבות" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "היסט" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#, fuzzy -msgid "Persistence" -msgstr "התמדה" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "קנה מידה" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "מרווחיות X" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "מרווחיות Y" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "מרווחיות Z" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "ערך מוחלט" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "ברירת מחדל" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "החלקת ערכים" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "צ'אט" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "נקה" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "מושבת" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "מופעל" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Reset setting to default" -msgstr "שחזור לברירת המחדל" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "חיפוש" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "הצגת שמות טכניים" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Client Mods" -msgstr "בחירת שיפורים" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Content: Games" -msgstr "תוכן" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Content: Mods" -msgstr "תוכן" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "מופעל" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Shaders are disabled." -msgstr "עדכון מצלמה מבוטל" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "" @@ -1045,10 +1059,6 @@ msgstr "מפתחים עיקריים" msgid "Core Team" msgstr "" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "נא לבחור תיקיית משתמש" @@ -1199,11 +1209,23 @@ msgstr "התחלת המשחק" msgid "You need to install a game before you can create a world." msgstr "" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "מחק מועדף" + #: builtin/mainmenu/tab_online.lua #, fuzzy msgid "Address" msgstr "- כתובת: " +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "לקוח" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "מצב יצירתי" @@ -1219,6 +1241,11 @@ msgstr "חבלה" msgid "Favorites" msgstr "מועדף" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "משחק" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "" @@ -1231,10 +1258,26 @@ msgstr "הצטרפות למשחק" msgid "Login" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +msgid "Open server website" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "פינג" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua #, fuzzy msgid "Public Servers" @@ -1324,23 +1367,6 @@ msgstr "" "\n" "בדוק את debug.txt לפרטים נוספים." -#: src/client/game.cpp -msgid "- Mode: " -msgstr "- מצב: " - -#: src/client/game.cpp -msgid "- Public: " -msgstr "- ציבורי: " - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "- קרב: " - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "- שם שרת: " - #: src/client/game.cpp #, fuzzy msgid "A serialization error occurred:" @@ -1351,6 +1377,11 @@ msgstr "אירעה שגיאה:" msgid "Access denied. Reason: %s" msgstr "" +#: src/client/game.cpp +#, fuzzy +msgid "All debug info hidden" +msgstr "מידע דיבאג מוצג" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "התקדמות אוטומטית קדימה מבוטלת" @@ -1371,6 +1402,10 @@ msgstr "" msgid "Block bounds shown for nearby blocks" msgstr "" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "עדכון מצלמה מבוטל" @@ -1384,10 +1419,6 @@ msgstr "עדכון מצלמה מופעל" msgid "Can't show block bounds (disabled by game or mod)" msgstr "המבט מקרוב מושבת על ידי המשחק או השיפור" -#: src/client/game.cpp -msgid "Change Password" -msgstr "שנה סיסמה" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "מצב קולנועי מבוטל" @@ -1417,39 +1448,6 @@ msgstr "בעיה בחיבור (נגמר זמן ההמתנה?)" msgid "Connection failed for unknown reason" msgstr "" -#: src/client/game.cpp -msgid "Continue" -msgstr "המשך" - -#: src/client/game.cpp -#, fuzzy -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" -"פקדי ברירת מחדל:\n" -"לא נראה תפריט:\n" -"- לחיצה בודדת: הפעלת כפתור\n" -"- הקשה כפולה: מקום / שימוש\n" -"- החלק אצבע: הביט סביב\n" -"תפריט / מלאי גלוי:\n" -"- לחיצה כפולה (בחוץ):\n" -"--> סגור\n" -"- מחסנית מגע, חריץ מגע:\n" -"--> הזז מחסנית\n" -"- גע וגרור, הקש על האצבע השנייה\n" -"--> מקם פריט יחיד לחריץ\n" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1463,31 +1461,15 @@ msgstr "יוצר לקוח..." msgid "Creating server..." msgstr "יוצר שרת..." -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "מידע דיבאג וגרף פרופיילר מוסתר" - #: src/client/game.cpp msgid "Debug info shown" msgstr "מידע דיבאג מוצג" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "מידע דיבאג, גרף פרופיילר, ומצב שלד מוסתר" - #: src/client/game.cpp #, fuzzy, c-format msgid "Error creating client: %s" msgstr "יוצר לקוח..." -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "יציאה לתפריט" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "יציאה למערכת ההפעלה" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "מצב המהירות מושבת" @@ -1525,18 +1507,6 @@ msgstr "ערפל מופעל" msgid "Fog enabled by game or mod" msgstr "המבט מקרוב מושבת על ידי המשחק או השיפור" -#: src/client/game.cpp -msgid "Game info:" -msgstr "מידע על המשחק:" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "המשחק הושהה" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "שרת אירוח" - #: src/client/game.cpp msgid "Item definitions..." msgstr "הגדרות פריט..." @@ -1574,14 +1544,6 @@ msgstr "מעבר דרך קירות מופעל (שים לב, אין הרשאת 'n msgid "Node definitions..." msgstr "הגדרות קוביה..." -#: src/client/game.cpp -msgid "Off" -msgstr "מכובה" - -#: src/client/game.cpp -msgid "On" -msgstr "דולק" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "תנועה לכיוון מבט מכובה" @@ -1594,38 +1556,22 @@ msgstr "תנועה לכיוון מבט מופעל" msgid "Profiler graph shown" msgstr "גרף פרופיילר מוצג" -#: src/client/game.cpp -msgid "Remote server" -msgstr "שרת מרוחק" - #: src/client/game.cpp msgid "Resolving address..." msgstr "מפענח כתובת..." -#: src/client/game.cpp -msgid "Respawn" -msgstr "הזדמן" - #: src/client/game.cpp msgid "Shutting down..." msgstr "מכבה..." -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "שחקן יחיד" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "ווליום שמע" - #: src/client/game.cpp msgid "Sound muted" msgstr "שמע מושתק" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "מערכת שמע לא מופעלת" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "מערכת שמע לא נתמכת בבניה הנוכחית" @@ -1699,18 +1645,116 @@ msgstr "טווח ראיה השתנה ל %d" msgid "Volume changed to %d%%" msgstr "עוצמת שמע שונתה ל %d%%" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "מסגרת שלדית מוצגת" -#: src/client/game.cpp -msgid "You died" -msgstr "מתת" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "המבט מקרוב מושבת על ידי המשחק או השיפור" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "- מצב: " + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "- ציבורי: " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "- קרב: " + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "- שם שרת: " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "שנה סיסמה" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "המשך" + +#: src/client/game_formspec.cpp +#, fuzzy +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" +"פקדי ברירת מחדל:\n" +"לא נראה תפריט:\n" +"- לחיצה בודדת: הפעלת כפתור\n" +"- הקשה כפולה: מקום / שימוש\n" +"- החלק אצבע: הביט סביב\n" +"תפריט / מלאי גלוי:\n" +"- לחיצה כפולה (בחוץ):\n" +"--> סגור\n" +"- מחסנית מגע, חריץ מגע:\n" +"--> הזז מחסנית\n" +"- גע וגרור, הקש על האצבע השנייה\n" +"--> מקם פריט יחיד לחריץ\n" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "יציאה לתפריט" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "יציאה למערכת ההפעלה" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "מידע על המשחק:" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "המשחק הושהה" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "שרת אירוח" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "מכובה" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "דולק" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "שרת מרוחק" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "הזדמן" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "ווליום שמע" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "מתת" + #: src/client/gameui.cpp #, fuzzy msgid "Chat currently disabled by game or mod" @@ -2050,8 +2094,9 @@ msgid "Failed to compile the \"%s\" shader." msgstr "הורדת $1 נכשלה" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." -msgstr "" +#, fuzzy +msgid "GLSL is not supported by the driver" +msgstr "מערכת שמע לא נתמכת בבניה הנוכחית" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" #: src/content/mod_configuration.cpp @@ -2101,7 +2146,7 @@ msgstr "קדימה אוטומטי" msgid "Automatic jumping" msgstr "קפיצה אוטומטית" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "" @@ -2113,7 +2158,7 @@ msgstr "אחורה" msgid "Block bounds" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "שנה מצלמה" @@ -2137,7 +2182,7 @@ msgstr "הנמך ווליום" msgid "Double tap \"jump\" to toggle fly" msgstr "לחיצה כפולה על \"קפיצה\" כדי לכבות או להדליק את מצב התעופה" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "הפל" @@ -2153,11 +2198,11 @@ msgstr "הגדל טווח" msgid "Inc. volume" msgstr "הגבר ווליום" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "תיק חפצים" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "קפיצה" @@ -2189,7 +2234,7 @@ msgstr "הפריט הבא" msgid "Prev. item" msgstr "הפריט הקודם" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "בחר טווח" @@ -2201,7 +2246,7 @@ msgstr "ימינה" msgid "Screenshot" msgstr "צילום מסך" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "התכופף" @@ -2209,15 +2254,15 @@ msgstr "התכופף" msgid "Toggle HUD" msgstr "מתג מידע על מסך" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "מתג צא'ט לוג" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "מתג מצב מהיר" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "מתג תעופה" @@ -2225,11 +2270,11 @@ msgstr "מתג תעופה" msgid "Toggle fog" msgstr "מתג ערפל" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "מתג מפה קטנה" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "מתג מעבר דרך קירות" @@ -2237,7 +2282,7 @@ msgstr "מתג מעבר דרך קירות" msgid "Toggle pitchmove" msgstr "מתג תנועה לכיוון מבט" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "זום" @@ -2274,7 +2319,7 @@ msgstr "סיסמה ישנה" msgid "Passwords do not match!" msgstr "סיסמאות לא תואמות!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "יציאה" @@ -2287,15 +2332,46 @@ msgstr "מושתק" msgid "Sound Volume: %d%%" msgstr "עוצמת שמע: " -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Add button" +msgstr "כפתור אמצעי" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "הסתיים!" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Remove" +msgstr "שרת מרוחק" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp msgid "Joystick" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Toggle debug" msgstr "מתג ערפל" @@ -2518,8 +2594,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" "תמיכה בתלת מימד.\n" "נתמך כרגע:\n" @@ -2584,10 +2659,6 @@ msgstr "טווח בלוק פעיל" msgid "Active object send range" msgstr "טווח שליחת אובייקט פעיל" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "הוסף חלקיקים כשחופרים בקוביה." - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2616,6 +2687,16 @@ msgstr "הוסף שם פריט" msgid "Advanced" msgstr "מתקדם" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Allow clouds to look 3D instead of flat." +msgstr "" + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "" @@ -3024,11 +3105,11 @@ msgid "Clouds" msgstr "" #: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." +msgid "Clouds in menu" msgstr "" #: src/settings_translation_file.cpp -msgid "Clouds in menu" +msgid "Color depth for post-processing texture" msgstr "" #: src/settings_translation_file.cpp @@ -3053,7 +3134,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" #: src/settings_translation_file.cpp @@ -3188,6 +3269,14 @@ msgstr "" msgid "Debugging" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "" @@ -3339,20 +3428,11 @@ msgid "" "When the 'snowbiomes' flag is enabled, this is ignored." msgstr "" -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Developer Options" msgstr "קישוטים" -#: src/settings_translation_file.cpp -#, fuzzy -msgid "Digging particles" -msgstr "חלקיקים" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "" @@ -3380,6 +3460,14 @@ msgstr "הקשה כפולה על \"קפיצה\" לתעופה" msgid "Double-tapping the jump key toggles fly mode." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "" @@ -3455,8 +3543,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" #: src/settings_translation_file.cpp @@ -3529,8 +3617,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" #: src/settings_translation_file.cpp @@ -3545,12 +3632,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "" - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -3856,10 +3937,6 @@ msgstr "" msgid "GUI scaling filter" msgstr "" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Gamepads" @@ -4087,12 +4164,6 @@ msgid "" "descending." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -4111,6 +4182,13 @@ msgid "" "empty password." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4205,10 +4283,6 @@ msgstr "" msgid "Interval of saving important changes in the world, stated in seconds." msgstr "" -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "" - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "" @@ -4831,10 +4905,6 @@ msgstr "" msgid "Maximum users" msgstr "" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "" @@ -4867,6 +4937,10 @@ msgstr "" msgid "Minimum limit of random number of small caves per mapchunk." msgstr "" +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "מיפמאפינג" @@ -4957,7 +5031,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" @@ -5403,17 +5477,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5620,16 +5696,6 @@ msgstr "" msgid "Shader path" msgstr "" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "שיידרים" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "" @@ -5793,10 +5859,9 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" #: src/settings_translation_file.cpp @@ -6075,10 +6140,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "" -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "" @@ -6138,6 +6199,10 @@ msgstr "" msgid "Transparency Sorting Distance" msgstr "" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "" @@ -6188,7 +6253,10 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" #: src/settings_translation_file.cpp @@ -6211,16 +6279,14 @@ msgstr "" msgid "Upper Y limit of floatlands." msgstr "" -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "" - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "" #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" #: src/settings_translation_file.cpp @@ -6465,20 +6531,12 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -6489,10 +6547,6 @@ msgid "" "Mods may still set a background." msgstr "" -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -6515,8 +6569,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -6673,6 +6726,9 @@ msgstr "(cURL) מגבלה לפעולות במקביל" #~ "השאר את זה ריק כדי להפעיל שרת מקומי.\n" #~ "שים לב ששדה הכתובת בתפריט הראשי עוקף הגדרה זו." +#~ msgid "Adds particles when digging a node." +#~ msgstr "הוסף חלקיקים כשחופרים בקוביה." + #~ msgid "" #~ "Adjust dpi configuration to your screen (non X11/Android only) e.g. for " #~ "4k screens." @@ -6802,10 +6858,20 @@ msgstr "(cURL) מגבלה לפעולות במקביל" #~ msgid "Damage enabled" #~ msgstr "נזק מופעל" +#~ msgid "Debug info and profiler graph hidden" +#~ msgstr "מידע דיבאג וגרף פרופיילר מוסתר" + +#~ msgid "Debug info, profiler graph, and wireframe hidden" +#~ msgstr "מידע דיבאג, גרף פרופיילר, ומצב שלד מוסתר" + #, fuzzy #~ msgid "Dig key" #~ msgstr "מקש התזוזה ימינה" +#, fuzzy +#~ msgid "Digging particles" +#~ msgstr "חלקיקים" + #~ msgid "Disabled unlimited viewing range" #~ msgstr "ביטול טווח ראיה בלתי מוגבל" @@ -6818,6 +6884,10 @@ msgstr "(cURL) מגבלה לפעולות במקביל" #~ msgid "Download one from minetest.net" #~ msgstr "הורד אחד מאתר minetest.net" +#, fuzzy +#~ msgid "Enable" +#~ msgstr "מופעל" + #, fuzzy #~ msgid "Enable VBO" #~ msgstr "אפשר בכל" @@ -6837,9 +6907,6 @@ msgstr "(cURL) מגבלה לפעולות במקביל" #~ msgid "Forward key" #~ msgstr "מקש התזוזה קדימה" -#~ msgid "Game" -#~ msgstr "משחק" - #, fuzzy #~ msgid "Hide: Temporary Settings" #~ msgstr "הגדרות" @@ -6921,12 +6988,22 @@ msgstr "(cURL) מגבלה לפעולות במקביל" #~ msgid "Screen:" #~ msgstr "מסך:" +#~ msgid "Shaders" +#~ msgstr "שיידרים" + #~ msgid "Shaders (experimental)" #~ msgstr "שיידרים (נסיוני)" +#, fuzzy +#~ msgid "Shaders are disabled." +#~ msgstr "עדכון מצלמה מבוטל" + #~ msgid "Simple Leaves" #~ msgstr "עלים פשוטים" +#~ msgid "Sound system is disabled" +#~ msgstr "מערכת שמע לא מופעלת" + #~ msgid "Special" #~ msgstr "מיוחד" diff --git a/po/hi/luanti.po b/po/hi/luanti.po index 3c1e3365a..34cb7b5de 100644 --- a/po/hi/luanti.po +++ b/po/hi/luanti.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: minetest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" "PO-Revision-Date: 2023-11-17 00:07+0000\n" "Last-Translator: Ritwik \n" "Language-Team: Hindi ] [-t]" msgstr "[सभी | ]" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "ढूंढें" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "बदलें" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "फाईल पाथ चुनें" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "फाईल चुनें" + +#: builtin/common/settings/components.lua +#, fuzzy +msgid "Set" +msgstr "सिलेक्ट" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(सेटिंग के बारे में कुछ नहीं बताया गया है)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "द्वि आयामी नॉइस" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "रद्द करें" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "लैकुनारिटी" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "सप्टक (आक्टेव)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "आफसेट" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#, fuzzy +msgid "Persistence" +msgstr "हठ (पर्सिस्टेन्स)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "सहेजें" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "स्केल" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "बीज" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "X स्प्रेड" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "Y स्प्रेड" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "Z स्प्रेड" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "एब्सोल्यूट वैल्यू" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "डीफाल्ट" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "आरामदायक (ईज़्ड)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "बातें" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "खाली करें" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "कंट्रोल्स" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "रुका हुआ" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "चालू" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Movement" +msgstr "तेज चलन" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "परिणाम शून्य" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Reset setting to default" +msgstr "मूल चुनें" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "ढूंढें" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "तकनीकी नाम देखें" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Touchscreen layout" +msgstr "माउस संवेदनशीलता" + +#: builtin/common/settings/dlg_settings.lua +msgid "pause_menu" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Client Mods" +msgstr "ग्राहक Mods" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Content: Games" +msgstr "वस्तुएं" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Content: Mods" +msgstr "वस्तुएं" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "" + #: builtin/fstk/ui.lua msgid "" msgstr "<अनुपलब्ध>" @@ -165,7 +410,6 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "पीछे" @@ -202,11 +446,6 @@ msgstr "माॅड" msgid "No packages could be retrieved" msgstr "कोई संदूक प्राप्त नहीं किया जा सका" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "परिणाम शून्य" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "अद्यतन अनुपलब्ध" @@ -252,18 +491,6 @@ msgstr "पहले ही संस्थापित है" msgid "Base Game:" msgstr "मूल खेल :" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "रद्द करें" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -393,6 +620,12 @@ msgstr "मॉड को $1 के रूप में इन्स्टाल msgid "Unable to install a $1 as a texture pack" msgstr "$1 कला संकुल के रूप में इन्स्टाल नहीं किया जा सका" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "(सक्षम, त्रुटि है)" @@ -457,12 +690,6 @@ msgstr "वैकल्पिक निर्भरतायें नहीं msgid "Optional dependencies:" msgstr "वैकल्पिक निर्भरतायें :" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "सहेजें" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "विश्व :" @@ -613,11 +840,6 @@ msgstr "नदियाँ" msgid "Sea level rivers" msgstr "समुद्र तल की नदियाँ" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "बीज" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "जीवोमों के बीच सहज परिवर्तन" @@ -757,6 +979,23 @@ msgid "" "override any renaming here." msgstr "modpack.conf फाईल में इस माॅडपैक को जो नाम दिया गया है वही माना जाएगा।" +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "सब सक्षम करें" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "एक नया $1 संस्करण उपलब्ध है" @@ -785,7 +1024,7 @@ msgstr "कभी नहीं" msgid "Visit website" msgstr "जालस्थल पर जायें" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "सेटिंग" @@ -798,231 +1037,6 @@ msgstr "क्लाइंट की तरफ से स्क्रिप् msgid "Try reenabling public serverlist and check your internet connection." msgstr "सार्वजनिक सर्वर शृंखला (सर्वर लिस्ट) को 'हां' करें और इंटरनेट कनेक्शन जांचें।" -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "ढूंढें" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "बदलें" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "फाईल पाथ चुनें" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "फाईल चुनें" - -#: builtin/mainmenu/settings/components.lua -#, fuzzy -msgid "Set" -msgstr "सिलेक्ट" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(सेटिंग के बारे में कुछ नहीं बताया गया है)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "द्वि आयामी नॉइस" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "लैकुनारिटी" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "सप्टक (आक्टेव)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "आफसेट" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#, fuzzy -msgid "Persistence" -msgstr "हठ (पर्सिस्टेन्स)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "स्केल" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "X स्प्रेड" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "Y स्प्रेड" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "Z स्प्रेड" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "एब्सोल्यूट वैल्यू" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "डीफाल्ट" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "आरामदायक (ईज़्ड)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "बातें" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "खाली करें" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "कंट्रोल्स" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "रुका हुआ" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "चालू" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Movement" -msgstr "तेज चलन" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Reset setting to default" -msgstr "मूल चुनें" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "ढूंढें" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "तकनीकी नाम देखें" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "ग्राहक Mods" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Content: Games" -msgstr "वस्तुएं" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Content: Mods" -msgstr "वस्तुएं" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "चालू" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Shaders are disabled." -msgstr "कैमरा रुका हुआ" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "जानकारी" @@ -1043,10 +1057,6 @@ msgstr "मुख्य डेवेलपर" msgid "Core Team" msgstr "" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "" - #: builtin/mainmenu/tab_about.lua #, fuzzy msgid "Open User Data Directory" @@ -1196,11 +1206,23 @@ msgstr "खेल शुरू करें" msgid "You need to install a game before you can create a world." msgstr "" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "पसंद हटाएं" + #: builtin/mainmenu/tab_online.lua #, fuzzy msgid "Address" msgstr "- एड्रेस : " +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "ग्राहक Mods" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "असीमित संसाधन" @@ -1216,6 +1238,11 @@ msgstr "- हानि : " msgid "Favorites" msgstr "पसंद" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "खेल" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "" @@ -1228,10 +1255,26 @@ msgstr "खेल में शामिल होएं" msgid "Login" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +msgid "Open server website" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "पिंग" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua #, fuzzy msgid "Public Servers" @@ -1321,23 +1364,6 @@ msgstr "" "\n" "अधिक जानकारी के लिए debug.txt देखें।" -#: src/client/game.cpp -msgid "- Mode: " -msgstr "- तकनीक : " - -#: src/client/game.cpp -msgid "- Public: " -msgstr "- सार्वजनिक : " - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "- खिलाड़ियों में मारा-पीटी : " - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "- सर्वर का नाम : " - #: src/client/game.cpp #, fuzzy msgid "A serialization error occurred:" @@ -1348,6 +1374,11 @@ msgstr "एक खराबी हो गयी :" msgid "Access denied. Reason: %s" msgstr "" +#: src/client/game.cpp +#, fuzzy +msgid "All debug info hidden" +msgstr "डीबग जानकारी दिखाई दे रही है" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "स्वचाल रुका हुआ" @@ -1368,6 +1399,10 @@ msgstr "" msgid "Block bounds shown for nearby blocks" msgstr "" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "कैमरा रुका हुआ" @@ -1381,10 +1416,6 @@ msgstr "कैमरा चालू" msgid "Can't show block bounds (disabled by game or mod)" msgstr "खेल या मॉड़ के वजह से इस समय ज़ूम मना है" -#: src/client/game.cpp -msgid "Change Password" -msgstr "पासवर्ड बदलें" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "सिनेमा चाल रुका हुआ" @@ -1413,39 +1444,6 @@ msgstr "कनेक्शन खराबी (समय अंत?)" msgid "Connection failed for unknown reason" msgstr "" -#: src/client/game.cpp -msgid "Continue" -msgstr "आगे बढ़ें" - -#: src/client/game.cpp -#, fuzzy -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" -"आम कंट्रोल्स :\n" -"कोई मेनू खुला नहीं है :\n" -"-एक बार टैप : बटन दबेगा\n" -"-दो टॉप: डालना/ इस्तेमाल करना\n" -"-उंगली फिसलाना : मुड़ना\n" -"कोई मेनू या वस्तु सूची खुली है :\n" -"-बाहर दो बार टैप :\n" -"--> बंद\n" -"- ढेर छूएं, स्थान छूएं\n" -"--> ढेर का स्थान बदलने के लिए\n" -"- छुए व खींचे, दूसरी उंगली से टैप करें\n" -"--> एक वस्तु स्थान में डालें\n" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1459,31 +1457,15 @@ msgstr "क्लाइंट बनाया जा रहा है ..." msgid "Creating server..." msgstr "सर्वर बनाया जा रहा है ..." -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "डीबग जानकारी व प्रोफाइल गायब" - #: src/client/game.cpp msgid "Debug info shown" msgstr "डीबग जानकारी दिखाई दे रही है" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "डीबग जानकारी, प्रोफाइलर व रूपरेखा गायब" - #: src/client/game.cpp #, fuzzy, c-format msgid "Error creating client: %s" msgstr "क्लाइंट बनाया जा रहा है ..." -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "बंद करके मेनू पर जाएं" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "बंद करके ओ॰ एस॰ में जाएं" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "तेज चलन रुका हुआ" @@ -1521,18 +1503,6 @@ msgstr "कोहरा चालू" msgid "Fog enabled by game or mod" msgstr "खेल या मॉड़ के वजह से इस समय ज़ूम मना है" -#: src/client/game.cpp -msgid "Game info:" -msgstr "खेल की जानकारी :" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "खेल रुका हुआ है" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "सर्वर चलन" - #: src/client/game.cpp msgid "Item definitions..." msgstr "वस्तुओं के अर्थ ..." @@ -1570,14 +1540,6 @@ msgstr "तरल चाल चालू (सूचना: आपके पा msgid "Node definitions..." msgstr "डिब्बों का अर्थ ..." -#: src/client/game.cpp -msgid "Off" -msgstr "ऑफ" - -#: src/client/game.cpp -msgid "On" -msgstr "ऑन" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "पिच चलन रुका हुआ" @@ -1590,38 +1552,22 @@ msgstr "पिच चलन चालू" msgid "Profiler graph shown" msgstr "प्रोफाईलर दिखाई दे रहा है" -#: src/client/game.cpp -msgid "Remote server" -msgstr "बाहर का सर्वर" - #: src/client/game.cpp msgid "Resolving address..." msgstr "एड्रेस समझा जा रहा है ..." -#: src/client/game.cpp -msgid "Respawn" -msgstr "पुनः जीवित हों" - #: src/client/game.cpp msgid "Shutting down..." msgstr "शट डाउन हो रहा है ..." -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "एक-खिलाडी" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "आवाज़ वॉल्यूम" - #: src/client/game.cpp msgid "Sound muted" msgstr "आवाज़ बंद" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "" @@ -1695,18 +1641,116 @@ msgstr "दृष्टि सीमा बदलकर %d है" msgid "Volume changed to %d%%" msgstr "वॉल्यूम को बदलकर %d%%" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "डिब्बे रेखांकित" -#: src/client/game.cpp -msgid "You died" -msgstr "आपकी मौत हो गयी" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "खेल या मॉड़ के वजह से इस समय ज़ूम मना है" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "- तकनीक : " + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "- सार्वजनिक : " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "- खिलाड़ियों में मारा-पीटी : " + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "- सर्वर का नाम : " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "पासवर्ड बदलें" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "आगे बढ़ें" + +#: src/client/game_formspec.cpp +#, fuzzy +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" +"आम कंट्रोल्स :\n" +"कोई मेनू खुला नहीं है :\n" +"-एक बार टैप : बटन दबेगा\n" +"-दो टॉप: डालना/ इस्तेमाल करना\n" +"-उंगली फिसलाना : मुड़ना\n" +"कोई मेनू या वस्तु सूची खुली है :\n" +"-बाहर दो बार टैप :\n" +"--> बंद\n" +"- ढेर छूएं, स्थान छूएं\n" +"--> ढेर का स्थान बदलने के लिए\n" +"- छुए व खींचे, दूसरी उंगली से टैप करें\n" +"--> एक वस्तु स्थान में डालें\n" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "बंद करके मेनू पर जाएं" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "बंद करके ओ॰ एस॰ में जाएं" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "खेल की जानकारी :" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "खेल रुका हुआ है" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "सर्वर चलन" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "ऑफ" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "ऑन" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "बाहर का सर्वर" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "पुनः जीवित हों" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "आवाज़ वॉल्यूम" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "आपकी मौत हो गयी" + #: src/client/gameui.cpp #, fuzzy msgid "Chat currently disabled by game or mod" @@ -2047,7 +2091,7 @@ msgid "Failed to compile the \"%s\" shader." msgstr "$1 का डाऊनलोड असफल हुआ" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." +msgid "GLSL is not supported by the driver" msgstr "" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" @@ -2098,7 +2142,7 @@ msgstr "स्वचालन" msgid "Automatic jumping" msgstr "कूदने के लिए बटन दबाना अनावश्यक" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "" @@ -2110,7 +2154,7 @@ msgstr "पीछे जाएं" msgid "Block bounds" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "कैमरा बदलना" @@ -2134,7 +2178,7 @@ msgstr "आवाज़ कम" msgid "Double tap \"jump\" to toggle fly" msgstr "उड़ने के लिए दो बार कूदें" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "वस्तु गिराना" @@ -2150,11 +2194,11 @@ msgstr "दृष्टि सीमा अधिक" msgid "Inc. volume" msgstr "आवाज अधिक" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "वस्तु सूची" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "कूदना" @@ -2186,7 +2230,7 @@ msgstr "अगला वस्तु" msgid "Prev. item" msgstr "पिछली वस्तु" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "दृष्टि सीमा चुनना" @@ -2198,7 +2242,7 @@ msgstr "दाहिना" msgid "Screenshot" msgstr "स्क्रीनशॉट" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "संभल के चलना" @@ -2206,15 +2250,15 @@ msgstr "संभल के चलना" msgid "Toggle HUD" msgstr "हे. अ. डि" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "बातें दिखना" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "तेज चलन" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "उड़ना" @@ -2222,11 +2266,11 @@ msgstr "उड़ना" msgid "Toggle fog" msgstr "कोहरा" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "छोटा नक्शा" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "तरल चाल" @@ -2234,7 +2278,7 @@ msgstr "तरल चाल" msgid "Toggle pitchmove" msgstr "पिच चलन" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "ज़ूम" @@ -2271,7 +2315,7 @@ msgstr "पुराना पासवर्ड" msgid "Passwords do not match!" msgstr "पासवर्ड अलग-अलग हैं!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "निकास" @@ -2284,15 +2328,46 @@ msgstr "चुप" msgid "Sound Volume: %d%%" msgstr "आवाज " -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Add button" +msgstr "बीच का बटन" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "हो गया !" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Remove" +msgstr "बाहर का सर्वर" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp msgid "Joystick" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Toggle debug" msgstr "कोहरा" @@ -2492,8 +2567,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" #: src/settings_translation_file.cpp @@ -2546,10 +2620,6 @@ msgstr "" msgid "Active object send range" msgstr "" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "" - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2573,6 +2643,16 @@ msgstr "दुनिया का नाम" msgid "Advanced" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Allow clouds to look 3D instead of flat." +msgstr "" + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "" @@ -2949,11 +3029,11 @@ msgid "Clouds" msgstr "" #: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." +msgid "Clouds in menu" msgstr "" #: src/settings_translation_file.cpp -msgid "Clouds in menu" +msgid "Color depth for post-processing texture" msgstr "" #: src/settings_translation_file.cpp @@ -2978,7 +3058,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" #: src/settings_translation_file.cpp @@ -3113,6 +3193,14 @@ msgstr "" msgid "Debugging" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "" @@ -3264,19 +3352,11 @@ msgid "" "When the 'snowbiomes' flag is enabled, this is ignored." msgstr "" -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Developer Options" msgstr "सजावट" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "" @@ -3304,6 +3384,14 @@ msgstr "उड़ने के लिए दो बार कूदें" msgid "Double-tapping the jump key toggles fly mode." msgstr "दो बार कूदने से उड़ान चलन चालू हो जाता है।" +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "" @@ -3379,8 +3467,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" #: src/settings_translation_file.cpp @@ -3453,8 +3541,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" #: src/settings_translation_file.cpp @@ -3469,12 +3556,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "" - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -3777,10 +3858,6 @@ msgstr "" msgid "GUI scaling filter" msgstr "" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Gamepads" @@ -4012,12 +4089,6 @@ msgstr "" "अगर यहां चालू हुआ तो नीचे उतरने के लिए स्पेशल\n" "की का इस्तेमाल होगा।" -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -4036,6 +4107,13 @@ msgid "" "empty password." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4133,10 +4211,6 @@ msgstr "" msgid "Interval of saving important changes in the world, stated in seconds." msgstr "" -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "" - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "" @@ -4753,10 +4827,6 @@ msgstr "" msgid "Maximum users" msgstr "" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "" @@ -4790,6 +4860,10 @@ msgstr "" msgid "Minimum limit of random number of small caves per mapchunk." msgstr "" +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "" @@ -4880,7 +4954,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" @@ -5324,17 +5398,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5531,16 +5607,6 @@ msgstr "" msgid "Shader path" msgstr "" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "छाया बनावट" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "" @@ -5706,10 +5772,9 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" #: src/settings_translation_file.cpp @@ -5988,10 +6053,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "" -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "" @@ -6053,6 +6114,10 @@ msgstr "" msgid "Transparency Sorting Distance" msgstr "" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "" @@ -6103,7 +6168,10 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" #: src/settings_translation_file.cpp @@ -6126,16 +6194,14 @@ msgstr "" msgid "Upper Y limit of floatlands." msgstr "" -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "" - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "" #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" #: src/settings_translation_file.cpp @@ -6373,20 +6439,12 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -6397,10 +6455,6 @@ msgid "" "Mods may still set a background." msgstr "" -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -6423,8 +6477,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -6650,6 +6703,12 @@ msgstr "" #~ msgid "Damage enabled" #~ msgstr "हानि व मृत्यु हो सकती है" +#~ msgid "Debug info and profiler graph hidden" +#~ msgstr "डीबग जानकारी व प्रोफाइल गायब" + +#~ msgid "Debug info, profiler graph, and wireframe hidden" +#~ msgstr "डीबग जानकारी, प्रोफाइलर व रूपरेखा गायब" + #~ msgid "Disabled unlimited viewing range" #~ msgstr "दृष्टि सीमित" @@ -6665,6 +6724,10 @@ msgstr "" #~ msgid "Downloading and installing $1, please wait..." #~ msgstr "$1 का डाऊनलोड व इन्स्टाल चल रहा है, कृपया ठहरें ..." +#, fuzzy +#~ msgid "Enable" +#~ msgstr "चालू" + #~ msgid "Enter " #~ msgstr "डालें " @@ -6682,9 +6745,6 @@ msgstr "" #~ msgid "Flying" #~ msgstr "उडना" -#~ msgid "Game" -#~ msgstr "खेल" - #~ msgid "Generate Normal Maps" #~ msgstr "मामूली नक्शे बनाएं" @@ -6804,6 +6864,9 @@ msgstr "" #~ msgid "Screen:" #~ msgstr "स्क्रीन :" +#~ msgid "Shaders" +#~ msgstr "छाया बनावट" + #, fuzzy #~ msgid "Shaders (experimental)" #~ msgstr "फ्लोटलैंड्स (आसमान में तैरते हुए भूमि-खंड) (प्रायोगिक)" @@ -6811,6 +6874,10 @@ msgstr "" #~ msgid "Shaders (unavailable)" #~ msgstr "छाया बनावट (अनुपलब्ध)" +#, fuzzy +#~ msgid "Shaders are disabled." +#~ msgstr "कैमरा रुका हुआ" + #~ msgid "Simple Leaves" #~ msgstr "मामूली पत्ते" diff --git a/po/hu/luanti.po b/po/hu/luanti.po index 68ec9326e..873f21142 100644 --- a/po/hu/luanti.po +++ b/po/hu/luanti.po @@ -2,9 +2,9 @@ msgid "" msgstr "" "Project-Id-Version: Hungarian (Minetest)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" -"PO-Revision-Date: 2024-10-26 09:15+0000\n" -"Last-Translator: Unacceptium \n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" +"PO-Revision-Date: 2025-01-29 00:05+0000\n" +"Last-Translator: Balázs Kovács \n" "Language-Team: Hungarian \n" "Language: hu\n" @@ -12,7 +12,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.8.2-dev\n" +"X-Generator: Weblate 5.10-dev\n" #: builtin/client/chatcommands.lua msgid "Clear the out chat queue" @@ -63,9 +63,8 @@ msgid "Command not available: " msgstr "A parancs nem elérhető: " #: builtin/common/chatcommands.lua -#, fuzzy msgid "Get help for commands (-t: output in chat)" -msgstr "Segítség kérése a parancsokhoz" +msgstr "Segítség kérése a parancsokhoz (-t: megjelenítés a csevegésben)" #: builtin/common/chatcommands.lua msgid "" @@ -75,9 +74,248 @@ msgstr "" "kilistázásához a '.help all' parancsot." #: builtin/common/chatcommands.lua -#, fuzzy msgid "[all | ] [-t]" -msgstr "[all | ]" +msgstr "[all | ] [-t]" + +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "Tallózás" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "Szerkesztés" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "Útvonal kiválasztása" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "Fájl kiválasztása" + +#: builtin/common/settings/components.lua +msgid "Set" +msgstr "Beállít" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(Nincs megadva leírás a beállításhoz)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "2D zaj" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "Mégse" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "Hézagosság" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "Oktávok" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "Eltolás" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "Folytonosság" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "Mentés" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "Mérték" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "Kezdőérték" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "X kiterjedés" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "Y kiterjedés" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "Z kiterjedés" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "abszolút érték" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "alapértelmezett" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "könyített" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "(A játéknak engedélyeznie kell az automatikus expozíciót is)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "(A játéknak engedélyeznie kell a ragyogást is)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "(A játéknak engedélyeznie kell a sugaras megvilágítást is)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "(Eszköz nyelve)" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "Kényelmes használat" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "Automatikus" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "Csevegés" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "Törlés" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "Irányítás" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "Letiltva" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "Engedélyezve" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "Általános" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "Mozgás" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "Nincs találat" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default" +msgstr "Beállítások viszaállítása alapértelmezettre" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "Beállítások alapértelmezettre állítása ($1)" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "Keresés" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "Haladó beállítások mutatása" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "Technikai nevek megjelenítése" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Touchscreen layout" +msgstr "Érintőképernyő" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "pause_menu" +msgstr "FPS a szünet menüben" + +#: builtin/common/settings/settingtypes.lua +msgid "Client Mods" +msgstr "Kliens modok" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "Tartalom: játékok" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "Tartalom: modok" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "(A játéknak engedélyeznie kell az árnyékokat is)" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "Egyedi" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "Dinamikus árnyékok" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "Magas" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "Alacsony" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "Közepes" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "Nagyon magas" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "Nagyon alacsony" #: builtin/fstk/ui.lua msgid "" @@ -140,12 +378,12 @@ msgid "Failed to download $1" msgstr "$1 letöltése nem sikerült" #: builtin/mainmenu/content/contentdb.lua -#, fuzzy msgid "" "Failed to extract \"$1\" (insufficient disk space, unsupported file type or " "broken archive)" msgstr "" -"$1 kibontása sikertelen (nem támogatott fájltípus vagy sérült archívum)" +"\"$1\" kibontása sikertelen (nincs elég hely a lemezen, nem támogatott " +"fájltípus vagy sérült archívum)" #: builtin/mainmenu/content/dlg_contentdb.lua msgid "" @@ -161,18 +399,16 @@ msgstr "$1 letöltése…" #: builtin/mainmenu/content/dlg_contentdb.lua msgid "All" -msgstr "" +msgstr "Mind" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "Vissza" #: builtin/mainmenu/content/dlg_contentdb.lua -#, fuzzy msgid "ContentDB is not available when Luanti was compiled without cURL" -msgstr "A ContentDB nem elérhető, ha a Minetest cURL nélkül lett lefordítva" +msgstr "A ContentDB nem elérhető, ha cURL nélkül lett lefordítva a Luanti" #: builtin/mainmenu/content/dlg_contentdb.lua msgid "Downloading..." @@ -180,7 +416,7 @@ msgstr "Letöltés…" #: builtin/mainmenu/content/dlg_contentdb.lua msgid "Featured" -msgstr "" +msgstr "Kiemelt" #: builtin/mainmenu/content/dlg_contentdb.lua msgid "Games" @@ -202,11 +438,6 @@ msgstr "Modok" msgid "No packages could be retrieved" msgstr "A csomagok nem nyerhetők vissza" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "Nincs találat" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "Nincsenek frissítések" @@ -216,7 +447,6 @@ msgid "Queued" msgstr "Sorba állítva" #: builtin/mainmenu/content/dlg_contentdb.lua -#, fuzzy msgid "Texture Packs" msgstr "Textúracsomagok" @@ -252,27 +482,14 @@ msgstr "Már telepítve" msgid "Base Game:" msgstr "Alapjáték:" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "Mégse" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" msgstr "Függőségek:" #: builtin/mainmenu/content/dlg_install.lua -#, fuzzy msgid "Error getting dependencies for package $1" -msgstr "Hiba történt a csomag függőségeinek beszerzésekor" +msgstr "Hiba történt a(z) $1 csomag függőségeinek beszerzésekor" #: builtin/mainmenu/content/dlg_install.lua msgid "Install" @@ -307,44 +524,40 @@ msgid "Overwrite" msgstr "Felülírás" #: builtin/mainmenu/content/dlg_package.lua -#, fuzzy msgid "ContentDB page" -msgstr "ContentDB URL" +msgstr "ContentDB oldal" #: builtin/mainmenu/content/dlg_package.lua -#, fuzzy msgid "Description" -msgstr "Szerver leírása" +msgstr "Leírás" #: builtin/mainmenu/content/dlg_package.lua msgid "Donate" -msgstr "" +msgstr "Adományoz" #: builtin/mainmenu/content/dlg_package.lua msgid "Forum Topic" -msgstr "" +msgstr "Fórumtéma" #: builtin/mainmenu/content/dlg_package.lua -#, fuzzy msgid "Information" -msgstr "Információ:" +msgstr "Információk" #: builtin/mainmenu/content/dlg_package.lua -#, fuzzy msgid "Install [$1]" -msgstr "$1 telepítése" +msgstr "[$1] telepítése" #: builtin/mainmenu/content/dlg_package.lua msgid "Issue Tracker" -msgstr "" +msgstr "Problémajelzés" #: builtin/mainmenu/content/dlg_package.lua msgid "Source" -msgstr "" +msgstr "Forráskód" #: builtin/mainmenu/content/dlg_package.lua msgid "Translate" -msgstr "" +msgstr "Fordítás" #: builtin/mainmenu/content/dlg_package.lua builtin/mainmenu/tab_content.lua msgid "Uninstall" @@ -355,13 +568,12 @@ msgid "Update" msgstr "Frissítés" #: builtin/mainmenu/content/dlg_package.lua -#, fuzzy msgid "Website" -msgstr "Weboldal megtekintése" +msgstr "Weboldal" #: builtin/mainmenu/content/dlg_package.lua msgid "by $1 — $2 downloads — +$3 / $4 / -$5" -msgstr "" +msgstr "készítő: $1 — $2 letöltés — +$3 / $4 / -$5" #: builtin/mainmenu/content/pkgmgr.lua msgid "$1 (Enabled)" @@ -391,6 +603,12 @@ msgstr "$1 nem telepíthető $2 ként" msgid "Unable to install a $1 as a texture pack" msgstr "Egy $1 telepítése textúracsomagként meghiúsult" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "(Engedélyezve, hibás)" @@ -455,12 +673,6 @@ msgstr "Nincsenek választható függőségek" msgid "Optional dependencies:" msgstr "Választható függőségek:" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "Mentés" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "Világ:" @@ -577,11 +789,11 @@ msgstr "Térképgenerálás" #: builtin/mainmenu/dlg_create_world.lua src/settings_translation_file.cpp msgid "Mapgen flags" -msgstr "Térképgenerátor jelzői" +msgstr "Térképgenerátor kapcsolói" #: builtin/mainmenu/dlg_create_world.lua msgid "Mapgen-specific flags" -msgstr "Térképgenerátor saját jelzői" +msgstr "Térképgenerátor változatától függő kapcsolók" #: builtin/mainmenu/dlg_create_world.lua msgid "Mountains" @@ -615,11 +827,6 @@ msgstr "Folyók" msgid "Sea level rivers" msgstr "Tengerszinti folyók" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "Kezdőérték" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "Lágy átmenet a biomok között" @@ -724,14 +931,12 @@ msgid "Dismiss" msgstr "Elhagy(ás)" #: builtin/mainmenu/dlg_reinstall_mtg.lua -#, fuzzy msgid "" "For a long time, Luanti shipped with a default game called \"Minetest " "Game\". Since version 5.8.0, Luanti ships without a default game." msgstr "" -"A Minetest motort hosszú ideig a \"Minetest Game\" nevű alapértelmezett " -"játékkal települt. A Minetest 5.8.0 óta a Minetest alapértelmezett játék " -"nélkül települ." +"A Luanti sokáig a \"Minetest Game\" nevű alapértelmezett játékkal települt. " +"Az 5.8.0 verzió óta a Luanti alapértelmezett játék nélkül települ." #: builtin/mainmenu/dlg_reinstall_mtg.lua msgid "" @@ -765,6 +970,23 @@ msgstr "" "Ennek a modcsomagnak a neve a modpack.conf fájlban meghatározott, ami " "felülír minden itteni átnevezést." +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "Összes engedélyezése" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "$1 új verziója elérhető" @@ -793,7 +1015,7 @@ msgstr "Soha" msgid "Visit website" msgstr "Weboldal megtekintése" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "Beállítások" @@ -807,231 +1029,9 @@ msgstr "" "Próbáld újra engedélyezni a nyilvános szerverlistát, és ellenőrizd az " "internetkapcsolatot." -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "Tallózás" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "Szerkesztés" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "Útvonal kiválasztása" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "Fájl kiválasztása" - -#: builtin/mainmenu/settings/components.lua -msgid "Set" -msgstr "Beállít" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(Nincs megadva leírás a beállításhoz)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "2D zaj" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "Hézagosság" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "Oktávok" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "Eltolás" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "Folytonosság" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "Mérték" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "X kiterjedés" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "Y kiterjedés" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "Z kiterjedés" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "abszolút érték" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "alapértelmezett" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "könyített" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable automatic exposure as well)" -msgstr "(A játéknak engedélyeznie kell az árnyékokat is)" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable bloom as well)" -msgstr "(A játéknak engedélyeznie kell az árnyékokat is)" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "(A játéknak engedélyeznie kell az árnyékokat is)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "(Eszköz nyelve)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "Kényelmes használat" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "Csevegés" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "Törlés" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "Irányítás" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "Letiltva" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "Engedélyezve" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "Általános" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "Mozgások" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default" -msgstr "Beállítások viszaállítása alapértelmezettre" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "Beállítások alapértelmezettre állítása ($1)" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "Keresés" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "Haladó beállítások mutatása" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "Technikai nevek megjelenítése" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "Kliens modok" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "Tartalom: játékok" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "Tartalom: modok" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "Engedélyezve" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Shaders are disabled." -msgstr "Kamera frissítés letiltva" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "(A játéknak engedélyeznie kell az árnyékokat is)" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "Egyedi" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "Dinamikus árnyékok" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "Magas" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "Alacsony" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "Közepes" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "Nagyon magas" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "Nagyon alacsony" - #: builtin/mainmenu/tab_about.lua msgid "About" -msgstr "Róla" +msgstr "Névjegy" #: builtin/mainmenu/tab_about.lua msgid "Active Contributors" @@ -1049,10 +1049,6 @@ msgstr "Játékmotor-fejlesztők" msgid "Core Team" msgstr "Csapat magja" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "Irrlicht készülék:" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "Felhasználói adatok mappája" @@ -1155,18 +1151,16 @@ msgid "Install games from ContentDB" msgstr "Játékok telepítése ContentDB-ről" #: builtin/mainmenu/tab_local.lua -#, fuzzy msgid "Luanti doesn't come with a game by default." -msgstr "A Minetest Game már nem települ alapból" +msgstr "A Luanti már nem tartalmaz alapból telepített játékot." #: builtin/mainmenu/tab_local.lua -#, fuzzy msgid "" "Luanti is a game-creation platform that allows you to play many different " "games." msgstr "" -"A Minetest egy játék-létrehozó felület, amely lehetővé teszi sok különböző " -"játék játszását." +"A Luanti egy játékkészítő-felület, amely sok különböző játék játszását teszi " +"lehetővé." #: builtin/mainmenu/tab_local.lua msgid "New" @@ -1201,14 +1195,26 @@ msgid "Start Game" msgstr "Indítás" #: builtin/mainmenu/tab_local.lua -#, fuzzy msgid "You need to install a game before you can create a world." -msgstr "Először egy játékot kell telepítened ahhoz, hogy modokat telepíthess" +msgstr "" +"Először egy játékot kell telepítened ahhoz, hogy létrehozz egy világot." + +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "Kedvenc eltávolítása" #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "Cím" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "Kliens" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "Kreatív mód" @@ -1222,6 +1228,11 @@ msgstr "Sérülés / PvP" msgid "Favorites" msgstr "Kedvencek" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "Játék" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "Nem kompatibilis szerverek" @@ -1234,10 +1245,28 @@ msgstr "Csatlakozás játékhoz" msgid "Login" msgstr "Bejelentkezés" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Number of mods: $1" +msgstr "A pályablokk-betöltő szálak száma" + +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Open server website" +msgstr "Dedikált szerver lépés" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "Ping" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Public Servers" msgstr "Nyilvános szerverek" @@ -1322,23 +1351,6 @@ msgstr "" "\n" "A részletekért tekintsd meg a debug.txt fájlt." -#: src/client/game.cpp -msgid "- Mode: " -msgstr "- Mód: " - -#: src/client/game.cpp -msgid "- Public: " -msgstr "- Nyilvános: " - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "- PvP: " - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "- Szerver neve: " - #: src/client/game.cpp msgid "A serialization error occurred:" msgstr "Hiba történt a sorosítás közben:" @@ -1348,6 +1360,11 @@ msgstr "Hiba történt a sorosítás közben:" msgid "Access denied. Reason: %s" msgstr "Hozzáférés megtagadva. Oka: %s" +#: src/client/game.cpp +#, fuzzy +msgid "All debug info hidden" +msgstr "Hibakereső információ engedélyezve" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "Önjárás letiltva" @@ -1368,6 +1385,10 @@ msgstr "Blokkhatárok mutatása az aktuális blokk esetén" msgid "Block bounds shown for nearby blocks" msgstr "Közeli blokkok blokkhatárainak megjelenítése" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "Kamera frissítés letiltva" @@ -1381,10 +1402,6 @@ msgid "Can't show block bounds (disabled by game or mod)" msgstr "" "Nem lehet megjeleníteni a blokkhatárokat (mod vagy játék által letiltva)" -#: src/client/game.cpp -msgid "Change Password" -msgstr "Jelszó módosítása" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "Operatőr mód letiltva" @@ -1413,39 +1430,6 @@ msgstr "Kapcsolódási hiba (időtúllépés?)" msgid "Connection failed for unknown reason" msgstr "Kapcsolat megszakadt ismeretlen okból" -#: src/client/game.cpp -msgid "Continue" -msgstr "Folytatás" - -#: src/client/game.cpp -#, fuzzy -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" -"Alapértelmezett irányítás:\n" -"Nincs látható menü:\n" -"-ujj csúsztatása: nézelődés\n" -"- egy érintés: gomb aktiválás\n" -"- dupla érintés: lehelyezés/használat\n" -"Menü/leltár látható:\n" -"- dupla érintés (kívül):\n" -" -->bezárás\n" -"- köteg, vagy hely érintése:\n" -" --> köteg mozgatás\n" -"- \"érint&húz\", érintés 2. ujjal\n" -" --> letesz egyetlen tárgyat a helyre\n" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1459,31 +1443,15 @@ msgstr "Kliens létrehozása…" msgid "Creating server..." msgstr "Szerver létrehozása…" -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "Hibakereső információ és pofiler elrejtése" - #: src/client/game.cpp msgid "Debug info shown" msgstr "Hibakereső információ engedélyezve" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "Hibakereső információk, profilergrafika, drótkeret rejtett" - #: src/client/game.cpp #, c-format msgid "Error creating client: %s" msgstr "Hiba a kliens létrehozása közben: %s" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "Kilépés a főmenübe" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "Kilépés a játékból" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "Gyors mód letiltva" @@ -1517,21 +1485,8 @@ msgid "Fog enabled" msgstr "köd engedélyezve" #: src/client/game.cpp -#, fuzzy msgid "Fog enabled by game or mod" -msgstr "Nagyítás letiltva (szerver, vagy mod által)" - -#: src/client/game.cpp -msgid "Game info:" -msgstr "Játékinformációk:" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "Játék szüneteltetve" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "Szerver készítése" +msgstr "A köd be van kapcsolva a játék vagy mod által" #: src/client/game.cpp msgid "Item definitions..." @@ -1569,14 +1524,6 @@ msgstr "Noclip mód engedélyezve (de nincs jogosultságod)" msgid "Node definitions..." msgstr "Kockák meghatározása…" -#: src/client/game.cpp -msgid "Off" -msgstr "Ki" - -#: src/client/game.cpp -msgid "On" -msgstr "Be" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "Pályamozgás mód letiltva" @@ -1589,38 +1536,22 @@ msgstr "Pályamozgás mód engedélyezve" msgid "Profiler graph shown" msgstr "Profilergrafika megjelenítése" -#: src/client/game.cpp -msgid "Remote server" -msgstr "Távoli szerver" - #: src/client/game.cpp msgid "Resolving address..." msgstr "Cím feloldása…" -#: src/client/game.cpp -msgid "Respawn" -msgstr "Újraéledés" - #: src/client/game.cpp msgid "Shutting down..." msgstr "Leállítás…" -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "Egyjátékos" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "Hangerő" - #: src/client/game.cpp msgid "Sound muted" msgstr "Hang némítva" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "A hangrendszer letiltva" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "A hangrendszer nem támogatott ebben build-ben" @@ -1698,18 +1629,117 @@ msgstr "" msgid "Volume changed to %d%%" msgstr "Hangerő átállítva: %d%%" +#: src/client/game.cpp +#, fuzzy +msgid "Wireframe not supported by video driver" +msgstr "" +"Az árnyalók engedélyezve vannak, de a GLSL nem támogatott a meghajtó által." + #: src/client/game.cpp msgid "Wireframe shown" msgstr "Drótváz megjelenítése" -#: src/client/game.cpp -msgid "You died" -msgstr "Meghaltál" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "Nagyítás letiltva (szerver, vagy mod által)" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "- Mód: " + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "- Nyilvános: " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "- PvP: " + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "- Szerver neve: " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "Jelszó módosítása" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "Folytatás" + +#: src/client/game_formspec.cpp +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" +"Irányítás:\n" +"Nincs nyitva menü:\n" +"-ujj csúsztatása: nézelődés\n" +"- érintés: lehelyez/üt/használ (alapértelmezésben)\n" +"- hosszan érintés: ás/használ (alapértelmezésben)\n" +"Menü/felszerelés nyitva:\n" +"- dupla érintés (kívül):\n" +" -->bezárás\n" +"- tárgyköteg érintése, tárgyhely érintése:\n" +" --> köteg mozgatása\n" +"- érint&húz, érintés 2. ujjal\n" +" --> letesz egyetlen tárgyat a helyre\n" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "Kilépés a főmenübe" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "Kilépés a játékból" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "Játékinformációk:" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "Játék szüneteltetve" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "Szerver készítése" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "Ki" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "Be" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "Távoli szerver" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "Újraéledés" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "Hangerő" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "Meghaltál" + #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" msgstr "A csevegést a játék vagy egy mod nem engedélyezi" @@ -2031,12 +2061,13 @@ msgid "Minimap in texture mode" msgstr "Kistérkép textúramódban" #: src/client/shader.cpp -#, fuzzy, c-format +#, c-format msgid "Failed to compile the \"%s\" shader." -msgstr "Weblap megnyitása nem sikerült" +msgstr "A(z) \"%s\" árnyékoló lefordítása nem sikerült." #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." +#, fuzzy +msgid "GLSL is not supported by the driver" msgstr "" "Az árnyalók engedélyezve vannak, de a GLSL nem támogatott a meghajtó által." @@ -2089,7 +2120,7 @@ msgstr "Önjárás" msgid "Automatic jumping" msgstr "Automatikus ugrás" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "Aux1" @@ -2101,7 +2132,7 @@ msgstr "Hátra" msgid "Block bounds" msgstr "Blokkhatárok" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "Nézet váltása" @@ -2125,7 +2156,7 @@ msgstr "Halkítás" msgid "Double tap \"jump\" to toggle fly" msgstr "Nyomj duplán az „ugrásra” a repülés be-/kikapcsolásához" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "Eldobás" @@ -2141,11 +2172,11 @@ msgstr "Látótáv növelése" msgid "Inc. volume" msgstr "Hangosítás" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "Felszerelés" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "Ugrás" @@ -2177,7 +2208,7 @@ msgstr "Következő tárgy" msgid "Prev. item" msgstr "Előző elem" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "Látótávolság választása" @@ -2189,7 +2220,7 @@ msgstr "Jobbra" msgid "Screenshot" msgstr "Képernyőkép" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "Lopakodás" @@ -2197,15 +2228,15 @@ msgstr "Lopakodás" msgid "Toggle HUD" msgstr "Műszerfal ki-be" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "Csevegésnapló váltása" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "Gyors mód váltása" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "Repülés váltása" @@ -2213,11 +2244,11 @@ msgstr "Repülés váltása" msgid "Toggle fog" msgstr "Köd váltása" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "Kistérkép ki-be" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "Noclip mód váltása" @@ -2225,7 +2256,7 @@ msgstr "Noclip mód váltása" msgid "Toggle pitchmove" msgstr "Pályamozgás mód váltása" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "Nagyítás" @@ -2242,9 +2273,8 @@ msgid "Open URL?" msgstr "URL megnyitása?" #: src/gui/guiOpenURL.cpp -#, fuzzy msgid "Unable to open URL" -msgstr "Weblap megnyitása nem sikerült" +msgstr "URL megnyitása nem sikerült" #: src/gui/guiPasswordChange.cpp msgid "Change" @@ -2262,7 +2292,7 @@ msgstr "Régi jelszó" msgid "Passwords do not match!" msgstr "A jelszavak nem egyeznek!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "Kilépés" @@ -2275,38 +2305,69 @@ msgstr "Némitva" msgid "Sound Volume: %d%%" msgstr "Hangerő: %d%%" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp #, fuzzy -msgid "Joystick" -msgstr "Botkormány ID" +msgid "Add button" +msgstr "Középső gomb" -#: src/gui/touchcontrols.cpp -msgid "Overflow menu" +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "Kész!" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Remove" +msgstr "Távoli szerver" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" msgstr "" -#: src/gui/touchcontrols.cpp -#, fuzzy +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp +msgid "Joystick" +msgstr "Botkormány" + +#: src/gui/touchscreenlayout.cpp +msgid "Overflow menu" +msgstr "Túlcsorduló menü" + +#: src/gui/touchscreenlayout.cpp msgid "Toggle debug" -msgstr "Köd váltása" +msgstr "Hibakeresés be-/kikapcsolása" #: src/network/clientpackethandler.cpp msgid "" "Another client is connected with this name. If your client closed " "unexpectedly, try again in a minute." msgstr "" +"Egy másik kliens is csatlakozott már ezzel a névvel. Ha váratlanul " +"bezáródott a kliensed, próbáld újra egy perc múlva." #: src/network/clientpackethandler.cpp msgid "Empty passwords are disallowed. Set a password and try again." msgstr "" +"Nem engedélyezett az üres jelszó. Állíts be egy jelszót, és próbáld újra." #: src/network/clientpackethandler.cpp msgid "Internal server error" -msgstr "" +msgstr "Belső szerverhiba" #: src/network/clientpackethandler.cpp -#, fuzzy msgid "Invalid password" -msgstr "Régi jelszó" +msgstr "Érvénytelen jelszó" #. ~ DO NOT TRANSLATE THIS LITERALLY! #. This is a special string which needs to contain the translation's @@ -2329,46 +2390,48 @@ msgstr "A nevet már használja valaki. Válassz egy másik nevet" #: src/network/clientpackethandler.cpp msgid "Player name contains disallowed characters" -msgstr "" +msgstr "A játékosnév nem megengedett karaktereket tartalmaz" #: src/network/clientpackethandler.cpp -#, fuzzy msgid "Player name not allowed" -msgstr "A játékosnév túl hosszú." +msgstr "Nem engedélyezett játékosnév" #: src/network/clientpackethandler.cpp -#, fuzzy msgid "Server shutting down" -msgstr "Leállítás…" +msgstr "A szerver leáll" #: src/network/clientpackethandler.cpp msgid "" "The server has experienced an internal error. You will now be disconnected." -msgstr "" +msgstr "A szerver belső hibát észlelt. A kapcsolatod meg fog szakadni." #: src/network/clientpackethandler.cpp msgid "The server is running in singleplayer mode. You cannot connect." -msgstr "" +msgstr "A szerver egyjátékos módban fut. Nem tudsz csatlakozni." #: src/network/clientpackethandler.cpp msgid "Too many users" -msgstr "" +msgstr "Túl sok felhasználó" #: src/network/clientpackethandler.cpp msgid "Unknown disconnect reason." -msgstr "" +msgstr "A kapcsolat megszakadt ismeretlen okból." #: src/network/clientpackethandler.cpp msgid "" "Your client sent something the server didn't expect. Try reconnecting or " "updating your client." msgstr "" +"A kliensed nem várt kérést küldött a szervernek. Próbálj újracsatlakozni, " +"vagy frissíteni a kliensedet." #: src/network/clientpackethandler.cpp msgid "" "Your client's version is not supported.\n" "Please contact the server administrator." msgstr "" +"A kliensed verziója nem támogatott.\n" +"Kérlek, lépj kapcsolatba a szerveradminisztrátorral." #: src/server.cpp #, c-format @@ -2504,6 +2567,7 @@ msgid "3D noise that determines number of dungeons per mapchunk." msgstr "3D-s zaj, amely meghatározza a tömlöcök számát egy pályadarabkánként." #: src/settings_translation_file.cpp +#, fuzzy msgid "" "3D support.\n" "Currently supported:\n" @@ -2512,8 +2576,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" "3D támogatás.\n" "Jelenleg támogatott:\n" @@ -2577,10 +2640,6 @@ msgstr "Aktív blokk kiterjedési terület" msgid "Active object send range" msgstr "Aktív objektum küldés hatótávolsága" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "Részecskéket mutat a kockák ásásakor." - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2612,6 +2671,17 @@ msgstr "Adminisztrátor neve" msgid "Advanced" msgstr "Haladó" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +#, fuzzy +msgid "Allow clouds to look 3D instead of flat." +msgstr "3D felhők használata lapos helyett." + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "A folyadékok áttetszőségét teszi lehetővé." @@ -2660,15 +2730,15 @@ msgstr "Elsimítási skála" #: src/settings_translation_file.cpp msgid "Antialiasing method" -msgstr "Élsimítási folyamat" +msgstr "Élsimítási módszer" #: src/settings_translation_file.cpp msgid "Anticheat flags" -msgstr "" +msgstr "Csaláselhárításra vonatkozó kapcsolók" #: src/settings_translation_file.cpp msgid "Anticheat movement tolerance" -msgstr "" +msgstr "Csaláselhárító mozgási tűréshatára" #: src/settings_translation_file.cpp msgid "Append item name" @@ -2683,7 +2753,6 @@ msgid "Apple trees noise" msgstr "Almafa zaj" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Apply dithering to reduce color banding artifacts.\n" "Dithering significantly increases the size of losslessly-compressed\n" @@ -2693,19 +2762,17 @@ msgid "" "With OpenGL ES, dithering only works if the shader supports high\n" "floating-point precision and it may have a higher performance impact." msgstr "" -"DITHERING-et alkalmaz a színsávosodás csökkentéséhez.\n" -"a DITHERING feltűnően növeli a veszteségmentesen\n" -"tömörített képernyőképek méretét, de hibásan\n" -"működik, ha a kijelző, vagy az operációs rendszer\n" -"önmagától is DITHERING-et alkalmaz, vagy ha a\n" -"színcsatornák nem hozzávetőlegesek 8 bithez.\n" -"OpenGL ES-el a DITHERING csak akkor működik, ha\n" -"az árnyalók támogatják a precíz lebegő-pontos számítást, így tőbb erőforrást " -"használ." +"Zajmodulációt alkalmaz a színsávosodás csökkentéséhez.\n" +"A zajmoduláció jelentősen növeli a veszteségmentesen tömörített\n" +"képernyőképek méretét, de hibásan működik, ha a kijelző, vagy az\n" +"operációs rendszer önmagától is zajmodulációt alkalmaz, vagy ha a\n" +"színcsatornák nincsenek 8 bitre alakítva.\n" +"OpenGL ES-el a zajmoduláció csak akkor működik, ha az árnyaló támogatja\n" +"a precíz lebegőpontos számítást, és nagyobb hatása lehet a teljesítményre." #: src/settings_translation_file.cpp msgid "Apply specular shading to nodes." -msgstr "" +msgstr "Tükröződő árnyékolás alkalmazása a kockákon." #: src/settings_translation_file.cpp msgid "Arm inertia" @@ -2724,7 +2791,6 @@ msgid "Ask to reconnect after crash" msgstr "Összeomlás után újracsatlakozás kérése" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "At this distance the server will aggressively optimize which blocks are sent " "to\n" @@ -2741,14 +2807,13 @@ msgstr "" "küldje a klienseknek.\n" "Kis értékek valószínűleg sokat javítanak a teljesítményen, látható " "megjelenítési\n" -"hibák árán. (Néhány víz alatti és barlangokban lévő blokk nem jelenik meg,\n" -"néha a felszínen lévők sem.)\n" -"Ha ez az érték nagyobb, mint a \"max_block_send_distance\", akkor nincs\n" +"hibák árán (néhány barlangokban lévő blokk nem jól jelenik meg).\n" +"Ha az itt beállított érték nagyobb, mint a max_block_send_distance, akkor " +"nincs\n" "optimalizáció.\n" "A távolság blokkokban értendő (16 kocka)." #: src/settings_translation_file.cpp -#, fuzzy msgid "" "At this distance the server will perform a simpler and cheaper occlusion " "check.\n" @@ -2758,15 +2823,12 @@ msgid "" "This is especially useful for very large viewing range (upwards of 500).\n" "Stated in MapBlocks (16 nodes)." msgstr "" -"Ennél a távolságnál a szerver agresszívan optimalizálja, hogy melyik " -"blokkokat\n" -"küldje a klienseknek.\n" +"Ennél a távolságnál a szerver egyszerűbb és gyorsabb kitakarásvizsgálatot " +"végez.\n" "Kis értékek valószínűleg sokat javítanak a teljesítményen, látható " "megjelenítési\n" -"hibák árán. (Néhány víz alatti és barlangokban lévő blokk nem jelenik meg,\n" -"néha a felszínen lévők sem.)\n" -"Ha ez az érték nagyobb, mint a \"max_block_send_distance\", akkor nincs\n" -"optimalizáció.\n" +"hibák árán (hiányzó blokkok).\n" +"Ez főleg nagyon nagy látótávolság (500 vagy nagyobb) esetén hasznos.\n" "A távolság blokkokban értendő (16 kocka)." #: src/settings_translation_file.cpp @@ -2830,14 +2892,12 @@ msgid "Biome noise" msgstr "Biom zaj" #: src/settings_translation_file.cpp -#, fuzzy msgid "Block bounds HUD radius" -msgstr "Blokkhatárok" +msgstr "Blokkhatárok mutatásának sugara" #: src/settings_translation_file.cpp -#, fuzzy msgid "Block cull optimize distance" -msgstr "Max blokk küldési távolság" +msgstr "Blokkok kitakarásoptimalizálási távolsága" #: src/settings_translation_file.cpp msgid "Block send optimize distance" @@ -2989,7 +3049,7 @@ msgstr "Kliens" #: src/settings_translation_file.cpp msgid "Client Mesh Chunksize" -msgstr "Kliense háló chunkméret" +msgstr "Kliens pályadarabka-mérete" #: src/settings_translation_file.cpp msgid "Client and Server" @@ -3023,14 +3083,14 @@ msgstr "Felhők sugara" msgid "Clouds" msgstr "Felhők" -#: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." -msgstr "A felhő kliens oldali effektus." - #: src/settings_translation_file.cpp msgid "Clouds in menu" msgstr "Felhők a menüben" +#: src/settings_translation_file.cpp +msgid "Color depth for post-processing texture" +msgstr "" + #: src/settings_translation_file.cpp msgid "Colored fog" msgstr "Színezett köd" @@ -3057,15 +3117,15 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" -"A tartalomtárban elrejtendő jelölők vesszővel tagolt listája.\n" +"A tartalomtárban elrejtendő kapcsolók vesszővel tagolt listája.\n" "\"nonfree\" használatával elrejthetők azok a csomagok, amelyek nem tartoznak " "a\n" -"\"szabad szoftverek kategóriájába a Free Software Foundation meghatározása " +"\"szabad szoftverek\" kategóriájába a Free Software Foundation meghatározása " "szerint.\n" -"Megadhatja továbbá a tartalom besorolásait is.\n" -"Ezek a jelölők függetlenek a Minetest verziótól, ezért nézze meg\n" +"Megadható továbbá a tartalomértékelés is.\n" +"Ezek a kapcsolók függetlenek a Luanti verziótól, ezért nézd meg\n" "a teljes listát itt: https://content.minetest.net/help/content_flags/" #: src/settings_translation_file.cpp @@ -3141,7 +3201,7 @@ msgstr "Tartalomtár" #: src/settings_translation_file.cpp msgid "ContentDB Flag Blacklist" -msgstr "ContentDB zászló feketelista" +msgstr "ContentDB kapcsolóinak feketelistája" #: src/settings_translation_file.cpp msgid "ContentDB Max Concurrent Downloads" @@ -3230,6 +3290,14 @@ msgstr "Hibakereső naplózás szintje" msgid "Debugging" msgstr "Hibakeresés" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "Dedikált szerver lépés" @@ -3273,7 +3341,6 @@ msgstr "" "de egyéb erőforrásokat is használ." #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Define the oldest clients allowed to connect.\n" "Older clients are compatible in the sense that they will not crash when " @@ -3285,11 +3352,15 @@ msgid "" "Luanti still enforces its own internal minimum, and enabling\n" "strict_protocol_version_checking will effectively override this." msgstr "" -"Régi verziójú kliensek csatlakozásának tiltása.\n" -"A régi kliensek kompatibilisek olyan értelemben, hogy nem omlanak össze ha " -"egy új verziójú\n" -"szerverhez csatlakoznak, de nem biztos, hogy támogatnak minden elvárt " -"funkciót." +"A legrégebbi kliens meghatározása, amely még csatlakozhat.\n" +"A régi kliensek kompatibilisek olyan értelemben, hogy nem omlanak össze, ha " +"egy új\n" +"verziójú szerverhez csatlakoznak, de nem biztos, hogy támogatnak minden " +"elvárt új funkciót.\n" +"Ez részletesebb finomhangolást tesz lehetővé, mint a " +"strict_protocol_version_checking.\n" +"A Luanti ekkor is támaszt bizonyos belső minimumkövetelményeket, de a\n" +"strict_protocol_version_checking teljesen felülírja ezt." #: src/settings_translation_file.cpp msgid "Defines areas where trees have apples." @@ -3361,8 +3432,8 @@ msgid "" "Delay between mesh updates on the client in ms. Increasing this will slow\n" "down the rate of mesh updates, thus reducing jitter on slower clients." msgstr "" -"A világ modelljének frissítési időköze a klienseken. Ennek a megnövelése\n" -"lelassítja a frissítéseket,így csökkenti a lassú kliensek szaggatását." +"A világ 3D-modelljének frissítési időköze a klienseken. Ennek a megnövelése\n" +"ritkábbá teszi a frissítéseket, így csökkenti a lassú kliensek szaggatását." #: src/settings_translation_file.cpp msgid "Delay in sending blocks after building" @@ -3402,20 +3473,13 @@ msgid "" "When the 'snowbiomes' flag is enabled, this is ignored." msgstr "" "Sivatag akkor keletkezik, ha az np_biome meghaladja ezt az értéket.\n" -"Ha az új biom rendszer engedélyezve van, akkor ez mellőzésre kerül." - -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "Blokkanimáció deszinkronizálása" +"Ha a 'snowbiomes' kapcsoló engedélyezve van, akkor ez figyelmen kívül lesz " +"hagyva." #: src/settings_translation_file.cpp msgid "Developer Options" msgstr "Fejlesztői beállítások" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "Ásási részecskék" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "Üres jelszavak tiltása" @@ -3425,16 +3489,16 @@ msgid "Display Density Scaling Factor" msgstr "Képsűrűség méretezési faktor" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Distance in nodes at which transparency depth sorting is enabled.\n" "Use this to limit the performance impact of transparency depth sorting.\n" "Set to 0 to disable it entirely." msgstr "" -"Távolság azokban a csomópontokban, amelyeknél az átlátszósági mélység " -"szerinti rendezés engedélyezve van\n" -"Ezzel korlátozhatja az átlátszósági mélységrendezés teljesítményre gyakorolt " -"hatását" +"Az a kockákban mért távolság, aminél az átlátszósági mélység szerinti " +"rendezés engedélyezve van.\n" +"Ezzel korlátozhatod az átlátszósági mélységi rendezés teljesítményre " +"gyakorolt hatását.\n" +"Állítsd 0-ra a teljes letiltáshoz." #: src/settings_translation_file.cpp msgid "Domain name of server, to be displayed in the serverlist." @@ -3448,6 +3512,14 @@ msgstr "Az ugrás gomb dupla megnyomása a repüléshez" msgid "Double-tapping the jump key toggles fly mode." msgstr "Az ugrás gomb kétszeri megnyomásával lehet repülés módba váltani." +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "A pályagenerátor hibakeresési információinak kiírása." @@ -3465,9 +3537,8 @@ msgid "Dungeon noise" msgstr "Tömlöc zaj" #: src/settings_translation_file.cpp -#, fuzzy msgid "Effects" -msgstr "Grafikai hatások" +msgstr "Látványhatások" #: src/settings_translation_file.cpp msgid "Enable Automatic Exposure" @@ -3482,9 +3553,8 @@ msgid "Enable Bloom Debug" msgstr "Hibakeresés engedélyezése ragyogáshoz" #: src/settings_translation_file.cpp -#, fuzzy msgid "Enable Debanding" -msgstr "Sérülés engedélyezése" +msgstr "Sávtalanítás engedélyezése" #: src/settings_translation_file.cpp msgid "" @@ -3513,9 +3583,8 @@ msgstr "" "Különben a PCF szűrőt használja." #: src/settings_translation_file.cpp -#, fuzzy msgid "Enable Post Processing" -msgstr "Utófeldolgozás" +msgstr "Utófeldolgozás engedélyezése" #: src/settings_translation_file.cpp msgid "Enable Raytraced Culling" @@ -3534,9 +3603,10 @@ msgstr "" "szimulálja az emberi szem viselkedését." #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" "Színes árnyékok engedélyezése.\n" "Igaz érték esetén az áttetsző kockák színes árnyékot vetnek. " @@ -3569,11 +3639,9 @@ msgstr "" "Engedélyezze az egérgörgőt (görgetést) a tárgy kiválasztásához a hotbáron." #: src/settings_translation_file.cpp -#, fuzzy msgid "Enable random mod loading (mainly used for testing)." msgstr "" -"Véletlenszerű felhasználói bemenet engedélyezése (csak teszteléshez " -"használható)." +"Véletlenszerű modbetöltés engedélyezése (főleg teszteléshez használható)." #: src/settings_translation_file.cpp msgid "Enable random user input (only used for testing)." @@ -3582,11 +3650,8 @@ msgstr "" "használható)." #: src/settings_translation_file.cpp -#, fuzzy msgid "Enable smooth lighting with simple ambient occlusion." -msgstr "" -"A lágy megvilágítás engedélyezése egyszerű környezeti árnyékolással.\n" -"A sebesség érdekében vagy másféle kinézetért kikapcsolhatod." +msgstr "A lágy megvilágítás engedélyezése egyszerű környezeti árnyékolással." #: src/settings_translation_file.cpp msgid "Enable split login/register" @@ -3608,7 +3673,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Enable updates available indicator on content tab" -msgstr "" +msgstr "A frissítés elérhető jelzés engedélyezése a tartalom fülön" #: src/settings_translation_file.cpp msgid "" @@ -3631,10 +3696,10 @@ msgstr "" "fejmozgás van." #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" "IPv6 szerver futtatásának engedélyezése/letiltása.\n" "Nincs figyelembe véve, ha bind_address van beállítva.\n" @@ -3656,21 +3721,13 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "Az felszerelésben lévő tárgyak animációjának engedélyezése." -#: src/settings_translation_file.cpp -#, fuzzy -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "Az elforgatott hálók irányának gyorsítótárazásának engedélyezése." - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "Engedélyezi a debug-ot és a hibakeresést az OpenGL meghajtón." #: src/settings_translation_file.cpp -#, fuzzy msgid "Enables smooth scrolling." -msgstr "Utófeldolgozás" +msgstr "Lágy görgetés engedélyezése." #: src/settings_translation_file.cpp msgid "Enables the post processing pipeline." @@ -3683,6 +3740,10 @@ msgid "" "\"auto\" means that the touchscreen controls will be enabled and disabled\n" "automatically depending on the last used input method." msgstr "" +"Engedélyezi az érintőképernyős irányítást, ami lehetővé teszi, hogy " +"érintőképernyővel játszd a játékot.\n" +"\"auto\" esetén az érintőképernyős irányítás be- vagy kikapcsolásra kerül\n" +"automatikusan a legutóbb használt irányítási módtól függően." #: src/settings_translation_file.cpp msgid "" @@ -4016,10 +4077,6 @@ msgstr "Felhasználói felület méretaránya" msgid "GUI scaling filter" msgstr "Felhasználói felület méretarány szűrő" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "Felhasználói felület méretarány szűrő txr2img" - #: src/settings_translation_file.cpp msgid "Gamepads" msgstr "Gampadok" @@ -4035,7 +4092,7 @@ msgid "" "and jungle grass, in all other mapgens this flag controls all decorations." msgstr "" "Globális pályagenerálási jellemzők.\n" -"A Mapgen v6 generátorban a 'decorations' jelző szabályozza az összes " +"A Mapgen v6 generátorban a 'decorations' kapcsoló szabályozza az összes " "dekorációt,\n" "kivéve a fákat és a dzsungelfüvet, a többi pályagenerátornál pedig az " "összeset." @@ -4272,6 +4329,9 @@ msgid "" "ContentDB to\n" "check for package updates when opening the mainmenu." msgstr "" +"Ha engedélyezve van, és van telepített ContentDB-s csomag, akkor a Luanti " +"kapcsolatba léphet a ContentDB-vel, hogy\n" +"ellenőrizze, hogy van-e csomagfrissítés, amikor megnyílik a főmenü." #: src/settings_translation_file.cpp msgid "" @@ -4279,19 +4339,9 @@ msgid "" "and\n" "descending." msgstr "" -"Ha engedélyezve van, a \"Sneak\" billentyű helyett az \"Aux1\" billentyű " -"kerül\n" -"felhasználásra a lemászáshoz, és felmászáshoz." - -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" -"Ha engedélyezve van, a fiókregisztráció elkülönül a felhasználói felületen " -"való bejelentkezéstől.\n" -"Ha le van tiltva, az új fiókok automatikusan regisztrálva lesznek a " -"bejelentkezéskor." +"Ha engedélyezve van, a \"Lopakodás\" billentyű helyett az \"Aux1\" billentyű " +"segítségével\n" +"lehet lemászni és leereszkedni." #: src/settings_translation_file.cpp msgid "" @@ -4318,6 +4368,18 @@ msgstr "" "Ha engedélyezve van, az új játékosok nem csatlakozhatnak jelszó nélkül, vagy " "nem változtathatják üresre a jelszavukat." +#: src/settings_translation_file.cpp +#, fuzzy +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" +"Ha engedélyezve van, a fiókregisztráció elkülönül a felhasználói felületen " +"való bejelentkezéstől.\n" +"Ha le van tiltva, az új fiókok automatikusan regisztrálva lesznek a " +"bejelentkezéskor." + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4412,13 +4474,12 @@ msgid "Instrument chat commands on registration." msgstr "Csevegésparancsok behangolása regisztrációkor." #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Instrument global callback functions on registration.\n" "(anything you pass to a core.register_*() function)" msgstr "" -"A globális callback függvények behangolása regisztrációkor.\n" -"(bármi, amit átadsz egy minetest.register_*() függvénynek)" +"A globális callback függvények instrumentálása regisztrációkor.\n" +"(bármi, amit átadsz egy core.register_*() függvénynek)" #: src/settings_translation_file.cpp msgid "" @@ -4441,10 +4502,6 @@ msgid "Interval of saving important changes in the world, stated in seconds." msgstr "" "Fontos változások mentésének időköze a világban, másodpercekben megadva." -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "A napszak kliensnek való küldésének gyakorisága, másodpercben megadva." - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "Felszerelésben lévő tárgyak animációi" @@ -4477,7 +4534,7 @@ msgstr "Elem entitás TTL" #: src/settings_translation_file.cpp msgid "Iterations" -msgstr "Ismétlések" +msgstr "Ismétlésszám" #: src/settings_translation_file.cpp msgid "" @@ -4486,11 +4543,11 @@ msgid "" "increases processing load.\n" "At iterations = 20 this mapgen has a similar load to mapgen V7." msgstr "" -"A rekurzív függvény ismétlései.\n" -"Ennek növelése növeli a finom részletek mennyiségét és\n" -"növeli a feldolgozási terhelést.\n" -" 20 ismétlésnél ez a pályageneráló hasonló terheléssel rendelkezik, mint a " -"V7." +"A rekurzív függvény függvényhívásainak száma.\n" +"Ennek növelése növeli a finom részletek mennyiségét,\n" +"ugyanakkor viszont növeli a feldolgozási terhelést.\n" +"Ha ismétlésszám = 20, akkor ez a pályageneráló hasonló terheléssel " +"rendelkezik, mint a V7." #: src/settings_translation_file.cpp msgid "Joystick ID" @@ -4625,7 +4682,6 @@ msgid "Leaves style" msgstr "Levelek stílusa" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Leaves style:\n" "- Fancy: all faces visible\n" @@ -4633,13 +4689,11 @@ msgid "" "- Opaque: disable transparency" msgstr "" "Levelek stílusa:\n" -"- fancy: (szép) minden oldal látható\n" -"- simple: (egyszerű) csak a külső oldalak láthatók, a special_tiles-t " -"használja, ha meg van adva\n" +"- fancy: (szép) minden felület látható\n" +"- simple: (egyszerű) csak a külső felületek láthatók\n" "- opaque: (átlátszatlan) átlátszóság kikapcsolása" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Length of a server tick (the interval at which everything is generally " "updated),\n" @@ -4648,9 +4702,13 @@ msgid "" "This is a lower bound, i.e. server steps may not be shorter than this, but\n" "they are often longer." msgstr "" -"A szerver jelölés hossza és az időköz, amelyen az objektumokat általában " -"frissíti\n" -"a hálózat, másodpercben megadva." +"A szerver órajelének hossza (az az időköz, ami eltelik két általános " +"objektumfrissítés között),\n" +"másodpercben megadva.\n" +"Ez nem érvényes a kliens menüjéből indított munkamenetekre.\n" +"Ez egy alsó korlát, azaz a szerverlépések nem lehetnek ennél rövidebben, " +"viszont\n" +"gyakorta ennél hosszabbak." #: src/settings_translation_file.cpp msgid "Length of liquid waves." @@ -4768,9 +4826,8 @@ msgid "Liquid queue purge time" msgstr "Folyadék sortisztítási ideje" #: src/settings_translation_file.cpp -#, fuzzy msgid "Liquid reflections" -msgstr "Folyadék folyékonysága" +msgstr "Folyadékok tükröződése" #: src/settings_translation_file.cpp msgid "Liquid sinking" @@ -4782,7 +4839,7 @@ msgstr "A folyadékok frissítési időköze másodpercben." #: src/settings_translation_file.cpp msgid "Liquid update tick" -msgstr "Folyadékfrissítés tick" +msgstr "Folyadékok frissítésének időköze" #: src/settings_translation_file.cpp msgid "Load the game profiler" @@ -4878,7 +4935,6 @@ msgid "Map generation attributes specific to Mapgen v5." msgstr "A v5 pályagenerátor saját generálási jellemzői." #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Map generation attributes specific to Mapgen v6.\n" "The 'snowbiomes' flag enables the new 5 biome system.\n" @@ -4887,11 +4943,13 @@ msgid "" "The 'temples' flag disables generation of desert temples. Normal dungeons " "will appear instead." msgstr "" -"A v6 pályagenerátor saját generálási jellemzői.\n" -"A 'snowbiomes' jelölő engedélyezi az új 5 biomos rendszert.\n" -"Amikor a 'snowbiomes' jelölő engedélyezett, a dzsungelek automatikusan " -"engedélyezve lesznek\n" -"és a 'jungles' jelölő figyelmen kívül lesz hagyva." +"A v6 pályagenerátor saját generálási kapcsolói.\n" +"A 'snowbiomes' kapcsoló engedélyezi az új 5 biomos rendszert.\n" +"Amikor a 'snowbiomes' kapcsoló engedélyezett, a dzsungelek automatikusan " +"engedélyezve lesznek,\n" +"és a 'jungles' kapcsoló figyelmen kívül lesz hagyva.\n" +"A 'temples' kapcsoló megakadályozza a sivatagi templomok generálását. " +"Közönséges tömlöcök lesznek helyettük." #: src/settings_translation_file.cpp msgid "" @@ -4923,11 +4981,11 @@ msgstr "Pályablokk korlát" #: src/settings_translation_file.cpp msgid "Mapblock mesh generation delay" -msgstr "Pályablokkrács generálási késleltetése" +msgstr "Pályablokk 3D-modell generálási késleltetés" #: src/settings_translation_file.cpp msgid "Mapblock mesh generation threads" -msgstr "Pályablokkrács-generálási szálak" +msgstr "Pályablokk 3D-modell generálási szálak" #: src/settings_translation_file.cpp msgid "Mapblock unload timeout" @@ -4939,7 +4997,7 @@ msgstr "Kárpátok pályagenerátor" #: src/settings_translation_file.cpp msgid "Mapgen Carpathian specific flags" -msgstr "Kárpátok pályagenerátor saját jelzői" +msgstr "Kárpátok pályagenerátor saját kapcsolói" #: src/settings_translation_file.cpp msgid "Mapgen Flat" @@ -4947,7 +5005,7 @@ msgstr "Lapos pályagenerátor" #: src/settings_translation_file.cpp msgid "Mapgen Flat specific flags" -msgstr "Lapos pályagenerátor saját jelzői" +msgstr "Lapos pályagenerátor saját kapcsolói" #: src/settings_translation_file.cpp msgid "Mapgen Fractal" @@ -4955,7 +5013,7 @@ msgstr "Fraktál pályagenerátor" #: src/settings_translation_file.cpp msgid "Mapgen Fractal specific flags" -msgstr "Fraktál pályagenerátor saját jelzői" +msgstr "Fraktál pályagenerátor saját kapcsolói" #: src/settings_translation_file.cpp msgid "Mapgen V5" @@ -4963,7 +5021,7 @@ msgstr "V5 pályagenerátor" #: src/settings_translation_file.cpp msgid "Mapgen V5 specific flags" -msgstr "V5 pályagenerátor saját jelzői" +msgstr "V5 pályagenerátor saját kapcsolói" #: src/settings_translation_file.cpp msgid "Mapgen V6" @@ -4971,7 +5029,7 @@ msgstr "V6 pályagenerátor" #: src/settings_translation_file.cpp msgid "Mapgen V6 specific flags" -msgstr "V6 pályagenerátor saját jelzői" +msgstr "V6 pályagenerátor saját kapcsolói" #: src/settings_translation_file.cpp msgid "Mapgen V7" @@ -4979,7 +5037,7 @@ msgstr "V7 pályagenerátor" #: src/settings_translation_file.cpp msgid "Mapgen V7 specific flags" -msgstr "V7 pályagenerátor saját jelzői" +msgstr "V7 pályagenerátor saját kapcsolói" #: src/settings_translation_file.cpp msgid "Mapgen Valleys" @@ -4987,7 +5045,7 @@ msgstr "Völgyek pályagenerátor" #: src/settings_translation_file.cpp msgid "Mapgen Valleys specific flags" -msgstr "Völgyek pályagenerátor saját jelzői" +msgstr "Völgyek pályagenerátor saját kapcsolói" #: src/settings_translation_file.cpp msgid "Mapgen debug" @@ -5015,7 +5073,7 @@ msgstr "Max. objektumtakarítás az extra blokkora" #: src/settings_translation_file.cpp msgid "Max. packets per iteration" -msgstr "Maximum csomagok ismétlésenként" +msgstr "Max. csomagszám lépésenként" #: src/settings_translation_file.cpp msgid "Maximum FPS" @@ -5112,6 +5170,10 @@ msgid "" "You generally don't need to change this, however busy servers may benefit " "from a higher number." msgstr "" +"Az elküldött csomagok maximális száma az alacsony szintű hálózati kód " +"küldési lépéseiben.\n" +"Általában nem kell ezt megváltoztatnod, de terhelt szerverek számára " +"előnyösebb a nagyobb szám." #: src/settings_translation_file.cpp msgid "Maximum number of players that can be connected simultaneously." @@ -5173,10 +5235,6 @@ msgstr "" msgid "Maximum users" msgstr "Maximum felhasználók" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "Poligonháló cashe" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "Napi üzenet" @@ -5198,9 +5256,8 @@ msgid "Minimap scan height" msgstr "Kistérkép-letapogatási magasság" #: src/settings_translation_file.cpp -#, fuzzy msgid "Minimum dig repetition interval" -msgstr "Lehelyezés-ismétlési időköz" +msgstr "Ásásismétlési időköz" #: src/settings_translation_file.cpp msgid "Minimum limit of random number of large caves per mapchunk." @@ -5214,6 +5271,10 @@ msgstr "" "A véletlenszerűen egy pályadarabkára jutó kis barlangok számának minimális " "korlátja." +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "Mipmapping" @@ -5275,9 +5336,8 @@ msgid "Mouse sensitivity multiplier." msgstr "Egér érzékenységi faktora." #: src/settings_translation_file.cpp -#, fuzzy msgid "Movement threshold" -msgstr "Üreg küszöb" +msgstr "Mozgásfelismerési küszöb" #: src/settings_translation_file.cpp msgid "Mud noise" @@ -5308,9 +5368,10 @@ msgstr "" "- Az opcionális lebegő földek a v7-ben (alapértelmezés szerint tiltott)." #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" "A játékos neve.\n" @@ -5350,7 +5411,7 @@ msgstr "Kockák kiemelése" #: src/settings_translation_file.cpp msgid "Node specular" -msgstr "" +msgstr "Kocka tükröződése" #: src/settings_translation_file.cpp msgid "NodeTimer interval" @@ -5408,14 +5469,13 @@ msgid "Number of messages a player may send per 10 seconds." msgstr "Üzenetek száma amit egy játékos küldhet / 10 s." #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Number of threads to use for mesh generation.\n" "Value of 0 (default) will let Luanti autodetect the number of available " "threads." msgstr "" -"A háló létrehozásához használt szálak száma.\n" -"A 0 (alapértelmezett) érték lehetővé teszi, hogy a Minetest automatikusan " +"A 3D-modellek létrehozásához használt szálak száma.\n" +"A 0 (alapértelmezett) érték lehetővé teszi, hogy a Luanti automatikusan " "felismerje az elérhető szálak számát." #: src/settings_translation_file.cpp @@ -5444,23 +5504,20 @@ msgstr "" "egy felugró ablak." #: src/settings_translation_file.cpp -#, fuzzy msgid "OpenGL debug" -msgstr "Pályagenerátor-hibakereső" +msgstr "OpenGL hibakereső" #: src/settings_translation_file.cpp -#, fuzzy msgid "Optimize GUI for touchscreens" -msgstr "Célkereszt haszálata érintőképernyőn" +msgstr "Felhasználói felület optimalizálása érintőképernyőhöz" #: src/settings_translation_file.cpp msgid "Optional override for chat weblink color." msgstr "A csevegésben lévő internetes linkek színének opcionális felülírása." #: src/settings_translation_file.cpp -#, fuzzy msgid "Other Effects" -msgstr "Grafikai hatások" +msgstr "Egyéb hatások" #: src/settings_translation_file.cpp msgid "" @@ -5581,7 +5638,6 @@ msgid "Prometheus listener address" msgstr "Prometheus figyelési cím" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Prometheus listener address.\n" "If Luanti is compiled with ENABLE_PROMETHEUS option enabled,\n" @@ -5589,9 +5645,9 @@ msgid "" "Metrics can be fetched on http://127.0.0.1:30000/metrics" msgstr "" "Prometheus figyelési cím.\n" -"Ha a Minetest-et az ENABLE_PROMETHEUS opció engedélyezésével állítták " -"össze,\n" -"elérhetővé válnak a Prometheus mérőszám figyelői ezen a címen.\n" +"Ha a Luanti kódját az ENABLE_PROMETHEUS opció engedélyezésével fordították " +"le,\n" +"elérhetővé válnak a Prometheus mérőszámfigyelői ezen a címen.\n" "A mérőszámok itt érhetők el: http://127.0.0.1:30000/metrics" #: src/settings_translation_file.cpp @@ -5618,6 +5674,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Radius to use when the block bounds HUD feature is set to near blocks." msgstr "" +"A sugár, amelyet akkor kell használni, amikor a blokkhatárok mutatása a " +"közeli blokkokra van beállítva." #: src/settings_translation_file.cpp msgid "Raises terrain to make valleys around the rivers." @@ -5850,39 +5908,41 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" -"válasszon Antialiasing módot az alkalmazásához.\n" +"Válassza ki az alkalmazandó élsimítási módszert.\n" "\n" -"*none-nincs (alapértelmezett)\n" +"* None - Nincs élsimítás (alapértelmezett)\n" "\n" -"*FSAA-hardver általi teljesképernyős antialiasing, nem műkődik " -"Árnyalókkal(shaders)\n" -"illetve Többalapos antialiasing (MSAA)\n" +"* FSAA - Hardver általi teljesképernyős élsimítás\n" +"(nem műkődik utófeldolgozással és alulminavételezéssel)\n" +"Többszörös mintavételezésű élsimításként is ismert (MSAA)\n" "Kisimítja a blokkéleket,de nem érinti a textúrák belsejét.\n" -"alkalmazásához újraindítás szükséges.\n" +"Ezen opció megváltoztatásakor újraindítás szükséges.\n" "\n" -"*FXAA-gyors pontos antialiasing (shaders szükséges)\n" -"alkalmaz egy post-processing filtert, hogy észlelje és simítsa a " -"nagykontrasztú éleket.\n" -"köztes a gyors és minőségi kép közt.\n" +"* FXAA - Gyors közelítő élsimítás (árnyékolók szükségesek)\n" +"Utófeldolgozási szűrőt használ a nagy kontrasztú élek észlelésére és " +"kisimítására.\n" +"Köztes megoldás a sebesség és a jó képminőség között.\n" "\n" -"*SSAA-Szuper-alapos antialiasing (shaders szükséges)\n" -"Jobb képminőséget renderel a jelenetről, majd lekicsinyíti, hogy kissebb " -"legyen\n" -"az antialiasing effekt. ez a leglassabb és legpontosabb módszer." +"* SSAA - Felülmintavételezéses élsimítás (árnyékolók szükségesek)\n" +"Először renderel egy jobb minőségű képet a látottakról, majd lekicsinyíti " +"az\n" +"élhibák csökkentéséhez. Ez a leglassabb, de legpontosabb módszer." #: src/settings_translation_file.cpp msgid "Selection box border color (R,G,B)." @@ -5943,11 +6003,12 @@ msgid "" "Send names of online players to the serverlist. If disabled only the player " "count is revealed." msgstr "" +"Az online játékosok nevének felvétele a szerverlistára. Ha nincs " +"engedélyezve, akkor csak a játékosszám látszik." #: src/settings_translation_file.cpp -#, fuzzy msgid "Send player names to the server list" -msgstr "Szerver kihirdetése erre a szerverlistára." +msgstr "Játékosnevek küldése a szerverlistára" #: src/settings_translation_file.cpp msgid "Server" @@ -5975,6 +6036,9 @@ msgid "" "Flags are positive. Uncheck the flag to disable corresponding anticheat " "module." msgstr "" +"Szerver csaláselhárítási beállításai.\n" +"A kapcsolók az elhárítás működését jelzik. Vedd ki a pipát a kapcsoló " +"mellől, ha ki akarod kapcsolni a neki megfelelő csaláselhárítási modult." #: src/settings_translation_file.cpp msgid "Server description" @@ -6029,13 +6093,12 @@ msgstr "" "Értékhatár: -1-től 1.0-ig" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Set the language. By default, the system language is used.\n" "A restart is required after changing this." msgstr "" -"Nyelv beállítása. Hagyd üresen a rendszer nyelvének használatához.\n" -"A változtatás után a játék újraindítása szükséges." +"Nyelv beállítása. Alapértelmezetten a rendszer nyelvét használja.\n" +"Ennek megváltoztatásakor újra kell indítani a játékot." #: src/settings_translation_file.cpp msgid "" @@ -6079,6 +6142,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Set to true to enable volumetric lighting effect (a.k.a. \"Godrays\")." msgstr "" +"Állítsd igazra a sugaras megvilágítási hatás (mint a felhőn áttörő " +"fénysugár) engedélyezéséhez." #: src/settings_translation_file.cpp msgid "Set to true to enable waving leaves." @@ -6118,16 +6183,6 @@ msgstr "" msgid "Shader path" msgstr "Árnyaló útvonala" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "Árnyalók" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "Árnyék szűrő minőség" @@ -6188,7 +6243,7 @@ msgid "" msgstr "" "Oldalirányú hossza annak a pályablokk-kockának amelyet a kliens egynek " "tekint,\n" -"amikor rácsgenerálást végez.\n" +"amikor a 3D-modelleket generálja.\n" "A nagyobb értékek növelik a GPU kihasználtságát a rajzolási hívások " "csökkentésével,\n" "ami előnyös a nagy teljesítményű GPU-k számára.\n" @@ -6197,7 +6252,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Simulate translucency when looking at foliage in the sunlight." -msgstr "" +msgstr "Az áttetszőség szimulálása, amikor a lombra nézel a napsütésben." #: src/settings_translation_file.cpp msgid "" @@ -6252,19 +6307,16 @@ msgid "Smooth lighting" msgstr "Lágy megvilágítás" #: src/settings_translation_file.cpp -#, fuzzy msgid "Smooth scrolling" -msgstr "Lágy megvilágítás" +msgstr "Lágy görgetés" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Smooths rotation of camera when in cinematic mode, 0 to disable. Enter " "cinematic mode by using the key set in Controls." msgstr "" "A kameraforgást lágyítja operatőr módban. 0 a letiltáshoz. Az operatőr módra " -"váltáshoz nyomd meg a gombot, amelyet a Gombok megváltoztatásánál " -"beállítottál." +"váltáshoz nyomd meg a gombot, amelyet a Irányítás menüben megadtál." #: src/settings_translation_file.cpp msgid "" @@ -6281,9 +6333,8 @@ msgid "Sneaking speed, in nodes per second." msgstr "Lopakodás sebessége kocka/másodpercben." #: src/settings_translation_file.cpp -#, fuzzy msgid "Soft clouds" -msgstr "3D felhők" +msgstr "Árnyalatos felhők" #: src/settings_translation_file.cpp msgid "Soft shadow radius" @@ -6294,9 +6345,8 @@ msgid "Sound" msgstr "Hang" #: src/settings_translation_file.cpp -#, fuzzy msgid "Sound Extensions Blacklist" -msgstr "ContentDB zászló feketelista" +msgstr "Hangbővítmények feketelistája" #: src/settings_translation_file.cpp msgid "" @@ -6324,11 +6374,11 @@ msgstr "" "kötegek méretét bizonyos vagy az összes tárgy esetén." #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" "Az árnyéktérkép firssítését szétterjeszti a megadott számú képkockára.\n" "Magasabb érték esetén az árnyékok késhetnek, alacsabb érékek\n" @@ -6525,7 +6575,6 @@ msgstr "" "A profilok mentésének relatív elérési útja a világod elérési útjához képest." #: src/settings_translation_file.cpp -#, fuzzy msgid "" "The gesture for punching players/entities.\n" "This can be overridden by games and mods.\n" @@ -6537,26 +6586,28 @@ msgid "" "Known from the classic Luanti mobile controls.\n" "Combat is more or less impossible." msgstr "" -"A játékos/entitás ütési gesztus.\n" -"Felülírhatják modok és játék is.\n" +"A játékosok vagy lények megütésének gesztusa.\n" +"Ezt eges modok vagy játékok felülírhatják.\n" "\n" -"*rövid_érintés\n" -"Könnyű használni, ismert sok más játékból, amit nem nevezünk meg.\n" +"* short_tap\n" +"(rövid érintés) Könnyű használni, és jól ismert sok más játékból, aminek nem " +"mondjuk ki a nevét.\n" "\n" -"*hosszú_érintés\n" -"ismert a klasszikus Minetest telefonos irányitásból.\n" -"az ütés valamivel nehezebb lessz." +"* long_tap\n" +"(hosszú érintés) A Luanti klasszikus mobiltelefonos irányitása is ezt " +"használta.\n" +"Ezzel szinte lehetetlen harcolni." #: src/settings_translation_file.cpp msgid "The identifier of the joystick to use" msgstr "A használni kívánt joystick azonosítója" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "The length in pixels after which a touch interaction is considered movement." msgstr "" -"Az érintőképernyős interakció aktiválódásához szükséges távolság pixelekben." +"Az a pixelekben kifejezett távolság, amitől hosszabb képernyőhúzás " +"mozgásként értelmezendő." #: src/settings_translation_file.cpp msgid "" @@ -6568,17 +6619,16 @@ msgstr "" "A hullámzó folyadékok felszínének maximális magassága.\n" "4,0 = A hullámok magasága két kocka.\n" "0,0 = A hullámok egyáltalán nem mozognak.\n" -"Az alapértelmezett érték 1,0 (1/2 node/kocka).\n" -"A hullámzó folyadék engedélyezése szükséges hozzá." +"Az alapértelmezett érték 1,0 (1/2 kocka)." #: src/settings_translation_file.cpp -#, fuzzy msgid "" "The minimum time in seconds it takes between digging nodes when holding\n" "the dig button." msgstr "" -"Az az idő másodpercben kifejezve, amely a csomópontok ismételt elhelyezése\n" -"között telik el, amikor lenyomva tartja az elhelyezés gombot." +"Az a másodpercben kifejezett legrövidebb idő, aminek két kocka kiásása " +"között el kell telni,\n" +"amikor lenyomva tartod az ásás gombját." #: src/settings_translation_file.cpp msgid "The network interface that the server listens on." @@ -6612,19 +6662,15 @@ msgstr "" "megadni." #: src/settings_translation_file.cpp -#, fuzzy msgid "" "The rendering back-end.\n" "Note: A restart is required after changing this!\n" "OpenGL is the default for desktop, and OGLES2 for Android." msgstr "" "A renderelő háttérprogram.\n" -"Ha ezt megváltoztatod, újraindítás szükséges.\n" -"Megjegyzés: Androidon, hagyd OGLES1-en, ha bizonytalan vagy! Lehet, hogy nem " -"indul az app különben.\n" -"Más platformokon az OpenGL az ajánlott.\n" -"Az árnyalókat (Shaders) az OpenGL (csak asztali rendszeren) és OGLES2 " -"(kísérleti) támogatja." +"Megjegyzés: Ha ezt megváltoztatod, újraindítás szükséges.\n" +"Asztali verzióban az OpenGL, az Android verzióban az OGLES2 az " +"alapértelmezett." #: src/settings_translation_file.cpp msgid "" @@ -6721,10 +6767,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "Az új világ létrehozásakor érvényes napszak milliórában (0-23999)." -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "Idő küldési gyakoriság" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "Idő sebessége" @@ -6752,6 +6794,8 @@ msgid "" "Tolerance of movement cheat detector.\n" "Increase the value if players experience stuttery movement." msgstr "" +"A mozgási csalás figyelésének határértéke.\n" +"Növeld az értékét, ha a játékosok mozgása szakadozottá válik." #: src/settings_translation_file.cpp msgid "Tooltip delay" @@ -6762,9 +6806,8 @@ msgid "Touchscreen" msgstr "Érintőképernyő" #: src/settings_translation_file.cpp -#, fuzzy msgid "Touchscreen controls" -msgstr "Érintőképernyő érzékenysége" +msgstr "Érintőképernyős irányítás" #: src/settings_translation_file.cpp msgid "Touchscreen sensitivity" @@ -6779,19 +6822,22 @@ msgid "Tradeoffs for performance" msgstr "Teljesítménybeli kompromisszumok" #: src/settings_translation_file.cpp -#, fuzzy msgid "Translucent foliage" -msgstr "Átlátszatlan folyadékok" +msgstr "Átlátszó lombok" #: src/settings_translation_file.cpp -#, fuzzy msgid "Translucent liquids" -msgstr "Átlátszatlan folyadékok" +msgstr "Átlátszó folyadékok" #: src/settings_translation_file.cpp msgid "Transparency Sorting Distance" msgstr "Átlátszósági rendezési távolság" +#: src/settings_translation_file.cpp +#, fuzzy +msgid "Transparency Sorting Group by Buffers" +msgstr "Átlátszósági rendezési távolság" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "Fa zaj" @@ -6833,12 +6879,14 @@ msgstr "" "Ez a beállítás csak teljesítményhibák esetén állítandó át." #: src/settings_translation_file.cpp -#, fuzzy msgid "" "URL to JSON file which provides information about the newest Luanti " "release.\n" "If this is empty the engine will never check for updates." -msgstr "A JSON fájl URL-ja a legújabb Minetest kiadásról" +msgstr "" +"A JSON fájl URL-je, amely a legújabb Luanti kiadásról szolgáltat " +"információkat.\n" +"Ha ez üres, a játékmotor nem fogja ellenőrizni a frissítéseket." #: src/settings_translation_file.cpp msgid "URL to the server list displayed in the Multiplayer Tab." @@ -6849,12 +6897,16 @@ msgid "Undersampling" msgstr "Alulmintavételezés" #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Undersampling is similar to using a lower screen resolution, but it applies\n" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" "Az alulmintavételezés olyan, mintha kisebb képernyőfelbontást használnál, " "de\n" @@ -6883,16 +6935,15 @@ msgstr "A tömlöcök felső Y határa." msgid "Upper Y limit of floatlands." msgstr "A lebegő földek felső Y határa." -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "3D felhők használata lapos helyett." - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "Felhő animáció használata a főmenü háttereként." #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +#, fuzzy +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "Anizotróp szűrés használata, ha adott szögből nézzük a textúrákat." #: src/settings_translation_file.cpp @@ -6928,12 +6979,12 @@ msgid "" "client mesh sizes smaller than 4x4x4 map blocks." msgstr "" "Sugárkövetés használata az új kitakarásfigyelőhöz.\n" -"Ez a beállítás engedélyezi a sugárkövetéses kitakarástesztelést\n" +"Ez a kapcsoló engedélyezi a sugárkövetéses kitakarástesztelést\n" "a 4x4x4 pályablokknál kisebb térrészekhez a kliensben." #: src/settings_translation_file.cpp msgid "Use smooth cloud shading." -msgstr "" +msgstr "Lágy felhőárnyékolás használata." #: src/settings_translation_file.cpp msgid "" @@ -7024,9 +7075,8 @@ msgid "" "Vertical screen synchronization. Your system may still force VSync on even " "if this is disabled." msgstr "" -"Függőleges képernyő szinkronizálás (VSync). a rendszer\n" -"akkor is engedélyezettre kényszerítheti, ha itt\n" -"ki van kapcsolva." +"Függőleges képernyő-szinkronizálás. A rendszered azonban akkor is " +"kényszerítheti a VSync-et, ha itt ki van kapcsolva." #: src/settings_translation_file.cpp msgid "Video driver" @@ -7053,9 +7103,8 @@ msgid "Volume" msgstr "Hangerő" #: src/settings_translation_file.cpp -#, fuzzy msgid "Volume multiplier when the window is unfocused." -msgstr "Hangerő többszörös kifókuszált ablak esetén." +msgstr "Hangerőmódosítás mértéke háttérbe rakott ablak esetén." #: src/settings_translation_file.cpp msgid "" @@ -7066,14 +7115,12 @@ msgstr "" "A hangrendszer engedélyezésére van szükség hozzá." #: src/settings_translation_file.cpp -#, fuzzy msgid "Volume when unfocused" -msgstr "FPS, amikor a játék meg van állítva, vagy nincs fókuszban" +msgstr "Háttérben futáskori hangerő" #: src/settings_translation_file.cpp -#, fuzzy msgid "Volumetric lighting" -msgstr "Lágy megvilágítás" +msgstr "Sugaras megvilágítás" #: src/settings_translation_file.cpp msgid "" @@ -7143,13 +7190,16 @@ msgstr "Internetes hivatkozások színe" #: src/settings_translation_file.cpp msgid "When enabled, liquid reflections are simulated." -msgstr "" +msgstr "Engedélyezésekor szimulálva lesz a folyadékokon való tükröződés." #: src/settings_translation_file.cpp msgid "" "When enabled, the GUI is optimized to be more usable on touchscreens.\n" "Whether this is enabled by default depends on your hardware form-factor." msgstr "" +"Engedélyezésekor a felhasználói felület az érintőképernyős használatra lesz " +"optimalizálva.\n" +"Az eszközöd képarányától függ, hogy ez alapértelmezetten engedélyezve lesz-e." #: src/settings_translation_file.cpp msgid "" @@ -7162,25 +7212,14 @@ msgstr "" "generálódik (pl. a felszerelésben lévő kockák textúrára renderelése)." #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" -"Ha a gui_scaling_filter_txr2img be van kapcsolva, ezeket a képeket\n" -"a hardverről a szoftverbe másolja méretezésre. Ha ki van kapcsolva,\n" -"a régi méretezési módszert használja, azoknál a videó drivereknél,\n" -"amelyek nem megfelelően támogatják a textúra hardverről való letöltését." - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -7206,12 +7245,6 @@ msgstr "" "Látszódjon-e a névcédulák háttere alapértelmezésként.\n" "A modok ettől még beállíthatják a hátteret." -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" -"Legyen-e független a kockák textúraanimációinak időzítése az egyes " -"pályablokkokban." - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -7237,9 +7270,9 @@ msgid "Whether to fog out the end of the visible area." msgstr "A látható terület vége el legyen-e ködösítve." #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -7267,15 +7300,15 @@ msgid "Window maximized" msgstr "Az ablak már teljes képernyős" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Windows systems only: Start Luanti with the command line window in the " "background.\n" "Contains the same information as the file debug.txt (default name)." msgstr "" -"Csak Windows rendszeren: Minetest indítása parancssorral a háttérben.\n" -"Ugyanazokat az információkat tartalmazza, mint a debug.txt fájl " -"(alapértelmezett név)." +"Csak Windows rendszeren: A Luanti indításakor megnyílik a parancssor a " +"háttérben.\n" +"Ugyanazokat az információkat tartalmazza, mint a debug.txt (alapértelmezett " +"nevű) fájl." #: src/settings_translation_file.cpp msgid "" @@ -7433,6 +7466,9 @@ msgstr "cURL párhuzamossági korlát" #~ "Hagyd üresen helyi szerver indításához.\n" #~ "Megjegyzés: a cím mező a főmenüben felülírja ezt a beállítást." +#~ msgid "Adds particles when digging a node." +#~ msgstr "Részecskéket mutat a kockák ásásakor." + #~ msgid "" #~ "Adjust dpi configuration to your screen (non X11/Android only) e.g. for " #~ "4k screens." @@ -7573,6 +7609,9 @@ msgstr "cURL párhuzamossági korlát" #~ msgid "Clean transparent textures" #~ msgstr "Tiszta átlátszó textúrák" +#~ msgid "Clouds are a client-side effect." +#~ msgstr "A felhő kliens oldali effektus." + #~ msgid "Command key" #~ msgstr "Parancs gomb" @@ -7667,9 +7706,15 @@ msgstr "cURL párhuzamossági korlát" #~ msgid "Darkness sharpness" #~ msgstr "a sötétség élessége" +#~ msgid "Debug info and profiler graph hidden" +#~ msgstr "Hibakereső információ és pofiler elrejtése" + #~ msgid "Debug info toggle key" #~ msgstr "Hibakereső információra váltás gomb" +#~ msgid "Debug info, profiler graph, and wireframe hidden" +#~ msgstr "Hibakereső információk, profilergrafika, drótkeret rejtett" + #~ msgid "Dec. volume key" #~ msgstr "Hangerő csökkentés gomb" @@ -7723,9 +7768,15 @@ msgstr "cURL párhuzamossági korlát" #~ msgid "Del. Favorite" #~ msgstr "Kedvenc törlése" +#~ msgid "Desynchronize block animation" +#~ msgstr "Blokkanimáció deszinkronizálása" + #~ msgid "Dig key" #~ msgstr "Ásás gomb" +#~ msgid "Digging particles" +#~ msgstr "Ásási részecskék" + #~ msgid "Disable anticheat" #~ msgstr "Csalás elleni védelem letiltása" @@ -7750,6 +7801,9 @@ msgstr "cURL párhuzamossági korlát" #~ msgid "Dynamic shadows:" #~ msgstr "Dinamikus árnyékok:" +#~ msgid "Enable" +#~ msgstr "Engedélyez" + #~ msgid "Enable VBO" #~ msgstr "VBO engedélyez" @@ -7773,6 +7827,14 @@ msgstr "cURL párhuzamossági korlát" #~ "Vertex buffer objektumok engedélyezése.\n" #~ "Ez nagyban javíthatja a grafikus teljesítményt." +#~ msgid "" +#~ "Enables caching of facedir rotated meshes.\n" +#~ "This is only effective with shaders disabled." +#~ msgstr "" +#~ "A facedir-t használó forgatott 3D-moddellek gyorsítótárazásának " +#~ "engedélyezése.\n" +#~ "Ennek csak az árnyékolók letiltásakor van hatása." + #~ msgid "Enables filmic tone mapping" #~ msgstr "filmes tónus effektek bekapcsolása" @@ -7816,9 +7878,6 @@ msgstr "cURL párhuzamossági korlát" #~ "Kísérleti opció, látható rések jelenhetnek meg a blokkok között\n" #~ "ha nagyobbra van állítva, mint 0." -#~ msgid "FPS in pause menu" -#~ msgstr "FPS a szünet menüben" - #~ msgid "FSAA" #~ msgstr "FSAA" @@ -7906,8 +7965,8 @@ msgstr "cURL párhuzamossági korlát" #~ msgid "Full screen BPP" #~ msgstr "Teljes képernyő BPP" -#~ msgid "Game" -#~ msgstr "Játék" +#~ msgid "GUI scaling filter txr2img" +#~ msgstr "Felhasználói felület méretarány szűrő txr2img" #~ msgid "Gamma" #~ msgstr "Gamma" @@ -8072,659 +8131,666 @@ msgstr "cURL párhuzamossági korlát" #~ msgid "Instrumentation" #~ msgstr "Behangolás" +#~ msgid "Interval of sending time of day to clients, stated in seconds." +#~ msgstr "" +#~ "A napszak kliensnek való küldésének gyakorisága, másodpercben megadva." + #~ msgid "Invalid gamespec." #~ msgstr "Érvénytelen játékmeghatározás." #~ msgid "Inventory key" #~ msgstr "Felszerelés gomb" +#~ msgid "Irrlicht device:" +#~ msgstr "Irrlicht készülék:" + #~ msgid "Jump key" #~ msgstr "Ugrás gomb" #~ msgid "" #~ "Key for decreasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a látóterület csökkentéséhez.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for decreasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a hangerő csökkentéséhez.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for digging.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb az ásáshoz.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for dropping the currently selected item.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb az éppen kijelölt tárgy eldobásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a látóterület növeléséhez.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a hangerő növeléséhez.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for jumping.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb az ugráshoz.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving fast in fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a gyors mozgáshoz gyors módban.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player backward.\n" #~ "Will also disable autoforward, when active.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a játékos hátrafelé mozgásához.\n" #~ "Kikapcsolja az önjárást is, ha aktív.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player forward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a játékos előre mozgásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player left.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a játékos balra mozgatásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player right.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a játékos jobbra mozgatásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for muting the game.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a játék némításához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a csevegőablak megnyitásához, parancsok beírásához.\n" -#~ "Lásd: //irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: //irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type local commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a csevegőablak megnyitásához, helyi parancsok beírásához.\n" -#~ "Lásd: //irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: //irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a csevegőablak megnyitásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the inventory.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a felszerelés megnyitásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for placing.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a lehelyezéshez.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 11th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a 11. eszköztárhely kiválasztásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 12th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a 12. eszköztárhely kiválasztásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 13th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a 13. eszköztárhely kiválasztásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 14th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a 14. eszköztárhely kiválasztásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 15th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a 15. eszköztárhely kiválasztásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 16th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a 16. eszköztárhely kiválasztásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 17th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a 17. eszköztárhely kiválasztásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 18th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a 18. eszköztárhely kiválasztásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 19th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a 19. eszköztárhely kiválasztásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 20th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a 20. eszköztárhely kiválasztásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 21st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a 21. eszköztárhely kiválasztásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 22nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a 22. eszköztárhely kiválasztásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 23rd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a 23. eszköztárhely kiválasztásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 24th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a 24. eszköztárhely kiválasztásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 25th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a 25. eszköztárhely kiválasztásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 26th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a 26. eszköztárhely kiválasztásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 27th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a 27. eszköztárhely kiválasztásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 28th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a 28. eszköztárhely kiválasztásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 29th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a 29. eszköztárhely kiválasztásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 30th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a 30. eszköztárhely kiválasztásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 31st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a 31. eszköztárhely kiválasztásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 32nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a 32. eszköztárhely kiválasztásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the eighth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a 8. eszköztárhely kiválasztásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the fifth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a 5. eszköztárhely kiválasztásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the first hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a 1. eszköztárhely kiválasztásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the fourth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a 4. eszköztárhely kiválasztásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the next item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a következő elem kiválasztásához az eszköztárban.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the ninth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a 9. eszköztárhely kiválasztásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the previous item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb az előző elem kiválasztásához az eszköztárban.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the second hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a 2. eszköztárhely kiválasztásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the seventh hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a 7. eszköztárhely kiválasztásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the sixth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a 6. eszköztárhely kiválasztásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the tenth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a 10. eszköztárhely kiválasztásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the third hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a 3. eszköztárhely kiválasztásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for sneaking.\n" #~ "Also used for climbing down and descending in water if aux1_descends is " #~ "disabled.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a lopakodáshoz.\n" #~ "A lefelé mászáshoz és vízben történő ereszkedéshez is ezt lehet " #~ "használni, ha az aux1_descends le van tiltva.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for switching between first- and third-person camera.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a belső és külső nézetre váltáshoz.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for taking screenshots.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb képernyőkép készítéshez.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling autoforward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb az automatikus előrehaladás bekapcsolásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling cinematic mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb az operatőr mód kapcsolgatásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling display of minimap.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a kistérkép váltásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a gyors mód váltásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling flying.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a repülés mód váltásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling noclip mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a noclip mód váltásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling pitch move mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb pályamozgás mód váltásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the camera update. Only used for development\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a kamerafrissítés váltásához. Csak fejlesztők számára.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of chat.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a csevegés megjelenítéséhez.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of debug info.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a hibakeresési információ megjelenítéséhez.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of fog.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a köd váltásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the HUD.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a HUD váltásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the large chat console.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a nagy csevegéskonzol megjelenítéséhez.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the profiler. Used for development.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "A profiler kijelzőjének kapcsológombja. Fejlesztéshez használatos.\n" -#~ "Lásd http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling unlimited view range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a végtelen látóterület váltásához.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key to use view zoom when possible.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Gomb a nagyításhoz amikor lehetséges.\n" -#~ "Lásd: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lásd: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Keybindings. (If this menu screws up, remove stuff from minetest.conf)" @@ -8797,6 +8863,9 @@ msgstr "cURL párhuzamossági korlát" #~ msgid "Menus" #~ msgstr "Menük" +#~ msgid "Mesh cache" +#~ msgstr "3D-modell gyorsítótár" + #~ msgid "Minimap" #~ msgstr "Kistérkép" @@ -8969,6 +9038,9 @@ msgstr "cURL párhuzamossági korlát" #~ msgid "Server / Singleplayer" #~ msgstr "Szerver / Egyjátékos" +#~ msgid "Shaders" +#~ msgstr "Árnyalók" + #~ msgid "Shaders (experimental)" #~ msgstr "Árnyalók (kísérleti)" @@ -8986,6 +9058,16 @@ msgstr "cURL párhuzamossági korlát" #~ "néhány videókártya esetében.\n" #~ "Csak OpenGL-el működnek." +#~ msgid "" +#~ "Shaders are a fundamental part of rendering and enable advanced visual " +#~ "effects." +#~ msgstr "" +#~ "Az árnyékolók a renderelés alapját képezik, és bonyolultabb " +#~ "látványhatásokat tesznek lehetővé." + +#~ msgid "Shaders are disabled." +#~ msgstr "Árnyékolók letiltva." + #, fuzzy #~ msgid "Shadow limit" #~ msgstr "Térképblokk korlát" @@ -9021,6 +9103,9 @@ msgstr "cURL párhuzamossági korlát" #~ msgid "Smooths rotation of camera. 0 to disable." #~ msgstr "Kameraforgás lágyítása. 0 = letiltás." +#~ msgid "Sound system is disabled" +#~ msgstr "A hangrendszer letiltva" + #~ msgid "Special" #~ msgstr "Különleges" @@ -9061,6 +9146,12 @@ msgstr "cURL párhuzamossági korlát" #~ msgid "This font will be used for certain languages." #~ msgstr "Ezt a betűtípust bizonyos nyelvek használják." +#~ msgid "This is not a recommended configuration." +#~ msgstr "Ezek a beállításokat nem ajánlott egyszerre alkalmazni." + +#~ msgid "Time send interval" +#~ msgstr "Idő küldési gyakoriság" + #~ msgid "To enable shaders the OpenGL driver needs to be used." #~ msgstr "Az árnyalók engedélyezéséhez OpenGL driver használata szükséges." @@ -9153,6 +9244,17 @@ msgstr "cURL párhuzamossági korlát" #~ msgid "Waving water" #~ msgstr "Hullámzó víz" +#~ msgid "" +#~ "When gui_scaling_filter_txr2img is true, copy those images\n" +#~ "from hardware to software for scaling. When false, fall back\n" +#~ "to the old scaling method, for video drivers that don't\n" +#~ "properly support downloading textures back from hardware." +#~ msgstr "" +#~ "Ha a gui_scaling_filter_txr2img be van kapcsolva, ezeket a képeket\n" +#~ "a hardverről a szoftverbe másolja méretezésre. Ha ki van kapcsolva,\n" +#~ "a régi méretezési módszert használja, azoknál a videó drivereknél,\n" +#~ "amelyek nem megfelelően támogatják a textúra hardverről való letöltését." + #~ msgid "" #~ "Whether FreeType fonts are used, requires FreeType support to be compiled " #~ "in.\n" @@ -9163,6 +9265,12 @@ msgstr "cURL párhuzamossági korlát" #~ "Ha ki van kapcsolva, bittérképes és XML vektoros betűtípusok lesznek " #~ "használva helyette." +#~ msgid "" +#~ "Whether node texture animations should be desynchronized per mapblock." +#~ msgstr "" +#~ "Legyen-e független a kockák textúraanimációinak időzítése az egyes " +#~ "pályablokkokban." + #~ msgid "Whether to allow players to damage and kill each other." #~ msgstr "Engedélyezve van-e, hogy a játékosok sebezzék és megöljék egymást." diff --git a/po/ia/luanti.po b/po/ia/luanti.po deleted file mode 100644 index 2f7ebc947..000000000 --- a/po/ia/luanti.po +++ /dev/null @@ -1,6404 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the minetest package. -# FIRST AUTHOR , YEAR. -# -msgid "" -msgstr "" -"Project-Id-Version: minetest\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" -"PO-Revision-Date: 2023-12-03 17:17+0000\n" -"Last-Translator: Krock \n" -"Language-Team: Interlingua \n" -"Language: ia\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.3-dev\n" - -#: builtin/client/chatcommands.lua -msgid "Clear the out chat queue" -msgstr "" - -#: builtin/client/chatcommands.lua -msgid "Empty command." -msgstr "" - -#: builtin/client/chatcommands.lua -msgid "Exit to main menu" -msgstr "" - -#: builtin/client/chatcommands.lua -msgid "Invalid command: " -msgstr "" - -#: builtin/client/chatcommands.lua -msgid "Issued command: " -msgstr "" - -#: builtin/client/chatcommands.lua -msgid "List online players" -msgstr "" - -#: builtin/client/chatcommands.lua -msgid "Online players: " -msgstr "" - -#: builtin/client/chatcommands.lua -msgid "The out chat queue is now empty." -msgstr "" - -#: builtin/client/chatcommands.lua -msgid "This command is disabled by server." -msgstr "" - -#: builtin/common/chatcommands.lua -msgid "Available commands:" -msgstr "" - -#: builtin/common/chatcommands.lua -msgid "Available commands: " -msgstr "" - -#: builtin/common/chatcommands.lua -msgid "Command not available: " -msgstr "" - -#: builtin/common/chatcommands.lua -msgid "Get help for commands (-t: output in chat)" -msgstr "" - -#: builtin/common/chatcommands.lua -msgid "" -"Use '.help ' to get more information, or '.help all' to list everything." -msgstr "" - -#: builtin/common/chatcommands.lua -msgid "[all | ] [-t]" -msgstr "" - -#: builtin/fstk/ui.lua -msgid "" -msgstr "" - -#: builtin/fstk/ui.lua -msgid "An error occurred in a Lua script:" -msgstr "" - -#: builtin/fstk/ui.lua -msgid "An error occurred:" -msgstr "" - -#: builtin/fstk/ui.lua -msgid "Main menu" -msgstr "" - -#: builtin/fstk/ui.lua -msgid "OK" -msgstr "" - -#: builtin/fstk/ui.lua -msgid "Reconnect" -msgstr "" - -#: builtin/fstk/ui.lua -msgid "The server has requested a reconnect:" -msgstr "" - -#: builtin/mainmenu/common.lua -msgid "Protocol version mismatch. " -msgstr "" - -#: builtin/mainmenu/common.lua -msgid "Server enforces protocol version $1. " -msgstr "" - -#: builtin/mainmenu/common.lua -msgid "Server supports protocol versions between $1 and $2. " -msgstr "" - -#: builtin/mainmenu/common.lua -msgid "We only support protocol version $1." -msgstr "" - -#: builtin/mainmenu/common.lua -msgid "We support protocol versions between version $1 and $2." -msgstr "" - -#: builtin/mainmenu/content/contentdb.lua -msgid "Error installing \"$1\": $2" -msgstr "" - -#: builtin/mainmenu/content/contentdb.lua -msgid "Failed to download \"$1\"" -msgstr "" - -#: builtin/mainmenu/content/contentdb.lua -msgid "Failed to download $1" -msgstr "" - -#: builtin/mainmenu/content/contentdb.lua -msgid "" -"Failed to extract \"$1\" (insufficient disk space, unsupported file type or " -"broken archive)" -msgstr "" - -#: builtin/mainmenu/content/dlg_contentdb.lua -msgid "" -"$1 downloading,\n" -"$2 queued" -msgstr "" - -#: builtin/mainmenu/content/dlg_contentdb.lua -msgid "$1 downloading..." -msgstr "" - -#: builtin/mainmenu/content/dlg_contentdb.lua -msgid "All" -msgstr "" - -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Back" -msgstr "" - -#: builtin/mainmenu/content/dlg_contentdb.lua -msgid "ContentDB is not available when Luanti was compiled without cURL" -msgstr "" - -#: builtin/mainmenu/content/dlg_contentdb.lua -msgid "Downloading..." -msgstr "" - -#: builtin/mainmenu/content/dlg_contentdb.lua -msgid "Featured" -msgstr "" - -#: builtin/mainmenu/content/dlg_contentdb.lua -msgid "Games" -msgstr "" - -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_package.lua builtin/mainmenu/serverlistmgr.lua -#: src/client/game.cpp -msgid "Loading..." -msgstr "" - -#: builtin/mainmenu/content/dlg_contentdb.lua -msgid "Mods" -msgstr "" - -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/content/dlg_package.lua -msgid "No packages could be retrieved" -msgstr "" - -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "" - -#: builtin/mainmenu/content/dlg_contentdb.lua -msgid "No updates" -msgstr "" - -#: builtin/mainmenu/content/dlg_contentdb.lua -msgid "Queued" -msgstr "" - -#: builtin/mainmenu/content/dlg_contentdb.lua -msgid "Texture Packs" -msgstr "" - -#: builtin/mainmenu/content/dlg_contentdb.lua -msgid "The package $1 was not found." -msgstr "" - -#: builtin/mainmenu/content/dlg_contentdb.lua -msgid "Update All [$1]" -msgstr "" - -#: builtin/mainmenu/content/dlg_install.lua -msgid "$1 and $2 dependencies will be installed." -msgstr "" - -#: builtin/mainmenu/content/dlg_install.lua -msgid "$1 by $2" -msgstr "" - -#: builtin/mainmenu/content/dlg_install.lua -msgid "$1 required dependencies could not be found." -msgstr "" - -#: builtin/mainmenu/content/dlg_install.lua -msgid "$1 will be installed, and $2 dependencies will be skipped." -msgstr "" - -#: builtin/mainmenu/content/dlg_install.lua -msgid "Already installed" -msgstr "" - -#: builtin/mainmenu/content/dlg_install.lua -msgid "Base Game:" -msgstr "" - -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "" - -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua -msgid "Dependencies:" -msgstr "" - -#: builtin/mainmenu/content/dlg_install.lua -msgid "Error getting dependencies for package $1" -msgstr "" - -#: builtin/mainmenu/content/dlg_install.lua -msgid "Install" -msgstr "" - -#: builtin/mainmenu/content/dlg_install.lua -msgid "Install $1" -msgstr "" - -#: builtin/mainmenu/content/dlg_install.lua -msgid "Install missing dependencies" -msgstr "" - -#: builtin/mainmenu/content/dlg_install.lua -msgid "Not found" -msgstr "" - -#: builtin/mainmenu/content/dlg_install.lua -msgid "Please check that the base game is correct." -msgstr "" - -#: builtin/mainmenu/content/dlg_install.lua -msgid "You need to install a game before you can install a mod" -msgstr "" - -#: builtin/mainmenu/content/dlg_overwrite.lua -msgid "\"$1\" already exists. Would you like to overwrite it?" -msgstr "" - -#: builtin/mainmenu/content/dlg_overwrite.lua -msgid "Overwrite" -msgstr "" - -#: builtin/mainmenu/content/dlg_package.lua -msgid "ContentDB page" -msgstr "" - -#: builtin/mainmenu/content/dlg_package.lua -msgid "Description" -msgstr "" - -#: builtin/mainmenu/content/dlg_package.lua -msgid "Donate" -msgstr "" - -#: builtin/mainmenu/content/dlg_package.lua -msgid "Forum Topic" -msgstr "" - -#: builtin/mainmenu/content/dlg_package.lua -msgid "Information" -msgstr "" - -#: builtin/mainmenu/content/dlg_package.lua -msgid "Install [$1]" -msgstr "" - -#: builtin/mainmenu/content/dlg_package.lua -msgid "Issue Tracker" -msgstr "" - -#: builtin/mainmenu/content/dlg_package.lua -msgid "Source" -msgstr "" - -#: builtin/mainmenu/content/dlg_package.lua -msgid "Translate" -msgstr "" - -#: builtin/mainmenu/content/dlg_package.lua builtin/mainmenu/tab_content.lua -msgid "Uninstall" -msgstr "" - -#: builtin/mainmenu/content/dlg_package.lua builtin/mainmenu/tab_content.lua -msgid "Update" -msgstr "" - -#: builtin/mainmenu/content/dlg_package.lua -msgid "Website" -msgstr "" - -#: builtin/mainmenu/content/dlg_package.lua -msgid "by $1 — $2 downloads — +$3 / $4 / -$5" -msgstr "" - -#: builtin/mainmenu/content/pkgmgr.lua -msgid "$1 (Enabled)" -msgstr "" - -#: builtin/mainmenu/content/pkgmgr.lua -msgid "$1 mods" -msgstr "" - -#: builtin/mainmenu/content/pkgmgr.lua -msgid "Failed to install $1 to $2" -msgstr "" - -#: builtin/mainmenu/content/pkgmgr.lua -msgid "Install: Unable to find suitable folder name for $1" -msgstr "" - -#: builtin/mainmenu/content/pkgmgr.lua -msgid "Unable to find a valid mod, modpack, or game" -msgstr "" - -#: builtin/mainmenu/content/pkgmgr.lua -msgid "Unable to install a $1 as a $2" -msgstr "" - -#: builtin/mainmenu/content/pkgmgr.lua -msgid "Unable to install a $1 as a texture pack" -msgstr "" - -#: builtin/mainmenu/dlg_config_world.lua -msgid "(Enabled, has error)" -msgstr "" - -#: builtin/mainmenu/dlg_config_world.lua -msgid "(Unsatisfied)" -msgstr "" - -#: builtin/mainmenu/dlg_config_world.lua -msgid "Disable all" -msgstr "" - -#: builtin/mainmenu/dlg_config_world.lua -msgid "Disable modpack" -msgstr "" - -#: builtin/mainmenu/dlg_config_world.lua -msgid "Enable all" -msgstr "" - -#: builtin/mainmenu/dlg_config_world.lua -msgid "Enable modpack" -msgstr "" - -#: builtin/mainmenu/dlg_config_world.lua -msgid "" -"Failed to enable mod \"$1\" as it contains disallowed characters. Only " -"characters [a-z0-9_] are allowed." -msgstr "" - -#: builtin/mainmenu/dlg_config_world.lua -msgid "Find More Mods" -msgstr "" - -#: builtin/mainmenu/dlg_config_world.lua -msgid "Mod:" -msgstr "" - -#: builtin/mainmenu/dlg_config_world.lua -msgid "No (optional) dependencies" -msgstr "" - -#: builtin/mainmenu/dlg_config_world.lua -msgid "No game description provided." -msgstr "" - -#: builtin/mainmenu/dlg_config_world.lua -msgid "No hard dependencies" -msgstr "" - -#: builtin/mainmenu/dlg_config_world.lua -msgid "No modpack description provided." -msgstr "" - -#: builtin/mainmenu/dlg_config_world.lua -msgid "No optional dependencies" -msgstr "" - -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua -msgid "Optional dependencies:" -msgstr "" - -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "" - -#: builtin/mainmenu/dlg_config_world.lua -msgid "World:" -msgstr "" - -#: builtin/mainmenu/dlg_config_world.lua -msgid "enabled" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "A world named \"$1\" already exists" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Additional terrain" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua src/settings_translation_file.cpp -msgid "Altitude chill" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Altitude dry" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Biome blending" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Biomes" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Caverns" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Caves" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Create" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Decorations" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Desert temples" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Development Test is meant for developers." -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "" -"Different dungeon variant generated in desert biomes (only if dungeons " -"enabled)" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Dungeons" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Flat terrain" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Floating landmasses in the sky" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Floatlands (experimental)" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Generate non-fractal terrain: Oceans and underground" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Hills" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Humid rivers" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Increases humidity around rivers" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Install another game" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Lakes" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Low humidity and high heat causes shallow or dry rivers" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua src/settings_translation_file.cpp -msgid "Mapgen" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua src/settings_translation_file.cpp -msgid "Mapgen flags" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Mapgen-specific flags" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Mountains" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Mud flow" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Network of tunnels and caves" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "No game selected" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Reduces heat with altitude" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Reduces humidity with altitude" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Rivers" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Sea level rivers" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Smooth transition between biomes" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "" -"Structures appearing on the terrain (no effect on trees and jungle grass " -"created by v6)" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Structures appearing on the terrain, typically trees and plants" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Temperate, Desert" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Temperate, Desert, Jungle" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Temperate, Desert, Jungle, Tundra, Taiga" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Terrain surface erosion" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Trees and jungle grass" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Vary river depth" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Very large caverns deep in the underground" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "World name" -msgstr "" - -#: builtin/mainmenu/dlg_delete_content.lua -msgid "Are you sure you want to delete \"$1\"?" -msgstr "" - -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/tab_local.lua -msgid "Delete" -msgstr "" - -#: builtin/mainmenu/dlg_delete_content.lua -msgid "pkgmgr: failed to delete \"$1\"" -msgstr "" - -#: builtin/mainmenu/dlg_delete_content.lua -msgid "pkgmgr: invalid path \"$1\"" -msgstr "" - -#: builtin/mainmenu/dlg_delete_world.lua -msgid "Delete World \"$1\"?" -msgstr "" - -#: builtin/mainmenu/dlg_register.lua src/gui/guiPasswordChange.cpp -msgid "Confirm Password" -msgstr "" - -#: builtin/mainmenu/dlg_register.lua -msgid "Joining $1" -msgstr "" - -#: builtin/mainmenu/dlg_register.lua -msgid "Missing name" -msgstr "" - -#: builtin/mainmenu/dlg_register.lua builtin/mainmenu/tab_local.lua -#: builtin/mainmenu/tab_online.lua -msgid "Name" -msgstr "" - -#: builtin/mainmenu/dlg_register.lua builtin/mainmenu/tab_local.lua -#: builtin/mainmenu/tab_online.lua -msgid "Password" -msgstr "" - -#: builtin/mainmenu/dlg_register.lua -msgid "Passwords do not match" -msgstr "" - -#: builtin/mainmenu/dlg_register.lua builtin/mainmenu/tab_online.lua -msgid "Register" -msgstr "" - -#: builtin/mainmenu/dlg_reinstall_mtg.lua -msgid "Dismiss" -msgstr "" - -#: builtin/mainmenu/dlg_reinstall_mtg.lua -msgid "" -"For a long time, Luanti shipped with a default game called \"Minetest " -"Game\". Since version 5.8.0, Luanti ships without a default game." -msgstr "" - -#: builtin/mainmenu/dlg_reinstall_mtg.lua -msgid "" -"If you want to continue playing in your Minetest Game worlds, you need to " -"reinstall Minetest Game." -msgstr "" - -#: builtin/mainmenu/dlg_reinstall_mtg.lua -msgid "Minetest Game is no longer installed by default" -msgstr "" - -#: builtin/mainmenu/dlg_reinstall_mtg.lua -msgid "Reinstall Minetest Game" -msgstr "" - -#: builtin/mainmenu/dlg_rename_modpack.lua -msgid "Accept" -msgstr "" - -#: builtin/mainmenu/dlg_rename_modpack.lua -msgid "Rename Modpack:" -msgstr "" - -#: builtin/mainmenu/dlg_rename_modpack.lua -msgid "" -"This modpack has an explicit name given in its modpack.conf which will " -"override any renaming here." -msgstr "" - -#: builtin/mainmenu/dlg_version_info.lua -msgid "A new $1 version is available" -msgstr "" - -#: builtin/mainmenu/dlg_version_info.lua -msgid "" -"Installed version: $1\n" -"New version: $2\n" -"Visit $3 to find out how to get the newest version and stay up to date with " -"features and bugfixes." -msgstr "" - -#: builtin/mainmenu/dlg_version_info.lua -msgid "Later" -msgstr "" - -#: builtin/mainmenu/dlg_version_info.lua -msgid "Never" -msgstr "" - -#: builtin/mainmenu/dlg_version_info.lua -msgid "Visit website" -msgstr "" - -#: builtin/mainmenu/init.lua -msgid "Settings" -msgstr "" - -#: builtin/mainmenu/serverlistmgr.lua -msgid "Public server list is disabled" -msgstr "" - -#: builtin/mainmenu/serverlistmgr.lua -msgid "Try reenabling public serverlist and check your internet connection." -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Set" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "Enable" -msgstr "" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "Shaders are disabled." -msgstr "" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "" - -#: builtin/mainmenu/tab_about.lua -msgid "About" -msgstr "" - -#: builtin/mainmenu/tab_about.lua -msgid "Active Contributors" -msgstr "" - -#: builtin/mainmenu/tab_about.lua -msgid "Active renderer:" -msgstr "" - -#: builtin/mainmenu/tab_about.lua -msgid "Core Developers" -msgstr "" - -#: builtin/mainmenu/tab_about.lua -msgid "Core Team" -msgstr "" - -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "" - -#: builtin/mainmenu/tab_about.lua -msgid "Open User Data Directory" -msgstr "" - -#: builtin/mainmenu/tab_about.lua -msgid "" -"Opens the directory that contains user-provided worlds, games, mods,\n" -"and texture packs in a file manager / explorer." -msgstr "" - -#: builtin/mainmenu/tab_about.lua -msgid "Previous Contributors" -msgstr "" - -#: builtin/mainmenu/tab_about.lua -msgid "Previous Core Developers" -msgstr "" - -#: builtin/mainmenu/tab_about.lua -msgid "Share debug log" -msgstr "" - -#: builtin/mainmenu/tab_content.lua -msgid "Browse online content" -msgstr "" - -#: builtin/mainmenu/tab_content.lua -msgid "Browse online content [$1]" -msgstr "" - -#: builtin/mainmenu/tab_content.lua -msgid "Content" -msgstr "" - -#: builtin/mainmenu/tab_content.lua -msgid "Content [$1]" -msgstr "" - -#: builtin/mainmenu/tab_content.lua -msgid "Disable Texture Pack" -msgstr "" - -#: builtin/mainmenu/tab_content.lua -msgid "Installed Packages:" -msgstr "" - -#: builtin/mainmenu/tab_content.lua -msgid "No dependencies." -msgstr "" - -#: builtin/mainmenu/tab_content.lua -msgid "No package description available" -msgstr "" - -#: builtin/mainmenu/tab_content.lua -msgid "Rename" -msgstr "" - -#: builtin/mainmenu/tab_content.lua -msgid "Update available?" -msgstr "" - -#: builtin/mainmenu/tab_content.lua -msgid "Use Texture Pack" -msgstr "" - -#: builtin/mainmenu/tab_local.lua -msgid "Announce Server" -msgstr "" - -#: builtin/mainmenu/tab_local.lua -msgid "Bind Address" -msgstr "" - -#: builtin/mainmenu/tab_local.lua -msgid "Creative Mode" -msgstr "" - -#: builtin/mainmenu/tab_local.lua -msgid "Enable Damage" -msgstr "" - -#: builtin/mainmenu/tab_local.lua -msgid "Host Game" -msgstr "" - -#: builtin/mainmenu/tab_local.lua -msgid "Host Server" -msgstr "" - -#: builtin/mainmenu/tab_local.lua -msgid "Install a game" -msgstr "" - -#: builtin/mainmenu/tab_local.lua -msgid "Install games from ContentDB" -msgstr "" - -#: builtin/mainmenu/tab_local.lua -msgid "Luanti doesn't come with a game by default." -msgstr "" - -#: builtin/mainmenu/tab_local.lua -msgid "" -"Luanti is a game-creation platform that allows you to play many different " -"games." -msgstr "" - -#: builtin/mainmenu/tab_local.lua -msgid "New" -msgstr "" - -#: builtin/mainmenu/tab_local.lua -msgid "No world created or selected!" -msgstr "" - -#: builtin/mainmenu/tab_local.lua -msgid "Play Game" -msgstr "" - -#: builtin/mainmenu/tab_local.lua builtin/mainmenu/tab_online.lua -msgid "Port" -msgstr "" - -#: builtin/mainmenu/tab_local.lua -msgid "Select Mods" -msgstr "" - -#: builtin/mainmenu/tab_local.lua -msgid "Select World:" -msgstr "" - -#: builtin/mainmenu/tab_local.lua -msgid "Server Port" -msgstr "" - -#: builtin/mainmenu/tab_local.lua -msgid "Start Game" -msgstr "" - -#: builtin/mainmenu/tab_local.lua -msgid "You need to install a game before you can create a world." -msgstr "" - -#: builtin/mainmenu/tab_online.lua -msgid "Address" -msgstr "" - -#: builtin/mainmenu/tab_online.lua -msgid "Creative mode" -msgstr "" - -#. ~ PvP = Player versus Player -#: builtin/mainmenu/tab_online.lua -msgid "Damage / PvP" -msgstr "" - -#: builtin/mainmenu/tab_online.lua -msgid "Favorites" -msgstr "" - -#: builtin/mainmenu/tab_online.lua -msgid "Incompatible Servers" -msgstr "" - -#: builtin/mainmenu/tab_online.lua -msgid "Join Game" -msgstr "" - -#: builtin/mainmenu/tab_online.lua -msgid "Login" -msgstr "" - -#: builtin/mainmenu/tab_online.lua -msgid "Ping" -msgstr "" - -#: builtin/mainmenu/tab_online.lua -msgid "Public Servers" -msgstr "" - -#: builtin/mainmenu/tab_online.lua -msgid "Refresh" -msgstr "" - -#: builtin/mainmenu/tab_online.lua -msgid "Remove favorite" -msgstr "" - -#: builtin/mainmenu/tab_online.lua -msgid "Server Description" -msgstr "" - -#: src/client/client.cpp -msgid "Connection aborted (protocol error?)." -msgstr "" - -#: src/client/client.cpp src/client/game.cpp -msgid "Connection timed out." -msgstr "" - -#: src/client/client.cpp -msgid "Done!" -msgstr "" - -#: src/client/client.cpp -msgid "Initializing nodes" -msgstr "" - -#: src/client/client.cpp -msgid "Initializing nodes..." -msgstr "" - -#: src/client/client.cpp -msgid "Loading textures..." -msgstr "" - -#: src/client/client.cpp -msgid "Rebuilding shaders..." -msgstr "" - -#: src/client/clientlauncher.cpp -msgid "Could not find or load game: " -msgstr "" - -#: src/client/clientlauncher.cpp -msgid "Main Menu" -msgstr "" - -#: src/client/clientlauncher.cpp -msgid "No world selected and no address provided. Nothing to do." -msgstr "" - -#: src/client/clientlauncher.cpp -msgid "Player name too long." -msgstr "" - -#: src/client/clientlauncher.cpp -msgid "Please choose a name!" -msgstr "" - -#: src/client/clientlauncher.cpp -msgid "Provided password file failed to open: " -msgstr "" - -#: src/client/clientlauncher.cpp -msgid "Provided world path doesn't exist: " -msgstr "" - -#: src/client/clientmedia.cpp src/client/game.cpp -msgid "Media..." -msgstr "" - -#: src/client/game.cpp src/client/shader.cpp src/server.cpp -msgid "" -"\n" -"Check debug.txt for details." -msgstr "" - -#: src/client/game.cpp -msgid "- Mode: " -msgstr "" - -#: src/client/game.cpp -msgid "- Public: " -msgstr "" - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "" - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "" - -#: src/client/game.cpp -msgid "A serialization error occurred:" -msgstr "" - -#: src/client/game.cpp -#, c-format -msgid "Access denied. Reason: %s" -msgstr "" - -#: src/client/game.cpp -msgid "Automatic forward disabled" -msgstr "" - -#: src/client/game.cpp -msgid "Automatic forward enabled" -msgstr "" - -#: src/client/game.cpp -msgid "Block bounds hidden" -msgstr "" - -#: src/client/game.cpp -msgid "Block bounds shown for current block" -msgstr "" - -#: src/client/game.cpp -msgid "Block bounds shown for nearby blocks" -msgstr "" - -#: src/client/game.cpp -msgid "Camera update disabled" -msgstr "" - -#: src/client/game.cpp -msgid "Camera update enabled" -msgstr "" - -#: src/client/game.cpp -msgid "Can't show block bounds (disabled by game or mod)" -msgstr "" - -#: src/client/game.cpp -msgid "Change Password" -msgstr "" - -#: src/client/game.cpp -msgid "Cinematic mode disabled" -msgstr "" - -#: src/client/game.cpp -msgid "Cinematic mode enabled" -msgstr "" - -#: src/client/game.cpp -msgid "Client disconnected" -msgstr "" - -#: src/client/game.cpp -msgid "Client side scripting is disabled" -msgstr "" - -#: src/client/game.cpp -msgid "Connecting to server..." -msgstr "" - -#: src/client/game.cpp -msgid "Connection error (timed out?)" -msgstr "" - -#: src/client/game.cpp -msgid "Connection failed for unknown reason" -msgstr "" - -#: src/client/game.cpp -msgid "Continue" -msgstr "" - -#: src/client/game.cpp -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" - -#: src/client/game.cpp -#, c-format -msgid "Couldn't resolve address: %s" -msgstr "" - -#: src/client/game.cpp -msgid "Creating client..." -msgstr "" - -#: src/client/game.cpp -msgid "Creating server..." -msgstr "" - -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "" - -#: src/client/game.cpp -msgid "Debug info shown" -msgstr "" - -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "" - -#: src/client/game.cpp -#, c-format -msgid "Error creating client: %s" -msgstr "" - -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "" - -#: src/client/game.cpp -msgid "Fast mode disabled" -msgstr "" - -#: src/client/game.cpp -msgid "Fast mode enabled" -msgstr "" - -#: src/client/game.cpp -msgid "Fast mode enabled (note: no 'fast' privilege)" -msgstr "" - -#: src/client/game.cpp -msgid "Fly mode disabled" -msgstr "" - -#: src/client/game.cpp -msgid "Fly mode enabled" -msgstr "" - -#: src/client/game.cpp -msgid "Fly mode enabled (note: no 'fly' privilege)" -msgstr "" - -#: src/client/game.cpp -msgid "Fog disabled" -msgstr "" - -#: src/client/game.cpp -msgid "Fog enabled" -msgstr "" - -#: src/client/game.cpp -msgid "Fog enabled by game or mod" -msgstr "" - -#: src/client/game.cpp -msgid "Game info:" -msgstr "" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "" - -#: src/client/game.cpp -msgid "Item definitions..." -msgstr "" - -#: src/client/game.cpp -msgid "KiB/s" -msgstr "" - -#: src/client/game.cpp -msgid "MiB/s" -msgstr "" - -#: src/client/game.cpp -msgid "Minimap currently disabled by game or mod" -msgstr "" - -#: src/client/game.cpp -msgid "Multiplayer" -msgstr "" - -#: src/client/game.cpp -msgid "Noclip mode disabled" -msgstr "" - -#: src/client/game.cpp -msgid "Noclip mode enabled" -msgstr "" - -#: src/client/game.cpp -msgid "Noclip mode enabled (note: no 'noclip' privilege)" -msgstr "" - -#: src/client/game.cpp -msgid "Node definitions..." -msgstr "" - -#: src/client/game.cpp -msgid "Off" -msgstr "" - -#: src/client/game.cpp -msgid "On" -msgstr "" - -#: src/client/game.cpp -msgid "Pitch move mode disabled" -msgstr "" - -#: src/client/game.cpp -msgid "Pitch move mode enabled" -msgstr "" - -#: src/client/game.cpp -msgid "Profiler graph shown" -msgstr "" - -#: src/client/game.cpp -msgid "Remote server" -msgstr "" - -#: src/client/game.cpp -msgid "Resolving address..." -msgstr "" - -#: src/client/game.cpp -msgid "Respawn" -msgstr "" - -#: src/client/game.cpp -msgid "Shutting down..." -msgstr "" - -#: src/client/game.cpp -msgid "Singleplayer" -msgstr "" - -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "" - -#: src/client/game.cpp -msgid "Sound muted" -msgstr "" - -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "" - -#: src/client/game.cpp -msgid "Sound system is not supported on this build" -msgstr "" - -#: src/client/game.cpp -msgid "Sound unmuted" -msgstr "" - -#: src/client/game.cpp -#, c-format -msgid "The server is probably running a different version of %s." -msgstr "" - -#: src/client/game.cpp -#, c-format -msgid "Unable to connect to %s because IPv6 is disabled" -msgstr "" - -#: src/client/game.cpp -#, c-format -msgid "Unable to listen on %s because IPv6 is disabled" -msgstr "" - -#: src/client/game.cpp -msgid "Unlimited viewing range disabled" -msgstr "" - -#: src/client/game.cpp -msgid "Unlimited viewing range enabled" -msgstr "" - -#: src/client/game.cpp -msgid "Unlimited viewing range enabled, but forbidden by game or mod" -msgstr "" - -#: src/client/game.cpp -#, c-format -msgid "Viewing changed to %d (the minimum)" -msgstr "" - -#: src/client/game.cpp -#, c-format -msgid "Viewing changed to %d (the minimum), but limited to %d by game or mod" -msgstr "" - -#: src/client/game.cpp -#, c-format -msgid "Viewing range changed to %d" -msgstr "" - -#: src/client/game.cpp -#, c-format -msgid "Viewing range changed to %d (the maximum)" -msgstr "" - -#: src/client/game.cpp -#, c-format -msgid "" -"Viewing range changed to %d (the maximum), but limited to %d by game or mod" -msgstr "" - -#: src/client/game.cpp -#, c-format -msgid "Viewing range changed to %d, but limited to %d by game or mod" -msgstr "" - -#: src/client/game.cpp -#, c-format -msgid "Volume changed to %d%%" -msgstr "" - -#: src/client/game.cpp -msgid "Wireframe shown" -msgstr "" - -#: src/client/game.cpp -msgid "You died" -msgstr "" - -#: src/client/game.cpp -msgid "Zoom currently disabled by game or mod" -msgstr "" - -#: src/client/gameui.cpp -msgid "Chat currently disabled by game or mod" -msgstr "" - -#: src/client/gameui.cpp -msgid "Chat hidden" -msgstr "" - -#: src/client/gameui.cpp -msgid "Chat shown" -msgstr "" - -#: src/client/gameui.cpp -msgid "HUD hidden" -msgstr "" - -#: src/client/gameui.cpp -msgid "HUD shown" -msgstr "" - -#: src/client/gameui.cpp -msgid "Profiler hidden" -msgstr "" - -#: src/client/gameui.cpp -#, c-format -msgid "Profiler shown (page %d of %d)" -msgstr "" - -#: src/client/keycode.cpp -msgid "Apps" -msgstr "" - -#: src/client/keycode.cpp -msgid "Backspace" -msgstr "" - -#. ~ Usually paired with the Pause key -#: src/client/keycode.cpp -msgid "Break Key" -msgstr "" - -#: src/client/keycode.cpp -msgid "Caps Lock" -msgstr "" - -#: src/client/keycode.cpp -msgid "Clear Key" -msgstr "" - -#: src/client/keycode.cpp -msgid "Control Key" -msgstr "" - -#: src/client/keycode.cpp -msgid "Delete Key" -msgstr "" - -#: src/client/keycode.cpp -msgid "Down Arrow" -msgstr "" - -#: src/client/keycode.cpp -msgid "End" -msgstr "" - -#: src/client/keycode.cpp -msgid "Erase EOF" -msgstr "" - -#: src/client/keycode.cpp -msgid "Execute" -msgstr "" - -#: src/client/keycode.cpp -msgid "Help" -msgstr "" - -#: src/client/keycode.cpp -msgid "Home" -msgstr "" - -#: src/client/keycode.cpp -msgid "IME Accept" -msgstr "" - -#: src/client/keycode.cpp -msgid "IME Convert" -msgstr "" - -#: src/client/keycode.cpp -msgid "IME Escape" -msgstr "" - -#: src/client/keycode.cpp -msgid "IME Mode Change" -msgstr "" - -#: src/client/keycode.cpp -msgid "IME Nonconvert" -msgstr "" - -#: src/client/keycode.cpp -msgid "Insert" -msgstr "" - -#: src/client/keycode.cpp -msgid "Left Arrow" -msgstr "" - -#: src/client/keycode.cpp -msgid "Left Button" -msgstr "" - -#: src/client/keycode.cpp -msgid "Left Control" -msgstr "" - -#: src/client/keycode.cpp -msgid "Left Menu" -msgstr "" - -#: src/client/keycode.cpp -msgid "Left Shift" -msgstr "" - -#: src/client/keycode.cpp -msgid "Left Windows" -msgstr "" - -#. ~ Key name, common on Windows keyboards -#: src/client/keycode.cpp -msgid "Menu Key" -msgstr "" - -#: src/client/keycode.cpp -msgid "Middle Button" -msgstr "" - -#: src/client/keycode.cpp -msgid "Num Lock" -msgstr "" - -#: src/client/keycode.cpp -msgid "Numpad *" -msgstr "" - -#: src/client/keycode.cpp -msgid "Numpad +" -msgstr "" - -#: src/client/keycode.cpp -msgid "Numpad -" -msgstr "" - -#: src/client/keycode.cpp -msgid "Numpad ." -msgstr "" - -#: src/client/keycode.cpp -msgid "Numpad /" -msgstr "" - -#: src/client/keycode.cpp -msgid "Numpad 0" -msgstr "" - -#: src/client/keycode.cpp -msgid "Numpad 1" -msgstr "" - -#: src/client/keycode.cpp -msgid "Numpad 2" -msgstr "" - -#: src/client/keycode.cpp -msgid "Numpad 3" -msgstr "" - -#: src/client/keycode.cpp -msgid "Numpad 4" -msgstr "" - -#: src/client/keycode.cpp -msgid "Numpad 5" -msgstr "" - -#: src/client/keycode.cpp -msgid "Numpad 6" -msgstr "" - -#: src/client/keycode.cpp -msgid "Numpad 7" -msgstr "" - -#: src/client/keycode.cpp -msgid "Numpad 8" -msgstr "" - -#: src/client/keycode.cpp -msgid "Numpad 9" -msgstr "" - -#: src/client/keycode.cpp -msgid "OEM Clear" -msgstr "" - -#: src/client/keycode.cpp -msgid "Page Down" -msgstr "" - -#: src/client/keycode.cpp -msgid "Page Up" -msgstr "" - -#. ~ Usually paired with the Break key -#: src/client/keycode.cpp -msgid "Pause Key" -msgstr "" - -#: src/client/keycode.cpp -msgid "Play" -msgstr "" - -#. ~ "Print screen" key -#: src/client/keycode.cpp -msgid "Print" -msgstr "" - -#: src/client/keycode.cpp -msgid "Return Key" -msgstr "" - -#: src/client/keycode.cpp -msgid "Right Arrow" -msgstr "" - -#: src/client/keycode.cpp -msgid "Right Button" -msgstr "" - -#: src/client/keycode.cpp -msgid "Right Control" -msgstr "" - -#: src/client/keycode.cpp -msgid "Right Menu" -msgstr "" - -#: src/client/keycode.cpp -msgid "Right Shift" -msgstr "" - -#: src/client/keycode.cpp -msgid "Right Windows" -msgstr "" - -#: src/client/keycode.cpp -msgid "Scroll Lock" -msgstr "" - -#. ~ Key name -#: src/client/keycode.cpp -msgid "Select" -msgstr "" - -#: src/client/keycode.cpp -msgid "Shift Key" -msgstr "" - -#: src/client/keycode.cpp -msgid "Sleep" -msgstr "" - -#: src/client/keycode.cpp -msgid "Snapshot" -msgstr "" - -#: src/client/keycode.cpp -msgid "Space" -msgstr "" - -#: src/client/keycode.cpp -msgid "Tab" -msgstr "" - -#: src/client/keycode.cpp -msgid "Up Arrow" -msgstr "" - -#: src/client/keycode.cpp -msgid "X Button 1" -msgstr "" - -#: src/client/keycode.cpp -msgid "X Button 2" -msgstr "" - -#: src/client/keycode.cpp -msgid "Zoom Key" -msgstr "" - -#: src/client/minimap.cpp -msgid "Minimap hidden" -msgstr "" - -#: src/client/minimap.cpp -#, c-format -msgid "Minimap in radar mode, Zoom x%d" -msgstr "" - -#: src/client/minimap.cpp -#, c-format -msgid "Minimap in surface mode, Zoom x%d" -msgstr "" - -#: src/client/minimap.cpp -msgid "Minimap in texture mode" -msgstr "" - -#: src/client/shader.cpp -#, c-format -msgid "Failed to compile the \"%s\" shader." -msgstr "" - -#: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." -msgstr "" - -#. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" -#: src/content/mod_configuration.cpp -#, c-format -msgid "%s is missing:" -msgstr "" - -#: src/content/mod_configuration.cpp -msgid "" -"Install and enable the required mods, or disable the mods causing errors." -msgstr "" - -#: src/content/mod_configuration.cpp -msgid "" -"Note: this may be caused by a dependency cycle, in which case try updating " -"the mods." -msgstr "" - -#: src/content/mod_configuration.cpp -msgid "Some mods have unsatisfied dependencies:" -msgstr "" - -#: src/gui/guiChatConsole.cpp -msgid "Failed to open webpage" -msgstr "" - -#: src/gui/guiChatConsole.cpp -msgid "Opening webpage" -msgstr "" - -#: src/gui/guiFormSpecMenu.cpp -msgid "Proceed" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "\"Aux1\" = climb down" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Autoforward" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp src/settings_translation_file.cpp -msgid "Automatic jumping" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp -msgid "Aux1" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Backward" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Block bounds" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp -msgid "Change camera" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Command" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Console" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Dec. range" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Dec. volume" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Double tap \"jump\" to toggle fly" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp -msgid "Drop" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Forward" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Inc. range" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Inc. volume" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp -msgid "Inventory" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp -msgid "Jump" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Key already in use" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Keybindings." -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Left" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Local command" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Mute" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Next item" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Prev. item" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp -msgid "Range select" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Right" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Screenshot" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp -msgid "Sneak" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Toggle HUD" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp -msgid "Toggle chat log" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp -msgid "Toggle fast" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp -msgid "Toggle fly" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Toggle fog" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp -msgid "Toggle minimap" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp -msgid "Toggle noclip" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Toggle pitchmove" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp -msgid "Zoom" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "press key" -msgstr "" - -#: src/gui/guiOpenURL.cpp -msgid "Open" -msgstr "" - -#: src/gui/guiOpenURL.cpp -msgid "Open URL?" -msgstr "" - -#: src/gui/guiOpenURL.cpp -msgid "Unable to open URL" -msgstr "" - -#: src/gui/guiPasswordChange.cpp -msgid "Change" -msgstr "" - -#: src/gui/guiPasswordChange.cpp -msgid "New Password" -msgstr "" - -#: src/gui/guiPasswordChange.cpp -msgid "Old Password" -msgstr "" - -#: src/gui/guiPasswordChange.cpp -msgid "Passwords do not match!" -msgstr "" - -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp -msgid "Exit" -msgstr "" - -#: src/gui/guiVolumeChange.cpp -msgid "Muted" -msgstr "" - -#: src/gui/guiVolumeChange.cpp -#, c-format -msgid "Sound Volume: %d%%" -msgstr "" - -#: src/gui/touchcontrols.cpp -msgid "Joystick" -msgstr "" - -#: src/gui/touchcontrols.cpp -msgid "Overflow menu" -msgstr "" - -#: src/gui/touchcontrols.cpp -msgid "Toggle debug" -msgstr "" - -#: src/network/clientpackethandler.cpp -msgid "" -"Another client is connected with this name. If your client closed " -"unexpectedly, try again in a minute." -msgstr "" - -#: src/network/clientpackethandler.cpp -msgid "Empty passwords are disallowed. Set a password and try again." -msgstr "" - -#: src/network/clientpackethandler.cpp -msgid "Internal server error" -msgstr "" - -#: src/network/clientpackethandler.cpp -msgid "Invalid password" -msgstr "" - -#. ~ DO NOT TRANSLATE THIS LITERALLY! -#. This is a special string which needs to contain the translation's -#. language code (e.g. "de" for German). -#: src/network/clientpackethandler.cpp src/script/lua_api/l_client.cpp -#: src/script/lua_api/l_mainmenu.cpp -msgid "LANG_CODE" -msgstr "ia" - -#: src/network/clientpackethandler.cpp -msgid "" -"Name is not registered. To create an account on this server, click 'Register'" -msgstr "" - -#: src/network/clientpackethandler.cpp -msgid "Name is taken. Please choose another name" -msgstr "" - -#: src/network/clientpackethandler.cpp -msgid "Player name contains disallowed characters" -msgstr "" - -#: src/network/clientpackethandler.cpp -msgid "Player name not allowed" -msgstr "" - -#: src/network/clientpackethandler.cpp -msgid "Server shutting down" -msgstr "" - -#: src/network/clientpackethandler.cpp -msgid "" -"The server has experienced an internal error. You will now be disconnected." -msgstr "" - -#: src/network/clientpackethandler.cpp -msgid "The server is running in singleplayer mode. You cannot connect." -msgstr "" - -#: src/network/clientpackethandler.cpp -msgid "Too many users" -msgstr "" - -#: src/network/clientpackethandler.cpp -msgid "Unknown disconnect reason." -msgstr "" - -#: src/network/clientpackethandler.cpp -msgid "" -"Your client sent something the server didn't expect. Try reconnecting or " -"updating your client." -msgstr "" - -#: src/network/clientpackethandler.cpp -msgid "" -"Your client's version is not supported.\n" -"Please contact the server administrator." -msgstr "" - -#: src/server.cpp -#, c-format -msgid "%s while shutting down: " -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"(X,Y,Z) offset of fractal from world center in units of 'scale'.\n" -"Can be used to move a desired point to (0, 0) to create a\n" -"suitable spawn point, or to allow 'zooming in' on a desired\n" -"point by increasing 'scale'.\n" -"The default is tuned for a suitable spawn point for Mandelbrot\n" -"sets with default parameters, it may need altering in other\n" -"situations.\n" -"Range roughly -2 to 2. Multiply by 'scale' for offset in nodes." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"(X,Y,Z) scale of fractal in nodes.\n" -"Actual fractal size will be 2 to 3 times larger.\n" -"These numbers can be made very large, the fractal does\n" -"not have to fit inside the world.\n" -"Increase these to 'zoom' into the detail of the fractal.\n" -"Default is for a vertically-squashed shape suitable for\n" -"an island, set all 3 numbers equal for the raw shape." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "2D noise that controls the shape/size of ridged mountains." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "2D noise that controls the shape/size of rolling hills." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "2D noise that controls the shape/size of step mountains." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "2D noise that controls the size/occurrence of ridged mountain ranges." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "2D noise that controls the size/occurrence of rolling hills." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "2D noise that controls the size/occurrence of step mountain ranges." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "2D noise that locates the river valleys and channels." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "3D" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "3D clouds" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "3D mode" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "3D mode parallax strength" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "3D noise defining giant caverns." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"3D noise defining mountain structure and height.\n" -"Also defines structure of floatland mountain terrain." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"3D noise defining structure of floatlands.\n" -"If altered from the default, the noise 'scale' (0.7 by default) may need\n" -"to be adjusted, as floatland tapering functions best when this noise has\n" -"a value range of approximately -2.0 to 2.0." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "3D noise defining structure of river canyon walls." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "3D noise defining terrain." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "3D noise for mountain overhangs, cliffs, etc. Usually small variations." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "3D noise that determines number of dungeons per mapchunk." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"3D support.\n" -"Currently supported:\n" -"- none: no 3d output.\n" -"- anaglyph: cyan/magenta color 3d.\n" -"- interlaced: odd/even line based polarization screen support.\n" -"- topbottom: split screen top/bottom.\n" -"- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"A chosen map seed for a new map, leave empty for random.\n" -"Will be overridden when creating a new world in the main menu." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "A message to be displayed to all clients when the server crashes." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "A message to be displayed to all clients when the server shuts down." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "ABM interval" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "ABM time budget" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Absolute limit of queued blocks to emerge" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Acceleration in air" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Acceleration of gravity, in nodes per second per second." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Active Block Modifiers" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Active block management interval" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Active block range" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Active object send range" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Adjust the detected display density, used for scaling UI elements." -msgstr "" - -#: src/settings_translation_file.cpp -#, c-format -msgid "" -"Adjusts the density of the floatland layer.\n" -"Increase value to increase density. Can be positive or negative.\n" -"Value = 0.0: 50% of volume is floatland.\n" -"Value = 2.0 (can be higher depending on 'mgv7_np_floatland', always test\n" -"to be sure) creates a solid floatland layer." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Admin name" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Advanced" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Allows liquids to be translucent." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Alters the light curve by applying 'gamma correction' to it.\n" -"Higher values make middle and lower light levels brighter.\n" -"Value '1.0' leaves the light curve unaltered.\n" -"This only has significant effect on daylight and artificial\n" -"light, it has very little effect on natural night light." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Always fly fast" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Ambient occlusion gamma" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Amplifies the valleys." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Anisotropic filtering" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Announce server" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Announce to this serverlist." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Anti-aliasing scale" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Antialiasing method" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Anticheat flags" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Anticheat movement tolerance" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Append item name" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Append item name to tooltip." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Apple trees noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Apply dithering to reduce color banding artifacts.\n" -"Dithering significantly increases the size of losslessly-compressed\n" -"screenshots and it works incorrectly if the display or operating system\n" -"performs additional dithering or if the color channels are not quantized\n" -"to 8 bits.\n" -"With OpenGL ES, dithering only works if the shader supports high\n" -"floating-point precision and it may have a higher performance impact." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Apply specular shading to nodes." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Arm inertia" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Arm inertia, gives a more realistic movement of\n" -"the arm when the camera moves." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Ask to reconnect after crash" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"At this distance the server will aggressively optimize which blocks are sent " -"to\n" -"clients.\n" -"Small values potentially improve performance a lot, at the expense of " -"visible\n" -"rendering glitches (some blocks might not be rendered correctly in caves).\n" -"Setting this to a value greater than max_block_send_distance disables this\n" -"optimization.\n" -"Stated in MapBlocks (16 nodes)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"At this distance the server will perform a simpler and cheaper occlusion " -"check.\n" -"Smaller values potentially improve performance, at the expense of " -"temporarily visible\n" -"rendering glitches (missing blocks).\n" -"This is especially useful for very large viewing range (upwards of 500).\n" -"Stated in MapBlocks (16 nodes)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Audio" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Automatically jump up single-node obstacles." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Automatically report to the serverlist." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Autoscaling mode" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Aux1 key for climbing/descending" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Base ground level" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Base terrain height." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Base texture size" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Basic privileges" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Beach noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Beach noise threshold" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Bilinear filtering" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Bind address" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Biome API" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Biome noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Block bounds HUD radius" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Block cull optimize distance" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Block send optimize distance" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Bobbing" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Bold and italic font path" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Bold and italic monospace font path" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Bold font path" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Bold monospace font path" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Build inside player" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Builtin" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Camera" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Camera smoothing" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Camera smoothing in cinematic mode" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Cave noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Cave noise #1" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Cave noise #2" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Cave width" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Cave1 noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Cave2 noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Cavern limit" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Cavern noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Cavern taper" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Cavern threshold" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Cavern upper limit" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Center of light curve boost range.\n" -"Where 0.0 is minimum light level, 1.0 is maximum light level." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Chat command time message threshold" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Chat commands" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Chat font size" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Chat log level" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Chat message count limit" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Chat message format" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Chat message kick threshold" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Chat message max length" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Chat weblinks" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Chunk size" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Clickable weblinks (middle-click or Ctrl+left-click) enabled in chat console " -"output." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Client" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Client Mesh Chunksize" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Client and Server" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Client modding" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Client side modding restrictions" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Client-side Modding" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Client-side node lookup range restriction" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Climbing speed" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Cloud radius" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Clouds" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Clouds in menu" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Colored fog" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Colored shadows" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Comma-separated list of AL and ALC extensions that should not be used.\n" -"Useful for testing. See al_extensions.[h,cpp] for details." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Comma-separated list of flags to hide in the content repository.\n" -"\"nonfree\" can be used to hide packages which do not qualify as 'free " -"software',\n" -"as defined by the Free Software Foundation.\n" -"You can also specify content ratings.\n" -"These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Comma-separated list of mods that are allowed to access HTTP APIs, which\n" -"allow them to upload and download data to/from the internet." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Comma-separated list of trusted mods that are allowed to access insecure\n" -"functions even when mod security is on (via request_insecure_environment())." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Compression level to use when saving mapblocks to disk.\n" -"-1 - use default compression level\n" -"0 - least compression, fastest\n" -"9 - best compression, slowest" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Compression level to use when sending mapblocks to the client.\n" -"-1 - use default compression level\n" -"0 - least compression, fastest\n" -"9 - best compression, slowest" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Connect glass" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Connect to external media server" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Connects glass if supported by node." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Console alpha" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Console color" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Console height" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Content Repository" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "ContentDB Flag Blacklist" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "ContentDB Max Concurrent Downloads" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "ContentDB URL" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Controls length of day/night cycle.\n" -"Examples:\n" -"72 = 20min, 360 = 4min, 1 = 24hour, 0 = day/night/whatever stays unchanged." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Controls sinking speed in liquid when idling. Negative values will cause\n" -"you to rise instead." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Controls steepness/depth of lake depressions." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Controls steepness/height of hills." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Controls width of tunnels, a smaller value creates wider tunnels.\n" -"Value >= 10.0 completely disables generation of tunnels and avoids the\n" -"intensive noise calculations." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Crash message" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Crosshair alpha" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Crosshair alpha (opaqueness, between 0 and 255).\n" -"This also applies to the object crosshair." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Crosshair color" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Crosshair color (R,G,B).\n" -"Also controls the object crosshair color" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Debug log file size threshold" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Debug log level" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Debugging" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Dedicated server step" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Default acceleration" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Default maximum number of forceloaded mapblocks.\n" -"Set this to -1 to disable the limit." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Default password" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Default privileges" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Default report format" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Default stack size" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Define shadow filtering quality.\n" -"This simulates the soft shadows effect by applying a PCF or Poisson disk\n" -"but also uses more resources." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Define the oldest clients allowed to connect.\n" -"Older clients are compatible in the sense that they will not crash when " -"connecting\n" -"to new servers, but they may not support all new features that you are " -"expecting.\n" -"This allows for more fine-grained control than " -"strict_protocol_version_checking.\n" -"Luanti still enforces its own internal minimum, and enabling\n" -"strict_protocol_version_checking will effectively override this." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Defines areas where trees have apples." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Defines areas with sandy beaches." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Defines distribution of higher terrain and steepness of cliffs." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Defines distribution of higher terrain." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Defines full size of caverns, smaller values create larger caverns." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Defines large-scale river channel structure." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Defines location and terrain of optional hills and lakes." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Defines the base ground level." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Defines the depth of the river channel." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Defines the maximal player transfer distance in blocks (0 = unlimited)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Defines the size of the sampling grid for FSAA and SSAA antialiasing " -"methods.\n" -"Value of 2 means taking 2x2 = 4 samples." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Defines the width of the river channel." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Defines the width of the river valley." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Defines tree areas and tree density." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Delay between mesh updates on the client in ms. Increasing this will slow\n" -"down the rate of mesh updates, thus reducing jitter on slower clients." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Delay in sending blocks after building" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Delay showing tooltips, stated in milliseconds." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Deprecated Lua API handling" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Depth below which you'll find giant caverns." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Depth below which you'll find large caves." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Description of server, to be displayed when players join and in the " -"serverlist." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Desert noise threshold" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Deserts occur when np_biome exceeds this value.\n" -"When the 'snowbiomes' flag is enabled, this is ignored." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Developer Options" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Disallow empty passwords" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Display Density Scaling Factor" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Distance in nodes at which transparency depth sorting is enabled.\n" -"Use this to limit the performance impact of transparency depth sorting.\n" -"Set to 0 to disable it entirely." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Domain name of server, to be displayed in the serverlist." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Double tap jump for fly" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Double-tapping the jump key toggles fly mode." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Dump the mapgen debug information." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Dungeon maximum Y" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Dungeon minimum Y" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Dungeon noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Effects" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enable Automatic Exposure" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enable Bloom" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enable Bloom Debug" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enable Debanding" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Enable IPv6 support (for both client and server).\n" -"Required for IPv6 connections to work at all." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Enable Lua modding support on client.\n" -"This support is experimental and API can change." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Enable Poisson disk filtering.\n" -"On true uses Poisson disk to make \"soft shadows\". Otherwise uses PCF " -"filtering." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enable Post Processing" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enable Raytraced Culling" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Enable automatic exposure correction\n" -"When enabled, the post-processing engine will\n" -"automatically adjust to the brightness of the scene,\n" -"simulating the behavior of human eye." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enable console window" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enable joysticks" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enable joysticks. Requires a restart to take effect" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enable mod channels support." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enable mod security" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enable mouse wheel (scroll) for item selection in hotbar." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enable random mod loading (mainly used for testing)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enable random user input (only used for testing)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enable smooth lighting with simple ambient occlusion." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enable split login/register" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Enable to disallow old clients from connecting.\n" -"Older clients are compatible in the sense that they will not crash when " -"connecting\n" -"to new servers, but they may not support all new features that you are " -"expecting." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enable updates available indicator on content tab" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Enable usage of remote media server (if provided by server).\n" -"Remote servers offer a significantly faster way to download media (e.g. " -"textures)\n" -"when connecting to the server." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Enable view bobbing and amount of view bobbing.\n" -"For example: 0 for no view bobbing; 1.0 for normal; 2.0 for double." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Enables Hable's 'Uncharted 2' filmic tone mapping.\n" -"Simulates the tone curve of photographic film and how this approximates the\n" -"appearance of high dynamic range images. Mid-range contrast is slightly\n" -"enhanced, highlights and shadows are gradually compressed." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enables animation of inventory items." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enables debug and error-checking in the OpenGL driver." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enables smooth scrolling." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enables the post processing pipeline." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Enables the touchscreen controls, allowing you to play the game with a " -"touchscreen.\n" -"\"auto\" means that the touchscreen controls will be enabled and disabled\n" -"automatically depending on the last used input method." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Enables tradeoffs that reduce CPU load or increase rendering performance\n" -"at the expense of minor visual glitches that do not impact game playability." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Engine Profiler" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Engine profiling data print interval" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Entity methods" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Exponent of the floatland tapering. Alters the tapering behavior.\n" -"Value = 1.0 creates a uniform, linear tapering.\n" -"Values > 1.0 create a smooth tapering suitable for the default separated\n" -"floatlands.\n" -"Values < 1.0 (for example 0.25) create a more defined surface level with\n" -"flatter lowlands, suitable for a solid floatland layer." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Exposure compensation" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "FPS" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "FPS when unfocused or paused" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Factor noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Fall bobbing factor" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Fallback font path" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Fast mode acceleration" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Fast mode speed" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Field of view" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Field of view in degrees." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"File in client/serverlist/ that contains your favorite servers displayed in " -"the\n" -"Multiplayer Tab." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Filler depth" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Filler depth noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Filmic tone mapping" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Filtering and Antialiasing" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "First of 4 2D noises that together define hill/mountain range height." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "First of two 3D noises that together define tunnels." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Fixed map seed" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Fixed virtual joystick" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Fixes the position of virtual joystick.\n" -"If disabled, virtual joystick will center to first-touch's position." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Floatland density" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Floatland maximum Y" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Floatland minimum Y" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Floatland noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Floatland taper exponent" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Floatland tapering distance" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Floatland water level" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Fog" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Fog start" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Font" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Font bold by default" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Font italic by default" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Font shadow" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Font shadow alpha" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Font size" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Font size divisible by" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Font size of the default font where 1 unit = 1 pixel at 96 DPI" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Font size of the monospace font where 1 unit = 1 pixel at 96 DPI" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Font size of the recent chat text and chat prompt in point (pt).\n" -"Value 0 will use the default font size." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"For pixel-style fonts that do not scale well, this ensures that font sizes " -"used\n" -"with this font will always be divisible by this value, in pixels. For " -"instance,\n" -"a pixel font 16 pixels tall should have this set to 16, so it will only ever " -"be\n" -"sized 16, 32, 48, etc., so a mod requesting a size of 25 will get 32." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Format of player chat messages. The following strings are valid " -"placeholders:\n" -"@name, @message, @timestamp (optional)" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Format of screenshots." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Formspec Full-Screen Background Color" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Formspec Full-Screen Background Opacity" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Formspec full-screen background color (R,G,B)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Formspec full-screen background opacity (between 0 and 255)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Fourth of 4 2D noises that together define hill/mountain range height." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Fractal type" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Fraction of the visible distance at which fog starts to be rendered" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"From how far blocks are generated for clients, stated in mapblocks (16 " -"nodes)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"From how far blocks are sent to clients, stated in mapblocks (16 nodes)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"From how far clients know about objects, stated in mapblocks (16 nodes).\n" -"\n" -"Setting this larger than active_block_range will also cause the server\n" -"to maintain active objects up to this distance in the direction the\n" -"player is looking. (This can avoid mobs suddenly disappearing from view)" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Full screen" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Fullscreen mode." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "GUI" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "GUI scaling" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "GUI scaling filter" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Gamepads" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Global callbacks" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Global map generation attributes.\n" -"In Mapgen v6 the 'decorations' flag controls all decorations except trees\n" -"and jungle grass, in all other mapgens this flag controls all decorations." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Gradient of light curve at maximum light level.\n" -"Controls the contrast of the highest light levels." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Gradient of light curve at minimum light level.\n" -"Controls the contrast of the lowest light levels." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Graphics" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Graphics and Audio" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Gravity" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Ground level" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Ground noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "HTTP mods" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "HUD" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "HUD scaling" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Handling for deprecated Lua API calls:\n" -"- none: Do not log deprecated calls\n" -"- log: mimic and log backtrace of deprecated call (default).\n" -"- error: abort on usage of deprecated call (suggested for mod developers)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Have the profiler instrument itself:\n" -"* Instrument an empty function.\n" -"This estimates the overhead, that instrumentation is adding (+1 function " -"call).\n" -"* Instrument the sampler being used to update the statistics." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Heat blend noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Heat noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Height component of the initial window size." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Height noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Height select noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Hill steepness" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Hill threshold" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Hilliness1 noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Hilliness2 noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Hilliness3 noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Hilliness4 noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Homepage of server, to be displayed in the serverlist." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Horizontal acceleration in air when jumping or falling,\n" -"in nodes per second per second." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Horizontal and vertical acceleration in fast mode,\n" -"in nodes per second per second." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Horizontal and vertical acceleration on ground or when climbing,\n" -"in nodes per second per second." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Hotbar: Enable mouse wheel for selection" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Hotbar: Invert mouse wheel direction" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "How deep to make rivers." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"How fast liquid waves will move. Higher = faster.\n" -"If negative, liquid waves will move backwards." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"How long the server will wait before unloading unused mapblocks, stated in " -"seconds.\n" -"Higher value is smoother, but will use more RAM." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"How much you are slowed down when moving inside a liquid.\n" -"Decrease this to increase liquid resistance to movement." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "How wide to make rivers." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Humidity blend noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Humidity noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Humidity variation for biomes." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "IPv6" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "IPv6 server" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"If FPS would go higher than this, limit it by sleeping\n" -"to not waste CPU power for no benefit." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"If disabled, \"Aux1\" key is used to fly fast if both fly and fast mode are\n" -"enabled." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"If enabled and you have ContentDB packages installed, Luanti may contact " -"ContentDB to\n" -"check for package updates when opening the mainmenu." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"If enabled, \"Aux1\" key instead of \"Sneak\" key is used for climbing down " -"and\n" -"descending." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"If enabled, actions are recorded for rollback.\n" -"This option is only read when server starts." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"If enabled, invalid world data won't cause the server to shut down.\n" -"Only enable this if you know what you are doing." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"If enabled, players cannot join without a password or change theirs to an " -"empty password." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"If enabled, the server will perform map block occlusion culling based on\n" -"on the eye position of the player. This can reduce the number of blocks\n" -"sent to the client by 50-80%. Clients will no longer receive most\n" -"invisible blocks, so that the utility of noclip mode is reduced." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"If enabled, you can place nodes at the position (feet + eye level) where you " -"stand.\n" -"This is helpful when working with nodeboxes in small areas." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"If the CSM restriction for node range is enabled, get_node calls are " -"limited\n" -"to this distance from the player to the node." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"If the execution of a chat command takes longer than this specified time in\n" -"seconds, add the time information to the chat command message" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"If the file size of debug.txt exceeds the number of megabytes specified in\n" -"this setting when it is opened, the file is moved to debug.txt.1,\n" -"deleting an older debug.txt.1 if it exists.\n" -"debug.txt is only moved if this setting is positive." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "If this is set, players will always (re)spawn at the given position." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Ignore world errors" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "In-game chat console background alpha (opaqueness, between 0 and 255)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "In-game chat console background color (R,G,B)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "In-game chat console height, between 0.1 (10%) and 1.0 (100%)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Initial vertical speed when jumping, in nodes per second." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Instrument builtin.\n" -"This is usually only needed by core/builtin contributors" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Instrument chat commands on registration." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Instrument global callback functions on registration.\n" -"(anything you pass to a core.register_*() function)" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Instrument the action function of Active Block Modifiers on registration." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Instrument the action function of Loading Block Modifiers on registration." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Instrument the methods of entities on registration." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Interval of saving important changes in the world, stated in seconds." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Inventory items animations" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Invert mouse" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Invert mouse wheel (scroll) direction for item selection in hotbar." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Invert vertical mouse movement." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Italic font path" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Italic monospace font path" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Item entity TTL" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Iterations" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Iterations of the recursive function.\n" -"Increasing this increases the amount of fine detail, but also\n" -"increases processing load.\n" -"At iterations = 20 this mapgen has a similar load to mapgen V7." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Joystick ID" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Joystick button repetition interval" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Joystick dead zone" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Joystick frustum sensitivity" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Joystick type" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Julia set only.\n" -"W component of hypercomplex constant.\n" -"Alters the shape of the fractal.\n" -"Has no effect on 3D fractals.\n" -"Range roughly -2 to 2." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Julia set only.\n" -"X component of hypercomplex constant.\n" -"Alters the shape of the fractal.\n" -"Range roughly -2 to 2." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Julia set only.\n" -"Y component of hypercomplex constant.\n" -"Alters the shape of the fractal.\n" -"Range roughly -2 to 2." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Julia set only.\n" -"Z component of hypercomplex constant.\n" -"Alters the shape of the fractal.\n" -"Range roughly -2 to 2." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Julia w" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Julia x" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Julia y" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Julia z" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Jumping speed" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Keyboard and Mouse" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Kick players who sent more than X messages per 10 seconds." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Lake steepness" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Lake threshold" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Language" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Large cave depth" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Large cave maximum number" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Large cave minimum number" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Large cave proportion flooded" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Leaves style" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Leaves style:\n" -"- Fancy: all faces visible\n" -"- Simple: only outer faces\n" -"- Opaque: disable transparency" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Length of a server tick (the interval at which everything is generally " -"updated),\n" -"stated in seconds.\n" -"Does not apply to sessions hosted from the client menu.\n" -"This is a lower bound, i.e. server steps may not be shorter than this, but\n" -"they are often longer." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Length of liquid waves." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Length of time between Active Block Modifier (ABM) execution cycles, stated " -"in seconds." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Length of time between NodeTimer execution cycles, stated in seconds." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Length of time between active block management cycles, stated in seconds." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Level of logging to be written to debug.txt:\n" -"- (no logging)\n" -"- none (messages with no level)\n" -"- error\n" -"- warning\n" -"- action\n" -"- info\n" -"- verbose\n" -"- trace" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Light curve boost" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Light curve boost center" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Light curve boost spread" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Light curve gamma" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Light curve high gradient" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Light curve low gradient" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Lighting" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Limit of map generation, in nodes, in all 6 directions from (0, 0, 0).\n" -"Only mapchunks completely within the mapgen limit are generated.\n" -"Value is stored per-world." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Limits number of parallel HTTP requests. Affects:\n" -"- Media fetch if server uses remote_media setting.\n" -"- Serverlist download and server announcement.\n" -"- Downloads performed by main menu (e.g. mod manager).\n" -"Only has an effect if compiled with cURL." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Liquid fluidity" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Liquid fluidity smoothing" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Liquid loop max" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Liquid queue purge time" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Liquid reflections" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Liquid sinking" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Liquid update interval in seconds." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Liquid update tick" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Load the game profiler" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Load the game profiler to collect game profiling data.\n" -"Provides a /profiler command to access the compiled profile.\n" -"Useful for mod developers and server operators." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Loading Block Modifiers" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Lower Y limit of dungeons." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Lower Y limit of floatlands." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Main menu script" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Make fog and sky colors depend on daytime (dawn/sunset) and view direction." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Map Compression Level for Disk Storage" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Map Compression Level for Network Transfer" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Map directory" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Map generation attributes specific to Mapgen Carpathian." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Map generation attributes specific to Mapgen Flat.\n" -"Occasional lakes and hills can be added to the flat world." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Map generation attributes specific to Mapgen Fractal.\n" -"'terrain' enables the generation of non-fractal terrain:\n" -"ocean, islands and underground." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Map generation attributes specific to Mapgen Valleys.\n" -"'altitude_chill': Reduces heat with altitude.\n" -"'humid_rivers': Increases humidity around rivers.\n" -"'vary_river_depth': If enabled, low humidity and high heat causes rivers\n" -"to become shallower and occasionally dry.\n" -"'altitude_dry': Reduces humidity with altitude." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Map generation attributes specific to Mapgen v5." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Map generation attributes specific to Mapgen v6.\n" -"The 'snowbiomes' flag enables the new 5 biome system.\n" -"When the 'snowbiomes' flag is enabled jungles are automatically enabled and\n" -"the 'jungles' flag is ignored.\n" -"The 'temples' flag disables generation of desert temples. Normal dungeons " -"will appear instead." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Map generation attributes specific to Mapgen v7.\n" -"'ridges': Rivers.\n" -"'floatlands': Floating land masses in the atmosphere.\n" -"'caverns': Giant caves deep underground." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Map generation limit" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Map save interval" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Map shadows update frames" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapblock limit" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapblock mesh generation delay" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapblock mesh generation threads" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapblock unload timeout" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapgen Carpathian" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapgen Carpathian specific flags" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapgen Flat" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapgen Flat specific flags" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapgen Fractal" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapgen Fractal specific flags" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapgen V5" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapgen V5 specific flags" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapgen V6" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapgen V6 specific flags" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapgen V7" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapgen V7 specific flags" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapgen Valleys" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapgen Valleys specific flags" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapgen debug" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapgen name" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Max block generate distance" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Max block send distance" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Max liquids processed per step." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Max. clearobjects extra blocks" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Max. packets per iteration" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Maximum FPS" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Maximum FPS when the window is not focused, or when the game is paused." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Maximum distance to render shadows." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Maximum forceloaded blocks" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Maximum hotbar width" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Maximum limit of random number of large caves per mapchunk." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Maximum limit of random number of small caves per mapchunk." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Maximum liquid resistance. Controls deceleration when entering liquid at\n" -"high speed." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Maximum number of blocks that are simultaneously sent per client.\n" -"The maximum total count is calculated dynamically:\n" -"max_total = ceil((#clients + max_users) * per_client / 4)" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Maximum number of blocks that can be queued for loading." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Maximum number of blocks to be queued that are to be generated.\n" -"This limit is enforced per player." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Maximum number of blocks to be queued that are to be loaded from file.\n" -"This limit is enforced per player." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Maximum number of concurrent downloads. Downloads exceeding this limit will " -"be queued.\n" -"This should be lower than curl_parallel_limit." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Maximum number of mapblocks for client to be kept in memory.\n" -"Set to -1 for unlimited amount." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Maximum number of packets sent per send step in the low-level networking " -"code.\n" -"You generally don't need to change this, however busy servers may benefit " -"from a higher number." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Maximum number of players that can be connected simultaneously." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Maximum number of recent chat messages to show" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Maximum number of statically stored objects in a block." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Maximum objects per block" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Maximum proportion of current window to be used for hotbar.\n" -"Useful if there's something to be displayed right or left of hotbar." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Maximum simultaneous block sends per client" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Maximum size of the outgoing chat queue" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Maximum size of the outgoing chat queue.\n" -"0 to disable queueing and -1 to make the queue size unlimited." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Maximum time a file download (e.g. a mod download) may take, stated in " -"milliseconds." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Maximum time an interactive request (e.g. server list fetch) may take, " -"stated in milliseconds." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Maximum users" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Message of the day" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Message of the day displayed to players connecting." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Method used to highlight selected object." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Minimal level of logging to be written to chat." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Minimap scan height" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Minimum dig repetition interval" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Minimum limit of random number of large caves per mapchunk." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Minimum limit of random number of small caves per mapchunk." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mipmapping" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Miscellaneous" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mod Profiler" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mod Security" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mod channels" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Modifies the size of the HUD elements." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Monospace font path" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Monospace font size" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Monospace font size divisible by" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mountain height noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mountain noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mountain variation noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mountain zero level" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mouse sensitivity" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mouse sensitivity multiplier." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Movement threshold" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mud noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Multiplier for fall bobbing.\n" -"For example: 0 for no view bobbing; 1.0 for normal; 2.0 for double." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mute sound" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Name of map generator to be used when creating a new world.\n" -"Creating a world in the main menu will override this.\n" -"Current mapgens in a highly unstable state:\n" -"- The optional floatlands of v7 (disabled by default)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" -"When starting from the main menu, this is overridden." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Name of the server, to be displayed when players join and in the serverlist." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Network port to listen (UDP).\n" -"This value will be overridden when starting from the main menu." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Networking" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "New users need to input this password." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Node and Entity Highlighting" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Node highlighting" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Node specular" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "NodeTimer interval" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Noises" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Number of emerge threads" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Number of emerge threads to use.\n" -"Value 0:\n" -"- Automatic selection. The number of emerge threads will be\n" -"- 'number of processors - 2', with a lower limit of 1.\n" -"Any other value:\n" -"- Specifies the number of emerge threads, with a lower limit of 1.\n" -"WARNING: Increasing the number of emerge threads increases engine mapgen\n" -"speed, but this may harm game performance by interfering with other\n" -"processes, especially in singleplayer and/or when running Lua code in\n" -"'on_generated'. For many users the optimum setting may be '1'." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Number of extra blocks that can be loaded by /clearobjects at once.\n" -"This is a trade-off between SQLite transaction overhead and\n" -"memory consumption (4096=100MB, as a rule of thumb)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Number of messages a player may send per 10 seconds." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Number of threads to use for mesh generation.\n" -"Value of 0 (default) will let Luanti autodetect the number of available " -"threads." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Occlusion Culler" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Occlusion Culling" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Opaqueness (alpha) of the shadow behind the default font, between 0 and 255." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Open the pause menu when the window's focus is lost. Does not pause if a " -"formspec is\n" -"open." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "OpenGL debug" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Optimize GUI for touchscreens" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Optional override for chat weblink color." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Other Effects" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Path of the fallback font. Must be a TrueType font.\n" -"This font will be used for certain languages or if the default font is " -"unavailable." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Path to save screenshots at. Can be an absolute or relative path.\n" -"The folder will be created if it doesn't already exist." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Path to shader directory. If no path is defined, default location will be " -"used." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Path to the default font. Must be a TrueType font.\n" -"The fallback font will be used if the font cannot be loaded." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Path to the monospace font. Must be a TrueType font.\n" -"This font is used for e.g. the console and profiler screen." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Pause on lost window focus" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Per-player limit of queued blocks load from disk" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Per-player limit of queued blocks to generate" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Physics" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Place repetition interval" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Player transfer distance" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Poisson filtering" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Post Processing" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Prevent digging and placing from repeating when holding the respective " -"buttons.\n" -"Enable this when you dig or place too often by accident.\n" -"On touchscreens, this only affects digging." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Prevent mods from doing insecure things like running shell commands." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Print the engine's profiling data in regular intervals (in seconds).\n" -"0 = disable. Useful for developers." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Privileges that players with basic_privs can grant" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Profiler" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Prometheus listener address" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Prometheus listener address.\n" -"If Luanti is compiled with ENABLE_PROMETHEUS option enabled,\n" -"enable metrics listener for Prometheus on that address.\n" -"Metrics can be fetched on http://127.0.0.1:30000/metrics" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Proportion of large caves that contain liquid." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Protocol version minimum" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Punch gesture" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Radius of cloud area stated in number of 64 node cloud squares.\n" -"Values larger than 26 will start to produce sharp cutoffs at cloud area " -"corners." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Radius to use when the block bounds HUD feature is set to near blocks." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Raises terrain to make valleys around the rivers." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Random input" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Random mod load order" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Recent Chat Messages" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Regular font path" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Remember screen size" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Remote media" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Remove color codes from incoming chat messages\n" -"Use this to stop players from being able to use color in their messages" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Replaces the default main menu with a custom one." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Report path" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Restricts the access of certain client-side functions on servers.\n" -"Combine the byteflags below to restrict client-side features, or set to 0\n" -"for no restrictions:\n" -"LOAD_CLIENT_MODS: 1 (disable loading client-provided mods)\n" -"CHAT_MESSAGES: 2 (disable send_chat_message call client-side)\n" -"READ_ITEMDEFS: 4 (disable get_item_def call client-side)\n" -"READ_NODEDEFS: 8 (disable get_node_def call client-side)\n" -"LOOKUP_NODES_LIMIT: 16 (limits get_node call client-side to\n" -"csm_restriction_noderange)\n" -"READ_PLAYERINFO: 32 (disable get_player_names call client-side)" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Ridge mountain spread noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Ridge noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Ridge underwater noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Ridged mountain size noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "River channel depth" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "River channel width" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "River depth" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "River noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "River size" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "River valley width" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Rollback recording" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Rolling hill size noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Rolling hills spread noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Safe digging and placing" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Sandy beaches occur when np_beach exceeds this value." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Save the map received by the client on disk." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Save window size automatically when modified.\n" -"If true, screen size is saved in screen_w and screen_h, and whether the " -"window\n" -"is maximized is stored in window_maximized.\n" -"(Autosaving window_maximized only works if compiled with SDL.)" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Saving map received from server" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Scale GUI by a user specified value.\n" -"Use a nearest-neighbor-anti-alias filter to scale the GUI.\n" -"This will smooth over some of the rough edges, and blend\n" -"pixels when scaling down, at the cost of blurring some\n" -"edge pixels when images are scaled by non-integer sizes." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Screen" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Screen height" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Screen width" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Screenshot folder" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Screenshot format" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Screenshot quality" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Screenshot quality. Only used for JPEG format.\n" -"1 means worst quality; 100 means best quality.\n" -"Use 0 for default quality." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Screenshots" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Seabed noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Second of 4 2D noises that together define hill/mountain range height." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Second of two 3D noises that together define tunnels." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "See https://www.sqlite.org/pragma.html#pragma_synchronous" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Select the antialiasing method to apply.\n" -"\n" -"* None - No antialiasing (default)\n" -"\n" -"* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" -"A.K.A multi-sample antialiasing (MSAA)\n" -"Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" -"\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" -"Applies a post-processing filter to detect and smoothen high-contrast " -"edges.\n" -"Provides balance between speed and image quality.\n" -"\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" -"Renders higher-resolution image of the scene, then scales down to reduce\n" -"the aliasing effects. This is the slowest and the most accurate method." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Selection box border color (R,G,B)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Selection box color" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Selection box width" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Selects one of 18 fractal types.\n" -"1 = 4D \"Roundy\" Mandelbrot set.\n" -"2 = 4D \"Roundy\" Julia set.\n" -"3 = 4D \"Squarry\" Mandelbrot set.\n" -"4 = 4D \"Squarry\" Julia set.\n" -"5 = 4D \"Mandy Cousin\" Mandelbrot set.\n" -"6 = 4D \"Mandy Cousin\" Julia set.\n" -"7 = 4D \"Variation\" Mandelbrot set.\n" -"8 = 4D \"Variation\" Julia set.\n" -"9 = 3D \"Mandelbrot/Mandelbar\" Mandelbrot set.\n" -"10 = 3D \"Mandelbrot/Mandelbar\" Julia set.\n" -"11 = 3D \"Christmas Tree\" Mandelbrot set.\n" -"12 = 3D \"Christmas Tree\" Julia set.\n" -"13 = 3D \"Mandelbulb\" Mandelbrot set.\n" -"14 = 3D \"Mandelbulb\" Julia set.\n" -"15 = 3D \"Cosine Mandelbulb\" Mandelbrot set.\n" -"16 = 3D \"Cosine Mandelbulb\" Julia set.\n" -"17 = 4D \"Mandelbulb\" Mandelbrot set.\n" -"18 = 4D \"Mandelbulb\" Julia set." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Send names of online players to the serverlist. If disabled only the player " -"count is revealed." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Send player names to the server list" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Server" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Server Gameplay" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Server Security" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Server URL" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Server address" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Server anticheat configuration.\n" -"Flags are positive. Uncheck the flag to disable corresponding anticheat " -"module." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Server description" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Server name" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Server port" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Server-side occlusion culling" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Server/Env Performance" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Serverlist URL" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Serverlist and MOTD" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Serverlist file" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Set the default tilt of Sun/Moon orbit in degrees.\n" -"Games may change orbit tilt via API.\n" -"Value of 0 means no tilt / vertical orbit." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Set the exposure compensation in EV units.\n" -"Value of 0.0 (default) means no exposure compensation.\n" -"Range: from -1 to 1.0" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Set the language. By default, the system language is used.\n" -"A restart is required after changing this." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Set the maximum length of a chat message (in characters) sent by clients." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Set the shadow strength gamma.\n" -"Adjusts the intensity of in-game dynamic shadows.\n" -"Lower value means lighter shadows, higher value means darker shadows." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Set the soft shadow radius size.\n" -"Lower values mean sharper shadows, bigger values mean softer shadows.\n" -"Minimum value: 1.0; maximum value: 15.0" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Set to true to enable Shadow Mapping." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Set to true to enable bloom effect.\n" -"Bright colors will bleed over the neighboring objects." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Set to true to enable volumetric lighting effect (a.k.a. \"Godrays\")." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Set to true to enable waving leaves." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Set to true to enable waving liquids (like water)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Set to true to enable waving plants." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Set to true to render debugging breakdown of the bloom effect.\n" -"In debug mode, the screen is split into 4 quadrants:\n" -"top-left - processed base image, top-right - final image\n" -"bottom-left - raw base image, bottom-right - bloom texture." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Sets shadow texture quality to 32 bits.\n" -"On false, 16 bits texture will be used.\n" -"This can cause much more artifacts in the shadow." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Shader path" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Shadow filter quality" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Shadow map max distance in nodes to render shadows" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Shadow map texture in 32 bits" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Shadow map texture size" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Shadow offset (in pixels) of the default font. If 0, then shadow will not be " -"drawn." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Shadow strength gamma" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Show debug info" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Show entity selection boxes" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Show entity selection boxes\n" -"A restart is required after changing this." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Show name tag backgrounds by default" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Shutdown message" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Side length of a cube of map blocks that the client will consider together\n" -"when generating meshes.\n" -"Larger values increase the utilization of the GPU by reducing the number of\n" -"draw calls, benefiting especially high-end GPUs.\n" -"Systems with a low-end GPU (or no GPU) would benefit from smaller values." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Simulate translucency when looking at foliage in the sunlight." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Size of mapchunks generated by mapgen, stated in mapblocks (16 nodes).\n" -"WARNING: There is no benefit, and there are several dangers, in\n" -"increasing this value above 5.\n" -"Reducing this value increases cave and dungeon density.\n" -"Altering this value is for special usage, leaving it unchanged is\n" -"recommended." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Sky Body Orbit Tilt" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Slice w" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Slope and fill work together to modify the heights." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Small cave maximum number" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Small cave minimum number" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Small-scale humidity variation for blending biomes on borders." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Small-scale temperature variation for blending biomes on borders." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Smooth lighting" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Smooth scrolling" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Smooths rotation of camera when in cinematic mode, 0 to disable. Enter " -"cinematic mode by using the key set in Controls." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Smooths rotation of camera, also called look or mouse smoothing. 0 to " -"disable." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Sneaking speed" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Sneaking speed, in nodes per second." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Soft clouds" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Soft shadow radius" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Sound" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Sound Extensions Blacklist" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Specifies URL from which client fetches media instead of using UDP.\n" -"$filename should be accessible from $remote_media$filename via cURL\n" -"(obviously, remote_media should end with a slash).\n" -"Files that are not present will be fetched the usual way." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Specifies the default stack size of nodes, items and tools.\n" -"Note that mods or games may explicitly set a stack for certain (or all) " -"items." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Spread a complete update of shadow map over given number of frames.\n" -"Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Spread of light curve boost range.\n" -"Controls the width of the range to be boosted.\n" -"Standard deviation of the light curve boost Gaussian." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Static spawn point" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Steepness noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Step mountain size noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Step mountain spread noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Strength of 3D mode parallax." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Strength of light curve boost.\n" -"The 3 'boost' parameters define a range of the light\n" -"curve that is boosted in brightness." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Strict protocol checking" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Strip color codes" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Surface level of optional water placed on a solid floatland layer.\n" -"Water is disabled by default and will only be placed if this value is set\n" -"to above 'mgv7_floatland_ymax' - 'mgv7_floatland_taper' (the start of the\n" -"upper tapering).\n" -"***WARNING, POTENTIAL DANGER TO WORLDS AND SERVER PERFORMANCE***:\n" -"When enabling water placement, floatlands must be configured and tested\n" -"to be a solid layer by setting 'mgv7_floatland_density' to 2.0 (or other\n" -"required value depending on 'mgv7_np_floatland'), to avoid\n" -"server-intensive extreme water flow and to avoid vast flooding of the\n" -"world surface below." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Synchronous SQLite" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Temperature variation for biomes." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Terrain alternative noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Terrain base noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Terrain height" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Terrain higher noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Terrain noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Terrain noise threshold for hills.\n" -"Controls proportion of world area covered by hills.\n" -"Adjust towards 0.0 for a larger proportion." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Terrain noise threshold for lakes.\n" -"Controls proportion of world area covered by lakes.\n" -"Adjust towards 0.0 for a larger proportion." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Terrain persistence noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Texture size to render the shadow map on.\n" -"This must be a power of two.\n" -"Bigger numbers create better shadows but it is also more expensive." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Textures on a node may be aligned either to the node or to the world.\n" -"The former mode suits better things like machines, furniture, etc., while\n" -"the latter makes stairs and microblocks fit surroundings better.\n" -"However, as this possibility is new, thus may not be used by older servers,\n" -"this option allows enforcing it for certain node types. Note though that\n" -"that is considered EXPERIMENTAL and may not work properly." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "The URL for the content repository" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "The dead zone of the joystick" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"The default format in which profiles are being saved,\n" -"when calling `/profiler save [format]` without format." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"The delay in milliseconds after which a touch interaction is considered a " -"long tap." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"The file path relative to your world path in which profiles will be saved to." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"The gesture for punching players/entities.\n" -"This can be overridden by games and mods.\n" -"\n" -"* short_tap\n" -"Easy to use and well-known from other games that shall not be named.\n" -"\n" -"* long_tap\n" -"Known from the classic Luanti mobile controls.\n" -"Combat is more or less impossible." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "The identifier of the joystick to use" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"The length in pixels after which a touch interaction is considered movement." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"The maximum height of the surface of waving liquids.\n" -"4.0 = Wave height is two nodes.\n" -"0.0 = Wave doesn't move at all.\n" -"Default is 1.0 (1/2 node)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"The minimum time in seconds it takes between digging nodes when holding\n" -"the dig button." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "The network interface that the server listens on." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"The privileges that new users automatically get.\n" -"See /privs in game for a full list on your server and mod configuration." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"The radius of the volume of blocks around every player that is subject to " -"the\n" -"active block stuff, stated in mapblocks (16 nodes).\n" -"In active blocks objects are loaded and ABMs run.\n" -"This is also the minimum range in which active objects (mobs) are " -"maintained.\n" -"This should be configured together with active_object_send_range_blocks." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"The rendering back-end.\n" -"Note: A restart is required after changing this!\n" -"OpenGL is the default for desktop, and OGLES2 for Android." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"The sensitivity of the joystick axes for moving the\n" -"in-game view frustum around." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"The strength (darkness) of node ambient-occlusion shading.\n" -"Lower is darker, Higher is lighter. The valid range of values for this\n" -"setting is 0.25 to 4.0 inclusive. If the value is out of range it will be\n" -"set to the nearest valid value." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"The time (in seconds) that the liquids queue may grow beyond processing\n" -"capacity until an attempt is made to decrease its size by dumping old queue\n" -"items. A value of 0 disables the functionality." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"The time budget allowed for ABMs to execute on each step\n" -"(as a fraction of the ABM Interval)" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"The time in seconds it takes between repeated events\n" -"when holding down a joystick button combination." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"The time in seconds it takes between repeated node placements when holding\n" -"the place button." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "The type of joystick" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"The vertical distance over which heat drops by 20 if 'altitude_chill' is\n" -"enabled. Also, the vertical distance over which humidity drops by 10 if\n" -"'altitude_dry' is enabled." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Third of 4 2D noises that together define hill/mountain range height." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Threshold for long taps" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Time in seconds for item entity (dropped items) to live.\n" -"Setting it to -1 disables the feature." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Time of day when a new world is started, in millihours (0-23999)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Time speed" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Timeout for client to remove unused map data from memory, in seconds." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"To reduce lag, block transfers are slowed down when a player is building " -"something.\n" -"This determines how long they are slowed down after placing or removing a " -"node." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Tolerance of movement cheat detector.\n" -"Increase the value if players experience stuttery movement." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Tooltip delay" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Touchscreen" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Touchscreen controls" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Touchscreen sensitivity" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Touchscreen sensitivity multiplier." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Tradeoffs for performance" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Translucent foliage" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Translucent liquids" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Transparency Sorting Distance" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Trees noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Trilinear filtering" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"True = 256\n" -"False = 128\n" -"Usable to make minimap smoother on slower machines." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Trusted mods" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Type of occlusion_culler\n" -"\n" -"\"loops\" is the legacy algorithm with nested loops and O(n³) complexity\n" -"\"bfs\" is the new algorithm based on breadth-first-search and side culling\n" -"\n" -"This setting should only be changed if you have performance problems." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"URL to JSON file which provides information about the newest Luanti " -"release.\n" -"If this is empty the engine will never check for updates." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "URL to the server list displayed in the Multiplayer Tab." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Undersampling" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Undersampling is similar to using a lower screen resolution, but it applies\n" -"to the game world only, keeping the GUI intact.\n" -"It should give a significant performance boost at the cost of less detailed " -"image.\n" -"Higher values result in a less detailed image." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Unlimited player transfer distance" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Unload unused server data" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Update information URL" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Upper Y limit of dungeons." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Upper Y limit of floatlands." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Use a cloud animation for the main menu background." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Use bilinear filtering when scaling textures." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Use crosshair for touch screen" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Use crosshair to select object instead of whole screen.\n" -"If enabled, a crosshair will be shown and will be used for selecting object." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Use mipmaps when scaling textures. May slightly increase performance,\n" -"especially when using a high-resolution texture pack.\n" -"Gamma-correct downscaling is not supported." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Use raytraced occlusion culling in the new culler.\n" -"This flag enables use of raytraced occlusion culling test for\n" -"client mesh sizes smaller than 4x4x4 map blocks." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Use smooth cloud shading." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Use trilinear filtering when scaling textures.\n" -"If both bilinear and trilinear filtering are enabled, trilinear filtering\n" -"is applied." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Use virtual joystick to trigger \"Aux1\" button.\n" -"If enabled, virtual joystick will also tap \"Aux1\" button when out of main " -"circle." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "User Interfaces" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "VSync" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Valley depth" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Valley fill" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Valley profile" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Valley slope" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Variation of biome filler depth." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Variation of maximum mountain height (in nodes)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Variation of number of caves." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Variation of terrain vertical scale.\n" -"When noise is < -0.55 terrain is near-flat." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Varies depth of biome surface nodes." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Varies roughness of terrain.\n" -"Defines the 'persistence' value for terrain_base and terrain_alt noises." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Varies steepness of cliffs." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Vertical climbing speed, in nodes per second." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Vertical screen synchronization. Your system may still force VSync on even " -"if this is disabled." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Video driver" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "View bobbing factor" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "View distance in nodes." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Viewing range" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Virtual joystick triggers Aux1 button" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Volume" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Volume multiplier when the window is unfocused." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Volume of all sounds.\n" -"Requires the sound system to be enabled." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Volume when unfocused" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Volumetric lighting" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"W coordinate of the generated 3D slice of a 4D fractal.\n" -"Determines which 3D slice of the 4D shape is generated.\n" -"Alters the shape of the fractal.\n" -"Has no effect on 3D fractals.\n" -"Range roughly -2 to 2." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Walking and flying speed, in nodes per second." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Walking speed" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Walking, flying and climbing speed in fast mode, in nodes per second." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Water level" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Water surface level of the world." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Waving Nodes" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Waving leaves" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Waving liquids" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Waving liquids wave height" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Waving liquids wave speed" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Waving liquids wavelength" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Waving plants" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Weblink color" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "When enabled, liquid reflections are simulated." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When enabled, the GUI is optimized to be more usable on touchscreens.\n" -"Whether this is enabled by default depends on your hardware form-factor." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When gui_scaling_filter is true, all GUI images need to be\n" -"filtered in software, but some images are generated directly\n" -"to hardware (e.g. render-to-texture for nodes in inventory)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" -"This is also used as the base node texture size for world-aligned\n" -"texture autoscaling." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Whether name tag backgrounds should be shown by default.\n" -"Mods may still set a background." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Whether players are shown to clients without any range limit.\n" -"Deprecated, use the setting player_transfer_distance instead." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Whether the window is maximized." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Whether to ask clients to reconnect after a (Lua) crash.\n" -"Set this to true if your server is set up to restart automatically." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Whether to fog out the end of the visible area." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" -"In-game, you can toggle the mute state with the mute key or by using the\n" -"pause menu." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Whether to show the client debug info (has the same effect as hitting F5)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Width component of the initial window size." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Width of the selection box lines around nodes." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Window maximized" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Windows systems only: Start Luanti with the command line window in the " -"background.\n" -"Contains the same information as the file debug.txt (default name)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"World directory (everything in the world is stored here).\n" -"Not needed if starting from the main menu." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "World start time" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"World-aligned textures may be scaled to span several nodes. However,\n" -"the server may not send the scale you want, especially if you use\n" -"a specially-designed texture pack; with this option, the client tries\n" -"to determine the scale automatically basing on the texture size.\n" -"See also texture_min_size.\n" -"Warning: This option is EXPERIMENTAL!" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "World-aligned textures mode" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Y of flat ground." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Y of mountain density gradient zero level. Used to shift mountains " -"vertically." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Y of upper limit of large caves." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Y-distance over which caverns expand to full size." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Y-distance over which floatlands taper from full density to nothing.\n" -"Tapering starts at this distance from the Y limit.\n" -"For a solid floatland layer, this controls the height of hills/mountains.\n" -"Must be less than or equal to half the distance between the Y limits." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Y-level of average terrain surface." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Y-level of cavern upper limit." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Y-level of higher terrain that creates cliffs." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Y-level of lower terrain and seabed." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Y-level of seabed." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "cURL" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "cURL file download timeout" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "cURL interactive timeout" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "cURL parallel limit" -msgstr "" diff --git a/po/id/luanti.po b/po/id/luanti.po index fa6738bb0..67d9ca13d 100644 --- a/po/id/luanti.po +++ b/po/id/luanti.po @@ -2,10 +2,9 @@ msgid "" msgstr "" "Project-Id-Version: Indonesian (Minetest)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" -"PO-Revision-Date: 2024-10-06 05:16+0000\n" -"Last-Translator: Muhammad Rifqi Priyo Susanto " -"\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" +"PO-Revision-Date: 2025-02-11 02:02+0000\n" +"Last-Translator: Linerly \n" "Language-Team: Indonesian \n" "Language: id\n" @@ -13,7 +12,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 5.8-dev\n" +"X-Generator: Weblate 5.10-dev\n" #: builtin/client/chatcommands.lua msgid "Clear the out chat queue" @@ -78,6 +77,244 @@ msgstr "" msgid "[all | ] [-t]" msgstr "[semua | ] [-t]" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "Jelajahi" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "Sunting" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "Pilih direktori" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "Pilih berkas" + +#: builtin/common/settings/components.lua +msgid "Set" +msgstr "Atur" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(Tiada keterangan pengaturan yang diberikan)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "Noise 2D" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "Batal" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "Lakuna (celah)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "Oktaf" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "Pergeseran" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "Kegigihan" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "Simpan" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "Skala" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "Seed" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "Persebaran X" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "Persebaran Y" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "Persebaran Z" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "nilai mutlak" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "bawaan" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "kehalusan (eased)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "(Permainan perlu menyalakan eksposur otomatis juga)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "(Permainan perlu menyalakan bloom juga)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "(Permainan perlu menyalakan pencahayaan volumetris juga)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "(Gunakan bahasa sistem)" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "Aksesibilitas" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "Otomatis" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "Obrolan" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "Bersihkan/Jernih" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "Kontrol" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "Dimatikan" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "Dinyalakan" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "Umum" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "Pergerakan" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "Tidak ada hasil" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default" +msgstr "Atur ke bawaan" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "Atur ke bawaan ($1)" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "Cari" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "Tampilkan pengaturan lanjutan" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "Tampilkan nama teknis" + +#: builtin/common/settings/dlg_settings.lua +msgid "Touchscreen layout" +msgstr "Tata letak layar sentuh" + +#: builtin/common/settings/dlg_settings.lua +msgid "pause_menu" +msgstr "pause_menu" + +#: builtin/common/settings/settingtypes.lua +msgid "Client Mods" +msgstr "Mod Klien" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "Konten: Permainan" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "Konten: Mod" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "(Permainan perlu menyalakan bayangan juga)" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "Ubah suai" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "Bayangan dinamis" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "Tinggi" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "Rendah" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "Menengah" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "Sangat Tinggi" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "Sangat Rendah" + #: builtin/fstk/ui.lua msgid "" msgstr "" @@ -139,12 +376,12 @@ msgid "Failed to download $1" msgstr "Gagal mengunduh $1" #: builtin/mainmenu/content/contentdb.lua -#, fuzzy msgid "" "Failed to extract \"$1\" (insufficient disk space, unsupported file type or " "broken archive)" msgstr "" -"Gagak mengekstrak \"$1\" (jenis berkas tidak didukung atau arsip rusak)" +"Gagak mengekstrak \"$1\" (ruang penyimpanan tidak cukup, jenis berkas tidak " +"didukung atau arsip rusak)" #: builtin/mainmenu/content/dlg_contentdb.lua msgid "" @@ -160,18 +397,16 @@ msgstr "$1 Diunduh..." #: builtin/mainmenu/content/dlg_contentdb.lua msgid "All" -msgstr "" +msgstr "Semua" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "Kembali" #: builtin/mainmenu/content/dlg_contentdb.lua -#, fuzzy msgid "ContentDB is not available when Luanti was compiled without cURL" -msgstr "ContentDB tidak tersedia saat Minetest dikompilasi tanpa cURL" +msgstr "ContentDB tidak tersedia saat Luanti dikompilasi tanpa cURL" #: builtin/mainmenu/content/dlg_contentdb.lua msgid "Downloading..." @@ -179,7 +414,7 @@ msgstr "Mengunduh..." #: builtin/mainmenu/content/dlg_contentdb.lua msgid "Featured" -msgstr "" +msgstr "Unggulan" #: builtin/mainmenu/content/dlg_contentdb.lua msgid "Games" @@ -201,11 +436,6 @@ msgstr "Mod" msgid "No packages could be retrieved" msgstr "Tiada paket yang dapat diambil" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "Tidak ada hasil" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "Tiada pembaruan" @@ -215,9 +445,8 @@ msgid "Queued" msgstr "Diantrekan" #: builtin/mainmenu/content/dlg_contentdb.lua -#, fuzzy msgid "Texture Packs" -msgstr "Paket tekstur" +msgstr "Paket Tekstur" #: builtin/mainmenu/content/dlg_contentdb.lua msgid "The package $1 was not found." @@ -251,27 +480,14 @@ msgstr "Telah terpasang" msgid "Base Game:" msgstr "Permainan Dasar:" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "Batal" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" msgstr "Dependensi:" #: builtin/mainmenu/content/dlg_install.lua -#, fuzzy msgid "Error getting dependencies for package $1" -msgstr "Bermasalah dalam mengambil dependensi paket" +msgstr "Kesalahan mengambil dependensi paket $1" #: builtin/mainmenu/content/dlg_install.lua msgid "Install" @@ -306,44 +522,40 @@ msgid "Overwrite" msgstr "Timpa" #: builtin/mainmenu/content/dlg_package.lua -#, fuzzy msgid "ContentDB page" -msgstr "URL ContentDB" +msgstr "Laman ContentDB" #: builtin/mainmenu/content/dlg_package.lua -#, fuzzy msgid "Description" -msgstr "Keterangan Server" +msgstr "Keterangan" #: builtin/mainmenu/content/dlg_package.lua msgid "Donate" -msgstr "" +msgstr "Berdonasi" #: builtin/mainmenu/content/dlg_package.lua msgid "Forum Topic" -msgstr "" +msgstr "Topik Forum" #: builtin/mainmenu/content/dlg_package.lua -#, fuzzy msgid "Information" -msgstr "Informasi:" +msgstr "Informasi" #: builtin/mainmenu/content/dlg_package.lua -#, fuzzy msgid "Install [$1]" -msgstr "Pasang $1" +msgstr "Pasang [$1]" #: builtin/mainmenu/content/dlg_package.lua msgid "Issue Tracker" -msgstr "" +msgstr "Pelacak Isu" #: builtin/mainmenu/content/dlg_package.lua msgid "Source" -msgstr "" +msgstr "Sumber" #: builtin/mainmenu/content/dlg_package.lua msgid "Translate" -msgstr "" +msgstr "Terjemahkan" #: builtin/mainmenu/content/dlg_package.lua builtin/mainmenu/tab_content.lua msgid "Uninstall" @@ -354,13 +566,12 @@ msgid "Update" msgstr "Perbarui" #: builtin/mainmenu/content/dlg_package.lua -#, fuzzy msgid "Website" -msgstr "Kunjungi situs web" +msgstr "Situs Web" #: builtin/mainmenu/content/dlg_package.lua msgid "by $1 — $2 downloads — +$3 / $4 / -$5" -msgstr "" +msgstr "oleh $1 — $2 unduhan — +$3 / $4 / -$5" #: builtin/mainmenu/content/pkgmgr.lua msgid "$1 (Enabled)" @@ -390,6 +601,14 @@ msgstr "Gagal memasang $1 sebagai $2" msgid "Unable to install a $1 as a texture pack" msgstr "Gagal memasang $1 sebagai paket tekstur" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" +"Ini daftar klien yang terhubung ke\n" +"$1" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "(Dinyalakan, bermasalah)" @@ -454,12 +673,6 @@ msgstr "Tiada dependensi opsional" msgid "Optional dependencies:" msgstr "Dependensi opsional:" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "Simpan" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "Dunia:" @@ -610,11 +823,6 @@ msgstr "Sungai" msgid "Sea level rivers" msgstr "Sungai setinggi permukaan laut" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "Seed" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "Pergantian halus antarbioma" @@ -719,14 +927,12 @@ msgid "Dismiss" msgstr "Abaikan" #: builtin/mainmenu/dlg_reinstall_mtg.lua -#, fuzzy msgid "" "For a long time, Luanti shipped with a default game called \"Minetest " "Game\". Since version 5.8.0, Luanti ships without a default game." msgstr "" -"Sudah sejak lama mesin Minetest dirilis beserta permainan bawaan yang " -"disebut \"Minetest Game\". Sejak Minetest 5.8.0, Minetest dirilis tanpa " -"permainan bawaan." +"Sudah sejak lama Luanti dirilis beserta permainan bawaan yang disebut " +"\"Minetest Game\". Sejak versi 5.8.0, Luanti dirilis tanpa permainan bawaan." #: builtin/mainmenu/dlg_reinstall_mtg.lua msgid "" @@ -760,6 +966,22 @@ msgstr "" "Paket mod ini memiliki nama tersurat yang diberikan dalam modpack.conf yang " "akan menimpa penggantian nama yang ada." +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Expand all" +msgstr "Buka semua" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "Kelompokkan berdasarkan awalan" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "Server $1 menggunakan permainan bernama $2 dan mod berikut:" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "Server $1 menggunakan mod berikut:" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "Versi baru $1 tersedia" @@ -788,7 +1010,7 @@ msgstr "Tidak Pernah" msgid "Visit website" msgstr "Kunjungi situs web" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "Pengaturan" @@ -801,228 +1023,6 @@ msgid "Try reenabling public serverlist and check your internet connection." msgstr "" "Coba nyalakan ulang daftar server publik dan periksa sambungan internet Anda." -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "Jelajahi" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "Sunting" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "Pilih direktori" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "Pilih berkas" - -#: builtin/mainmenu/settings/components.lua -msgid "Set" -msgstr "Atur" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(Tiada keterangan pengaturan yang diberikan)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "Noise 2D" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "Lakuna (celah)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "Oktaf" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "Pergeseran" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "Kegigihan" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "Skala" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "Persebaran X" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "Persebaran Y" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "Persebaran Z" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "nilai mutlak" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "bawaan" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "kehalusan (eased)" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable automatic exposure as well)" -msgstr "(Permainan perlu menyalakan bayangan juga)" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable bloom as well)" -msgstr "(Permainan perlu menyalakan bayangan juga)" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "(Permainan perlu menyalakan bayangan juga)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "(Gunakan bahasa sistem)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "Aksesibilitas" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "Obrolan" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "Bersihkan/Jernih" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "Kontrol" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "Dimatikan" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "Dinyalakan" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "Umum" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "Pergerakan" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default" -msgstr "Atur ke bawaan" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "Atur ke bawaan ($1)" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "Cari" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "Tampilkan pengaturan lanjutan" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "Tampilkan nama teknis" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "Mod Klien" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "Konten: Permainan" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "Konten: Mod" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "Dinyalakan" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Shaders are disabled." -msgstr "Pembaruan kamera dimatikan" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "(Permainan perlu menyalakan bayangan juga)" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "Ubah suai" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "Bayangan dinamis" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "Tinggi" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "Rendah" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "Menengah" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "Sangat Tinggi" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "Sangat Rendah" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "Tentang" @@ -1043,10 +1043,6 @@ msgstr "Pengembang Inti" msgid "Core Team" msgstr "Tim Inti" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "Perangkat Irrlicht:" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "Buka Direktori Data Pengguna" @@ -1148,17 +1144,15 @@ msgid "Install games from ContentDB" msgstr "Pasang permainan dari ContentDB" #: builtin/mainmenu/tab_local.lua -#, fuzzy msgid "Luanti doesn't come with a game by default." -msgstr "Minetest tidak berisi permainan secara bawaan." +msgstr "Luanti tidak berisi permainan secara bawaan." #: builtin/mainmenu/tab_local.lua -#, fuzzy msgid "" "Luanti is a game-creation platform that allows you to play many different " "games." msgstr "" -"Minetest adalah platform pembuatan permainan yang membuat Anda bisa bermain " +"Luanti adalah platform pembuatan permainan yang membuat Anda bisa bermain " "banyak permainan berbeda." #: builtin/mainmenu/tab_local.lua @@ -1197,10 +1191,22 @@ msgstr "Mulai Permainan" msgid "You need to install a game before you can create a world." msgstr "Anda perlu pasang sebuah permainan sebelum bisa membuat dunia." +#: builtin/mainmenu/tab_online.lua +msgid "Add favorite" +msgstr "Tambahkan favorit" + #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "Alamat" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Clients:\n" +"$1" +msgstr "" +"Klien:\n" +"$1" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "Mode kreatif" @@ -1214,6 +1220,10 @@ msgstr "Kerusakan/PvP" msgid "Favorites" msgstr "Favorit" +#: builtin/mainmenu/tab_online.lua +msgid "Game: $1" +msgstr "Permainan: $1" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "Server Tidak Kompatibel" @@ -1226,10 +1236,30 @@ msgstr "Gabung Permainan" msgid "Login" msgstr "Masuk" +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "Jumlah mod: $1" + +#: builtin/mainmenu/tab_online.lua +msgid "Open server website" +msgstr "Buka situs web server" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "Ping" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" +"Filter yang memungkinkan\n" +"game:\n" +"mod:\n" +"player:" + #: builtin/mainmenu/tab_online.lua msgid "Public Servers" msgstr "Server Publik" @@ -1314,23 +1344,6 @@ msgstr "" "\n" "Periksa debug.txt untuk detail." -#: src/client/game.cpp -msgid "- Mode: " -msgstr "- Mode: " - -#: src/client/game.cpp -msgid "- Public: " -msgstr "- Publik: " - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "- PvP: " - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "- Nama Server: " - #: src/client/game.cpp msgid "A serialization error occurred:" msgstr "Sebuah masalah pada serialisasi terjadi:" @@ -1340,6 +1353,10 @@ msgstr "Sebuah masalah pada serialisasi terjadi:" msgid "Access denied. Reason: %s" msgstr "Akses ditolak. Alasan: %s" +#: src/client/game.cpp +msgid "All debug info hidden" +msgstr "Semua info awakutu disembunyikan" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "Maju otomatis dimatikan" @@ -1360,6 +1377,10 @@ msgstr "Batasan blok ditampilkan untuk blok saat ini" msgid "Block bounds shown for nearby blocks" msgstr "Batasan blok ditampilkan untuk blok sekitar" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "Kotak ikatan ditampilkan" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "Pembaruan kamera dimatikan" @@ -1372,10 +1393,6 @@ msgstr "Pembaruan kamera dinyalakan" msgid "Can't show block bounds (disabled by game or mod)" msgstr "Tidak bisa menampilkan batas blok (dilarang oleh permainan atau mod)" -#: src/client/game.cpp -msgid "Change Password" -msgstr "Ganti Kata Sandi" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "Mode sinema dimatikan" @@ -1404,39 +1421,6 @@ msgstr "Sambungan bermasalah (terlalu lama?)" msgid "Connection failed for unknown reason" msgstr "Sambungan gagal karena sebab yang tidak diketahui" -#: src/client/game.cpp -msgid "Continue" -msgstr "Lanjutkan" - -#: src/client/game.cpp -#, fuzzy -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" -"Kontrol:\n" -"Tanpa menu yang terbuka:\n" -"- geser jari: lihat sekeliling\n" -"- ketuk: taruh/gunakan\n" -"- ketuk ganda: gali/pukul/gunakan\n" -"Menu/inventaris terbuka:\n" -"- ketuk ganda (di luar):\n" -" --> tutup\n" -"- sentuh tumpukan, sentuh wadah:\n" -" --> pindah tumpukan\n" -"- sentuh & geser, ketuk jari kedua\n" -" --> taruh barang tunggal ke wadah\n" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1450,31 +1434,15 @@ msgstr "Membuat klien..." msgid "Creating server..." msgstr "Membuat server..." -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "Info awakutu dan grafik pemrofil disembunyikan" - #: src/client/game.cpp msgid "Debug info shown" msgstr "Info awakutu ditampilkan" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "Info awakutu, grafik pemrofil, dan rangka kawat disembunyikan" - #: src/client/game.cpp #, c-format msgid "Error creating client: %s" msgstr "Masalah saat membuat klien: %s" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "Menu Utama" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "Tutup Aplikasi" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "Mode cepat dimatikan" @@ -1511,18 +1479,6 @@ msgstr "Kabut dinyalakan" msgid "Fog enabled by game or mod" msgstr "Kabut dinyalakan oleh permainan atau mod" -#: src/client/game.cpp -msgid "Game info:" -msgstr "Informasi permainan:" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "Permainan dijeda" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "Membuat server" - #: src/client/game.cpp msgid "Item definitions..." msgstr "Definisi barang..." @@ -1559,14 +1515,6 @@ msgstr "Mode tembus blok dinyalakan (catatan: tanpa hak \"noclip\")" msgid "Node definitions..." msgstr "Definisi nodus..." -#: src/client/game.cpp -msgid "Off" -msgstr "Mati" - -#: src/client/game.cpp -msgid "On" -msgstr "Nyala" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "Mode gerak sesuai pandang dimatikan" @@ -1579,38 +1527,22 @@ msgstr "Mode gerak sesuai pandang dinyalakan" msgid "Profiler graph shown" msgstr "Grafik pemrofil ditampilkan" -#: src/client/game.cpp -msgid "Remote server" -msgstr "Server jarak jauh" - #: src/client/game.cpp msgid "Resolving address..." msgstr "Mencari alamat..." -#: src/client/game.cpp -msgid "Respawn" -msgstr "Bangkit kembali" - #: src/client/game.cpp msgid "Shutting down..." msgstr "Mematikan..." -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "Pemain tunggal" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "Volume Suara" - #: src/client/game.cpp msgid "Sound muted" msgstr "Suara dimatikan" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "Sistem suara dimatikan" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "Sistem suara tidak didukung dalam buatan ini" @@ -1689,18 +1621,115 @@ msgstr "" msgid "Volume changed to %d%%" msgstr "Volume diubah ke %d%%" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "Kerangka tidak didukung oleh pengandar video" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "Rangka kawat ditampilkan" -#: src/client/game.cpp -msgid "You died" -msgstr "Anda mati" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "Zum sedang dilarang oleh permainan atau mod" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "- Mode: " + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "- Publik: " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "- PvP: " + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "- Nama Server: " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "Ganti Kata Sandi" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "Lanjutkan" + +#: src/client/game_formspec.cpp +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" +"Kontrol:\n" +"Tanpa menu terbuka:\n" +"- geser jari: lihat sekeliling\n" +"- ketuk: tempatkan/pukul/gunakan (bawaan)\n" +"- ketuk lama: gali/gunakan (bawaan)\n" +"Menu/inventaris terbuka:\n" +"- ketuk dua kali (luar):\n" +" --> tutup\n" +"- sentuh tumpukan, sentuh slot:\n" +" --> pindahkan tumpukan\n" +"- sentuh & seret, ketuk jari ke-2\n" +" --> tempatkan satu item ke slot\n" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "Menu Utama" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "Tutup Aplikasi" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "Informasi permainan:" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "Permainan dijeda" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "Membuat server" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "Mati" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "Nyala" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "Server jarak jauh" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "Bangkit kembali" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "Volume Suara" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "Anda mati" + #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" msgstr "Obrolan sedang dilarang oleh permainan atau mod" @@ -2027,8 +2056,8 @@ msgid "Failed to compile the \"%s\" shader." msgstr "Gagal mengompilasi shader \"%s\"." #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." -msgstr "Shader dinyalakan, tetapi GLSL tidak didukung oleh pengandar." +msgid "GLSL is not supported by the driver" +msgstr "GLSL tidak didukung oleh pengandar" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" #: src/content/mod_configuration.cpp @@ -2079,7 +2108,7 @@ msgstr "Maju otomatis" msgid "Automatic jumping" msgstr "Lompat otomatis" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "Aux1" @@ -2091,7 +2120,7 @@ msgstr "Mundur" msgid "Block bounds" msgstr "Batasan blok" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "Ubah kamera" @@ -2115,7 +2144,7 @@ msgstr "Turunkan volume" msgid "Double tap \"jump\" to toggle fly" msgstr "Tekan ganda \"lompat\" untuk terbang" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "Jatuhkan" @@ -2131,11 +2160,11 @@ msgstr "Naikkan jangkauan" msgid "Inc. volume" msgstr "Naikkan volume" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "Inventaris" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "Lompat" @@ -2167,7 +2196,7 @@ msgstr "Barang selanjutnya" msgid "Prev. item" msgstr "Barang sebelumnya" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "Jarak pandang" @@ -2179,7 +2208,7 @@ msgstr "Kanan" msgid "Screenshot" msgstr "Tangkapan layar" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "Menyelinap" @@ -2187,15 +2216,15 @@ msgstr "Menyelinap" msgid "Toggle HUD" msgstr "Alih HUD" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "Alih log obrolan" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "Gerak cepat" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "Alih terbang" @@ -2203,11 +2232,11 @@ msgstr "Alih terbang" msgid "Toggle fog" msgstr "Alih kabut" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "Alih peta mini" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "Tembus nodus" @@ -2215,7 +2244,7 @@ msgstr "Tembus nodus" msgid "Toggle pitchmove" msgstr "Gerak sesuai pandang" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "Zum" @@ -2251,7 +2280,7 @@ msgstr "Kata Sandi Lama" msgid "Passwords do not match!" msgstr "Kata sandi tidak cocok!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "Keluar" @@ -2264,38 +2293,67 @@ msgstr "Dibisukan" msgid "Sound Volume: %d%%" msgstr "Volume Suara: %d%%" -#: src/gui/touchcontrols.cpp -#, fuzzy -msgid "Joystick" -msgstr "ID Joystick" +#: src/gui/touchscreeneditor.cpp +msgid "Add button" +msgstr "Tambahkan tombol" -#: src/gui/touchcontrols.cpp -msgid "Overflow menu" +#: src/gui/touchscreeneditor.cpp +msgid "Done" +msgstr "Selesai" + +#: src/gui/touchscreeneditor.cpp +msgid "Remove" +msgstr "Hapus" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "Atur ulang" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." msgstr "" +"Mulai menarik tombol untuk menambahkan. Ketuk di luar untuk membatalkan." -#: src/gui/touchcontrols.cpp -#, fuzzy +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "Ketuk tombol untuk memilih. Tarik tombol untuk memindahkan." + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "Ketuk di luar untuk membatalkan pilihan." + +#: src/gui/touchscreenlayout.cpp +msgid "Joystick" +msgstr "Joystick" + +#: src/gui/touchscreenlayout.cpp +msgid "Overflow menu" +msgstr "Menu luap" + +#: src/gui/touchscreenlayout.cpp msgid "Toggle debug" -msgstr "Alih kabut" +msgstr "Alih pengawakutuan" #: src/network/clientpackethandler.cpp msgid "" "Another client is connected with this name. If your client closed " "unexpectedly, try again in a minute." msgstr "" +"Klien yang lain sedang terhubung dengan nama ini. Jika klien Anda tutup " +"secara tidak terduga, coba lagi dalam beberapa menit." #: src/network/clientpackethandler.cpp msgid "Empty passwords are disallowed. Set a password and try again." msgstr "" +"Kata sandi kosong tidak diperbolehkan. Tetapkan kata sandi dan coba lagi." #: src/network/clientpackethandler.cpp msgid "Internal server error" -msgstr "" +msgstr "Kesalahan server internal" #: src/network/clientpackethandler.cpp -#, fuzzy msgid "Invalid password" -msgstr "Kata Sandi Lama" +msgstr "Kata sandi tidak valid" #. ~ DO NOT TRANSLATE THIS LITERALLY! #. This is a special string which needs to contain the translation's @@ -2317,46 +2375,49 @@ msgstr "Nama sudah digunakan. Harap pilih nama lain" #: src/network/clientpackethandler.cpp msgid "Player name contains disallowed characters" -msgstr "" +msgstr "Nama pemain berisi karakter yang tidak diperbolehkan" #: src/network/clientpackethandler.cpp -#, fuzzy msgid "Player name not allowed" -msgstr "Nama pemain terlalu panjang." +msgstr "Nama pemain tidak diperbolehkan" #: src/network/clientpackethandler.cpp -#, fuzzy msgid "Server shutting down" -msgstr "Mematikan..." +msgstr "Server dimatikan" #: src/network/clientpackethandler.cpp msgid "" "The server has experienced an internal error. You will now be disconnected." -msgstr "" +msgstr "Server mengalami kesalahan internal. Anda sekarang akan diputuskan." #: src/network/clientpackethandler.cpp msgid "The server is running in singleplayer mode. You cannot connect." msgstr "" +"Server berjalan dalam mode pemain tunggal. Anda tidak dapat bergabung." #: src/network/clientpackethandler.cpp msgid "Too many users" -msgstr "" +msgstr "Terlalu banyak pengguna" #: src/network/clientpackethandler.cpp msgid "Unknown disconnect reason." -msgstr "" +msgstr "Alasan pemutusan tidak diketahui." #: src/network/clientpackethandler.cpp msgid "" "Your client sent something the server didn't expect. Try reconnecting or " "updating your client." msgstr "" +"Klien Anda mengirim sesuatu yang tidak diduga ke server. Coba menghubungkan " +"ulang atau memperbarui klien Anda." #: src/network/clientpackethandler.cpp msgid "" "Your client's version is not supported.\n" "Please contact the server administrator." msgstr "" +"Versi klien Anda tidak didukung.\n" +"Silakan hubungi administrator server." #: src/server.cpp #, c-format @@ -2495,8 +2556,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" "Dukungan 3D.\n" "Yang didukung saat ini:\n" @@ -2505,8 +2565,7 @@ msgstr "" "- interlaced: garis ganjil/genap berdasarkan polarisasi layar.\n" "- topbottom: pisahkan layar atas/bawah.\n" "- sidebyside: pisahkan layar kiri/kanan.\n" -"- crossview: 3d dengan pandang silang\n" -"Catat bahwa mode interlaced memerlukan penggunaan shader." +"- crossview: 3d dengan pandang silang" #: src/settings_translation_file.cpp msgid "" @@ -2561,10 +2620,6 @@ msgstr "Jangkauan blok aktif" msgid "Active object send range" msgstr "Batas pengiriman objek aktif" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "Tambahkan partikel saat menggali nodus." - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2594,6 +2649,18 @@ msgstr "Nama pengurus" msgid "Advanced" msgstr "Lanjutan" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" +"Semua penyangga jaring kurang dari jumlah verteks ini akan digabungkan\n" +"saat perenderan peta. Ini meningkatkan performa perenderan." + +#: src/settings_translation_file.cpp +msgid "Allow clouds to look 3D instead of flat." +msgstr "Perbolehkan awan terlihat 3D daripada datar." + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "Bolehkan cairan agak tembus pandang." @@ -2646,11 +2713,11 @@ msgstr "Metode antialiasing" #: src/settings_translation_file.cpp msgid "Anticheat flags" -msgstr "" +msgstr "Tanda anticurang" #: src/settings_translation_file.cpp msgid "Anticheat movement tolerance" -msgstr "" +msgstr "Toleransi pergerakan anticurang" #: src/settings_translation_file.cpp msgid "Append item name" @@ -2674,10 +2741,19 @@ msgid "" "With OpenGL ES, dithering only works if the shader supports high\n" "floating-point precision and it may have a higher performance impact." msgstr "" +"Terapkan dithering untuk mengurangi artefak pita warna.\n" +"Dithering secara signifikan meningkatkan ukuran tangkapan layar yang " +"dikompresi tanpa kehilangan apa pun\n" +"dan tidak berfungsi dengan benar jika tampilan atau sistem operasi\n" +"melakukan dithering tambahan atau jika saluran warna tidak dikuantisasi\n" +"menjadi 8 bit.\n" +"Dengan OpenGL ES, dithering hanya berfungsi jika shader mendukung\n" +"presisi floating-point yang tinggi dan mungkin memiliki dampak kinerja yang " +"lebih tinggi." #: src/settings_translation_file.cpp msgid "Apply specular shading to nodes." -msgstr "" +msgstr "Terapkan pembayangan spekular ke node." #: src/settings_translation_file.cpp msgid "Arm inertia" @@ -2696,7 +2772,6 @@ msgid "Ask to reconnect after crash" msgstr "Minta untuk menyambung ulang setelah mogok" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "At this distance the server will aggressively optimize which blocks are sent " "to\n" @@ -2715,10 +2790,9 @@ msgstr "" "terkadang juga di darat).\n" "Nilai yang lebih besar daripada max_block_send_distance mematikan\n" "optimasi ini.\n" -"Dalam satuan blok peta (16 nodus)." +"Dalam satuan MapBlock (16 nodus)." #: src/settings_translation_file.cpp -#, fuzzy msgid "" "At this distance the server will perform a simpler and cheaper occlusion " "check.\n" @@ -2735,7 +2809,7 @@ msgstr "" "terkadang juga di darat).\n" "Nilai yang lebih besar daripada max_block_send_distance mematikan\n" "optimasi ini.\n" -"Dalam satuan blok peta (16 nodus)." +"Dalam satuan MapBlock (16 nodus)." #: src/settings_translation_file.cpp msgid "Audio" @@ -2798,14 +2872,12 @@ msgid "Biome noise" msgstr "Noise bioma" #: src/settings_translation_file.cpp -#, fuzzy msgid "Block bounds HUD radius" -msgstr "Batasan blok" +msgstr "Rasius HUD batasan blok" #: src/settings_translation_file.cpp -#, fuzzy msgid "Block cull optimize distance" -msgstr "Jarak optimasi pengiriman blok" +msgstr "Jarak optimasi cull blok" #: src/settings_translation_file.cpp msgid "Block send optimize distance" @@ -2991,14 +3063,14 @@ msgstr "Jari-jari awan" msgid "Clouds" msgstr "Awan" -#: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." -msgstr "Awan adalah efek sisi klien." - #: src/settings_translation_file.cpp msgid "Clouds in menu" msgstr "Awan dalam menu" +#: src/settings_translation_file.cpp +msgid "Color depth for post-processing texture" +msgstr "Kedalaman warna untuk tekstur pasca-pemrosesan" + #: src/settings_translation_file.cpp msgid "Colored fog" msgstr "Kabut berwarna" @@ -3012,9 +3084,11 @@ msgid "" "Comma-separated list of AL and ALC extensions that should not be used.\n" "Useful for testing. See al_extensions.[h,cpp] for details." msgstr "" +"Daftar ekstensi AL dan ALC yang dipisahkan dengan koma yang tidak boleh " +"digunakan.\n" +"Berguna untuk pengujian. Lihat al_extensions.[h,cpp] untuk detailnya." #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Comma-separated list of flags to hide in the content repository.\n" "\"nonfree\" can be used to hide packages which do not qualify as 'free " @@ -3022,16 +3096,17 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" -"Daftar yang dipisahkan dengan koma dari flag yang akan disembunyikan dalam " -"gudang konten.\n" -"\"nonfree\" dapat digunakan untuk menyembunyikan paket yang tidak tergolong\n" -"\"perangkat lunak bebas gratis\" seperti yang ditetapkan oleh Free Software " -"Foundation.\n" -"Anda juga dapat menentukan sensor konten.\n" -"Flag-flag ini tidak bergantung pada versi Minetest,\n" -"maka lihat daftar lengkap di https://content.minetest.net/help/content_flags/" +"Daftar bendera yang dipisahkan dengan koma untuk disembunyikan di repositori " +"konten.\n" +"“nonfree” dapat digunakan untuk menyembunyikan paket yang tidak memenuhi " +"syarat sebagai ‘perangkat lunak bebas’,\n" +"sebagaimana didefinisikan oleh Free Software Foundation.\n" +"Anda juga dapat menentukan peringkat konten.\n" +"Tanda-tanda ini tidak bergantung pada versi Luanti,\n" +"jadi lihat daftar lengkapnya di https://content.minetest.net/help/" +"content_flags/" #: src/settings_translation_file.cpp msgid "" @@ -3192,6 +3267,19 @@ msgstr "Tingkat log awakutu" msgid "Debugging" msgstr "Pengawakutuan" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" +"Tentukan kedalaman warna tekstur yang digunakan untuk alur pasca-pemrosesan." +"\n" +"Mengurangi ini dapat meningkatkan performa, tetapi beberapa efek (mis. " +"debanding)\n" +"memerlukan lebih dari 8 bit supaya bekerja." + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "Langkah server khusus" @@ -3235,7 +3323,6 @@ msgstr "" "diska Poisson, tetapi menggunakan sumber daya lebih banyak." #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Define the oldest clients allowed to connect.\n" "Older clients are compatible in the sense that they will not crash when " @@ -3247,10 +3334,15 @@ msgid "" "Luanti still enforces its own internal minimum, and enabling\n" "strict_protocol_version_checking will effectively override this." msgstr "" -"Nyalakan untuk melarang sambungan dari klien lawas.\n" -"Klien lawas dianggap sesuai jika mereka tidak mogok saat menyambung ke " -"server-\n" -"server baru, tetapi mungkin tidak mendukung semua fitur baru yang diharapkan." +"Tentukan klien tertua yang diizinkan untuk terhubung.\n" +"Klien yang lebih lama kompatibel dalam arti tidak akan macet saat " +"tersambung\n" +"ke server baru, tetapi mereka mungkin tidak mendukung semua fitur baru yang " +"Anda harapkan.\n" +"Hal ini memungkinkan kontrol yang lebih baik daripada pengecekan " +"strict_protocol_version.\n" +"Luanti masih memberlakukan minimum internalnya sendiri, dan mengaktifkan\n" +"strict_protocol_version_checking_checking secara efektif akan menimpa ini." #: src/settings_translation_file.cpp msgid "Defines areas where trees have apples." @@ -3364,18 +3456,10 @@ msgstr "" "Gurun muncul saat np_biome melebihi nilai ini.\n" "Saat flag \"snowbiomes\" dinyalakan, nilai ini diabaikan." -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "Putuskan penyinkronan animasi blok" - #: src/settings_translation_file.cpp msgid "Developer Options" msgstr "Pilihan Pengembang" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "Partikel penggalian" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "Larang kata sandi kosong" @@ -3385,14 +3469,15 @@ msgid "Display Density Scaling Factor" msgstr "Pengali Skala Kepadatan Tampilan" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Distance in nodes at which transparency depth sorting is enabled.\n" "Use this to limit the performance impact of transparency depth sorting.\n" "Set to 0 to disable it entirely." msgstr "" -"Jarak dalam nodus yang dikenai pengurutan kedalaman transparansi\n" -"Gunakan ini untuk membatasi dampak kinerja akibat pengurutan ini" +"Jarak dalam node di mana pengurutan kedalaman transparansi diaktifkan.\n" +"Gunakan ini untuk membatasi dampak kinerja pengurutan kedalaman " +"transparansi.\n" +"Atur ke 0 untuk menonaktifkannya sepenuhnya." #: src/settings_translation_file.cpp msgid "Domain name of server, to be displayed in the serverlist." @@ -3406,6 +3491,19 @@ msgstr "Tekan ganda lompat untuk terbang" msgid "Double-tapping the jump key toggles fly mode." msgstr "Menekan ganda tombol lompat untuk beralih terbang." +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" +"Gambar segitiga diurutkan berdasarkan transparansi berdasarkan penyangga " +"jaringnya.\n" +"Ini merusak pengurutan transparansi antara penyangga jaring, tetapi " +"menghindari situasi\n" +"di mana pengurutan transparansi akan menjadi lebih lambat." + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "Keluarkan informasi awakutu pembuat peta." @@ -3423,9 +3521,8 @@ msgid "Dungeon noise" msgstr "Noise dungeon" #: src/settings_translation_file.cpp -#, fuzzy msgid "Effects" -msgstr "Efek Grafika" +msgstr "Efek" #: src/settings_translation_file.cpp msgid "Enable Automatic Exposure" @@ -3440,9 +3537,8 @@ msgid "Enable Bloom Debug" msgstr "Nyalakan Awakutu Bloom" #: src/settings_translation_file.cpp -#, fuzzy msgid "Enable Debanding" -msgstr "Nyalakan Kerusakan" +msgstr "Nyalakan Debanding" #: src/settings_translation_file.cpp msgid "" @@ -3492,12 +3588,11 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" -"Menyalakan bayangan berwarna.\n" -"Nilai true berarti nodus agak tembus pandang memiliki bayangan berwarna. Ini " -"memerlukan sumber daya besar." +"Aktif kan bayangan berwarna untuk nodus translusen.\n" +"Ini komputasi mahal." #: src/settings_translation_file.cpp msgid "Enable console window" @@ -3524,20 +3619,16 @@ msgid "Enable mouse wheel (scroll) for item selection in hotbar." msgstr "Nyalakan roda tetikus (gulir) untuk memilih barang dalam hotbar." #: src/settings_translation_file.cpp -#, fuzzy msgid "Enable random mod loading (mainly used for testing)." -msgstr "Gunakan masukan pengguna acak (hanya digunakan untuk pengujian)." +msgstr "Aktifkan pemuatan mod acak (terutama digunakan untuk pengujian)." #: src/settings_translation_file.cpp msgid "Enable random user input (only used for testing)." msgstr "Gunakan masukan pengguna acak (hanya digunakan untuk pengujian)." #: src/settings_translation_file.cpp -#, fuzzy msgid "Enable smooth lighting with simple ambient occlusion." -msgstr "" -"Gunakan pencahayaan halus dengan ambient occlusion sederhana.\n" -"Matikan agar cepat atau untuk tampilan lain." +msgstr "Gunakan pencahayaan halus dengan oklusi ambien sederhana." #: src/settings_translation_file.cpp msgid "Enable split login/register" @@ -3558,7 +3649,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Enable updates available indicator on content tab" -msgstr "" +msgstr "Aktifkan indikator tersedia pembaruan pada tab konten" #: src/settings_translation_file.cpp msgid "" @@ -3582,12 +3673,10 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" -"Nyalakan/matikan server IPv6.\n" -"Diabaikan jika bind_address telah diatur.\n" -"Perlu menyalakan enable_ipv6." +"Aktif kan/nonaktifkan menjalankan server IPv6.\n" +"Diabaikan jika bind_address telah diatur." #: src/settings_translation_file.cpp msgid "" @@ -3605,21 +3694,13 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "Jalankan animasi barang inventaris." -#: src/settings_translation_file.cpp -#, fuzzy -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "Gunakan tembolok untuk facedir mesh yang diputar." - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "Nyalakan awakutu dan pemeriksa-masalah dalam pengandar OpenGL." #: src/settings_translation_file.cpp -#, fuzzy msgid "Enables smooth scrolling." -msgstr "Nyalakan Pasca-Pengolahan" +msgstr "Mengaktifkan pengguliran halus." #: src/settings_translation_file.cpp msgid "Enables the post processing pipeline." @@ -3632,6 +3713,11 @@ msgid "" "\"auto\" means that the touchscreen controls will be enabled and disabled\n" "automatically depending on the last used input method." msgstr "" +"Mengaktifkan kontrol layar sentuh, memungkinkan Anda untuk memainkan " +"permainan dengan layar sentuh.\n" +"\"auto\" berarti kontrol layar sentuh akan diaktifkan dan dinonaktifkan " +"secara otomatis\n" +"tergantung pada metode masukan terakhir yang digunakan." #: src/settings_translation_file.cpp msgid "" @@ -3947,10 +4033,6 @@ msgstr "Skala GUI" msgid "GUI scaling filter" msgstr "Filter skala GUI" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "Filter txr2img skala GUI" - #: src/settings_translation_file.cpp msgid "Gamepads" msgstr "Gamepad" @@ -4201,6 +4283,9 @@ msgid "" "ContentDB to\n" "check for package updates when opening the mainmenu." msgstr "" +"Jika diaktifkan dan Anda memiliki paket ContentDB yang terpasang, Luanti " +"dapat menghubungi ContentDB untuk\n" +"memeriksa pembaruan paket ketika membuka menu utama." #: src/settings_translation_file.cpp msgid "" @@ -4211,14 +4296,6 @@ msgstr "" "Jika dinyalakan, tombol \"Aux1\" digunakan untuk bergerak turun alih-alih\n" "tombol \"menyelinap\"." -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" -"Jika dinyalakan, tampilan pendaftaran akun dan masuk akan dipisah.\n" -"Jika dimatikan, akun baru akan didaftarkan secara otomatis saat masuk." - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -4244,6 +4321,16 @@ msgstr "" "Jika dinyalakan, pemain baru tidak dapat bergabung tanpa kata sandi atau " "menggantinya dengan kata sandi kosong." +#: src/settings_translation_file.cpp +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" +"Jika diaktifkan, pendaftaran akun server terpisah dari log masuk dalam UI.\n" +"Jika dinonaktifkan, menghubungkan ke server akan mendaftarkan akun secara " +"otomatis." + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4312,8 +4399,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "In-game chat console background color (R,G,B)." msgstr "" -"Warna latar belakang konsol obrolan dalam permainan (merah,hijau,biru atau R," -"G,B)." +"Warna latar belakang konsol obrolan dalam permainan (merah,hijau,biru atau " +"R,G,B)." #: src/settings_translation_file.cpp msgid "In-game chat console height, between 0.1 (10%) and 1.0 (100%)." @@ -4337,13 +4424,12 @@ msgid "Instrument chat commands on registration." msgstr "Perkakas perintah obrolan saat pendaftaran." #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Instrument global callback functions on registration.\n" "(anything you pass to a core.register_*() function)" msgstr "" "Melengkapi fungsi panggil balik (callback) global saat didaftarkan.\n" -"(semua yang dimasukkan ke fungsi minetest.register_*())" +"(semua yang dimasukkan ke fungsi core.register_*())" #: src/settings_translation_file.cpp msgid "" @@ -4366,10 +4452,6 @@ msgstr "Melengkapi metode entitas dengan perkakas saat didaftarkan." msgid "Interval of saving important changes in the world, stated in seconds." msgstr "Jarak waktu penyimpanan perubahan penting dari dunia dalam detik." -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "Jarak pengiriman waktu harian kepada para klien dalam detik." - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "Animasi barang inventaris" @@ -4545,7 +4627,6 @@ msgid "Leaves style" msgstr "Gaya dedaunan" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Leaves style:\n" "- Fancy: all faces visible\n" @@ -4553,13 +4634,11 @@ msgid "" "- Opaque: disable transparency" msgstr "" "Gaya daun:\n" -"- Fancy: semua sisi terlihat\n" -"- Simple: hanya sisi terluar jika special_tiles yang didefinisikan " -"digunakan\n" -"- Opaque: matikan transparansi" +"- Mewah: semua sisi terlihat\n" +"- Sederhana: hanya sisi terluar\n" +"- Buram: matikan transparansi" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Length of a server tick (the interval at which everything is generally " "updated),\n" @@ -4568,9 +4647,12 @@ msgid "" "This is a lower bound, i.e. server steps may not be shorter than this, but\n" "they are often longer." msgstr "" -"Lama detikan server dan selang waktu bagi objek secara umum untuk " -"diperbarui\n" -"ke jaringan dalam detik." +"Panjang detak server (interval saat segala sesuatu secara umum diperbarui),\n" +"dinyatakan dalam detik.\n" +"Tidak berlaku untuk sesi yang dihosting dari menu klien.\n" +"Ini adalah batas bawah, yaitu langkah server tidak boleh lebih pendek dari " +"ini, tetapi\n" +"sering kali lebih lama." #: src/settings_translation_file.cpp msgid "Length of liquid waves." @@ -4684,9 +4766,8 @@ msgid "Liquid queue purge time" msgstr "Waktu pembersihan antrean cairan" #: src/settings_translation_file.cpp -#, fuzzy msgid "Liquid reflections" -msgstr "Keenceran cairan" +msgstr "Refleksi cairan" #: src/settings_translation_file.cpp msgid "Liquid sinking" @@ -4792,7 +4873,6 @@ msgid "Map generation attributes specific to Mapgen v5." msgstr "Atribut pembuatan peta khusus untuk pembuat peta v5." #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Map generation attributes specific to Mapgen v6.\n" "The 'snowbiomes' flag enables the new 5 biome system.\n" @@ -4801,10 +4881,12 @@ msgid "" "The 'temples' flag disables generation of desert temples. Normal dungeons " "will appear instead." msgstr "" -"Atribut pembuatan peta khusus untuk pembuat peta v6.\n" -"Flag \"snowbiomes\" menyalakan sistem 5 bioma yang baru.\n" -"Saat sistem bioma baru digunakan, hutan rimba otomatis dinyalakan dan\n" -"flag \"jungle\" diabaikan." +"Atribut pembuatan peta khusus untuk pembuat v6.\n" +"Tanda 'snowbiomes' mengaktifkan sistem 5 bioma yang baru.\n" +"Ketika tanda 'snowbiomes' diaktifkan, hutan secara otomatis diaktifkan dan\n" +"tanda 'jungles' diabaikan.\n" +"Tanda 'temples' menonaktifkan pembuatan kuil gurun. Sebagai gantinya, ruang " +"bawah tanah normal akan muncul." #: src/settings_translation_file.cpp msgid "" @@ -5023,6 +5105,10 @@ msgid "" "You generally don't need to change this, however busy servers may benefit " "from a higher number." msgstr "" +"Jumlah maksimum paket yang dikirim per langkah pengiriman dalam kode " +"jaringan tingkat rendah.\n" +"Anda biasanya tidak perlu mengubahnya, namun server yang sibuk dapat " +"memperoleh manfaat dari jumlah yang lebih tinggi." #: src/settings_translation_file.cpp msgid "Maximum number of players that can be connected simultaneously." @@ -5083,10 +5169,6 @@ msgstr "" msgid "Maximum users" msgstr "Jumlah pengguna maksimum" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "Tembolok mesh" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "Pesan hari ini" @@ -5119,6 +5201,10 @@ msgstr "Batas minimal nilai acak untuk gua besar per potongan peta." msgid "Minimum limit of random number of small caves per mapchunk." msgstr "Batas minimal nilai acak untuk gua kecil per potongan peta." +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "Jumlah verteks minimum untuk penyangga jaring" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "Pemetaan Ulang" @@ -5214,13 +5300,13 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" -"Nama si pemain.\n" -"Saat menjalankan server, klien yang tersambung dengan nama ini adalah " -"pengurus.\n" -"Saat menjalankan dari menu utama, nilai ini ditimpa." +"Nama pemain.\n" +"Saat menjalankan server, klien yang tersambung dengan nama ini adalah admin." +"\n" +"Saat memulai dari menu utama, ini ditimpa." #: src/settings_translation_file.cpp msgid "" @@ -5253,7 +5339,7 @@ msgstr "Penyorotan nodus" #: src/settings_translation_file.cpp msgid "Node specular" -msgstr "" +msgstr "Spekular node" #: src/settings_translation_file.cpp msgid "NodeTimer interval" @@ -5308,15 +5394,14 @@ msgid "Number of messages a player may send per 10 seconds." msgstr "Jumlah pesan yang dapat dikirim pemain per 10 detik." #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Number of threads to use for mesh generation.\n" "Value of 0 (default) will let Luanti autodetect the number of available " "threads." msgstr "" "Jumlah utas untuk pembuatan mesh.\n" -"Nilai 0 (bawaan) akan membiarkan Minetest mendeteksi otomatis jumlah utas " -"yang tersedia." +"Nilai 0 (bawaan) akan membiarkan Luanti mendeteksi otomatis jumlah utas yang " +"tersedia." #: src/settings_translation_file.cpp msgid "Occlusion Culler" @@ -5346,18 +5431,16 @@ msgid "OpenGL debug" msgstr "Awakutu OpenGL" #: src/settings_translation_file.cpp -#, fuzzy msgid "Optimize GUI for touchscreens" -msgstr "Gunakan crosshair untuk layar sentuh" +msgstr "Optimalkan GUI untuk layar sentuh" #: src/settings_translation_file.cpp msgid "Optional override for chat weblink color." msgstr "Penimpaan opsional untuk warna tautan web pada obrolan." #: src/settings_translation_file.cpp -#, fuzzy msgid "Other Effects" -msgstr "Efek Grafika" +msgstr "Efek Lainnya" #: src/settings_translation_file.cpp msgid "" @@ -5471,7 +5554,6 @@ msgid "Prometheus listener address" msgstr "Alamat pendengar Prometheus" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Prometheus listener address.\n" "If Luanti is compiled with ENABLE_PROMETHEUS option enabled,\n" @@ -5479,7 +5561,7 @@ msgid "" "Metrics can be fetched on http://127.0.0.1:30000/metrics" msgstr "" "Alamat pendengar Prometheus.\n" -"Jika Minetest dikompilasi dengan pilihan ENABLE_PROMETHEUS dinyalakan,\n" +"Jika Luanti dikompilasi dengan pilihan ENABLE_PROMETHEUS dinyalakan,\n" "ini menyalakan pendengar metrik untuk Prometheus pada alamat itu.\n" "Metrik dapat diambil pada http://127.0.0.1:30000/metrics" @@ -5507,6 +5589,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Radius to use when the block bounds HUD feature is set to near blocks." msgstr "" +"Radius yang digunakan ketika fitur HUD batasan blok ditetapkan dekat blok." #: src/settings_translation_file.cpp msgid "Raises terrain to make valleys around the rivers." @@ -5729,45 +5812,68 @@ msgid "See https://www.sqlite.org/pragma.html#pragma_synchronous" msgstr "Lihat https://www.sqlite.org/pragma.html#pragma_synchronous" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Select the antialiasing method to apply.\n" "\n" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" -"Pilih metode antialiasing yang diterapkan.\n" +"Pilih metode antialiasing untuk diterapkan.\n" "\n" -"* None - Tidak ada antialiasing (bawaan)\n" "\n" -"* FSAA - Full-screen antialiasing dari perangkat keras (tidak cocok dengan " -"shader)\n" -"alias multi-sample antialiasing (MSAA)\n" -"Menghaluskan tepian blok, tetapi tidak berpengaruh terhadap isi tekstur.\n" -"Perlu mulai ulang untuk mengganti pilihan ini.\n" "\n" -"* FXAA - Fast approximate antialiasing (perlu shader)\n" -"Menerapkan filter pasca-pengolahan untuk mendeteksi dan menghaluskan tepian " +"* Tidak ada - tidak ada antialiasing (default)\n" +"\n" +"\n" +"\n" +"* FSAA-Antialiasing layar penuh yang disediakan perangkat keras\n" +"\n" +"A.k.a antialiasing multi-sampel (MSAA)\n" +"\n" +"Menghancur tepi blok tetapi tidak mempengaruhi bagian dalam tekstur.\n" +"\n" +"\n" +"\n" +"Jika pemrosesan pos dinonaktifkan, mengubah FSAA memerlukan restart.\n" +"\n" +"Juga, jika pemrosesan pos dinonaktifkan, FSAA tidak akan bekerja sama " +"dengannya\n" +"\n" +"pengaturan undersampling atau non-default \"3D_MODE\".\n" +"\n" +"\n" +"\n" +"* Fxaa - perkiraan cepat antialiasing\n" +"\n" +"Menerapkan filter pasca pemrosesan untuk mendeteksi dan menghaluskan tepi " "kontras tinggi.\n" +"\n" "Memberikan keseimbangan antara kecepatan dan kualitas gambar.\n" "\n" -"* SSAA - Super-sampling antialiasing (perlu shader)\n" -"Menggambar citra resolusi tinggi adegan, lalu diperkecil untuk mengurangi\n" -"efek aliasing. Ini metode terlambat dan terakurat." +"\n" +"\n" +"* SSAA - Antialiasing Super -Sampling\n" +"\n" +"Membuat gambar resolusi yang lebih tinggi dari pemandangan itu, lalu " +"berskala ke bawah untuk mengurangi\n" +"\n" +"Efek aliasing. Ini adalah metode paling lambat dan paling akurat." #: src/settings_translation_file.cpp msgid "Selection box border color (R,G,B)." @@ -5828,11 +5934,12 @@ msgid "" "Send names of online players to the serverlist. If disabled only the player " "count is revealed." msgstr "" +"Kirim nama-nama pemain daring ke daftar server. Jika dinonaktifkan hanya " +"jumlah pemain yang ditampilkan." #: src/settings_translation_file.cpp -#, fuzzy msgid "Send player names to the server list" -msgstr "Umumkan ke daftar server ini." +msgstr "Kirim nama-nama pemain ke daftar server" #: src/settings_translation_file.cpp msgid "Server" @@ -5860,6 +5967,9 @@ msgid "" "Flags are positive. Uncheck the flag to disable corresponding anticheat " "module." msgstr "" +"Konfigurasi anticheat server.\n" +"Tanda bernilai positif. Hapus centang pada tanda untuk menonaktifkan modul " +"anticheat yang sesuai." #: src/settings_translation_file.cpp msgid "Server description" @@ -5914,13 +6024,12 @@ msgstr "" "Rentang: dari -1 ke 1.0" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Set the language. By default, the system language is used.\n" "A restart is required after changing this." msgstr "" -"Atur bahasa. Biarkan kosong untuk menggunakan bahasa sistem.\n" -"Diperlukan mulai ulang setelah mengganti ini." +"Atur bahasa. Secara bawaan, bahasa sistem digunakan.\n" +"Memerlukan pemulaian ulang setelah mengubah ini." #: src/settings_translation_file.cpp msgid "" @@ -6004,16 +6113,6 @@ msgstr "" msgid "Shader path" msgstr "Jalur shader" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "Shader" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "Kualitas filter bayangan" @@ -6083,7 +6182,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Simulate translucency when looking at foliage in the sunlight." -msgstr "" +msgstr "Simulasikan transparansi ketika melihat dedaunan dalam sinar matahari." #: src/settings_translation_file.cpp msgid "" @@ -6135,18 +6234,16 @@ msgid "Smooth lighting" msgstr "Pencahayaan halus" #: src/settings_translation_file.cpp -#, fuzzy msgid "Smooth scrolling" -msgstr "Pencahayaan halus" +msgstr "Pengguliran halus" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Smooths rotation of camera when in cinematic mode, 0 to disable. Enter " "cinematic mode by using the key set in Controls." msgstr "" -"Menghaluskan rotasi kamera dalam modus sinema, 0 untuk mematikannya. Masuk " -"mode sinema dengan tombol yang diatur di Ubah Tombol." +"Menghaluskan rotasi kamera dalam mode sinema, 0 untuk mematikannya. Masuk " +"mode sinema dengan tombol yang diatur di Kontrol." #: src/settings_translation_file.cpp msgid "" @@ -6165,9 +6262,8 @@ msgid "Sneaking speed, in nodes per second." msgstr "Kelajuan menyelinap dalam nodus per detik." #: src/settings_translation_file.cpp -#, fuzzy msgid "Soft clouds" -msgstr "Awan 3D" +msgstr "Awan lembut" #: src/settings_translation_file.cpp msgid "Soft shadow radius" @@ -6205,15 +6301,14 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" -"Menyebarkan pembaruan peta bayangan dalam jumlah bingkai yang diberikan.\n" -"Nilai tinggi bisa membuat bayangan patah-patah, nilai rendah akan perlu\n" -"sumber daya lebih banyak.\n" -"Nilai minimum: 1; nilai maksimum: 16" +"Sebarkan pembaruan lengkap peta bayangan pada sejumlah bingkai tertentu.\n" +"Nilai yang lebih tinggi mungkin membuat bayangan lambat, nilai yang lebih " +"rendah\n" +"akan mengkonsumsi lebih banyak sumber daya." #: src/settings_translation_file.cpp msgid "" @@ -6406,17 +6501,26 @@ msgid "" "Known from the classic Luanti mobile controls.\n" "Combat is more or less impossible." msgstr "" +"Gerakan untuk meninju pemain/entitas.\n" +"Ini dapat ditimpa oleh game dan mod.\n" +"\n" +"* short_tap\n" +"Mudah digunakan dan terkenal dari game lain yang tidak akan disebutkan " +"namanya.\n" +"\n" +"* long_tap\n" +"Dikenal dari kontrol seluler Luanti klasik.\n" +"Pertarungan kurang lebih tidak mungkin." #: src/settings_translation_file.cpp msgid "The identifier of the joystick to use" msgstr "Identitas dari joystick yang digunakan" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "The length in pixels after which a touch interaction is considered movement." msgstr "" -"Jarak dalam piksel yang diperlukan untuk memulai interaksi layar sentuh." +"Jarak dalam piksel setelah interaksi sentuhan dianggap sebagai gerakan." #: src/settings_translation_file.cpp msgid "" @@ -6431,13 +6535,12 @@ msgstr "" "Bawaannya 1.0 (1/2 nodus)." #: src/settings_translation_file.cpp -#, fuzzy msgid "" "The minimum time in seconds it takes between digging nodes when holding\n" "the dig button." msgstr "" -"Jeda dalam detik antar-penaruhan berulang saat menekan \n" -"tombol taruh." +"Waktu minimum dalam detik antara menggali node ketika\n" +"menekan tombol gali." #: src/settings_translation_file.cpp msgid "The network interface that the server listens on." @@ -6469,16 +6572,14 @@ msgstr "" "Ini harus diatur bersama dengan active_object_range." #: src/settings_translation_file.cpp -#, fuzzy msgid "" "The rendering back-end.\n" "Note: A restart is required after changing this!\n" "OpenGL is the default for desktop, and OGLES2 for Android." msgstr "" -"Penggambar video.\n" -"Catatan: Mulai ulang diperlukan setelah mengganti ini!\n" -"OpenGL bawaan untuk desktop, dan OGLES2 untuk Android.\n" -"Shader didukung oleh OpenGL dan OGLES2 (tahap percobaan)." +"Backend perenderan.\n" +"Catatan: Diperlukan pemulaian ulang setelah mengubah ini!\n" +"OpenGL merupakan bawaan untuk desktop, dan OGLES2 untuk Android." #: src/settings_translation_file.cpp msgid "" @@ -6569,10 +6670,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "Waktu saat dunia baru dimulai, dalam milijam (0-23999)." -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "Jarak pengiriman waktu" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "Kelajuan waktu" @@ -6600,6 +6697,8 @@ msgid "" "Tolerance of movement cheat detector.\n" "Increase the value if players experience stuttery movement." msgstr "" +"Toleransi pergerakan pendeteksi kecurangan.\n" +"Tingkatkan nilai jika pemain mengalami pergerakan patah-patah." #: src/settings_translation_file.cpp msgid "Tooltip delay" @@ -6610,9 +6709,8 @@ msgid "Touchscreen" msgstr "Layar Sentuh" #: src/settings_translation_file.cpp -#, fuzzy msgid "Touchscreen controls" -msgstr "Ambang batas layar sentuh" +msgstr "Kontrol layar sentuh" #: src/settings_translation_file.cpp msgid "Touchscreen sensitivity" @@ -6627,9 +6725,8 @@ msgid "Tradeoffs for performance" msgstr "Pertukaran untuk kinerja" #: src/settings_translation_file.cpp -#, fuzzy msgid "Translucent foliage" -msgstr "Cairan agak tembus pandang" +msgstr "Dedaunan tembus pandanga" #: src/settings_translation_file.cpp msgid "Translucent liquids" @@ -6639,6 +6736,10 @@ msgstr "Cairan agak tembus pandang" msgid "Transparency Sorting Distance" msgstr "Jarak Pengurutan Transparansi" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "Jarak Pengurutan Transparansi berdasarkan Penyangga" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "Noise pepohonan" @@ -6680,13 +6781,13 @@ msgstr "" "Pengaturan ini seharusnya hanya diubah jika Anda mengalami masalah kinerja." #: src/settings_translation_file.cpp -#, fuzzy msgid "" "URL to JSON file which provides information about the newest Luanti " "release.\n" "If this is empty the engine will never check for updates." msgstr "" -"URL ke berkas JSON yang memberikan informasi tentang rilis Minetest terbaru" +"URL ke berkas JSON yang memberikan informasi tentang rilis Luanti terbaru.\n" +"Jika kosong, mesin tidak akan memeriksa pembaruan." #: src/settings_translation_file.cpp msgid "URL to the server list displayed in the Multiplayer Tab." @@ -6702,12 +6803,18 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" -"Undersampling seperti menggunakan resolusi layar yang lebih rendah, tetapi\n" -"hanya berlaku untuk dunia permainan saja, antarmuka grafis tetap.\n" -"Seharusnya memberikan dorongan kinerja dengan gambar yang kurang detail.\n" -"Nilai yang lebih tinggi menghasilkan gambar yang kurang detail." +"Undersampling hampir mirip seperti menggunakan resolusi layer yang lebih " +"rendah, tetapi hanya diterapkan ke dunia permainan saja sambil menjaga GUI.\n" +"Ini seharusnya memberikan peningkatan performa dengan mengurangi detail " +"gambar.\n" +"Nilai yang lebih tinggi membuat detail gambar lebih sedikit.\n" +"Catatan: Undersampling saat ini tidak didukung jika pengaturan \"3d_mode\" " +"ditetapkan ke nilai non-bawaan." #: src/settings_translation_file.cpp msgid "Unlimited player transfer distance" @@ -6729,18 +6836,18 @@ msgstr "Batas atas Y dungeon." msgid "Upper Y limit of floatlands." msgstr "Batas atas Y floatland." -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "Gunakan tampilan awan 3D alih-alih datar." - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "Gunakan animasi awan untuk latar belakang menu utama." #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" -"Gunakan pemfilteran anisotropik saat melihat tekstur pada sudut tertentu." +"Gunakan pemfilteran anisotropik saat melihat tekstur pada sudut tertentu.\n" +"Ini menyediakan peningkatan yang lebih baik ketika digunakan bersama dengan " +"mipmapping." #: src/settings_translation_file.cpp msgid "Use bilinear filtering when scaling textures." @@ -6782,7 +6889,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Use smooth cloud shading." -msgstr "" +msgstr "Gunakan pembayangan awan mulus." #: src/settings_translation_file.cpp msgid "" @@ -6990,13 +7097,17 @@ msgstr "Warna tautan web" #: src/settings_translation_file.cpp msgid "When enabled, liquid reflections are simulated." -msgstr "" +msgstr "Ketika diaktifkan, refleksi cairan disimulasikan." #: src/settings_translation_file.cpp msgid "" "When enabled, the GUI is optimized to be more usable on touchscreens.\n" "Whether this is enabled by default depends on your hardware form-factor." msgstr "" +"Ketika diaktifkan, GUI dioptimalkan supaya dapat digunakan pada layar " +"sentuh.\n" +"Apakah ini diaktifkan secara bawaan tergantung pada faktor bentuk perangkat " +"keras Anda." #: src/settings_translation_file.cpp msgid "" @@ -7010,36 +7121,27 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" -"Saat gui_scaling_filter_txr2img dibolehkan, salin gambar-gambar tersebut\n" -"dari perangkat keras ke perangkat lunak untuk perbesar/perkecil. Saat tidak\n" -"dibolehkan, kembali ke cara lama, untuk pengandar video yang tidak\n" -"mendukung pengunduhan tekstur dari perangkat keras." - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" -"Saat menggunakan filter bilinear/trilinear/anisotropik, tekstur resolusi\n" -"rendah dapat dikaburkan sehingga diperbesar otomatis dengan interpolasi\n" -"nearest-neighbor untuk menjaga ketajaman piksel. Ini mengatur ukuran\n" -"tekstur minimum untuk tekstur yang diperbesar; semakin tinggi semakin\n" -"tajam, tetapi butuh memori lebih. Perpangkatan dua disarankan. Pengaturan\n" -"ini HANYA diterapkan jika menggunakan filter bilinear/trilinear/" -"anisotropik.\n" -"Ini juga digunakan sebagai ukuran dasar tekstur nodus untuk penyekalaan\n" -"otomatis tekstur yang sejajar dengan dunia." +"Saat menggunakan pemfilteran bilinear/trilinear, tekstur resolusi rendah\n" +"bisa dikaburkan, jadi opsi ini secara otomatis meningkatkannya untuk " +"menjaga\n" +"piksel tajam. Ini mendefinisikan ukuran tekstur minimum untuk tekstur yang " +"ditingkatkan;\n" +"Nilai yang lebih tinggi terlihat lebih tajam, tetapi membutuhkan lebih " +"banyak memori.\n" +"Pengaturan ini hanya diterapkan jika salah satu filter yang disebutkan " +"diaktifkan.\n" +"Ini juga digunakan sebagai ukuran tekstur simpul dasar untuk dunia yang " +"selaras\n" +"Tekstur Autoscaling." #: src/settings_translation_file.cpp msgid "" @@ -7049,10 +7151,6 @@ msgstr "" "Apakah latar belakang tanda nama ditampilkan secara bawaan.\n" "Mod masih bisa mengatur latar belakang." -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "Apakah animasi tekstur nodus harus tidak disinkronkan per blok peta." - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -7079,15 +7177,14 @@ msgstr "Apakah harus memberi kabut pada akhir daerah yang terlihat." #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" -"Apakah akan membisukan suara atau tidak. Anda dapat membunyikan\n" -"suara kapan pun, kecuali sistem suara dimatikan (enable_sound = false).\n" -"Dalam permainan, Anda dapat beralih mode bisu dengan tombol bisu\n" -"atau melalui menu jeda." +"Apakah suara dibisukan atau tidak. Kamu bisa membunyikan suara kapan pun.\n" +"Dalam permainan, kamu bisa sakelar keadaan bisu dengan tombol bisikan atau " +"menggunakan\n" +"menu jeda." #: src/settings_translation_file.cpp msgid "" @@ -7107,13 +7204,12 @@ msgid "Window maximized" msgstr "Jendela dimaksimalkan" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Windows systems only: Start Luanti with the command line window in the " "background.\n" "Contains the same information as the file debug.txt (default name)." msgstr "" -"Sistem Windows saja: Mulai Minetest dengan jendela perintah baris di latar " +"Sistem Windows saja: Mulai Luanti dengan jendela perintah baris di latar " "belakang.\n" "Memiliki informasi yang sama dengan berkas debug.txt (nama bawaan)." @@ -7269,6 +7365,9 @@ msgstr "cURL: batas jumlah paralel" #~ "Biarkan kosong untuk memulai sebuah server lokal.\n" #~ "Perhatikan bahwa bidang alamat dalam menu utama menimpa pengaturan ini." +#~ msgid "Adds particles when digging a node." +#~ msgstr "Tambahkan partikel saat menggali nodus." + #~ msgid "" #~ "Adjust dpi configuration to your screen (non X11/Android only) e.g. for " #~ "4k screens." @@ -7426,6 +7525,9 @@ msgstr "cURL: batas jumlah paralel" #~ msgid "Clean transparent textures" #~ msgstr "Bersihkan tekstur transparan" +#~ msgid "Clouds are a client-side effect." +#~ msgstr "Awan adalah efek sisi klien." + #~ msgid "Command key" #~ msgstr "Tombol perintah" @@ -7521,9 +7623,15 @@ msgstr "cURL: batas jumlah paralel" #~ msgid "Darkness sharpness" #~ msgstr "Kecuraman kegelapan" +#~ msgid "Debug info and profiler graph hidden" +#~ msgstr "Info awakutu dan grafik pemrofil disembunyikan" + #~ msgid "Debug info toggle key" #~ msgstr "Tombol info awakutu" +#~ msgid "Debug info, profiler graph, and wireframe hidden" +#~ msgstr "Info awakutu, grafik pemrofil, dan rangka kawat disembunyikan" + #~ msgid "Dec. volume key" #~ msgstr "Tombol turunkan volume" @@ -7577,9 +7685,15 @@ msgstr "cURL: batas jumlah paralel" #~ msgid "Del. Favorite" #~ msgstr "Hapus favorit" +#~ msgid "Desynchronize block animation" +#~ msgstr "Putuskan penyinkronan animasi blok" + #~ msgid "Dig key" #~ msgstr "Tombol gali" +#~ msgid "Digging particles" +#~ msgstr "Partikel penggalian" + #~ msgid "Disable anticheat" #~ msgstr "Matikan anticurang" @@ -7607,6 +7721,9 @@ msgstr "cURL: batas jumlah paralel" #~ msgid "Dynamic shadows:" #~ msgstr "Bayangan dinamis:" +#~ msgid "Enable" +#~ msgstr "Aktifkan" + #~ msgid "Enable VBO" #~ msgstr "Gunakan VBO" @@ -7639,6 +7756,13 @@ msgstr "cURL: batas jumlah paralel" #~ "tekstur atau harus dihasilkan otomatis.\n" #~ "Membutuhkan penggunaan shader." +#~ msgid "" +#~ "Enables caching of facedir rotated meshes.\n" +#~ "This is only effective with shaders disabled." +#~ msgstr "" +#~ "Gunakan tembolok untuk facedir mesh yang diputar.\n" +#~ "Ini hanya efektif tanpa shader." + #~ msgid "Enables filmic tone mapping" #~ msgstr "Gunakan pemetaan suasana (tone mapping) filmis" @@ -7688,9 +7812,6 @@ msgstr "cURL: batas jumlah paralel" #~ "Masih tahap percobaan, dapat menyebabkan terlihatnya spasi antarblok\n" #~ "saat diatur dengan angka yang lebih besar dari 0." -#~ msgid "FPS in pause menu" -#~ msgstr "FPS (bingkai per detik) pada menu jeda" - #~ msgid "FSAA" #~ msgstr "FSAA" @@ -7776,8 +7897,8 @@ msgstr "cURL: batas jumlah paralel" #~ msgid "Full screen BPP" #~ msgstr "BPP layar penuh" -#~ msgid "Game" -#~ msgstr "Permainan" +#~ msgid "GUI scaling filter txr2img" +#~ msgstr "Filter txr2img skala GUI" #~ msgid "Gamma" #~ msgstr "Gamma" @@ -7947,660 +8068,666 @@ msgstr "cURL: batas jumlah paralel" #~ msgid "Instrumentation" #~ msgstr "Instrumentasi" +#~ msgid "Interval of sending time of day to clients, stated in seconds." +#~ msgstr "Jarak pengiriman waktu harian kepada para klien dalam detik." + #~ msgid "Invalid gamespec." #~ msgstr "Spesifikasi permainan tidak sah." #~ msgid "Inventory key" #~ msgstr "Tombol inventaris" +#~ msgid "Irrlicht device:" +#~ msgstr "Perangkat Irrlicht:" + #~ msgid "Jump key" #~ msgstr "Tombol lompat" #~ msgid "" #~ "Key for decreasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk mengurangi jarak pandang.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for decreasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk mengurangi volume.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for digging.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk gali.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for dropping the currently selected item.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk menjatuhkan barang yang sedang dipilih.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk menambah jarak pandang.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk menambah volume.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for jumping.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk lompat.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving fast in fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk bergerak cepat dalam mode cepat.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player backward.\n" #~ "Will also disable autoforward, when active.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk bergerak mundur.\n" #~ "Akan mematikan maju otomatis, saat dinyalakan.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player forward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk bergerak maju.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player left.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk bergerak ke kiri.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player right.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk bergerak ke kanan.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for muting the game.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk membisukan permainan.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk membuka jendela obrolan untuk mengetik perintah.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type local commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk membuka jendela obrolan untuk mengetik perintah lokal.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk membuka jendela obrolan.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the inventory.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk membuka inventaris.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for placing.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk taruh.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 11th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk memilih slot hotbar ke-11.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 12th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk memilih slot hotbar ke-12.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 13th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk memilih slot hotbar ke-13.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 14th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk memilih slot hotbar ke-14.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 15th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk memilih slot hotbar ke-15.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 16th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk memilih slot hotbar ke-16.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 17th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk memilih slot hotbar ke-17.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 18th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk memilih slot hotbar ke-18.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 19th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk memilih slot hotbar ke-19.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 20th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk memilih slot hotbar ke-20.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 21st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk memilih slot hotbar ke-21.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 22nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk memilih slot hotbar ke-22.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 23rd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk memilih slot hotbar ke-23.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 24th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk memilih slot hotbar ke-24.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 25th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk memilih slot hotbar ke-25.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 26th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk memilih slot hotbar ke-26.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 27th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk memilih slot hotbar ke-27.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 28th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk memilih slot hotbar ke-28.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 29th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk memilih slot hotbar ke-29.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 30th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk memilih slot hotbar ke-30.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 31st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk memilih slot hotbar ke-31.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 32nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk memilih slot hotbar ke-32.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the eighth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk memilih slot hotbar kedelapan.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the fifth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk memilih slot hotbar kelima.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the first hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk memilih slot hotbar pertama.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the fourth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk memilih slot hotbar keempat.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the next item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk memilih barang selanjutnya di hotbar.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the ninth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk memilih slot hotbar kesembilan.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the previous item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk memilih barang sebelumnya di hotbar.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the second hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk memilih slot hotbar kedua.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the seventh hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk memilih slot hotbar ketujuh.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the sixth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk memilih slot hotbar keenam.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the tenth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk memilih slot hotbar kesepuluh.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the third hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk memilih slot hotbar ketiga.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for sneaking.\n" #~ "Also used for climbing down and descending in water if aux1_descends is " #~ "disabled.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk menyelinap.\n" #~ "Juga digunakan untuk turun dan menyelam dalam air jika aux1_descends " #~ "dimatikan.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for switching between first- and third-person camera.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk mengganti kamera antara orang pertama dan ketiga.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for taking screenshots.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk mengambil tangkapan layar.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling autoforward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk beralih maju otomatis.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling cinematic mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk beralih mode sinema.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling display of minimap.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk mengganti tampilan peta mini.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk beralih mode cepat.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling flying.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk beralih terbang.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling noclip mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk beralih mode tembus nodus.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling pitch move mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk beralih mode gerak sesuai pandang.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the camera update. Only used for development\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk beralih pembaruan kamera. Hanya digunakan dalam " #~ "pengembangan.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of chat.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk beralih tampilan obrolan.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of debug info.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk beralih tampilan info awakutu.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of fog.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk beralih tampilan kabut.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the HUD.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk beralih tampilan HUD.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the large chat console.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk beralih tampilan konsol obrolan besar.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the profiler. Used for development.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk menampilkan profiler. Digunakan untuk pengembangan.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling unlimited view range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk beralih menjadi jarak pandang tanpa batas.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key to use view zoom when possible.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tombol untuk zum jika bisa.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Keybindings. (If this menu screws up, remove stuff from minetest.conf)" @@ -8676,6 +8803,9 @@ msgstr "cURL: batas jumlah paralel" #~ msgid "Menus" #~ msgstr "Menu" +#~ msgid "Mesh cache" +#~ msgstr "Tembolok mesh" + #~ msgid "Minimap" #~ msgstr "Peta mini" @@ -8881,6 +9011,9 @@ msgstr "cURL: batas jumlah paralel" #~ msgid "Server / Singleplayer" #~ msgstr "Server/Pemain tunggal" +#~ msgid "Shaders" +#~ msgstr "Shader" + #~ msgid "Shaders (experimental)" #~ msgstr "Shader (tahap percobaan)" @@ -8898,6 +9031,16 @@ msgstr "cURL: batas jumlah paralel" #~ "pada beberapa kartu video.\n" #~ "Ini hanya bekerja dengan penggambar video OpenGL." +#~ msgid "" +#~ "Shaders are a fundamental part of rendering and enable advanced visual " +#~ "effects." +#~ msgstr "" +#~ "Shader merupakan bagian penting dalam perenderan dan memungkinkan efek " +#~ "visual bertingkat lanjut." + +#~ msgid "Shaders are disabled." +#~ msgstr "Shader dinonaktifkan." + #~ msgid "Shadow limit" #~ msgstr "Batas bayangan" @@ -8929,6 +9072,9 @@ msgstr "cURL: batas jumlah paralel" #~ msgid "Smooths rotation of camera. 0 to disable." #~ msgstr "Penghalusan perputaran kamera. 0 untuk tidak menggunakannya." +#~ msgid "Sound system is disabled" +#~ msgstr "Sistem suara dimatikan" + #~ msgid "Special" #~ msgstr "Spesial" @@ -8977,6 +9123,12 @@ msgstr "cURL: batas jumlah paralel" #~ msgid "This font will be used for certain languages." #~ msgstr "Fon ini akan digunakan pada bahasa tertentu." +#~ msgid "This is not a recommended configuration." +#~ msgstr "Ini bukan konfigurasi yang disarankan." + +#~ msgid "Time send interval" +#~ msgstr "Jarak pengiriman waktu" + #~ msgid "To enable shaders the OpenGL driver needs to be used." #~ msgstr "Untuk menggunakan shader, pengandar OpenGL harus digunakan." @@ -9097,6 +9249,18 @@ msgstr "cURL: batas jumlah paralel" #~ msgid "Waving water" #~ msgstr "Air berombak" +#~ msgid "" +#~ "When gui_scaling_filter_txr2img is true, copy those images\n" +#~ "from hardware to software for scaling. When false, fall back\n" +#~ "to the old scaling method, for video drivers that don't\n" +#~ "properly support downloading textures back from hardware." +#~ msgstr "" +#~ "Saat gui_scaling_filter_txr2img dibolehkan, salin gambar-gambar tersebut\n" +#~ "dari perangkat keras ke perangkat lunak untuk perbesar/perkecil. Saat " +#~ "tidak\n" +#~ "dibolehkan, kembali ke cara lama, untuk pengandar video yang tidak\n" +#~ "mendukung pengunduhan tekstur dari perangkat keras." + #~ msgid "" #~ "Whether FreeType fonts are used, requires FreeType support to be compiled " #~ "in.\n" @@ -9109,6 +9273,11 @@ msgstr "cURL: batas jumlah paralel" #~ msgid "Whether dungeons occasionally project from the terrain." #~ msgstr "Apakah dungeon terkadang muncul dari medan." +#~ msgid "" +#~ "Whether node texture animations should be desynchronized per mapblock." +#~ msgstr "" +#~ "Apakah animasi tekstur nodus harus tidak disinkronkan per blok peta." + #~ msgid "Whether to allow players to damage and kill each other." #~ msgstr "Apakah pemain boleh melukai dan membunuh satu sama lain." diff --git a/po/it/luanti.po b/po/it/luanti.po index be36b2c9c..901501487 100644 --- a/po/it/luanti.po +++ b/po/it/luanti.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Italian (Minetest)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" "PO-Revision-Date: 2024-01-18 07:31+0000\n" "Last-Translator: Filippo Alfieri \n" "Language-Team: Italian ] [-t]" msgstr "[tutto | ]" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "Esplora" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "Modifica" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "Scegli l'indirizzo" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "Scegli un file" + +#: builtin/common/settings/components.lua +msgid "Set" +msgstr "Seleziona" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(Nessuna descrizione fornita per l'impostazione)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "Rumore 2D" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "Annulla" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "Lacunarità" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "Ottave" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "Scarto" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "Persistenza" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "Salva" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "Ridimensiona" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "Seme" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "Propagazione X" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "Propagazione Y" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "Propagazione Z" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "\"absvalue\"" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "\"defaults\"" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "\"eased\"" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "(The game will need to enable automatic exposure as well)" +msgstr "(Anche il gioco dovrà abilitare le ombre)" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "(The game will need to enable bloom as well)" +msgstr "(Anche il gioco dovrà abilitare le ombre)" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "(Anche il gioco dovrà abilitare le ombre)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "(Usa la lingua di sistema)" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "Accessibilità" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "Chat" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "Canc" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "Controlli" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "Disabilitato" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "Abilitato" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "Generale" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "Movimento" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "Nessun risultato" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default" +msgstr "Ripristina predefinito" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "Ripristina l'impostazione predefinita ($1)" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "Ricerca" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "Mostra impostazioni avanzate" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "Mostra i nomi tecnici" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Touchscreen layout" +msgstr "Touch screen" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "pause_menu" +msgstr "FPS nel menu di pausa" + +#: builtin/common/settings/settingtypes.lua +msgid "Client Mods" +msgstr "Seleziona le Mod" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "Contenuto: Giochi" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "Contenuti: Mod" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "(Anche il gioco dovrà abilitare le ombre)" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "Personalizzato" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "Ombre Dinamiche" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "Alto" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "Basso" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "Medio" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "Molto Alto" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "Molto Basso" + #: builtin/fstk/ui.lua msgid "" msgstr "" @@ -166,7 +409,6 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "Indietro" @@ -203,11 +445,6 @@ msgstr "Mod" msgid "No packages could be retrieved" msgstr "Non è stato possibile recuperare alcun contenuto" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "Nessun risultato" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "Nessun aggiornamento" @@ -253,18 +490,6 @@ msgstr "Già installato" msgid "Base Game:" msgstr "Gioco di Base:" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "Annulla" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -393,6 +618,12 @@ msgstr "Impossibile installare una mod come un $1" msgid "Unable to install a $1 as a texture pack" msgstr "Impossibile installare un $1 come un pacchetto texture" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "(Attivato, errore rilevato)" @@ -457,12 +688,6 @@ msgstr "Nessuna dipendenza facoltativa" msgid "Optional dependencies:" msgstr "Dipendenze facoltative:" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "Salva" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "Mondo:" @@ -613,11 +838,6 @@ msgstr "Fiumi" msgid "Sea level rivers" msgstr "Fiumi a livello del mare" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "Seme" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "Transizione uniforme tra biomi" @@ -764,6 +984,23 @@ msgstr "" "Questo pacchetto mod esplicita un nome fornito in modpack.conf che " "sovrascriverà ogni modifica del nome qui effettuata." +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "Attiva tutto" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "Una nuova versione di $1 è disponibile" @@ -792,7 +1029,7 @@ msgstr "Mai" msgid "Visit website" msgstr "Visita il sito Web" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "Impostazioni" @@ -806,228 +1043,6 @@ msgstr "" "Prova a riabilitare l'elenco dei server pubblici e controlla la tua " "connessione Internet." -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "Esplora" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "Modifica" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "Scegli l'indirizzo" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "Scegli un file" - -#: builtin/mainmenu/settings/components.lua -msgid "Set" -msgstr "Seleziona" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(Nessuna descrizione fornita per l'impostazione)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "Rumore 2D" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "Lacunarità" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "Ottave" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "Scarto" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "Persistenza" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "Ridimensiona" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "Propagazione X" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "Propagazione Y" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "Propagazione Z" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "\"absvalue\"" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "\"defaults\"" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "\"eased\"" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable automatic exposure as well)" -msgstr "(Anche il gioco dovrà abilitare le ombre)" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable bloom as well)" -msgstr "(Anche il gioco dovrà abilitare le ombre)" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "(Anche il gioco dovrà abilitare le ombre)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "(Usa la lingua di sistema)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "Accessibilità" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "Chat" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "Canc" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "Controlli" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "Disabilitato" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "Abilitato" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "Generale" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "Movimento" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default" -msgstr "Ripristina predefinito" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "Ripristina l'impostazione predefinita ($1)" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "Ricerca" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "Mostra impostazioni avanzate" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "Mostra i nomi tecnici" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "Seleziona le Mod" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "Contenuto: Giochi" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "Contenuti: Mod" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "Abilitato" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Shaders are disabled." -msgstr "Aggiornamento della telecamera disabilitato" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "(Anche il gioco dovrà abilitare le ombre)" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "Personalizzato" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "Ombre Dinamiche" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "Alto" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "Basso" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "Medio" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "Molto Alto" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "Molto Basso" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "Informazioni" @@ -1048,10 +1063,6 @@ msgstr "Sviluppatori Principali" msgid "Core Team" msgstr "Squadra Principale" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "Dispositivo Irrlicht:" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "Apri l'Indirizzo dei Dati Utente" @@ -1201,10 +1212,22 @@ msgstr "Gioca" msgid "You need to install a game before you can create a world." msgstr "Devi installare un gioco prima di poter installare un mod" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "Rimuovi preferito" + #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "Indirizzo" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "Client" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "Modalità creativa" @@ -1218,6 +1241,11 @@ msgstr "Ferimento / PvP" msgid "Favorites" msgstr "Preferiti" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "Gioco" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "Server Incompatibili" @@ -1230,10 +1258,28 @@ msgstr "Unisciti al Gioco" msgid "Login" msgstr "Accedi" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Number of mods: $1" +msgstr "Numero di thread emerge" + +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Open server website" +msgstr "Passo dedicato del server" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "Ping" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Public Servers" msgstr "Server Pubblici" @@ -1318,23 +1364,6 @@ msgstr "" "\n" "Controlla debug.txt per i dettagli." -#: src/client/game.cpp -msgid "- Mode: " -msgstr "- Modalità: " - -#: src/client/game.cpp -msgid "- Public: " -msgstr "- Pubblico: " - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "- PvP: " - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "- Nome del Server: " - #: src/client/game.cpp msgid "A serialization error occurred:" msgstr "Si è verificato un errore di serializzazione:" @@ -1344,6 +1373,11 @@ msgstr "Si è verificato un errore di serializzazione:" msgid "Access denied. Reason: %s" msgstr "Accesso negato. Motivo: %s" +#: src/client/game.cpp +#, fuzzy +msgid "All debug info hidden" +msgstr "Info debug mostrate" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "Avanzamento automatico disabilitato" @@ -1364,6 +1398,10 @@ msgstr "I limiti del blocco sono mostrati per il blocco attuale" msgid "Block bounds shown for nearby blocks" msgstr "I limiti del blocco sono mostrati per i blocchi vicini" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "Aggiornamento della telecamera disabilitato" @@ -1377,10 +1415,6 @@ msgstr "Aggiornamento telecamera abilitato" msgid "Can't show block bounds (disabled by game or mod)" msgstr "Impossibile mostrare i limiti del blocco (disabilitato da mod o gioco)" -#: src/client/game.cpp -msgid "Change Password" -msgstr "Cambia la Password" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "Modalità cinematica disattiva" @@ -1409,39 +1443,6 @@ msgstr "Errore di connessione (scaduta?)" msgid "Connection failed for unknown reason" msgstr "Connessione fallita per motivo sconosciuto" -#: src/client/game.cpp -msgid "Continue" -msgstr "Continua" - -#: src/client/game.cpp -#, fuzzy -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" -"Controlli Predefiniti:\n" -"Nessun menu visibile:\n" -"- tocco singolo: attiva pulsante\n" -"- tocco doppio; piazza/utilizza\n" -"- trascina il dito: guarda attorno\n" -"Menu/Inventario visibile:\n" -"- doppio tocco (esterno):\n" -" -->chiudi\n" -"- tocco pila, tocco casella:\n" -" --> sposta pila\n" -"- tocca e trascina, tocco 2° dito\n" -" --> piazza oggetto singolo nella casella\n" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1455,31 +1456,15 @@ msgstr "Creazione del client..." msgid "Creating server..." msgstr "Creazione del server..." -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "Info di debug e grafico profiler nascosti" - #: src/client/game.cpp msgid "Debug info shown" msgstr "Info debug mostrate" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "Info debug, grafico profiler e struttura a fili nascosti" - #: src/client/game.cpp #, c-format msgid "Error creating client: %s" msgstr "Errore di creazione del client: %s" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "Menu Principale" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "Torna al S.O." - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "Modalità rapida disabilitata" @@ -1517,18 +1502,6 @@ msgstr "Nebbia attivata" msgid "Fog enabled by game or mod" msgstr "Ingrandimento attualmente disabilitato dal gioco o da un mod" -#: src/client/game.cpp -msgid "Game info:" -msgstr "Informazioni del gioco:" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "Gioco in pausa" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "Server ospitante" - #: src/client/game.cpp msgid "Item definitions..." msgstr "Definizione degli oggetti..." @@ -1565,14 +1538,6 @@ msgstr "Modalità incorporea abilitata (nota: privilegio 'noclip' mancante)" msgid "Node definitions..." msgstr "Definizione dei nodi..." -#: src/client/game.cpp -msgid "Off" -msgstr "Disattivato" - -#: src/client/game.cpp -msgid "On" -msgstr "Attivato" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "Modalità inclinazione movimento disabilitata" @@ -1585,38 +1550,22 @@ msgstr "Modalità inclinazione movimento abilitata" msgid "Profiler graph shown" msgstr "Grafico profiler visualizzato" -#: src/client/game.cpp -msgid "Remote server" -msgstr "Server remoto" - #: src/client/game.cpp msgid "Resolving address..." msgstr "Risoluzione dell'indirizzo..." -#: src/client/game.cpp -msgid "Respawn" -msgstr "Rinasci" - #: src/client/game.cpp msgid "Shutting down..." msgstr "Uscita dal gioco..." -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "Gioco locale" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "Volume del Suono" - #: src/client/game.cpp msgid "Sound muted" msgstr "Suono disattivato" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "Il sistema audio è disabilitato" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "Il sistema audio non è supportato su questa compilazione" @@ -1694,18 +1643,116 @@ msgstr "Raggio visivo cambiato a %d" msgid "Volume changed to %d%%" msgstr "Volume cambiato a %d%%" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "Struttura a fili visualizzata" -#: src/client/game.cpp -msgid "You died" -msgstr "Sei morto" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "Ingrandimento attualmente disabilitato dal gioco o da un mod" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "- Modalità: " + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "- Pubblico: " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "- PvP: " + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "- Nome del Server: " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "Cambia la Password" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "Continua" + +#: src/client/game_formspec.cpp +#, fuzzy +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" +"Controlli Predefiniti:\n" +"Nessun menu visibile:\n" +"- tocco singolo: attiva pulsante\n" +"- tocco doppio; piazza/utilizza\n" +"- trascina il dito: guarda attorno\n" +"Menu/Inventario visibile:\n" +"- doppio tocco (esterno):\n" +" -->chiudi\n" +"- tocco pila, tocco casella:\n" +" --> sposta pila\n" +"- tocca e trascina, tocco 2° dito\n" +" --> piazza oggetto singolo nella casella\n" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "Menu Principale" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "Torna al S.O." + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "Informazioni del gioco:" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "Gioco in pausa" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "Server ospitante" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "Disattivato" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "Attivato" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "Server remoto" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "Rinasci" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "Volume del Suono" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "Sei morto" + #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" msgstr "Chat attualmente disabilitata dal gioco o da un mod" @@ -2045,8 +2092,9 @@ msgid "Failed to compile the \"%s\" shader." msgstr "Impossibile aprire la pagina web" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." -msgstr "" +#, fuzzy +msgid "GLSL is not supported by the driver" +msgstr "Il sistema audio non è supportato su questa compilazione" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" #: src/content/mod_configuration.cpp @@ -2096,7 +2144,7 @@ msgstr "Avanzam. autom." msgid "Automatic jumping" msgstr "Salto automatico" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "Speciale" @@ -2108,7 +2156,7 @@ msgstr "Indietreggia" msgid "Block bounds" msgstr "Limiti del blocco nascosto" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "Cambia vista" @@ -2132,7 +2180,7 @@ msgstr "Diminuisci volume" msgid "Double tap \"jump\" to toggle fly" msgstr "Doppio \"salta\" per volare" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "Getta via" @@ -2148,11 +2196,11 @@ msgstr "Aumenta raggio" msgid "Inc. volume" msgstr "Aumenta volume" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "Inventario" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "Salta" @@ -2184,7 +2232,7 @@ msgstr "Oggetto successivo" msgid "Prev. item" msgstr "Oggetto precedente" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "Selezione raggio" @@ -2196,7 +2244,7 @@ msgstr "Destra" msgid "Screenshot" msgstr "Screenshot" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "Furtivo" @@ -2204,15 +2252,15 @@ msgstr "Furtivo" msgid "Toggle HUD" msgstr "HUD sì/no" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "Log chat sì/no" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "Corsa sì/no" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "Volo sì/no" @@ -2220,11 +2268,11 @@ msgstr "Volo sì/no" msgid "Toggle fog" msgstr "Nebbia sì/no" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "Minimappa sì/no" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "Incorporeità sì/no" @@ -2232,7 +2280,7 @@ msgstr "Incorporeità sì/no" msgid "Toggle pitchmove" msgstr "Beccheggio sì/no" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "Ingrandimento" @@ -2269,7 +2317,7 @@ msgstr "Vecchia password" msgid "Passwords do not match!" msgstr "Le password non corrispondono!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "Uscita" @@ -2282,16 +2330,47 @@ msgstr "Silenziato" msgid "Sound Volume: %d%%" msgstr "Volume suono: %d%%" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Add button" +msgstr "Pulsante Centrale" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "Fatto!" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Remove" +msgstr "Server remoto" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Joystick" msgstr "ID del joystick" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Toggle debug" msgstr "Nebbia sì/no" @@ -2525,8 +2604,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" "Supporto 3D.\n" "Attualmente supportati:\n" @@ -2592,10 +2670,6 @@ msgstr "Raggio dei blocchi attivi" msgid "Active object send range" msgstr "Raggio di invio degli oggetti attivi" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "Aggiunge particelle quando scavi un nodo." - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2627,6 +2701,17 @@ msgstr "Nome amministratore" msgid "Advanced" msgstr "Avanzate" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +#, fuzzy +msgid "Allow clouds to look 3D instead of flat." +msgstr "Usare l'aspetto 3D per le nuvole invece di quello piatto." + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "" @@ -3036,15 +3121,14 @@ msgstr "Raggio delle nuvole" msgid "Clouds" msgstr "Nuvole" -#: src/settings_translation_file.cpp -#, fuzzy -msgid "Clouds are a client-side effect." -msgstr "Le nuvole sono un effetto sul lato client." - #: src/settings_translation_file.cpp msgid "Clouds in menu" msgstr "Nuvole nel menu" +#: src/settings_translation_file.cpp +msgid "Color depth for post-processing texture" +msgstr "" + #: src/settings_translation_file.cpp msgid "Colored fog" msgstr "Nebbia colorata" @@ -3068,7 +3152,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" "Elenco di valori separato da virgole che si vuole nascondere dal deposito " "dei contenuti.\n" @@ -3243,6 +3327,14 @@ msgstr "Livello del registro di debug" msgid "Debugging" msgstr "Debugging" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "Passo dedicato del server" @@ -3421,18 +3513,10 @@ msgstr "" "I deserti si presentano quando np_biome supera questo valore.\n" "Quando è attivo il parametro 'snowbiomes', viene ignorato." -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "De-sincronizza l'animazione del blocco" - #: src/settings_translation_file.cpp msgid "Developer Options" msgstr "Opzioni per sviluppatori" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "Particelle di scavo" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "Rifiutare le password vuote" @@ -3465,6 +3549,14 @@ msgid "Double-tapping the jump key toggles fly mode." msgstr "" "Premendo due volte il tasto di salto si (dis)attiva la modalità di volo." +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "Scarica le informazioni di debug del generatore della mappa." @@ -3551,9 +3643,10 @@ msgstr "" "simulando il comportamento dell'occhio umano." #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" "Abilità ombre colorate.\n" "Se abilitato nodi traslucidi producono ombre colorate. Questo è costoso." @@ -3648,10 +3741,10 @@ msgstr "" "Per esempio: 0 per nessun ondeggiamento, 1.0 per normale, 2.0 per doppio." #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" "Abilita/Disabilita l'esecuzione di un server IPv6.\n" "Ignorata se si imposta bind_address.\n" @@ -3675,13 +3768,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "Attiva l'animazione degli oggetti dell'inventario." -#: src/settings_translation_file.cpp -#, fuzzy -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "Attiva la cache delle mesh ruotate con facedir." - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -4039,10 +4125,6 @@ msgstr "Scala dell'interfaccia grafica" msgid "GUI scaling filter" msgstr "Filtro di scala dell'interfaccia grafica" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "Filtro di scala txr2img" - #: src/settings_translation_file.cpp msgid "Gamepads" msgstr "Gamepad" @@ -4313,16 +4395,6 @@ msgstr "" "per\n" "scendere e immergersi." -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" -"Se abilitata, la registrazione dell'account sarà separata dall'accesso " -"nell'interfaccia utente.\n" -"Se disabilitata, i nuovi account saranno registrati automaticamente " -"all'accesso." - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -4348,6 +4420,18 @@ msgstr "" "Se abilitata, i nuovi giocatori non possono accedere senza password o " "cambiare la propria con una vuota." +#: src/settings_translation_file.cpp +#, fuzzy +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" +"Se abilitata, la registrazione dell'account sarà separata dall'accesso " +"nell'interfaccia utente.\n" +"Se disabilitata, i nuovi account saranno registrati automaticamente " +"all'accesso." + #: src/settings_translation_file.cpp #, fuzzy msgid "" @@ -4402,8 +4486,8 @@ msgid "" "debug.txt is only moved if this setting is positive." msgstr "" "Se la dimensione del file debug.txt supera il numero di Mb indicati in\n" -"questa impostazione quando viene aperto, il file viene rinominato in debug." -"txt.1,\n" +"questa impostazione quando viene aperto, il file viene rinominato in " +"debug.txt.1,\n" "eliminando un eventuale debug.txt.1 più vecchio.\n" "debug.txt viene rinominato solo se c'è questa impostazione." @@ -4478,10 +4562,6 @@ msgstr "" "Intervallo di salvataggio dei cambiamenti importanti nel mondo, fissato in " "secondi." -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "Intervallo di invio dell'ora del giorno ai client, in secondi." - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "Animazioni degli oggetti dell'inventario" @@ -5222,10 +5302,6 @@ msgstr "" msgid "Maximum users" msgstr "Utenti massimi" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "Cache mesh" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "Messaggio del giorno" @@ -5260,6 +5336,10 @@ msgstr "" msgid "Minimum limit of random number of small caves per mapchunk." msgstr "Limite minimo di piccole grotte casuali per pezzo di mappa." +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "MIP mapping" @@ -5354,9 +5434,10 @@ msgstr "" "- 'floatlands' in v7 (disabilitato per impostazione predefinita)." #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" "Nome del giocatore.\n" @@ -5903,17 +5984,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -6192,16 +6275,6 @@ msgstr "" msgid "Shader path" msgstr "Percorso shader" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "Shader" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "Qualità filtro ombra" @@ -6403,10 +6476,9 @@ msgstr "" #: src/settings_translation_file.cpp #, fuzzy msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" "Diffondi un aggiornamento completo della mappa d'ombra su un certo numero di " "frame.\n" @@ -6794,10 +6866,6 @@ msgstr "" "Ora del giorno in cui è avviato un nuovo mondo, in millesimi di ora " "(0-23999)." -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "Intervallo del tempo di invio" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "Velocità del tempo" @@ -6867,6 +6935,11 @@ msgstr "Liquidi opachi" msgid "Transparency Sorting Distance" msgstr "Distanza di Ordinamento della Trasparenza" +#: src/settings_translation_file.cpp +#, fuzzy +msgid "Transparency Sorting Group by Buffers" +msgstr "Distanza di Ordinamento della Trasparenza" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "Rumore degli alberi" @@ -6926,12 +6999,16 @@ msgid "Undersampling" msgstr "Sotto-campionamento" #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Undersampling is similar to using a lower screen resolution, but it applies\n" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" "Il sotto-campionamento è analogo all'uso di una risoluzione schermo " "inferiore,\n" @@ -6961,17 +7038,15 @@ msgstr "Livello Y superiore dei sotterranei." msgid "Upper Y limit of floatlands." msgstr "Livello Y superiore delle terre fluttuanti." -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "Usare l'aspetto 3D per le nuvole invece di quello piatto." - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "Usare un'animazione con le nuvole per lo sfondo del menu principale." #: src/settings_translation_file.cpp #, fuzzy -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" "Usare il filtraggio anisotropico quando si guardano le textures da " "un'angolazione." @@ -7253,25 +7328,14 @@ msgstr "" "nell'inventario)." #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" -"Quando gui_scaling_filter_txr2img è Vero, copia quelle immagini\n" -"dall'hardware al software per il ridimensionamento. Quando è Falso,\n" -"ripiega sul vecchio metodo di ridimensionamento, per i driver video che\n" -"non supportano correttamente lo scaricamento delle textures dall'hardware." - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -7299,12 +7363,6 @@ msgstr "" "predefinita.\n" "Le mod possono comunque impostare uno sfondo." -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" -"Se le animazioni delle texture dei nodi dovrebbero essere asincrone per " -"blocco mappa." - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -7331,9 +7389,9 @@ msgid "Whether to fog out the end of the visible area." msgstr "Se annebbiare o meno la fine dell'area visibile." #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -7535,6 +7593,9 @@ msgstr "Limite parallelo cURL" #~ "Si noti che il campo indirizzo nel menu principale sovrascrive questa " #~ "impostazione." +#~ msgid "Adds particles when digging a node." +#~ msgstr "Aggiunge particelle quando scavi un nodo." + #~ msgid "" #~ "Adjust dpi configuration to your screen (non X11/Android only) e.g. for " #~ "4k screens." @@ -7681,6 +7742,10 @@ msgstr "Limite parallelo cURL" #~ msgid "Clean transparent textures" #~ msgstr "Pulizia delle textures trasparenti" +#, fuzzy +#~ msgid "Clouds are a client-side effect." +#~ msgstr "Le nuvole sono un effetto sul lato client." + #~ msgid "Command key" #~ msgstr "Tasto comando" @@ -7776,9 +7841,15 @@ msgstr "Limite parallelo cURL" #~ msgid "Darkness sharpness" #~ msgstr "Nitidezza dell'oscurità" +#~ msgid "Debug info and profiler graph hidden" +#~ msgstr "Info di debug e grafico profiler nascosti" + #~ msgid "Debug info toggle key" #~ msgstr "Tasto di (dis)attivazione delle informazioni di debug" +#~ msgid "Debug info, profiler graph, and wireframe hidden" +#~ msgstr "Info debug, grafico profiler e struttura a fili nascosti" + #~ msgid "Dec. volume key" #~ msgstr "Tasto dim. volume" @@ -7841,9 +7912,15 @@ msgstr "Limite parallelo cURL" #~ "posizionare le caverne di liquido.\n" #~ "Limite verticale della lava nelle caverne grandi." +#~ msgid "Desynchronize block animation" +#~ msgstr "De-sincronizza l'animazione del blocco" + #~ msgid "Dig key" #~ msgstr "Tasto scava" +#~ msgid "Digging particles" +#~ msgstr "Particelle di scavo" + #~ msgid "Disable anticheat" #~ msgstr "Disattiva anti-trucchi" @@ -7868,6 +7945,10 @@ msgstr "Limite parallelo cURL" #~ msgid "Dynamic shadows:" #~ msgstr "Ombre dinamiche:" +#, fuzzy +#~ msgid "Enable" +#~ msgstr "Abilitato" + #~ msgid "Enable VBO" #~ msgstr "Abilitare i VBO" @@ -7901,6 +7982,12 @@ msgstr "Limite parallelo cURL" #~ "con i pacchetti texture, o devono essere generate automaticamente.\n" #~ "Necessita l'attivazione degli shader." +#, fuzzy +#~ msgid "" +#~ "Enables caching of facedir rotated meshes.\n" +#~ "This is only effective with shaders disabled." +#~ msgstr "Attiva la cache delle mesh ruotate con facedir." + #~ msgid "Enables filmic tone mapping" #~ msgstr "Attiva il filmic tone mapping" @@ -7944,9 +8031,6 @@ msgstr "Limite parallelo cURL" #~ "Opzione sperimentale, potrebbe causare spazi visibili tra i blocchi\n" #~ "quando impostata su numeri maggiori di 0." -#~ msgid "FPS in pause menu" -#~ msgstr "FPS nel menu di pausa" - #~ msgid "FSAA" #~ msgstr "FSAA" @@ -8033,8 +8117,8 @@ msgstr "Limite parallelo cURL" #~ msgid "Full screen BPP" #~ msgstr "BPP dello schermo intero" -#~ msgid "Game" -#~ msgstr "Gioco" +#~ msgid "GUI scaling filter txr2img" +#~ msgstr "Filtro di scala txr2img" #~ msgid "Gamma" #~ msgstr "Gamma" @@ -8198,667 +8282,673 @@ msgstr "Limite parallelo cURL" #~ msgid "Instrumentation" #~ msgstr "Predisposizione" +#~ msgid "Interval of sending time of day to clients, stated in seconds." +#~ msgstr "Intervallo di invio dell'ora del giorno ai client, in secondi." + #~ msgid "Invalid gamespec." #~ msgstr "Requisiti del gioco non validi." #~ msgid "Inventory key" #~ msgstr "Tasto inventario" +#~ msgid "Irrlicht device:" +#~ msgstr "Dispositivo Irrlicht:" + #~ msgid "Jump key" #~ msgstr "Tasto salta" #~ msgid "" #~ "Key for decreasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per diminuire il raggio visivo.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for decreasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per abbassare il volume.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for digging.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scavare.\n" -#~ "Vedi http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vedi http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for dropping the currently selected item.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per buttare l'oggetto attualmente selezionato.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per aumentare il raggio visivo.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per alzare il volume.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for jumping.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per saltare.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving fast in fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per correre in modalità veloce.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player backward.\n" #~ "Will also disable autoforward, when active.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per muovere indietro il giocatore.\n" #~ "Disabiliterà anche l'avanzamento automatico, quando attivo.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player forward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per muovere in avanti il giocatore.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player left.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per muovere a sinistra il giocatore.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player right.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per muovere a destra il giocatore.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for muting the game.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per silenziare il gioco.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per aprire la finestra di chat per inserire comandi.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type local commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per aprire la finestra di chat per inserire comandi locali.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per aprire la finestra di chat.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the inventory.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per aprire l'inventario.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for placing.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per piazzare.\n" -#~ "Vedi http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Vedi http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 11th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scegliere l'11° riquadro della barra di scelta rapida.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 12th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scegliere il 12° riquadro della barra di scelta rapida.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 13th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scegliere il 13° riquadro della barra di scelta rapida.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 14th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scegliere il 14° riquadro della barra di scelta rapida.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 15th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scegliere il 15° riquadro della barra di scelta rapida.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 16th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scegliere il 16° riquadro della barra di scelta rapida.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 17th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scegliere il 17° riquadro della barra di scelta rapida.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 18th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scegliere il 18° riquadro della barra di scelta rapida.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 19th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scegliere il 19° riquadro della barra di scelta rapida.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 20th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scegliere il 20° riquadro della barra di scelta rapida.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 21st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scegliere il 21° riquadro della barra di scelta rapida.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 22nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scegliere il 22° riquadro della barra di scelta rapida.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 23rd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scegliere il 23° riquadro della barra di scelta rapida.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 24th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scegliere il 24° riquadro della barra di scelta rapida.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 25th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scegliere il 25° riquadro della barra di scelta rapida.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 26th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scegliere il 26° riquadro della barra di scelta rapida.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 27th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scegliere il 27° riquadro della barra di scelta rapida.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 28th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scegliere il 28° riquadro della barra di scelta rapida.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 29th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scegliere il 29° riquadro della barra di scelta rapida.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 30th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scegliere il 30° riquadro della barra di scelta rapida.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 31st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scegliere il 31° riquadro della barra di scelta rapida.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 32nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scegliere il 32° riquadro della barra di scelta rapida.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the eighth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scegliere l'ottavo riquadro della barra di scelta rapida.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the fifth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scegliere il quinto riquadro della barra di scelta rapida.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the first hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scegliere il primo riquadro della barra di scelta rapida.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the fourth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scegliere il quarto riquadro della barra di scelta rapida.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the next item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scegliere l'oggetto successivo nella barra di scelta rapida.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the ninth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scegliere il nono riquadro della barra di scelta rapida.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the previous item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scegliere l'oggetto precedente nella barra di scelta rapida.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the second hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scegliere il secondo riquadro della barra di scelta rapida.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the seventh hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scegliere il settimo riquadro della barra di scelta rapida.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the sixth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scegliere il sesto riquadro della barra di scelta rapida.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the tenth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scegliere il decimo riquadro della barra di scelta rapida.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the third hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scegliere il terzo riquadro della barra di scelta rapida.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for sneaking.\n" #~ "Also used for climbing down and descending in water if aux1_descends is " #~ "disabled.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per muoversi furtivamente.\n" #~ "Usato anche per scendere, e per immergersi in acqua se aux1_descends è " #~ "disattivato.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for switching between first- and third-person camera.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per passare tra la telecamera in prima o terza persona.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for taking screenshots.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scattare gli screenshot.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling autoforward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scegliere l'avanzamento automatico.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling cinematic mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scegliere la modalità cinematic.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling display of minimap.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scegliere la visualizzazione della minimappa.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scegliere la modalità veloce.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling flying.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scegliere il volo.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling noclip mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scegliere la modalità incorporea.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling pitch move mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scegliere la modalità di inclinazione del movimento. \n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the camera update. Only used for development\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto di scelta dell'aggiornamento della telecamera. Usato solo per lo " #~ "sviluppo.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of chat.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scegliere la visualizzazione della chat.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of debug info.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scegliere la visualizzazione delle informazioni di debug.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of fog.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per attivare/disattivare la visualizzazione della nebbia.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the HUD.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per attivare/disattivare la visualizzazione dell'HUD.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the large chat console.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scegliere la visualizzazione della console grande di chat.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the profiler. Used for development.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scegliere la visualizzazione del generatore di profili. Usato " #~ "per lo sviluppo.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling unlimited view range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per scegliere il raggio visivo illimitato.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key to use view zoom when possible.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tasto per usare l'ingrandimento della visuale quando possibile.\n" -#~ "Si veda http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Si veda http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Keybindings. (If this menu screws up, remove stuff from minetest.conf)" #~ msgstr "" -#~ "Associamenti tasti. (Se questo menu si incasina, togli roba da minetest." -#~ "conf)" +#~ "Associamenti tasti. (Se questo menu si incasina, togli roba da " +#~ "minetest.conf)" #~ msgid "Large chat console key" #~ msgstr "Tasto console grande di chat" @@ -8929,6 +9019,9 @@ msgstr "Limite parallelo cURL" #~ msgid "Menus" #~ msgstr "Menu" +#~ msgid "Mesh cache" +#~ msgstr "Cache mesh" + #~ msgid "Minimap" #~ msgstr "Minimappa" @@ -9141,6 +9234,9 @@ msgstr "Limite parallelo cURL" #~ msgid "Server / Singleplayer" #~ msgstr "Server / Gioco locale" +#~ msgid "Shaders" +#~ msgstr "Shader" + #~ msgid "Shaders (experimental)" #~ msgstr "Shaders (sperimentali)" @@ -9158,6 +9254,10 @@ msgstr "Limite parallelo cURL" #~ "le prestazioni su alcune schede video.\n" #~ "Ciò funziona solo col supporto video OpenGL." +#, fuzzy +#~ msgid "Shaders are disabled." +#~ msgstr "Aggiornamento della telecamera disabilitato" + #~ msgid "Shadow limit" #~ msgstr "Limite dell'ombra" @@ -9191,6 +9291,9 @@ msgstr "Limite parallelo cURL" #~ msgid "Smooths rotation of camera. 0 to disable." #~ msgstr "Rende fluida la rotazione della telecamera. 0 per disattivare." +#~ msgid "Sound system is disabled" +#~ msgstr "Il sistema audio è disabilitato" + #~ msgid "Special" #~ msgstr "Speciale" @@ -9240,6 +9343,9 @@ msgstr "Limite parallelo cURL" #~ msgid "This font will be used for certain languages." #~ msgstr "Questo carattere sarà usato per certe Lingue." +#~ msgid "Time send interval" +#~ msgstr "Intervallo del tempo di invio" + #~ msgid "To enable shaders the OpenGL driver needs to be used." #~ msgstr "Per abilitare gli shader si deve usare il driver OpenGL." @@ -9367,6 +9473,17 @@ msgstr "Limite parallelo cURL" #~ msgid "Waving water" #~ msgstr "Acqua ondeggiante" +#~ msgid "" +#~ "When gui_scaling_filter_txr2img is true, copy those images\n" +#~ "from hardware to software for scaling. When false, fall back\n" +#~ "to the old scaling method, for video drivers that don't\n" +#~ "properly support downloading textures back from hardware." +#~ msgstr "" +#~ "Quando gui_scaling_filter_txr2img è Vero, copia quelle immagini\n" +#~ "dall'hardware al software per il ridimensionamento. Quando è Falso,\n" +#~ "ripiega sul vecchio metodo di ridimensionamento, per i driver video che\n" +#~ "non supportano correttamente lo scaricamento delle textures dall'hardware." + #~ msgid "" #~ "Whether FreeType fonts are used, requires FreeType support to be compiled " #~ "in.\n" @@ -9379,6 +9496,12 @@ msgstr "Limite parallelo cURL" #~ msgid "Whether dungeons occasionally project from the terrain." #~ msgstr "Se i sotterranei saltuariamente si protendono dal terreno." +#~ msgid "" +#~ "Whether node texture animations should be desynchronized per mapblock." +#~ msgstr "" +#~ "Se le animazioni delle texture dei nodi dovrebbero essere asincrone per " +#~ "blocco mappa." + #~ msgid "Whether to allow players to damage and kill each other." #~ msgstr "Se permettere ai giocatori di ferirsi e uccidersi a vicenda." diff --git a/po/ja/luanti.po b/po/ja/luanti.po index 2146c2304..a3adf6c61 100644 --- a/po/ja/luanti.po +++ b/po/ja/luanti.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Japanese (Minetest)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" "PO-Revision-Date: 2024-11-04 01:00+0000\n" "Last-Translator: BreadW \n" "Language-Team: Japanese ] [-t]" msgstr "[all | ] [-t]" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "参照" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "編集" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "ディレクトリの選択" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "ファイルの選択" + +#: builtin/common/settings/components.lua +msgid "Set" +msgstr "適用" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(設定の説明はありません)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "2Dノイズ" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "キャンセル" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "空隙性" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "オクターブ" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "オフセット" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "永続性" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "保存" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "スケール" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "Seed値" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "Xの広がり" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "Yの広がり" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "Zの広がり" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "絶対値" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "既定値" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "緩和する" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "(ゲームも自動露出を有効にする必要があります)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "(ゲームもブルームを有効にする必要があります)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "(ゲームもボリュームライティングを有効にする必要があります)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "(システム言語を使用)" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "アクセシビリティ" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "自動" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "チャット" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "クリア" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "キー割り当て" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "無効" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "有効" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "一般" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "動き" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "見つかりませんでした" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default" +msgstr "初期状態に戻す" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "初期値に戻す ($1)" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "検索" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "高度な設定を表示" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "技術名称を表示" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Touchscreen layout" +msgstr "タッチスクリーン" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "pause_menu" +msgstr "ポーズメニューでのFPS" + +#: builtin/common/settings/settingtypes.lua +msgid "Client Mods" +msgstr "クライアントMOD" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "コンテンツ: ゲーム" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "コンテンツ: MOD" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "(ゲームは影を有効にする必要があります)" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "指定" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "動的な影" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "強め" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "弱め" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "普通" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "とても強く" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "とても弱く" + #: builtin/fstk/ui.lua msgid "" msgstr "<利用できません>" @@ -163,7 +403,6 @@ msgstr "すべて" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "戻る" @@ -199,11 +438,6 @@ msgstr "MOD" msgid "No packages could be retrieved" msgstr "パッケージを取得できませんでした" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "見つかりませんでした" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "更新なし" @@ -248,18 +482,6 @@ msgstr "インストール済み" msgid "Base Game:" msgstr "基盤ゲーム:" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "キャンセル" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -381,6 +603,12 @@ msgstr "$1 を $2 としてインストールできません" msgid "Unable to install a $1 as a texture pack" msgstr "$1をテクスチャパックとしてインストールすることができません" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "(有効、エラーあり)" @@ -445,12 +673,6 @@ msgstr "任意依存MODなし" msgid "Optional dependencies:" msgstr "任意依存MOD:" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "保存" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "ワールド:" @@ -603,11 +825,6 @@ msgstr "川" msgid "Sea level rivers" msgstr "海面の高さの川" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "Seed値" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "バイオーム間の滑らかな移行" @@ -715,9 +932,8 @@ msgid "" "For a long time, Luanti shipped with a default game called \"Minetest " "Game\". Since version 5.8.0, Luanti ships without a default game." msgstr "" -"長い間、Luantiは「Minetest " -"Game」と呼ばれるデフォルトのゲームとともに提供してきました。バージョン 5.8.0 " -"以降のLuantiはデフォルトゲームなしで提供します。" +"長い間、Luantiは「Minetest Game」と呼ばれるデフォルトのゲームとともに提供して" +"きました。バージョン 5.8.0 以降のLuantiはデフォルトゲームなしで提供します。" #: builtin/mainmenu/dlg_reinstall_mtg.lua msgid "" @@ -751,6 +967,23 @@ msgstr "" "このMODパックは、modpack.conf に明示的な名前が付けられており、ここでの名前変" "更をすべて上書きします。" +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "すべて有効化" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "新しいバージョン $1 が利用可能" @@ -779,7 +1012,7 @@ msgstr "しない" msgid "Visit website" msgstr "ウェブサイトを見る" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "設定" @@ -791,223 +1024,6 @@ msgstr "公開サーバー一覧は無効" msgid "Try reenabling public serverlist and check your internet connection." msgstr "インターネット接続を確認し、公開サーバー一覧を再有効化してください。" -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "参照" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "編集" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "ディレクトリの選択" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "ファイルの選択" - -#: builtin/mainmenu/settings/components.lua -msgid "Set" -msgstr "適用" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(設定の説明はありません)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "2Dノイズ" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "空隙性" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "オクターブ" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "オフセット" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "永続性" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "スケール" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "Xの広がり" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "Yの広がり" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "Zの広がり" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "絶対値" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "既定値" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "緩和する" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "(ゲームも自動露出を有効にする必要があります)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "(ゲームもブルームを有効にする必要があります)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "(ゲームもボリュームライティングを有効にする必要があります)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "(システム言語を使用)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "アクセシビリティ" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "自動" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "チャット" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "クリア" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "キー割り当て" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "無効" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "有効" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "一般" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "動き" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default" -msgstr "初期状態に戻す" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "初期値に戻す ($1)" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "検索" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "高度な設定を表示" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "技術名称を表示" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "クライアントMOD" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "コンテンツ: ゲーム" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "コンテンツ: MOD" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "Enable" -msgstr "有効" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "Shaders are disabled." -msgstr "シェーダーは無効です。" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "推奨されている設定ではありません。" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "(ゲームは影を有効にする必要があります)" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "指定" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "動的な影" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "強め" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "弱め" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "普通" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "とても強く" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "とても弱く" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "私たちについて" @@ -1028,10 +1044,6 @@ msgstr "開発者" msgid "Core Team" msgstr "コアチーム" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "Irrlicht デバイス:" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "ディレクトリを開く" @@ -1140,7 +1152,8 @@ msgstr "Luantiはデフォルトではゲームが付属していません。" msgid "" "Luanti is a game-creation platform that allows you to play many different " "games." -msgstr "Luantiは、多くの異なるゲームを遊ぶことができるゲーム制作プラットフォームです." +msgstr "" +"Luantiは、多くの異なるゲームを遊ぶことができるゲーム制作プラットフォームです." #: builtin/mainmenu/tab_local.lua msgid "New" @@ -1178,10 +1191,22 @@ msgstr "ゲームスタート" msgid "You need to install a game before you can create a world." msgstr "ワールドを作る前に、ゲームをインストールする必要があります。" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "お気に入りを削除" + #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "アドレス" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "クライアント" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "クリエイティブモード" @@ -1195,6 +1220,11 @@ msgstr "ダメージ / PvP" msgid "Favorites" msgstr "お気に入り" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "ゲーム" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "互換性のないサーバ" @@ -1207,10 +1237,28 @@ msgstr "ゲームに参加" msgid "Login" msgstr "ログイン" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Number of mods: $1" +msgstr "出現するスレッド数" + +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Open server website" +msgstr "専用サーバーステップ" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "応答速度" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Public Servers" msgstr "公開サーバー" @@ -1295,23 +1343,6 @@ msgstr "" "\n" "詳細はdebug.txtを確認してください。" -#: src/client/game.cpp -msgid "- Mode: " -msgstr "- モード: " - -#: src/client/game.cpp -msgid "- Public: " -msgstr "- 公開サーバー: " - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "- PvP: " - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "- サーバー名: " - #: src/client/game.cpp msgid "A serialization error occurred:" msgstr "シリアライズエラーが発生しました:" @@ -1321,6 +1352,11 @@ msgstr "シリアライズエラーが発生しました:" msgid "Access denied. Reason: %s" msgstr "アクセスが拒否されました。理由: %s" +#: src/client/game.cpp +#, fuzzy +msgid "All debug info hidden" +msgstr "デバッグ情報 表示" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "自動前進 無効" @@ -1341,6 +1377,10 @@ msgstr "現在のブロックにブロック境界を表示" msgid "Block bounds shown for nearby blocks" msgstr "近くのブロックにブロック境界を表示" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "カメラ更新 無効" @@ -1353,10 +1393,6 @@ msgstr "カメラ更新 有効" msgid "Can't show block bounds (disabled by game or mod)" msgstr "ブロック境界線を表示できない (ゲームやMODで無効化されている)" -#: src/client/game.cpp -msgid "Change Password" -msgstr "パスワード変更" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "シネマティックモード 無効" @@ -1385,38 +1421,6 @@ msgstr "接続エラー (タイムアウト?)" msgid "Connection failed for unknown reason" msgstr "未知の理由で接続に失敗しました" -#: src/client/game.cpp -msgid "Continue" -msgstr "再開" - -#: src/client/game.cpp -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" -"操作方法:\n" -"メニューなし:\n" -"- スライド: 見回す\n" -"- タップ: 置く/パンチ/使う(基本)\n" -"- ロングタップ: 掘る/使う(基本)\n" -"メニュー/インベントリを開く:\n" -"- ダブルタップ (メニューの外):\n" -" --> 閉じる\n" -"- アイテムをタッチし、スロットをタッチ:\n" -" --> アイテムを移動\n" -"- タッチしてドラッグし、二本目の指でタップ:\n" -" --> スロットにアイテムを1つ置く\n" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1430,31 +1434,15 @@ msgstr "クライアントを作成中..." msgid "Creating server..." msgstr "サーバーを作成中..." -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "デバッグ情報、観測記録グラフ 非表示" - #: src/client/game.cpp msgid "Debug info shown" msgstr "デバッグ情報 表示" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "デバッグ情報、観測記録グラフ、ワイヤーフレーム 非表示" - #: src/client/game.cpp #, c-format msgid "Error creating client: %s" msgstr "クライアント作成中にエラー: %s" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "メインメニュー" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "終了" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "高速移動モード 無効" @@ -1491,18 +1479,6 @@ msgstr "霧 有効" msgid "Fog enabled by game or mod" msgstr "霧はゲームやMODによって有効化されている" -#: src/client/game.cpp -msgid "Game info:" -msgstr "ゲーム情報:" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "ポーズメニュー" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "ホスティングサーバー" - #: src/client/game.cpp msgid "Item definitions..." msgstr "アイテムを定義中..." @@ -1539,14 +1515,6 @@ msgstr "すり抜けモード有効化 (メモ: 'noclip' 特権がありませ msgid "Node definitions..." msgstr "ノードを定義中..." -#: src/client/game.cpp -msgid "Off" -msgstr "オフ" - -#: src/client/game.cpp -msgid "On" -msgstr "オン" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "ピッチ移動モード 無効" @@ -1559,38 +1527,22 @@ msgstr "ピッチ移動モード 有効" msgid "Profiler graph shown" msgstr "観測記録グラフ 表示" -#: src/client/game.cpp -msgid "Remote server" -msgstr "リモートサーバー" - #: src/client/game.cpp msgid "Resolving address..." msgstr "アドレスを解決中..." -#: src/client/game.cpp -msgid "Respawn" -msgstr "リスポーン" - #: src/client/game.cpp msgid "Shutting down..." msgstr "終了中..." -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "シングルプレイヤー" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "音量" - #: src/client/game.cpp msgid "Sound muted" msgstr "消音" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "サウンドシステムは無効" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "このビルドではサウンド システムがサポートされていない" @@ -1662,18 +1614,116 @@ msgstr "視野を %d に変更、ゲームやMODで %d までに制限されて msgid "Volume changed to %d%%" msgstr "音量を %d%% に変更" +#: src/client/game.cpp +#, fuzzy +msgid "Wireframe not supported by video driver" +msgstr "シェーダーは有効ですが、このドライバはGLSLをサポートしていません。" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "ワイヤーフレーム 表示" -#: src/client/game.cpp -msgid "You died" -msgstr "死んでしまった" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "ズームはゲームやMODによって無効化されている" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "- モード: " + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "- 公開サーバー: " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "- PvP: " + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "- サーバー名: " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "パスワード変更" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "再開" + +#: src/client/game_formspec.cpp +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" +"操作方法:\n" +"メニューなし:\n" +"- スライド: 見回す\n" +"- タップ: 置く/パンチ/使う(基本)\n" +"- ロングタップ: 掘る/使う(基本)\n" +"メニュー/インベントリを開く:\n" +"- ダブルタップ (メニューの外):\n" +" --> 閉じる\n" +"- アイテムをタッチし、スロットをタッチ:\n" +" --> アイテムを移動\n" +"- タッチしてドラッグし、二本目の指でタップ:\n" +" --> スロットにアイテムを1つ置く\n" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "メインメニュー" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "終了" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "ゲーム情報:" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "ポーズメニュー" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "ホスティングサーバー" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "オフ" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "オン" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "リモートサーバー" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "リスポーン" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "音量" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "死んでしまった" + #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" msgstr "チャットはゲームやMODによって無効化されている" @@ -2000,7 +2050,8 @@ msgid "Failed to compile the \"%s\" shader." msgstr "「%s」シェーダーをコンパイルできませんでした。" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." +#, fuzzy +msgid "GLSL is not supported by the driver" msgstr "シェーダーは有効ですが、このドライバはGLSLをサポートしていません。" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" @@ -2052,7 +2103,7 @@ msgstr "自動前進" msgid "Automatic jumping" msgstr "自動ジャンプ" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "Aux1" @@ -2064,7 +2115,7 @@ msgstr "後退" msgid "Block bounds" msgstr "ブロック境界線表示切替" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "視点変更" @@ -2088,7 +2139,7 @@ msgstr "音量を下げる" msgid "Double tap \"jump\" to toggle fly" msgstr "「ジャンプ」2回で飛行モード切替" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "落とす" @@ -2104,11 +2155,11 @@ msgstr "視野を拡大" msgid "Inc. volume" msgstr "音量を上げる" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "インベントリ" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "ジャンプ" @@ -2140,7 +2191,7 @@ msgstr "次のアイテム" msgid "Prev. item" msgstr "前のアイテム" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "視野の選択" @@ -2152,7 +2203,7 @@ msgstr "右移動" msgid "Screenshot" msgstr "スクリーンショット" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "スニーク" @@ -2160,15 +2211,15 @@ msgstr "スニーク" msgid "Toggle HUD" msgstr "HUD表示切替" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "チャット表示切替" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "高速移動モード切替" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "飛行モード切替" @@ -2176,11 +2227,11 @@ msgstr "飛行モード切替" msgid "Toggle fog" msgstr "霧表示切替" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "ミニマップ表示切替" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "すり抜けモード切替" @@ -2188,7 +2239,7 @@ msgstr "すり抜けモード切替" msgid "Toggle pitchmove" msgstr "ピッチ移動モード切替" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "ズーム" @@ -2224,7 +2275,7 @@ msgstr "古いパスワード" msgid "Passwords do not match!" msgstr "パスワードが一致しません!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "閉じる" @@ -2237,15 +2288,46 @@ msgstr "消音" msgid "Sound Volume: %d%%" msgstr "音量: %d%%" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Add button" +msgstr "中ボタン" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "完了!" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Remove" +msgstr "リモートサーバー" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp msgid "Joystick" msgstr "ジョイスティック" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "オーバーフローメニュー" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Toggle debug" msgstr "デバッグ切替" @@ -2253,8 +2335,9 @@ msgstr "デバッグ切替" msgid "" "Another client is connected with this name. If your client closed " "unexpectedly, try again in a minute." -msgstr "別のクライアントがこの名前で接続されています。 " -"クライアントが予期せず終了した場合はもう一度お試しください。" +msgstr "" +"別のクライアントがこの名前で接続されています。 クライアントが予期せず終了した" +"場合はもう一度お試しください。" #: src/network/clientpackethandler.cpp msgid "Empty passwords are disallowed. Set a password and try again." @@ -2279,7 +2362,8 @@ msgstr "ja" #: src/network/clientpackethandler.cpp msgid "" "Name is not registered. To create an account on this server, click 'Register'" -msgstr "名前が登録されていません。このサーバーにアカウントを作成するには「登録」をク" +msgstr "" +"名前が登録されていません。このサーバーにアカウントを作成するには「登録」をク" "リック" #: src/network/clientpackethandler.cpp @@ -2305,7 +2389,8 @@ msgstr "サーバーで内部エラーが発生しました。 接続が切断 #: src/network/clientpackethandler.cpp msgid "The server is running in singleplayer mode. You cannot connect." -msgstr "サーバーはシングルプレイヤーモードで実行されています。 接続できません。" +msgstr "" +"サーバーはシングルプレイヤーモードで実行されています。 接続できません。" #: src/network/clientpackethandler.cpp msgid "Too many users" @@ -2319,8 +2404,9 @@ msgstr "未知の切断理由です。" msgid "" "Your client sent something the server didn't expect. Try reconnecting or " "updating your client." -msgstr "クライアントはサーバーが予期しないものを送信しました。 " -"再接続するか、クライアントを更新してください。" +msgstr "" +"クライアントはサーバーが予期しないものを送信しました。 再接続するか、クライ" +"アントを更新してください。" #: src/network/clientpackethandler.cpp msgid "" @@ -2457,6 +2543,7 @@ msgid "3D noise that determines number of dungeons per mapchunk." msgstr "マップチャンクごとのダンジョンの数を決定する3Dノイズ。" #: src/settings_translation_file.cpp +#, fuzzy msgid "" "3D support.\n" "Currently supported:\n" @@ -2465,8 +2552,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" "3Dサポート。\n" "現在のサポート:\n" @@ -2530,10 +2616,6 @@ msgstr "アクティブなブロックの範囲" msgid "Active object send range" msgstr "アクティブなオブジェクトの送信範囲" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "ノード掘削時にパーティクルを追加します。" - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2562,6 +2644,17 @@ msgstr "管理者名" msgid "Advanced" msgstr "詳細" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +#, fuzzy +msgid "Allow clouds to look 3D instead of flat." +msgstr "平らではなく立体な雲を使用します。" + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "液体が半透明になることを可能にします。" @@ -2963,14 +3056,14 @@ msgstr "雲の半径" msgid "Clouds" msgstr "雲" -#: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." -msgstr "雲はクライアント側の効果です。" - #: src/settings_translation_file.cpp msgid "Clouds in menu" msgstr "メニューに雲" +#: src/settings_translation_file.cpp +msgid "Color depth for post-processing texture" +msgstr "" + #: src/settings_translation_file.cpp msgid "Colored fog" msgstr "色つきの霧" @@ -2988,6 +3081,7 @@ msgstr "" "テストのために有用です。 詳細は al_extensions.[h,cpp] を参照してください。" #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Comma-separated list of flags to hide in the content repository.\n" "\"nonfree\" can be used to hide packages which do not qualify as 'free " @@ -2995,7 +3089,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" "コンテンツリポジトリで非表示にするフラグのカンマ区切りリストです。\n" "『nonfree』を使用すると、フリーソフトウェア財団によって定義されている\n" @@ -3161,6 +3255,14 @@ msgstr "デバッグログのレベル" msgid "Debugging" msgstr "デバッグ" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "専用サーバーステップ" @@ -3217,15 +3319,15 @@ msgid "" "strict_protocol_version_checking will effectively override this." msgstr "" "接続を許可する最も古いクライアントを定義します。\n" -"古いクライアントは、" -"新しいサーバーに接続するときにクラッシュしないという意味では\n" +"古いクライアントは、新しいサーバーに接続するときにクラッシュしないという意味" +"では\n" "互換性がありますが、期待するすべての新機能をサポートしていない可能性がありま" "す。\n" -"これにより、strict_protocol_version_checking " -"よりきめ細かい制御が可能になります。\n" +"これにより、strict_protocol_version_checking よりきめ細かい制御が可能になりま" +"す。\n" "Luantiは独自の内部最小値を強制しますが、\n" -"strict_protocol_version_checking " -"を有効にすると、実質的にこれが上書きされます。" +"strict_protocol_version_checking を有効にすると、実質的にこれが上書きされま" +"す。" #: src/settings_translation_file.cpp msgid "Defines areas where trees have apples." @@ -3335,18 +3437,10 @@ msgstr "" "砂漠は np_biome がこの値を超えたときに出現します。\n" "'snowbiomes' フラグを有効にすると、これは無視されます。" -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "ブロックのアニメーションの非同期化" - #: src/settings_translation_file.cpp msgid "Developer Options" msgstr "開発者向けオプション" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "掘削時パーティクル" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "空のパスワードを許可しない" @@ -3378,6 +3472,14 @@ msgstr "「ジャンプ」キー二回押しで飛行モード" msgid "Double-tapping the jump key toggles fly mode." msgstr "ジャンプキー2回押しで飛行モードへ切り替えます。" +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "マップジェネレータのデバッグ情報を出力します。" @@ -3460,9 +3562,10 @@ msgstr "" "人間の目の振る舞いをシミュレートします。" #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" "色つきの影を有効にします。\n" "有効にすると半透明ノードでは色つきの影を落とします。これは負荷が大きいです。" @@ -3531,8 +3634,8 @@ msgid "" "textures)\n" "when connecting to the server." msgstr "" -"リモートメディアサーバーの使用を有効にします " -"(サーバーによって提供されている場合)。\n" +"リモートメディアサーバーの使用を有効にします (サーバーによって提供されている" +"場合)。\n" "リモートサーバはサーバーに接続するときにメディア (例えば、テクスチャ) を\n" "ダウンロードするための非常に高速な方法を提供します。" @@ -3545,10 +3648,10 @@ msgstr "" "例: 0 揺れなし; 1.0 標準の揺れ; 2.0 標準の倍の揺れ。" #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" "IPv6サーバーの実行を有効/無効にします。\n" "bind_address が設定されている場合は無視されます。\n" @@ -3570,14 +3673,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "インベントリのアイテムのアニメーションを有効にします。" -#: src/settings_translation_file.cpp -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "" -"facesir回転メッシュのキャッシュを有効にします。\n" -"これはシェーダーが無効になっている場合にのみ有効です。" - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "OpenGL ドライバでデバッグとエラーチェックを有効にします。" @@ -3918,10 +4013,6 @@ msgstr "GUIの拡大縮小" msgid "GUI scaling filter" msgstr "GUI拡大縮小フィルタ" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "GUI拡大縮小フィルタ txr2img" - #: src/settings_translation_file.cpp msgid "Gamepads" msgstr "ゲームパッド" @@ -4185,14 +4276,6 @@ msgstr "" "有効にすると、降りるとき「スニーク」キーの代りに \n" "「Aux1」キーが使用されます。" -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" -"有効にした場合、アカウント登録はログインとは別になります。\n" -"無効にした場合、新しいアカウントはログイン時に自動的に登録されます。" - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -4218,6 +4301,16 @@ msgstr "" "有効にすると、プレーヤーはパスワードなしで参加したり、空のパスワードに変更す" "ることはできません。" +#: src/settings_translation_file.cpp +#, fuzzy +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" +"有効にした場合、アカウント登録はログインとは別になります。\n" +"無効にした場合、新しいアカウントはログイン時に自動的に登録されます。" + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4334,10 +4427,6 @@ msgstr "エンティティの方式を登録するとすぐに計測します。 msgid "Interval of saving important changes in the world, stated in seconds." msgstr "ワールドで重要な変化を保存する間隔を秒単位で定めます。" -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "クライアントに時刻を送信する間隔を秒単位で定めます。" - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "インベントリのアイテムのアニメーション" @@ -4987,8 +5076,8 @@ msgid "" "You generally don't need to change this, however busy servers may benefit " "from a higher number." msgstr "" -"低レベルのネットワーク " -"コードで送信ステップごとに送信されるパケットの最大数です。\n" +"低レベルのネットワーク コードで送信ステップごとに送信されるパケットの最大数で" +"す。\n" "通常、これを変更する必要はありませんが、ビジー状態のサーバーでは、数値を大き" "くするとメリットが得られる場合があります。" @@ -5052,10 +5141,6 @@ msgstr "" msgid "Maximum users" msgstr "最大ユーザー数" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "メッシュキャッシュ" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "その日のメッセージ" @@ -5088,6 +5173,10 @@ msgstr "マップチャンクあたりの大きな洞窟の乱数の最小値。 msgid "Minimum limit of random number of small caves per mapchunk." msgstr "マップチャンクあたりの小さな洞窟の乱数の最小値。" +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "ミップマッピング" @@ -5181,9 +5270,10 @@ msgstr "" "- v7の浮遊大陸 (既定では無効)。" #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" "プレイヤーの名前です。\n" @@ -5465,7 +5555,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Radius to use when the block bounds HUD feature is set to near blocks." -msgstr "ブロック境界HUD機能がブロックの近くに設定されている場合に使う半径です。" +msgstr "" +"ブロック境界HUD機能がブロックの近くに設定されている場合に使う半径です。" #: src/settings_translation_file.cpp msgid "Raises terrain to make valleys around the rivers." @@ -5685,23 +5776,26 @@ msgid "See https://www.sqlite.org/pragma.html#pragma_synchronous" msgstr "参照 https://www.sqlite.org/pragma.html#pragma_synchronous" #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Select the antialiasing method to apply.\n" "\n" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5783,8 +5877,9 @@ msgstr "" msgid "" "Send names of online players to the serverlist. If disabled only the player " "count is revealed." -msgstr "オンラインプレイヤーの名前をサーバー一覧に送信します。無効にすると、プレイヤ" -"ー数のみが表示されます。" +msgstr "" +"オンラインプレイヤーの名前をサーバー一覧に送信します。無効にすると、プレイ" +"ヤー数のみが表示されます。" #: src/settings_translation_file.cpp msgid "Send player names to the server list" @@ -5961,16 +6056,6 @@ msgstr "" msgid "Shader path" msgstr "シェーダーパス" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "シェーダー" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "シェーダーはレンダリングの基本的な部分であり、高度な視覚効果を有効にします。" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "影フィルタの品質" @@ -6097,7 +6182,8 @@ msgstr "滑らかなスクロール" msgid "" "Smooths rotation of camera when in cinematic mode, 0 to disable. Enter " "cinematic mode by using the key set in Controls." -msgstr "シネマティックモードでのカメラの旋回を滑らかにし、0 で無効にします。キー割り" +msgstr "" +"シネマティックモードでのカメラの旋回を滑らかにし、0 で無効にします。キー割り" "当てで設定されたキーを使用してシネマティックモードに切替えます。" #: src/settings_translation_file.cpp @@ -6155,11 +6241,11 @@ msgstr "" "明示的に設定する場合があることに注意してください。" #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" "影の描画の完全な更新を指定されたフレーム数に広げます。\n" "値を大きくすると影の描画が遅延することがあり、\n" @@ -6519,10 +6605,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "新しいワールドが開始される時刻。ミリ時間単位 (0〜23999)。" -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "時刻送信間隔" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "時間の速さ" @@ -6541,8 +6623,8 @@ msgid "" "node." msgstr "" "ラグを減らすために、プレーヤーが何かを設置しているときブロック転送は\n" -"遅くなります。ノードを設置または破壊した後にどれくらい遅くなるかを決定します" -"。" +"遅くなります。ノードを設置または破壊した後にどれくらい遅くなるかを決定しま" +"す。" #: src/settings_translation_file.cpp msgid "" @@ -6588,6 +6670,11 @@ msgstr "半透明な液体" msgid "Transparency Sorting Distance" msgstr "透明度の並べ替え距離" +#: src/settings_translation_file.cpp +#, fuzzy +msgid "Transparency Sorting Group by Buffers" +msgstr "透明度の並べ替え距離" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "木のノイズ" @@ -6644,12 +6731,16 @@ msgid "Undersampling" msgstr "アンダーサンプリング" #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Undersampling is similar to using a lower screen resolution, but it applies\n" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" "アンダーサンプリングは低い画面解像度を使用するのと似ていますが、\n" "GUIをそのままにしてゲームのワールドにのみ適用されます。\n" @@ -6676,16 +6767,15 @@ msgstr "ダンジョンのY値の上限。" msgid "Upper Y limit of floatlands." msgstr "浮遊大陸の Y の上限。" -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "平らではなく立体な雲を使用します。" - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "メインメニューの背景には雲のアニメーションを使用します。" #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +#, fuzzy +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "ある角度からテクスチャを見るときに異方性フィルタリングを使用します。" #: src/settings_translation_file.cpp @@ -6939,8 +7029,8 @@ msgid "" "When enabled, the GUI is optimized to be more usable on touchscreens.\n" "Whether this is enabled by default depends on your hardware form-factor." msgstr "" -"有効にすると、タッチスクリーンでより使いやすくなるように GUI " -"が最適化されます。\n" +"有効にすると、タッチスクリーンでより使いやすくなるように GUI が最適化されま" +"す。\n" "デフォルトで有効になっているかどうかは、ハードウェアのフォームファクタに依存" "します。" @@ -6956,25 +7046,14 @@ msgstr "" "テクスチャへのレンダリング)。" #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" -"gui_scaling_filter_txr2img が有効な場合、拡大縮小のためにそれらの\n" -"イメージをハードウェアからソフトウェアにコピーします。 無効な場合、\n" -"ハードウェアからのテクスチャのダウンロードを適切にサポートしていない\n" -"ビデオドライバのときは、古い拡大縮小方式に戻ります。" - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -6998,12 +7077,6 @@ msgstr "" "ネームタグの背景を既定で表示するかどうかです。\n" "MODで背景を設定することもできます。" -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" -"ノードのテクスチャのアニメーションをマップブロックごとに非同期に\n" -"するかどうかの設定です。" - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -7030,9 +7103,9 @@ msgid "Whether to fog out the end of the visible area." msgstr "可視領域の端に霧を表示するかどうかの設定です。" #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -7066,8 +7139,8 @@ msgid "" "background.\n" "Contains the same information as the file debug.txt (default name)." msgstr "" -"Windowsのみ: コマンドライン ウィンドウをバックグラウンドで使用して Luanti " -"を起動します。\n" +"Windowsのみ: コマンドライン ウィンドウをバックグラウンドで使用して Luanti を" +"起動します。\n" "ファイル debug.txt (デフォルト名) と同じ情報が含まれます。" #: src/settings_translation_file.cpp @@ -7223,6 +7296,9 @@ msgstr "cURL並行処理制限" #~ "ローカルサーバーを起動する際は空白に設定してください。\n" #~ "メインメニューのアドレス欄はこの設定を上書きすることに注意してください。" +#~ msgid "Adds particles when digging a node." +#~ msgstr "ノード掘削時にパーティクルを追加します。" + #~ msgid "" #~ "Adjust dpi configuration to your screen (non X11/Android only) e.g. for " #~ "4k screens." @@ -7377,6 +7453,9 @@ msgstr "cURL並行処理制限" #~ msgid "Clean transparent textures" #~ msgstr "テクスチャの透過を削除" +#~ msgid "Clouds are a client-side effect." +#~ msgstr "雲はクライアント側の効果です。" + #~ msgid "Command key" #~ msgstr "コマンドキー" @@ -7471,9 +7550,15 @@ msgstr "cURL並行処理制限" #~ msgid "Darkness sharpness" #~ msgstr "暗さの鋭さ" +#~ msgid "Debug info and profiler graph hidden" +#~ msgstr "デバッグ情報、観測記録グラフ 非表示" + #~ msgid "Debug info toggle key" #~ msgstr "デバッグ情報切り替えキー" +#~ msgid "Debug info, profiler graph, and wireframe hidden" +#~ msgstr "デバッグ情報、観測記録グラフ、ワイヤーフレーム 非表示" + #~ msgid "Dec. volume key" #~ msgstr "音量を下げるキー" @@ -7536,9 +7621,15 @@ msgstr "cURL並行処理制限" #~ "す。\n" #~ "大きな洞窟内の溶岩のY高さ上限。" +#~ msgid "Desynchronize block animation" +#~ msgstr "ブロックのアニメーションの非同期化" + #~ msgid "Dig key" #~ msgstr "掘削キー" +#~ msgid "Digging particles" +#~ msgstr "掘削時パーティクル" + #~ msgid "Disable anticheat" #~ msgstr "対チート機関無効化" @@ -7567,6 +7658,9 @@ msgstr "cURL並行処理制限" #~ msgid "Dynamic shadows:" #~ msgstr "動的な影:" +#~ msgid "Enable" +#~ msgstr "有効" + #~ msgid "Enable VBO" #~ msgstr "VBOを有効化" @@ -7599,6 +7693,13 @@ msgstr "cURL並行処理制限" #~ "テクスチャパックによって提供されるかまたは自動生成される必要があります。\n" #~ "シェーダーが有効である必要があります。" +#~ msgid "" +#~ "Enables caching of facedir rotated meshes.\n" +#~ "This is only effective with shaders disabled." +#~ msgstr "" +#~ "facesir回転メッシュのキャッシュを有効にします。\n" +#~ "これはシェーダーが無効になっている場合にのみ有効です。" + #~ msgid "Enables filmic tone mapping" #~ msgstr "フィルム調トーンマッピング有効にする" @@ -7648,9 +7749,6 @@ msgstr "cURL並行処理制限" #~ "実験的なオプションで、0 より大きい数値に設定すると、ブロック間に\n" #~ "目に見えるスペースが生じる可能性があります。" -#~ msgid "FPS in pause menu" -#~ msgstr "ポーズメニューでのFPS" - #~ msgid "FSAA" #~ msgstr "フルスクリーンアンチエイリアシング" @@ -7734,8 +7832,8 @@ msgstr "cURL並行処理制限" #~ msgid "Full screen BPP" #~ msgstr "フルスクリーンのBPP" -#~ msgid "Game" -#~ msgstr "ゲーム" +#~ msgid "GUI scaling filter txr2img" +#~ msgstr "GUI拡大縮小フィルタ txr2img" #~ msgid "Gamma" #~ msgstr "ガンマ" @@ -7903,659 +8001,665 @@ msgstr "cURL並行処理制限" #~ msgid "Instrumentation" #~ msgstr "計測器" +#~ msgid "Interval of sending time of day to clients, stated in seconds." +#~ msgstr "クライアントに時刻を送信する間隔を秒単位で定めます。" + #~ msgid "Invalid gamespec." #~ msgstr "無効なゲーム情報です。" #~ msgid "Inventory key" #~ msgstr "インベントリキー" +#~ msgid "Irrlicht device:" +#~ msgstr "Irrlicht デバイス:" + #~ msgid "Jump key" #~ msgstr "ジャンプキー" #~ msgid "" #~ "Key for decreasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "視野を縮小するキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for decreasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "音量を下げるキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for digging.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "掘削するキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for dropping the currently selected item.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "現在選択されているアイテムを落とすキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "視野を拡大するキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "音量を上げるキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for jumping.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ジャンプするキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving fast in fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "高速移動モード中に高速移動するキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player backward.\n" #~ "Will also disable autoforward, when active.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "プレイヤーを後方へ移動するキーです。\n" #~ "自動前進中に押すと自動前進を停止します。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player forward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "プレイヤーを前方へ移動するキーです。\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player left.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "プレイヤーを左方向へ移動させるキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player right.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "プレイヤーを右方向へ移動させるキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for muting the game.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ゲームを消音にするキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "コマンドを入力するためのチャットウィンドウを開くキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type local commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ローカルコマンドを入力するためのチャットウィンドウを開くキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "チャットウィンドウを開くキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the inventory.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "インベントリを開くキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for placing.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "設置するキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 11th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "11番目のホットバースロットを選択するキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 12th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "12番目のホットバースロットを選択するキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 13th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "13番目のホットバースロットを選択するキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 14th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "14番目のホットバースロットを選択するキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 15th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "15番目のホットバースロットを選択するキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 16th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "16番目のホットバースロットを選択するキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 17th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "17番目のホットバースロットを選択するキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 18th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "18番目のホットバースロットを選択するキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 19th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "19番目のホットバースロットを選択するキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 20th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "20番目のホットバースロットを選択するキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 21st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "21番目のホットバースロットを選択するキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 22nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "22番目のホットバースロットを選択するキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 23rd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "23番目のホットバースロットを選択するキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 24th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "24番目のホットバースロットを選択するキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 25th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "25番目のホットバースロットを選択するキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 26th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "26番目のホットバースロットを選択するキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 27th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "27番目のホットバースロットを選択するキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 28th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "28番目のホットバースロットを選択するキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 29th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "29番目のホットバースロットを選択するキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 30th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "30番目のホットバースロットを選択するキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 31st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "31番目のホットバースロットを選択するキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 32nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "32番目のホットバースロットを選択するキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the eighth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "8番目のホットバースロットを選択するキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the fifth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "5番目のホットバースロットを選択するキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the first hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "1番目のホットバースロットを選択するキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the fourth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "4番目のホットバースロットを選択するキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the next item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ホットバーから次のアイテムを選択するキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the ninth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "9番目のホットバースロットを選択するキーです。\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the previous item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ホットバーから前のアイテムを選択するキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the second hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "2番目のホットバースロットを選択するキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the seventh hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "7番目のホットバースロットを選択するキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the sixth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "6番目のホットバースロットを選択するキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the tenth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "10番目のホットバースロットを選択するキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the third hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "3番目のホットバースロットを選択するキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for sneaking.\n" #~ "Also used for climbing down and descending in water if aux1_descends is " #~ "disabled.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "スニークするキーです。\n" #~ "aux1_descends が無効になっている場合は、降りるときや水中を潜るためにも使用" #~ "されます。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for switching between first- and third-person camera.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "一人称から三人称の間でカメラを切り替えるキー。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for taking screenshots.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "スクリーンショットを撮るキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling autoforward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "自動前進を切り替えるキー。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling cinematic mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "映画風モードを切り替えるキー。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling display of minimap.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ミニマップ表示を切り替えるキー。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "高速移動モードを切り替えるキー。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling flying.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "飛行モードを切り替えるキー。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling noclip mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "すり抜けモードを切り替えるキー。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling pitch move mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ピッチ移動モードを切り替えるキー。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the camera update. Only used for development\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "カメラ更新を切り替えるキー。開発にのみ使用される\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of chat.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "チャット表示を切り替えるキー。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of debug info.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "デバッグ情報の表示を切り替えるキー。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of fog.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "霧の表示を切り替えるキー。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the HUD.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "HUDの表示を切り替えるキー。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the large chat console.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "大型チャットコンソールの表示を切り替えるキー。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the profiler. Used for development.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "観測記録の表示を切り替えるキー。開発に使用されます。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling unlimited view range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "無制限の視野を切り替えるキー。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key to use view zoom when possible.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ズーム可能なときに使用するキーです。\n" -#~ "参照 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "参照 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Keybindings. (If this menu screws up, remove stuff from minetest.conf)" @@ -8630,6 +8734,9 @@ msgstr "cURL並行処理制限" #~ msgid "Menus" #~ msgstr "メニュー" +#~ msgid "Mesh cache" +#~ msgstr "メッシュキャッシュ" + #~ msgid "Minimap" #~ msgstr "ミニマップ" @@ -8846,6 +8953,9 @@ msgstr "cURL並行処理制限" #~ "す。\n" #~ "最小値0.001秒、最大値0.2秒" +#~ msgid "Shaders" +#~ msgstr "シェーダー" + #~ msgid "Shaders (experimental)" #~ msgstr "シェーダー (実験的)" @@ -8860,6 +8970,16 @@ msgstr "cURL並行処理制限" #~ "シェーダーにより高度な視覚効果が可能になり、一部のビデオ カードの\n" #~ "パフォーマンスが向上する場合があります。" +#~ msgid "" +#~ "Shaders are a fundamental part of rendering and enable advanced visual " +#~ "effects." +#~ msgstr "" +#~ "シェーダーはレンダリングの基本的な部分であり、高度な視覚効果を有効にしま" +#~ "す。" + +#~ msgid "Shaders are disabled." +#~ msgstr "シェーダーは無効です。" + #~ msgid "Shadow limit" #~ msgstr "影の制限" @@ -8891,6 +9011,9 @@ msgstr "cURL並行処理制限" #~ msgid "Smooths rotation of camera. 0 to disable." #~ msgstr "カメラの回転を滑らかにします。無効にする場合は 0。" +#~ msgid "Sound system is disabled" +#~ msgstr "サウンドシステムは無効" + #~ msgid "Special" #~ msgstr "スペシャル" @@ -8938,6 +9061,12 @@ msgstr "cURL並行処理制限" #~ msgid "This font will be used for certain languages." #~ msgstr "このフォントは特定の言語で使用されます。" +#~ msgid "This is not a recommended configuration." +#~ msgstr "推奨されている設定ではありません。" + +#~ msgid "Time send interval" +#~ msgstr "時刻送信間隔" + #~ msgid "To enable shaders the OpenGL driver needs to be used." #~ msgstr "" #~ "シェーダーを有効にするにはOpenGLのドライバを使用する必要があります。" @@ -9057,6 +9186,17 @@ msgstr "cURL並行処理制限" #~ msgid "Waving water" #~ msgstr "揺れる水" +#~ msgid "" +#~ "When gui_scaling_filter_txr2img is true, copy those images\n" +#~ "from hardware to software for scaling. When false, fall back\n" +#~ "to the old scaling method, for video drivers that don't\n" +#~ "properly support downloading textures back from hardware." +#~ msgstr "" +#~ "gui_scaling_filter_txr2img が有効な場合、拡大縮小のためにそれらの\n" +#~ "イメージをハードウェアからソフトウェアにコピーします。 無効な場合、\n" +#~ "ハードウェアからのテクスチャのダウンロードを適切にサポートしていない\n" +#~ "ビデオドライバのときは、古い拡大縮小方式に戻ります。" + #~ msgid "" #~ "Whether FreeType fonts are used, requires FreeType support to be compiled " #~ "in.\n" @@ -9070,6 +9210,12 @@ msgstr "cURL並行処理制限" #~ msgid "Whether dungeons occasionally project from the terrain." #~ msgstr "ダンジョンが時折地形から突出するかどうか。" +#~ msgid "" +#~ "Whether node texture animations should be desynchronized per mapblock." +#~ msgstr "" +#~ "ノードのテクスチャのアニメーションをマップブロックごとに非同期に\n" +#~ "するかどうかの設定です。" + #~ msgid "Whether to allow players to damage and kill each other." #~ msgstr "他のプレイヤーを殺すことができるかどうかの設定です。" diff --git a/po/jbo/luanti.po b/po/jbo/luanti.po index 5beba681c..f47e8077c 100644 --- a/po/jbo/luanti.po +++ b/po/jbo/luanti.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Lojban (Minetest)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" "PO-Revision-Date: 2024-07-10 01:09+0000\n" "Last-Translator: Qimar \n" "Language-Team: Lojban ] [-t]" msgstr "" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "binxo" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "cuxna fi lu'i le datnyveimei" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "cuxna fi lu'i le datnyvei" + +#: builtin/common/settings/components.lua +msgid "Set" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "to'i no da ve skicu le te tcimi'e toi" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "je'enai" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "rejgau" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "cunso namcu" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "tavla" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "ganda" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "katci" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr ".i no da ckaji lo se sisku" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Reset setting to default" +msgstr "xruti fi le zmiselcu'a" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "sisku" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Touchscreen layout" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "pause_menu" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Client Mods" +msgstr ".i ko cuxna fi lu'i le munje" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Content: Games" +msgstr "kakne le ka se samtcise'a" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Content: Mods" +msgstr "kakne le ka se samtcise'a" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "steci" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "cenba ctino" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "mutce" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "milxe" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "no'e mutce" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "tcetce" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "mlimli" + #: builtin/fstk/ui.lua msgid "" msgstr "" @@ -166,7 +408,6 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "xruti" @@ -202,11 +443,6 @@ msgstr "se samtcise'a" msgid "No packages could be retrieved" msgstr ".i na kakne le ka kibycpa pa bakfu" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr ".i no da ckaji lo se sisku" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "noda cnino" @@ -254,18 +490,6 @@ msgstr "ba'o se ci'erse'a" msgid "Base Game:" msgstr "cfari fa lo nu kelci" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "je'enai" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -398,6 +622,12 @@ msgstr "" msgid "Unable to install a $1 as a texture pack" msgstr "" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "" @@ -462,12 +692,6 @@ msgstr "noda se nitcu" msgid "Optional dependencies:" msgstr "no'e se nitcu" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "rejgau" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "munje" @@ -619,11 +843,6 @@ msgstr "rirxe" msgid "Sea level rivers" msgstr "xamsi nilga'u rirxe" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "cunso namcu" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "" @@ -761,6 +980,23 @@ msgid "" "override any renaming here." msgstr "" +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "katci roda" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "" @@ -785,7 +1021,7 @@ msgstr "" msgid "Visit website" msgstr "" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "te tcimi'e" @@ -799,229 +1035,6 @@ msgstr "" ".i ko troci lo nu za'u re'u samymo'i lo liste be lo'i samse'u .i ko cipcta " "lo do te samjo'e" -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "binxo" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "cuxna fi lu'i le datnyveimei" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "cuxna fi lu'i le datnyvei" - -#: builtin/mainmenu/settings/components.lua -msgid "Set" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "to'i no da ve skicu le te tcimi'e toi" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "tavla" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "ganda" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "katci" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Reset setting to default" -msgstr "xruti fi le zmiselcu'a" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "sisku" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Client Mods" -msgstr ".i ko cuxna fi lu'i le munje" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Content: Games" -msgstr "kakne le ka se samtcise'a" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Content: Mods" -msgstr "kakne le ka se samtcise'a" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "katci" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Shaders are disabled." -msgstr "na sutra klama kakne" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "steci" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "cenba ctino" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "mutce" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "milxe" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "no'e mutce" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "tcetce" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "mlimli" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "" @@ -1042,10 +1055,6 @@ msgstr "liste lo'i ralju zbapla" msgid "Core Team" msgstr "liste lo'i ralju bende" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "" - #: builtin/mainmenu/tab_about.lua #, fuzzy msgid "Open User Data Directory" @@ -1197,10 +1206,22 @@ msgstr "co'a kelci" msgid "You need to install a game before you can create a world." msgstr "sarcu fa lonu cpacu lo se kelci vau lonu samtcise'a" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "co'u cmima lu'i ro nelci se tcita" + #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "judri" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "lo samtciselse'u" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "finti se kelci" @@ -1215,6 +1236,11 @@ msgstr "cumki fa lonu simxu lonu xrani" msgid "Favorites" msgstr "nelci se tcita" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "se kelci" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "" @@ -1227,10 +1253,26 @@ msgstr "co'a kansa fi le ka kelci" msgid "Login" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +msgid "Open server website" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr ".pin. temci" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Public Servers" msgstr "" @@ -1326,24 +1368,6 @@ msgstr "" "\n" ".i sarcu fa le nu do cipcta la'o zoi. debug.txt .zoi kei tu'a le tcila" -#: src/client/game.cpp -msgid "- Mode: " -msgstr "" - -#: src/client/game.cpp -msgid "- Public: " -msgstr "- gubni: " - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -#, fuzzy -msgid "- PvP: " -msgstr "- kakne le ka simxu le ka xrani: " - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "- cmene le samtcise'u: " - #: src/client/game.cpp #, fuzzy msgid "A serialization error occurred:" @@ -1354,6 +1378,10 @@ msgstr ".i da nabmi" msgid "Access denied. Reason: %s" msgstr "" +#: src/client/game.cpp +msgid "All debug info hidden" +msgstr "" + #: src/client/game.cpp #, fuzzy msgid "Automatic forward disabled" @@ -1376,6 +1404,10 @@ msgstr "" msgid "Block bounds shown for nearby blocks" msgstr "" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "" @@ -1388,10 +1420,6 @@ msgstr "" msgid "Can't show block bounds (disabled by game or mod)" msgstr "" -#: src/client/game.cpp -msgid "Change Password" -msgstr "basti fi le ka lerpoijaspu" - #: src/client/game.cpp #, fuzzy msgid "Cinematic mode disabled" @@ -1425,26 +1453,6 @@ msgstr "" msgid "Connection failed for unknown reason" msgstr "" -#: src/client/game.cpp -msgid "Continue" -msgstr "ranji" - -#: src/client/game.cpp -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1458,31 +1466,15 @@ msgstr ".i ca'o cupra le samtciselse'u" msgid "Creating server..." msgstr ".i ca'o cupra le samtcise'u" -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "" - #: src/client/game.cpp msgid "Debug info shown" msgstr "" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "" - #: src/client/game.cpp #, fuzzy, c-format msgid "Error creating client: %s" msgstr ".i ca'o cupra le samtciselse'u" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "sisti tu'a le se kelci" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "sisti tu'a le samtci" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "na sutra klama kakne" @@ -1520,18 +1512,6 @@ msgstr "jarco bumru" msgid "Fog enabled by game or mod" msgstr "na curmi lonu jbiji'u" -#: src/client/game.cpp -msgid "Game info:" -msgstr ".i datni le se kelci" - -#: src/client/game.cpp -msgid "Game paused" -msgstr ".i ca'o denpa fo le nu kelci" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr ".i le samtci pe do cu samtcise'u" - #: src/client/game.cpp #, fuzzy msgid "Item definitions..." @@ -1571,14 +1551,6 @@ msgstr "na pagre be roda na'e kakne ki'u lonu na curmi" msgid "Node definitions..." msgstr ".i ca'o samymo'i tu'a lo me la'o gy.node.gy." -#: src/client/game.cpp -msgid "Off" -msgstr "ganda" - -#: src/client/game.cpp -msgid "On" -msgstr "katci" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "" @@ -1591,38 +1563,22 @@ msgstr "" msgid "Profiler graph shown" msgstr "" -#: src/client/game.cpp -msgid "Remote server" -msgstr ".i da poi na du le samtci pe do cu samtcise'u" - #: src/client/game.cpp msgid "Resolving address..." msgstr ".i ca'o sisku le ka se judri da kau" -#: src/client/game.cpp -msgid "Respawn" -msgstr "tolcanci" - #: src/client/game.cpp msgid "Shutting down..." msgstr ".i ca'o sisti" -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "nonselkansa" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "ni sance" - #: src/client/game.cpp msgid "Sound muted" msgstr "smaji" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "" @@ -1694,18 +1650,104 @@ msgstr "" msgid "Volume changed to %d%%" msgstr ".i fe lo ni sance cu cenba fi li %d ce'i" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "ca'o jarco lo munje greku" -#: src/client/game.cpp -msgid "You died" -msgstr ".i do morsi" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "na curmi lonu jbiji'u" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "- gubni: " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +#, fuzzy +msgid "- PvP: " +msgstr "- kakne le ka simxu le ka xrani: " + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "- cmene le samtcise'u: " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "basti fi le ka lerpoijaspu" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "ranji" + +#: src/client/game_formspec.cpp +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "sisti tu'a le se kelci" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "sisti tu'a le samtci" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr ".i datni le se kelci" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr ".i ca'o denpa fo le nu kelci" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr ".i le samtci pe do cu samtcise'u" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "ganda" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "katci" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr ".i da poi na du le samtci pe do cu samtcise'u" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "tolcanci" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "ni sance" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr ".i do morsi" + #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" msgstr "na curmi lonu tavla" @@ -2038,7 +2080,7 @@ msgid "Failed to compile the \"%s\" shader." msgstr ".i da nabmi fi le nu kibycpa la'o zoi. $1 .zoi" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." +msgid "GLSL is not supported by the driver" msgstr "" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" @@ -2089,7 +2131,7 @@ msgstr "za'i ca'u muvdu" msgid "Automatic jumping" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "" @@ -2101,7 +2143,7 @@ msgstr "ti'a muvdu" msgid "Block bounds" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp #, fuzzy msgid "Change camera" msgstr "gafygau lo lerpoijaspu" @@ -2126,7 +2168,7 @@ msgstr "jdikygau lo ni sance" msgid "Double tap \"jump\" to toggle fly" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "falcru" @@ -2142,11 +2184,11 @@ msgstr "" msgid "Inc. volume" msgstr "zengau lo ni sance" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "sorcu" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "plipe" @@ -2179,7 +2221,7 @@ msgstr "se lamli'e fi lu'i le dacti" msgid "Prev. item" msgstr "lamli'e fi lu'i le dacti" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "cuxna fi lu'i le se kuspe" @@ -2191,7 +2233,7 @@ msgstr "ri'u muvdu" msgid "Screenshot" msgstr "vidnyxra" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "masno cadzu" @@ -2200,17 +2242,17 @@ msgstr "masno cadzu" msgid "Toggle HUD" msgstr "mu'e co'a jonai mo'u vofli" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp #, fuzzy msgid "Toggle chat log" msgstr "mu'e co'a jonai mo'u sutra" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp #, fuzzy msgid "Toggle fast" msgstr "mu'e co'a jonai mo'u sutra" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp #, fuzzy msgid "Toggle fly" msgstr "mu'e co'a jonai mo'u vofli" @@ -2220,12 +2262,12 @@ msgstr "mu'e co'a jonai mo'u vofli" msgid "Toggle fog" msgstr "mu'e co'a jonai mo'u vofli" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp #, fuzzy msgid "Toggle minimap" msgstr "mu'e co'a jonai mo'u sutra" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "" @@ -2234,7 +2276,7 @@ msgstr "" msgid "Toggle pitchmove" msgstr "mu'e co'a jonai mo'u sutra" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "jbiji'u" @@ -2274,7 +2316,7 @@ msgstr "lo slabu lerpoijaspu" msgid "Passwords do not match!" msgstr ".i lu'i le re lerpoijaspu na simxu le ka mintu" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "sisti" @@ -2288,15 +2330,46 @@ msgstr "ko da'ergau le batke" msgid "Sound Volume: %d%%" msgstr "lo ni sance " -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Add button" +msgstr "midju sma'acu bo tekla" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr ".i mulno" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Remove" +msgstr ".i da poi na du le samtci pe do cu samtcise'u" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp msgid "Joystick" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Toggle debug" msgstr "mu'e co'a jonai mo'u vofli" @@ -2496,8 +2569,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" #: src/settings_translation_file.cpp @@ -2551,10 +2623,6 @@ msgstr "" msgid "Active object send range" msgstr "" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "" - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2578,6 +2646,16 @@ msgstr "cmene le munje" msgid "Advanced" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Allow clouds to look 3D instead of flat." +msgstr "" + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "" @@ -2953,15 +3031,15 @@ msgstr "" msgid "Clouds" msgstr "dilnu" -#: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Clouds in menu" msgstr "lo ralju" +#: src/settings_translation_file.cpp +msgid "Color depth for post-processing texture" +msgstr "" + #: src/settings_translation_file.cpp msgid "Colored fog" msgstr "le bumgapci cu skari" @@ -2985,7 +3063,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" #: src/settings_translation_file.cpp @@ -3123,6 +3201,14 @@ msgstr "" msgid "Debugging" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "" @@ -3274,19 +3360,11 @@ msgid "" "When the 'snowbiomes' flag is enabled, this is ignored." msgstr "" -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Developer Options" msgstr "datni" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "kakpa kantu" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "" @@ -3314,6 +3392,14 @@ msgstr "" msgid "Double-tapping the jump key toggles fly mode." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "" @@ -3389,8 +3475,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" #: src/settings_translation_file.cpp @@ -3463,8 +3549,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" #: src/settings_translation_file.cpp @@ -3479,12 +3564,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "" - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -3787,10 +3866,6 @@ msgstr "" msgid "GUI scaling filter" msgstr "" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Gamepads" @@ -4016,12 +4091,6 @@ msgid "" "descending." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -4040,6 +4109,13 @@ msgid "" "empty password." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4134,10 +4210,6 @@ msgstr "" msgid "Interval of saving important changes in the world, stated in seconds." msgstr "" -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "" - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "" @@ -4755,10 +4827,6 @@ msgstr "" msgid "Maximum users" msgstr "" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "" @@ -4791,6 +4859,10 @@ msgstr "" msgid "Minimum limit of random number of small caves per mapchunk." msgstr "" +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "lo puvrmipmepi" @@ -4880,7 +4952,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" @@ -5325,17 +5397,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5534,16 +5608,6 @@ msgstr "" msgid "Shader path" msgstr "judri le ti'orkemsamtci" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "ti'orkemsamtci" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "" @@ -5709,10 +5773,9 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" #: src/settings_translation_file.cpp @@ -5991,10 +6054,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "" -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "" @@ -6055,6 +6114,10 @@ msgstr ".i ca'o samymo'i lo me la'o gy.node.gy." msgid "Transparency Sorting Distance" msgstr "" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "" @@ -6106,7 +6169,10 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" #: src/settings_translation_file.cpp @@ -6129,16 +6195,14 @@ msgstr "" msgid "Upper Y limit of floatlands." msgstr "" -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "" - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "" #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" #: src/settings_translation_file.cpp @@ -6382,20 +6446,12 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -6406,10 +6462,6 @@ msgid "" "Mods may still set a background." msgstr "" -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -6432,8 +6484,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -6634,6 +6685,9 @@ msgstr "" #~ msgid "Dig key" #~ msgstr "za'i ri'u muvdu" +#~ msgid "Digging particles" +#~ msgstr "kakpa kantu" + #, fuzzy #~ msgid "Disable anticheat" #~ msgstr "lo kantu" @@ -6649,6 +6703,10 @@ msgstr "" #~ msgid "Downloading and installing $1, please wait..." #~ msgstr ".i ca'o kibycpa la'o zoi. $1 .zoi je cu samtcise'a ri .i ko denpa" +#, fuzzy +#~ msgid "Enable" +#~ msgstr "katci" + #, fuzzy #~ msgid "Enable VBO" #~ msgstr "selpli" @@ -6661,9 +6719,6 @@ msgstr "" #~ msgid "Forward key" #~ msgstr "za'i ca'u muvdu" -#~ msgid "Game" -#~ msgstr "se kelci" - #, fuzzy #~ msgid "Hide: Temporary Settings" #~ msgstr "te tcimi'e" @@ -6762,10 +6817,17 @@ msgstr "" #~ msgid "Server / Singleplayer" #~ msgstr "pa kelci" +#~ msgid "Shaders" +#~ msgstr "ti'orkemsamtci" + #, fuzzy #~ msgid "Shaders (experimental)" #~ msgstr "ti'orkemsamtci to na kakne toi" +#, fuzzy +#~ msgid "Shaders are disabled." +#~ msgstr "na sutra klama kakne" + #, fuzzy #~ msgid "Simple Leaves" #~ msgstr "lo sampu pezli" diff --git a/po/jv/luanti.po b/po/jv/luanti.po index 6447f5806..e4643702a 100644 --- a/po/jv/luanti.po +++ b/po/jv/luanti.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: minetest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" "PO-Revision-Date: 2023-11-17 00:07+0000\n" "Last-Translator: Muhammad Rifqi Priyo Susanto " "\n" @@ -81,6 +81,245 @@ msgstr "" msgid "[all | ] [-t]" msgstr "" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "Jlajah" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "Besut" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "Pilih direktori" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "Pilih berkas" + +#: builtin/common/settings/components.lua +msgid "Set" +msgstr "Atur" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "Batal" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "Simpen" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "Seed" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "(Ngagem basa sistem)" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "Dipunpejah" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Enabled" +msgstr "dipunurupaken" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "Umum" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "Tanpa asil" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "Pados" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Touchscreen layout" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "pause_menu" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Client Mods" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "Konten: Dolanan" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "Konten: Mod" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "Inggil" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "Andhap" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "" + #: builtin/fstk/ui.lua msgid "" msgstr "" @@ -165,7 +404,6 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "" @@ -201,11 +439,6 @@ msgstr "Mod" msgid "No packages could be retrieved" msgstr "Boten wonten paket ingkang saget dipundhut" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "Tanpa asil" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "Tanpa pangenggalan" @@ -251,18 +484,6 @@ msgstr "Sampung dipunpasang" msgid "Base Game:" msgstr "Dolanan Dhasar:" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "Batal" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -387,6 +608,12 @@ msgstr "" msgid "Unable to install a $1 as a texture pack" msgstr "" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "(Dipunurupaken, gadhah salah)" @@ -449,12 +676,6 @@ msgstr "Tanpa dependensi manasuka" msgid "Optional dependencies:" msgstr "Dependensi manasuka:" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "Simpen" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "Jagad:" @@ -605,11 +826,6 @@ msgstr "" msgid "Sea level rivers" msgstr "" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "Seed" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "" @@ -745,6 +961,23 @@ msgid "" "override any renaming here." msgstr "" +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "Urupaken sedaya" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "" @@ -769,7 +1002,7 @@ msgstr "Boten Nate" msgid "Visit website" msgstr "" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "Pangaturan" @@ -781,225 +1014,6 @@ msgstr "" msgid "Try reenabling public serverlist and check your internet connection." msgstr "" -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "Jlajah" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "Besut" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "Pilih direktori" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "Pilih berkas" - -#: builtin/mainmenu/settings/components.lua -msgid "Set" -msgstr "Atur" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "(Ngagem basa sistem)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "Dipunpejah" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Enabled" -msgstr "dipunurupaken" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "Umum" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "Pados" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "Konten: Dolanan" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "Konten: Mod" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "dipunurupaken" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "Shaders are disabled." -msgstr "" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "Inggil" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "Andhap" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "Bab Kami" @@ -1020,10 +1034,6 @@ msgstr "Pangembang Inti" msgid "Core Team" msgstr "Golongan Inti" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "" @@ -1168,10 +1178,21 @@ msgstr "Wiwit Dolanan" msgid "You need to install a game before you can create a world." msgstr "" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "Busek kasenengan" + #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "Alamat" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Clients:\n" +"$1" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "Cara kreatip" @@ -1185,6 +1206,11 @@ msgstr "Karisakan/PvP" msgid "Favorites" msgstr "Kasenengan" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "Dolanan" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "Ladosan Boten Cocog" @@ -1197,10 +1223,26 @@ msgstr "Melu Dolanan" msgid "Login" msgstr "Mlebet Log" +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +msgid "Open server website" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "Ping" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Public Servers" msgstr "Ladosan Publik" @@ -1285,23 +1327,6 @@ msgstr "" "\n" "Priksa debug.txt kagem peprincen." -#: src/client/game.cpp -msgid "- Mode: " -msgstr "" - -#: src/client/game.cpp -msgid "- Public: " -msgstr "" - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "" - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "" - #: src/client/game.cpp msgid "A serialization error occurred:" msgstr "" @@ -1311,6 +1336,10 @@ msgstr "" msgid "Access denied. Reason: %s" msgstr "" +#: src/client/game.cpp +msgid "All debug info hidden" +msgstr "" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "" @@ -1331,6 +1360,10 @@ msgstr "" msgid "Block bounds shown for nearby blocks" msgstr "" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "" @@ -1343,10 +1376,6 @@ msgstr "" msgid "Can't show block bounds (disabled by game or mod)" msgstr "" -#: src/client/game.cpp -msgid "Change Password" -msgstr "Gantos Tembung Sandi" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "" @@ -1375,26 +1404,6 @@ msgstr "" msgid "Connection failed for unknown reason" msgstr "" -#: src/client/game.cpp -msgid "Continue" -msgstr "Nerusaken" - -#: src/client/game.cpp -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1408,31 +1417,15 @@ msgstr "" msgid "Creating server..." msgstr "" -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "" - #: src/client/game.cpp msgid "Debug info shown" msgstr "" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "" - #: src/client/game.cpp #, c-format msgid "Error creating client: %s" msgstr "" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "Menu Utama" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "Tutup Aplikasi" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "" @@ -1469,18 +1462,6 @@ msgstr "" msgid "Fog enabled by game or mod" msgstr "" -#: src/client/game.cpp -msgid "Game info:" -msgstr "" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "" - #: src/client/game.cpp msgid "Item definitions..." msgstr "" @@ -1517,14 +1498,6 @@ msgstr "" msgid "Node definitions..." msgstr "" -#: src/client/game.cpp -msgid "Off" -msgstr "Pejah" - -#: src/client/game.cpp -msgid "On" -msgstr "Urup" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "" @@ -1537,38 +1510,22 @@ msgstr "" msgid "Profiler graph shown" msgstr "" -#: src/client/game.cpp -msgid "Remote server" -msgstr "" - #: src/client/game.cpp msgid "Resolving address..." msgstr "" -#: src/client/game.cpp -msgid "Respawn" -msgstr "Bangkit Malilh" - #: src/client/game.cpp msgid "Shutting down..." msgstr "Mejahi..." -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "Pandolan Tunggil" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "Volume Swanten" - #: src/client/game.cpp msgid "Sound muted" msgstr "Swanten mbisu" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "" @@ -1640,18 +1597,103 @@ msgstr "" msgid "Volume changed to %d%%" msgstr "Volume dipungantos dados %d%%" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "" -#: src/client/game.cpp -msgid "You died" -msgstr "Panjenengan pejah" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "" + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "Gantos Tembung Sandi" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "Nerusaken" + +#: src/client/game_formspec.cpp +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "Menu Utama" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "Tutup Aplikasi" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "Pejah" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "Urup" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "Bangkit Malilh" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "Volume Swanten" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "Panjenengan pejah" + #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" msgstr "" @@ -1978,7 +2020,7 @@ msgid "Failed to compile the \"%s\" shader." msgstr "" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." +msgid "GLSL is not supported by the driver" msgstr "" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" @@ -2026,7 +2068,7 @@ msgstr "" msgid "Automatic jumping" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "" @@ -2038,7 +2080,7 @@ msgstr "" msgid "Block bounds" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "" @@ -2062,7 +2104,7 @@ msgstr "" msgid "Double tap \"jump\" to toggle fly" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "" @@ -2078,11 +2120,11 @@ msgstr "" msgid "Inc. volume" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "Lumpat" @@ -2114,7 +2156,7 @@ msgstr "" msgid "Prev. item" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "" @@ -2126,7 +2168,7 @@ msgstr "" msgid "Screenshot" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "" @@ -2134,15 +2176,15 @@ msgstr "" msgid "Toggle HUD" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "" @@ -2150,11 +2192,11 @@ msgstr "" msgid "Toggle fog" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "" @@ -2162,7 +2204,7 @@ msgstr "" msgid "Toggle pitchmove" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "" @@ -2198,7 +2240,7 @@ msgstr "Sandi Dangu" msgid "Passwords do not match!" msgstr "Sandi boten cocog!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "Medal" @@ -2211,15 +2253,44 @@ msgstr "Mbisu" msgid "Sound Volume: %d%%" msgstr "Volume Swanten: %d%%" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +msgid "Add button" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "Rampung!" + +#: src/gui/touchscreeneditor.cpp +msgid "Remove" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp msgid "Joystick" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Toggle debug" msgstr "" @@ -2419,8 +2490,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" #: src/settings_translation_file.cpp @@ -2473,10 +2543,6 @@ msgstr "" msgid "Active object send range" msgstr "" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "" - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2499,6 +2565,16 @@ msgstr "" msgid "Advanced" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Allow clouds to look 3D instead of flat." +msgstr "" + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "" @@ -2866,11 +2942,11 @@ msgid "Clouds" msgstr "" #: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." +msgid "Clouds in menu" msgstr "" #: src/settings_translation_file.cpp -msgid "Clouds in menu" +msgid "Color depth for post-processing texture" msgstr "" #: src/settings_translation_file.cpp @@ -2895,7 +2971,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" #: src/settings_translation_file.cpp @@ -3030,6 +3106,14 @@ msgstr "" msgid "Debugging" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "" @@ -3181,18 +3265,10 @@ msgid "" "When the 'snowbiomes' flag is enabled, this is ignored." msgstr "" -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "" - #: src/settings_translation_file.cpp msgid "Developer Options" msgstr "" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "" @@ -3220,6 +3296,14 @@ msgstr "" msgid "Double-tapping the jump key toggles fly mode." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "" @@ -3294,8 +3378,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" #: src/settings_translation_file.cpp @@ -3368,8 +3452,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" #: src/settings_translation_file.cpp @@ -3384,12 +3467,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "" - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -3691,10 +3768,6 @@ msgstr "" msgid "GUI scaling filter" msgstr "" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "" - #: src/settings_translation_file.cpp msgid "Gamepads" msgstr "" @@ -3918,12 +3991,6 @@ msgid "" "descending." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -3942,6 +4009,13 @@ msgid "" "empty password." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4036,10 +4110,6 @@ msgstr "" msgid "Interval of saving important changes in the world, stated in seconds." msgstr "" -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "" - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "" @@ -4654,10 +4724,6 @@ msgstr "" msgid "Maximum users" msgstr "" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "" @@ -4690,6 +4756,10 @@ msgstr "" msgid "Minimum limit of random number of small caves per mapchunk." msgstr "" +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "" @@ -4779,7 +4849,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" @@ -5219,17 +5289,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5422,16 +5494,6 @@ msgstr "" msgid "Shader path" msgstr "" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "" @@ -5592,10 +5654,9 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" #: src/settings_translation_file.cpp @@ -5874,10 +5935,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "" -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "" @@ -5936,6 +5993,10 @@ msgstr "" msgid "Transparency Sorting Distance" msgstr "" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "" @@ -5986,7 +6047,10 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" #: src/settings_translation_file.cpp @@ -6009,16 +6073,14 @@ msgstr "" msgid "Upper Y limit of floatlands." msgstr "" -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "" - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "" #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" #: src/settings_translation_file.cpp @@ -6255,20 +6317,12 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -6279,10 +6333,6 @@ msgid "" "Mods may still set a background." msgstr "" -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -6305,8 +6355,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -6433,6 +6482,10 @@ msgstr "" #~ msgid "Change keys" #~ msgstr "Gantos tombol" +#, fuzzy +#~ msgid "Enable" +#~ msgstr "dipunurupaken" + #~ msgid "Uninstall Package" #~ msgstr "Copot Paket" diff --git a/po/kk/luanti.po b/po/kk/luanti.po index 5cdc9e82b..b6015b7e7 100644 --- a/po/kk/luanti.po +++ b/po/kk/luanti.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Kazakh (Minetest)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" "PO-Revision-Date: 2024-10-06 05:16+0000\n" "Last-Translator: Soupborshfe5e4d4ba7c349aa \n" "Language-Team: Kazakh ] [-t]" msgstr "" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Set" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "Болдырмау" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "Сақтау" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Enabled" +msgstr "қосылған" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "Іздеу" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Touchscreen layout" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "pause_menu" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Client Mods" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "" + #: builtin/fstk/ui.lua msgid "" msgstr "" @@ -159,7 +398,6 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "" @@ -195,11 +433,6 @@ msgstr "Модтар" msgid "No packages could be retrieved" msgstr "" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "" - #: builtin/mainmenu/content/dlg_contentdb.lua #, fuzzy msgid "No updates" @@ -245,18 +478,6 @@ msgstr "" msgid "Base Game:" msgstr "" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "Болдырмау" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -380,6 +601,12 @@ msgstr "" msgid "Unable to install a $1 as a texture pack" msgstr "" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "" @@ -442,12 +669,6 @@ msgstr "" msgid "Optional dependencies:" msgstr "" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "Сақтау" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "" @@ -598,11 +819,6 @@ msgstr "" msgid "Sea level rivers" msgstr "" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "" @@ -739,6 +955,22 @@ msgid "" "override any renaming here." msgstr "" +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Expand all" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "" @@ -763,7 +995,7 @@ msgstr "" msgid "Visit website" msgstr "" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "Баптаулар" @@ -775,225 +1007,6 @@ msgstr "" msgid "Try reenabling public serverlist and check your internet connection." msgstr "" -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Set" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Enabled" -msgstr "қосылған" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "Іздеу" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "қосылған" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "Shaders are disabled." -msgstr "" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "" @@ -1014,10 +1027,6 @@ msgstr "" msgid "Core Team" msgstr "" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "" @@ -1163,10 +1172,20 @@ msgstr "" msgid "You need to install a game before you can create a world." msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "Add favorite" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Clients:\n" +"$1" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "" @@ -1180,6 +1199,11 @@ msgstr "" msgid "Favorites" msgstr "" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "Ойын" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "" @@ -1192,10 +1216,26 @@ msgstr "" msgid "Login" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +msgid "Open server website" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Public Servers" msgstr "" @@ -1278,23 +1318,6 @@ msgid "" "Check debug.txt for details." msgstr "" -#: src/client/game.cpp -msgid "- Mode: " -msgstr "" - -#: src/client/game.cpp -msgid "- Public: " -msgstr "" - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "" - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "" - #: src/client/game.cpp #, fuzzy msgid "A serialization error occurred:" @@ -1305,6 +1328,10 @@ msgstr "Қате кездесті:" msgid "Access denied. Reason: %s" msgstr "" +#: src/client/game.cpp +msgid "All debug info hidden" +msgstr "" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "" @@ -1325,6 +1352,10 @@ msgstr "" msgid "Block bounds shown for nearby blocks" msgstr "" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "" @@ -1337,10 +1368,6 @@ msgstr "" msgid "Can't show block bounds (disabled by game or mod)" msgstr "" -#: src/client/game.cpp -msgid "Change Password" -msgstr "Құпия сөзді өзгерту" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "" @@ -1369,26 +1396,6 @@ msgstr "" msgid "Connection failed for unknown reason" msgstr "" -#: src/client/game.cpp -msgid "Continue" -msgstr "Жалғастыру" - -#: src/client/game.cpp -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1402,31 +1409,15 @@ msgstr "" msgid "Creating server..." msgstr "" -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "" - #: src/client/game.cpp msgid "Debug info shown" msgstr "" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "" - #: src/client/game.cpp #, c-format msgid "Error creating client: %s" msgstr "" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "Мәзірге шығу" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "Ойыннан шығу" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "" @@ -1463,18 +1454,6 @@ msgstr "Тұман қосылды" msgid "Fog enabled by game or mod" msgstr "" -#: src/client/game.cpp -msgid "Game info:" -msgstr "" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "" - #: src/client/game.cpp msgid "Item definitions..." msgstr "" @@ -1512,14 +1491,6 @@ msgstr "" msgid "Node definitions..." msgstr "" -#: src/client/game.cpp -msgid "Off" -msgstr "" - -#: src/client/game.cpp -msgid "On" -msgstr "" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "" @@ -1532,38 +1503,22 @@ msgstr "" msgid "Profiler graph shown" msgstr "" -#: src/client/game.cpp -msgid "Remote server" -msgstr "" - #: src/client/game.cpp msgid "Resolving address..." msgstr "" -#: src/client/game.cpp -msgid "Respawn" -msgstr "Тірілу" - #: src/client/game.cpp msgid "Shutting down..." msgstr "" -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "Бір ойыншы" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "" - #: src/client/game.cpp msgid "Sound muted" msgstr "" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "" @@ -1635,18 +1590,103 @@ msgstr "" msgid "Volume changed to %d%%" msgstr "" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "" -#: src/client/game.cpp -msgid "You died" -msgstr "Сіз өліп қалдыңыз" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "" + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "Құпия сөзді өзгерту" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "Жалғастыру" + +#: src/client/game_formspec.cpp +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "Мәзірге шығу" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "Ойыннан шығу" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "Тірілу" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "Сіз өліп қалдыңыз" + #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" msgstr "" @@ -1975,7 +2015,7 @@ msgid "Failed to compile the \"%s\" shader." msgstr "" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." +msgid "GLSL is not supported by the driver" msgstr "" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" @@ -2023,7 +2063,7 @@ msgstr "" msgid "Automatic jumping" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "" @@ -2035,7 +2075,7 @@ msgstr "" msgid "Block bounds" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "" @@ -2059,7 +2099,7 @@ msgstr "" msgid "Double tap \"jump\" to toggle fly" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "" @@ -2075,11 +2115,11 @@ msgstr "" msgid "Inc. volume" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "" @@ -2111,7 +2151,7 @@ msgstr "" msgid "Prev. item" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "" @@ -2123,7 +2163,7 @@ msgstr "" msgid "Screenshot" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "" @@ -2131,15 +2171,15 @@ msgstr "" msgid "Toggle HUD" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "" @@ -2147,11 +2187,11 @@ msgstr "" msgid "Toggle fog" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "" @@ -2159,7 +2199,7 @@ msgstr "" msgid "Toggle pitchmove" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "" @@ -2195,7 +2235,7 @@ msgstr "" msgid "Passwords do not match!" msgstr "" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "" @@ -2208,15 +2248,43 @@ msgstr "" msgid "Sound Volume: %d%%" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +msgid "Add button" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Done" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Remove" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp msgid "Joystick" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Toggle debug" msgstr "" @@ -2413,8 +2481,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" #: src/settings_translation_file.cpp @@ -2467,10 +2534,6 @@ msgstr "" msgid "Active object send range" msgstr "" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "" - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2493,6 +2556,16 @@ msgstr "" msgid "Advanced" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Allow clouds to look 3D instead of flat." +msgstr "" + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "" @@ -2862,11 +2935,11 @@ msgid "Clouds" msgstr "" #: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." +msgid "Clouds in menu" msgstr "" #: src/settings_translation_file.cpp -msgid "Clouds in menu" +msgid "Color depth for post-processing texture" msgstr "" #: src/settings_translation_file.cpp @@ -2891,7 +2964,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" #: src/settings_translation_file.cpp @@ -3026,6 +3099,14 @@ msgstr "" msgid "Debugging" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "" @@ -3177,18 +3258,10 @@ msgid "" "When the 'snowbiomes' flag is enabled, this is ignored." msgstr "" -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "" - #: src/settings_translation_file.cpp msgid "Developer Options" msgstr "" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "" @@ -3216,6 +3289,14 @@ msgstr "" msgid "Double-tapping the jump key toggles fly mode." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "" @@ -3290,8 +3371,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" #: src/settings_translation_file.cpp @@ -3364,8 +3445,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" #: src/settings_translation_file.cpp @@ -3380,12 +3460,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "" - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -3687,10 +3761,6 @@ msgstr "" msgid "GUI scaling filter" msgstr "" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Gamepads" @@ -3917,12 +3987,6 @@ msgid "" "descending." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -3941,6 +4005,13 @@ msgid "" "empty password." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4035,10 +4106,6 @@ msgstr "" msgid "Interval of saving important changes in the world, stated in seconds." msgstr "" -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "" - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "" @@ -4653,10 +4720,6 @@ msgstr "" msgid "Maximum users" msgstr "" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "" @@ -4689,6 +4752,10 @@ msgstr "" msgid "Minimum limit of random number of small caves per mapchunk." msgstr "" +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "" @@ -4778,7 +4845,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" @@ -5218,17 +5285,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5421,16 +5490,6 @@ msgstr "" msgid "Shader path" msgstr "" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "" @@ -5592,10 +5651,9 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" #: src/settings_translation_file.cpp @@ -5874,10 +5932,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "" -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "" @@ -5936,6 +5990,10 @@ msgstr "" msgid "Transparency Sorting Distance" msgstr "" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "" @@ -5986,7 +6044,10 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" #: src/settings_translation_file.cpp @@ -6009,16 +6070,14 @@ msgstr "" msgid "Upper Y limit of floatlands." msgstr "" -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "" - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "" #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" #: src/settings_translation_file.cpp @@ -6255,20 +6314,12 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -6279,10 +6330,6 @@ msgid "" "Mods may still set a background." msgstr "" -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -6305,8 +6352,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -6431,12 +6477,13 @@ msgstr "" #~ msgid "Change keys" #~ msgstr "Құпия сөзді өзгерту" +#, fuzzy +#~ msgid "Enable" +#~ msgstr "қосылған" + #~ msgid "FreeType fonts" #~ msgstr "FreeType қаріптері" -#~ msgid "Game" -#~ msgstr "Ойын" - #, fuzzy #~ msgid "Hide: Temporary Settings" #~ msgstr "Баптаулар" diff --git a/po/kn/luanti.po b/po/kn/luanti.po index cad1ad8f0..27708ed4b 100644 --- a/po/kn/luanti.po +++ b/po/kn/luanti.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Kannada (Minetest)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" "PO-Revision-Date: 2021-01-02 07:29+0000\n" "Last-Translator: Tejaswi Hegde \n" "Language-Team: Kannada ] [-t]" msgstr "" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Set" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "ರದ್ದುಮಾಡಿ" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "ಸೇವ್" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +#, fuzzy +msgid "Seed" +msgstr "ಬೀಜ" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Enabled" +msgstr "ಸಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "ಫಲಿತಾಂಶಗಳಿಲ್ಲ" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "ಹುಡುಕು" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Touchscreen layout" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "pause_menu" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Client Mods" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "" + #: builtin/fstk/ui.lua msgid "" msgstr "" @@ -160,7 +400,6 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "ಹಿಂದೆ" @@ -197,11 +436,6 @@ msgstr "ಮಾಡ್‍ಗಳು" msgid "No packages could be retrieved" msgstr "ಯಾವುದೇ ಪ್ಯಾಕೇಜ್ ಗಳನ್ನು ಪಡೆಯಲಾಗಲಿಲ್ಲ" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "ಫಲಿತಾಂಶಗಳಿಲ್ಲ" - #: builtin/mainmenu/content/dlg_contentdb.lua #, fuzzy msgid "No updates" @@ -248,18 +482,6 @@ msgstr "" msgid "Base Game:" msgstr "" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "ರದ್ದುಮಾಡಿ" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -386,6 +608,12 @@ msgstr "" msgid "Unable to install a $1 as a texture pack" msgstr "" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "" @@ -450,12 +678,6 @@ msgstr "ಯಾವುದೇ ಐಚ್ಛಿಕ ಅವಲಂಬನೆಗಳಿಲ msgid "Optional dependencies:" msgstr "ಐಚ್ಛಿಕ ಅವಲಂಬನೆಗಳು:" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "ಸೇವ್" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "ಪ್ರಪಂಚ:" @@ -620,12 +842,6 @@ msgstr "ನದಿಗಳು" msgid "Sea level rivers" msgstr "ಸಮುದ್ರ ಮಟ್ಟದಲ್ಲಿರುವ ನದಿಗಳು" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#, fuzzy -msgid "Seed" -msgstr "ಬೀಜ" - #: builtin/mainmenu/dlg_create_world.lua #, fuzzy msgid "Smooth transition between biomes" @@ -762,6 +978,23 @@ msgid "" "override any renaming here." msgstr "" +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "ಎಲ್ಲವನ್ನೂ ಸಕ್ರಿಯಗೊಳಿಸಿ" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "" @@ -786,7 +1019,7 @@ msgstr "" msgid "Visit website" msgstr "" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "" @@ -798,225 +1031,6 @@ msgstr "" msgid "Try reenabling public serverlist and check your internet connection." msgstr "ಪಬ್ಲಿಕ್ ಸರ್ವರ್ಲಿಸ್ಟ್ಅನ್ನು ರಿಎನೆಬಲ್ ಮಾಡಿ ಮತ್ತು ಅಂತರ್ಜಾಲ ಸಂಪರ್ಕ ಪರಿಶೀಲಿಸಿ." -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Set" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Enabled" -msgstr "ಸಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "ಹುಡುಕು" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "ಸಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "Shaders are disabled." -msgstr "" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "" @@ -1037,10 +1051,6 @@ msgstr "" msgid "Core Team" msgstr "" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "" @@ -1186,10 +1196,20 @@ msgstr "" msgid "You need to install a game before you can create a world." msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "Add favorite" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Clients:\n" +"$1" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "" @@ -1203,6 +1223,11 @@ msgstr "" msgid "Favorites" msgstr "" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "ಆಟ" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "" @@ -1215,10 +1240,26 @@ msgstr "" msgid "Login" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +msgid "Open server website" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua #, fuzzy msgid "Public Servers" @@ -1302,23 +1343,6 @@ msgid "" "Check debug.txt for details." msgstr "" -#: src/client/game.cpp -msgid "- Mode: " -msgstr "" - -#: src/client/game.cpp -msgid "- Public: " -msgstr "" - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "" - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "" - #: src/client/game.cpp #, fuzzy msgid "A serialization error occurred:" @@ -1329,6 +1353,10 @@ msgstr "ದೋಷ ವೊಂದು ಸಂಭವಿಸಿದೆ:" msgid "Access denied. Reason: %s" msgstr "" +#: src/client/game.cpp +msgid "All debug info hidden" +msgstr "" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "" @@ -1349,6 +1377,10 @@ msgstr "" msgid "Block bounds shown for nearby blocks" msgstr "" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "" @@ -1361,10 +1393,6 @@ msgstr "" msgid "Can't show block bounds (disabled by game or mod)" msgstr "" -#: src/client/game.cpp -msgid "Change Password" -msgstr "" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "" @@ -1393,26 +1421,6 @@ msgstr "" msgid "Connection failed for unknown reason" msgstr "" -#: src/client/game.cpp -msgid "Continue" -msgstr "" - -#: src/client/game.cpp -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1426,31 +1434,15 @@ msgstr "" msgid "Creating server..." msgstr "" -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "" - #: src/client/game.cpp msgid "Debug info shown" msgstr "" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "" - #: src/client/game.cpp #, c-format msgid "Error creating client: %s" msgstr "" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "" @@ -1487,18 +1479,6 @@ msgstr "" msgid "Fog enabled by game or mod" msgstr "" -#: src/client/game.cpp -msgid "Game info:" -msgstr "" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "" - #: src/client/game.cpp msgid "Item definitions..." msgstr "" @@ -1535,14 +1515,6 @@ msgstr "" msgid "Node definitions..." msgstr "" -#: src/client/game.cpp -msgid "Off" -msgstr "" - -#: src/client/game.cpp -msgid "On" -msgstr "" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "" @@ -1555,38 +1527,22 @@ msgstr "" msgid "Profiler graph shown" msgstr "" -#: src/client/game.cpp -msgid "Remote server" -msgstr "" - #: src/client/game.cpp msgid "Resolving address..." msgstr "" -#: src/client/game.cpp -msgid "Respawn" -msgstr "ಮತ್ತೆ ಹುಟ್ಟು" - #: src/client/game.cpp msgid "Shutting down..." msgstr "" -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "" - #: src/client/game.cpp msgid "Sound muted" msgstr "" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "" @@ -1658,18 +1614,103 @@ msgstr "" msgid "Volume changed to %d%%" msgstr "" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "" -#: src/client/game.cpp -msgid "You died" -msgstr "ನೀನು ಸತ್ತುಹೋದೆ" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "" + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "ಮತ್ತೆ ಹುಟ್ಟು" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "ನೀನು ಸತ್ತುಹೋದೆ" + #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" msgstr "" @@ -1996,7 +2037,7 @@ msgid "Failed to compile the \"%s\" shader." msgstr "$1 ಡೌನ್ಲೋಡ್ ಮಾಡಲು ಆಗಿಲ್ಲ" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." +msgid "GLSL is not supported by the driver" msgstr "" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" @@ -2046,7 +2087,7 @@ msgstr "" msgid "Automatic jumping" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "" @@ -2058,7 +2099,7 @@ msgstr "" msgid "Block bounds" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "" @@ -2082,7 +2123,7 @@ msgstr "" msgid "Double tap \"jump\" to toggle fly" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "" @@ -2098,11 +2139,11 @@ msgstr "" msgid "Inc. volume" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "" @@ -2134,7 +2175,7 @@ msgstr "" msgid "Prev. item" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "" @@ -2146,7 +2187,7 @@ msgstr "" msgid "Screenshot" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "" @@ -2154,15 +2195,15 @@ msgstr "" msgid "Toggle HUD" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "" @@ -2170,11 +2211,11 @@ msgstr "" msgid "Toggle fog" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "" @@ -2182,7 +2223,7 @@ msgstr "" msgid "Toggle pitchmove" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "" @@ -2219,7 +2260,7 @@ msgstr "" msgid "Passwords do not match!" msgstr "" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "" @@ -2232,15 +2273,43 @@ msgstr "" msgid "Sound Volume: %d%%" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +msgid "Add button" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Done" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Remove" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp msgid "Joystick" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Toggle debug" msgstr "" @@ -2435,8 +2504,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" #: src/settings_translation_file.cpp @@ -2489,10 +2557,6 @@ msgstr "" msgid "Active object send range" msgstr "" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "" - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2515,6 +2579,16 @@ msgstr "" msgid "Advanced" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Allow clouds to look 3D instead of flat." +msgstr "" + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "" @@ -2883,11 +2957,11 @@ msgid "Clouds" msgstr "" #: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." +msgid "Clouds in menu" msgstr "" #: src/settings_translation_file.cpp -msgid "Clouds in menu" +msgid "Color depth for post-processing texture" msgstr "" #: src/settings_translation_file.cpp @@ -2912,7 +2986,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" #: src/settings_translation_file.cpp @@ -3047,6 +3121,14 @@ msgstr "" msgid "Debugging" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "" @@ -3198,19 +3280,11 @@ msgid "" "When the 'snowbiomes' flag is enabled, this is ignored." msgstr "" -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Developer Options" msgstr "ಅಲಂಕಾರಗಳು" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "" @@ -3238,6 +3312,14 @@ msgstr "" msgid "Double-tapping the jump key toggles fly mode." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "" @@ -3313,8 +3395,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" #: src/settings_translation_file.cpp @@ -3387,8 +3469,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" #: src/settings_translation_file.cpp @@ -3403,12 +3484,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "" - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -3710,10 +3785,6 @@ msgstr "" msgid "GUI scaling filter" msgstr "" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Gamepads" @@ -3938,12 +4009,6 @@ msgid "" "descending." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -3962,6 +4027,13 @@ msgid "" "empty password." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4056,10 +4128,6 @@ msgstr "" msgid "Interval of saving important changes in the world, stated in seconds." msgstr "" -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "" - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "" @@ -4674,10 +4742,6 @@ msgstr "" msgid "Maximum users" msgstr "" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "" @@ -4710,6 +4774,10 @@ msgstr "" msgid "Minimum limit of random number of small caves per mapchunk." msgstr "" +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "" @@ -4799,7 +4867,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" @@ -5239,17 +5307,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5443,16 +5513,6 @@ msgstr "" msgid "Shader path" msgstr "" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "" @@ -5613,10 +5673,9 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" #: src/settings_translation_file.cpp @@ -5895,10 +5954,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "" -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "" @@ -5957,6 +6012,10 @@ msgstr "" msgid "Transparency Sorting Distance" msgstr "" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "" @@ -6007,7 +6066,10 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" #: src/settings_translation_file.cpp @@ -6030,16 +6092,14 @@ msgstr "" msgid "Upper Y limit of floatlands." msgstr "" -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "" - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "" #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" #: src/settings_translation_file.cpp @@ -6276,20 +6336,12 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -6300,10 +6352,6 @@ msgid "" "Mods may still set a background." msgstr "" -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -6326,8 +6374,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -6457,8 +6504,9 @@ msgstr "" #~ msgid "Downloading and installing $1, please wait..." #~ msgstr "$1 ಡೌನ್ಲೋಡ್ ಮತ್ತು ಇನ್ಸ್ಟಾಲ್ ಮಾಡಲಾಗುತ್ತಿದೆ, ದಯವಿಟ್ಟು ನಿರೀಕ್ಷಿಸಿ..." -#~ msgid "Game" -#~ msgstr "ಆಟ" +#, fuzzy +#~ msgid "Enable" +#~ msgstr "ಸಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ" #~ msgid "Ok" #~ msgstr "ಸರಿ" diff --git a/po/ko/luanti.po b/po/ko/luanti.po index eb0caa62f..a29adc07b 100644 --- a/po/ko/luanti.po +++ b/po/ko/luanti.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: Korean (Minetest)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" -"PO-Revision-Date: 2024-10-10 21:04+0000\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" +"PO-Revision-Date: 2025-02-02 12:01+0000\n" "Last-Translator: alasa ala \n" "Language-Team: Korean \n" @@ -12,7 +12,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 5.8-dev\n" +"X-Generator: Weblate 5.10-dev\n" #: builtin/client/chatcommands.lua msgid "Clear the out chat queue" @@ -81,6 +81,253 @@ msgstr "" msgid "[all | ] [-t]" msgstr "" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "열기" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "수정" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "경로를 선택하세요" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "파일 선택" + +#: builtin/common/settings/components.lua +#, fuzzy +msgid "Set" +msgstr "선택" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(설정에 대한 설명이 없습니다)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "2차원 소음" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "취소" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "빈약도" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "옥타브" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "오프셋" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#, fuzzy +msgid "Persistence" +msgstr "플레이어 전송 거리" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "저장" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "스케일" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "시드" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "X 분산" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "Y 분산" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "Z 분산" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "절댓값" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "기본값" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "맵 부드러움" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "채팅" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "지우기" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "컨트롤" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "비활성화됨" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "활성화됨" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "빠른 이동" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "결과 없음" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Reset setting to default" +msgstr "기본값 복원" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "찾기" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "기술적 이름 보기" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Touchscreen layout" +msgstr "터치임계값 (픽셀)" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "pause_menu" +msgstr "일시정지 메뉴에서 FPS" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Client Mods" +msgstr "월드 선택:" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Content: Games" +msgstr "컨텐츠" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Content: Mods" +msgstr "컨텐츠" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +#, fuzzy +msgid "Dynamic shadows" +msgstr "글꼴 그림자" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "" + #: builtin/fstk/ui.lua msgid "" msgstr "" @@ -170,7 +417,6 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "뒤로" @@ -207,11 +453,6 @@ msgstr "모드" msgid "No packages could be retrieved" msgstr "검색할 수 있는 패키지가 없습니다" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "결과 없음" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "업데이트 없음" @@ -258,18 +499,6 @@ msgstr "이미 설치됨" msgid "Base Game:" msgstr "호스트 게임" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "취소" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -400,6 +629,12 @@ msgstr "$1 모드를 설치할 수 없습니다" msgid "Unable to install a $1 as a texture pack" msgstr "$1을 텍스쳐팩으로 설치할 수 없습니다" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "" @@ -464,12 +699,6 @@ msgstr "선택되지 않은 종속성" msgid "Optional dependencies:" msgstr "종속성 선택:" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "저장" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "세계:" @@ -621,11 +850,6 @@ msgstr "강" msgid "Sea level rivers" msgstr "해수면 강" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "시드" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "생물 군계 간 부드러운 전환" @@ -768,6 +992,23 @@ msgstr "" "이 모드팩에는 modpack.conf에 명시적인 이름이 부여되어 있으며, 이는 여기서 이" "름을 바꾸는 것을 적용하지 않습니다." +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "모두 활성화" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "" @@ -792,7 +1033,7 @@ msgstr "" msgid "Visit website" msgstr "" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "설정" @@ -805,233 +1046,6 @@ msgstr "클라이언트 스크립트가 비활성화됨" msgid "Try reenabling public serverlist and check your internet connection." msgstr "인터넷 연결을 확인한 후 서버 목록을 새로 고쳐보세요." -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "열기" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "수정" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "경로를 선택하세요" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "파일 선택" - -#: builtin/mainmenu/settings/components.lua -#, fuzzy -msgid "Set" -msgstr "선택" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(설정에 대한 설명이 없습니다)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "2차원 소음" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "빈약도" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "옥타브" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "오프셋" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#, fuzzy -msgid "Persistence" -msgstr "플레이어 전송 거리" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "스케일" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "X 분산" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "Y 분산" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "Z 분산" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "절댓값" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "기본값" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "맵 부드러움" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "채팅" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "지우기" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "컨트롤" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "비활성화됨" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "활성화됨" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Movement" -msgstr "빠른 이동" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Reset setting to default" -msgstr "기본값 복원" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "찾기" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "기술적 이름 보기" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Client Mods" -msgstr "월드 선택:" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Content: Games" -msgstr "컨텐츠" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Content: Mods" -msgstr "컨텐츠" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "활성화됨" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Shaders are disabled." -msgstr "카메라 업데이트 비활성화" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -#, fuzzy -msgid "Dynamic shadows" -msgstr "글꼴 그림자" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "" @@ -1053,10 +1067,6 @@ msgstr "코어 개발자" msgid "Core Team" msgstr "" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "" - #: builtin/mainmenu/tab_about.lua #, fuzzy msgid "Open User Data Directory" @@ -1208,11 +1218,23 @@ msgstr "게임 시작" msgid "You need to install a game before you can create a world." msgstr "" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "원격 포트" + #: builtin/mainmenu/tab_online.lua #, fuzzy msgid "Address" msgstr "- 주소: " +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "클라이언트" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "크리에이티브 모드" @@ -1228,6 +1250,11 @@ msgstr "데미지" msgid "Favorites" msgstr "즐겨찾기" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "게임" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "" @@ -1240,10 +1267,27 @@ msgstr "게임 참가" msgid "Login" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Open server website" +msgstr "전용 서버 단계" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "핑" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua #, fuzzy msgid "Public Servers" @@ -1333,23 +1377,6 @@ msgstr "" "\n" "자세한 내용은 debug.txt을 확인 합니다." -#: src/client/game.cpp -msgid "- Mode: " -msgstr "- 모드: " - -#: src/client/game.cpp -msgid "- Public: " -msgstr "- 공개: " - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "- Player vs Player: " - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "- 서버 이름: " - #: src/client/game.cpp #, fuzzy msgid "A serialization error occurred:" @@ -1360,6 +1387,11 @@ msgstr "오류가 발생했습니다:" msgid "Access denied. Reason: %s" msgstr "" +#: src/client/game.cpp +#, fuzzy +msgid "All debug info hidden" +msgstr "디버그 정보 표시" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "자동 전진 비활성화" @@ -1380,6 +1412,10 @@ msgstr "" msgid "Block bounds shown for nearby blocks" msgstr "" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "카메라 업데이트 비활성화" @@ -1393,10 +1429,6 @@ msgstr "카메라 업데이트 활성화" msgid "Can't show block bounds (disabled by game or mod)" msgstr "게임 또는 모드에 의해 현재 확대 비활성화" -#: src/client/game.cpp -msgid "Change Password" -msgstr "비밀번호 변경" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "시네마틱 모드 비활성화" @@ -1426,39 +1458,6 @@ msgstr "연결 오류 (시간초과)" msgid "Connection failed for unknown reason" msgstr "" -#: src/client/game.cpp -msgid "Continue" -msgstr "계속" - -#: src/client/game.cpp -#, fuzzy -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" -"기본 컨트롤: \n" -"메뉴 표시 없을 때:\n" -"- 단일 탭: 버튼 활성화\n" -"- 더블 탭: 배치/사용\n" -"- 드래그: 둘러보기\n" -" 메뉴/인벤토리:\n" -"- 더블 탭 (외부):\n" -" -->닫기\n" -"- 무더기(stack) 터치, 슬롯 터치: \n" -" --> 무더기(stack) 이동 \n" -"- 터치 및 드래그, 다른 손가락으로 탭\n" -" --> 슬롯에 한개의 아이템 배치\n" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1472,31 +1471,15 @@ msgstr "클라이언트 만드는 중..." msgid "Creating server..." msgstr "서버 만드는 중..." -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "디버그 정보 및 프로파일러 그래프 숨기기" - #: src/client/game.cpp msgid "Debug info shown" msgstr "디버그 정보 표시" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "디버그 정보, 프로파일러 그래프 , 선 표현 숨김" - #: src/client/game.cpp #, fuzzy, c-format msgid "Error creating client: %s" msgstr "클라이언트 만드는 중..." -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "메뉴로 나가기" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "게임 종료" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "고속 모드 비활성화" @@ -1534,18 +1517,6 @@ msgstr "안개 활성화" msgid "Fog enabled by game or mod" msgstr "게임 또는 모드에 의해 현재 확대 비활성화" -#: src/client/game.cpp -msgid "Game info:" -msgstr "게임 정보:" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "게임 일시정지" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "호스팅 서버" - #: src/client/game.cpp msgid "Item definitions..." msgstr "아이템 정의중..." @@ -1583,14 +1554,6 @@ msgstr "Noclip 모드 활성화 (참고 : 'noclip'에 대한 권한 없음)" msgid "Node definitions..." msgstr "Node 정의중..." -#: src/client/game.cpp -msgid "Off" -msgstr "끄기" - -#: src/client/game.cpp -msgid "On" -msgstr "켜기" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "피치 이동 모드 비활성화" @@ -1603,38 +1566,22 @@ msgstr "피치 이동 모드 활성화" msgid "Profiler graph shown" msgstr "프로파일러 그래프 보이기" -#: src/client/game.cpp -msgid "Remote server" -msgstr "원격 서버" - #: src/client/game.cpp msgid "Resolving address..." msgstr "주소 분석중..." -#: src/client/game.cpp -msgid "Respawn" -msgstr "리스폰" - #: src/client/game.cpp msgid "Shutting down..." msgstr "서버가 닫혔습니다..." -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "싱글 플레이어" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "볼륨 조절" - #: src/client/game.cpp msgid "Sound muted" msgstr "음소거" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "사운드 시스템 비활성화" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "본 빌드에서 지원되지 않는 사운드 시스템" @@ -1708,18 +1655,116 @@ msgstr "시야 범위 %d로 바꿈" msgid "Volume changed to %d%%" msgstr "볼륨 %d%%로 바꿈" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "선 표면 보이기" -#: src/client/game.cpp -msgid "You died" -msgstr "사망했습니다" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "게임 또는 모드에 의해 현재 확대 비활성화" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "- 모드: " + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "- 공개: " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "- Player vs Player: " + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "- 서버 이름: " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "비밀번호 변경" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "계속" + +#: src/client/game_formspec.cpp +#, fuzzy +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" +"기본 컨트롤: \n" +"메뉴 표시 없을 때:\n" +"- 단일 탭: 버튼 활성화\n" +"- 더블 탭: 배치/사용\n" +"- 드래그: 둘러보기\n" +" 메뉴/인벤토리:\n" +"- 더블 탭 (외부):\n" +" -->닫기\n" +"- 무더기(stack) 터치, 슬롯 터치: \n" +" --> 무더기(stack) 이동 \n" +"- 터치 및 드래그, 다른 손가락으로 탭\n" +" --> 슬롯에 한개의 아이템 배치\n" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "메뉴로 나가기" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "게임 종료" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "게임 정보:" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "게임 일시정지" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "호스팅 서버" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "끄기" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "켜기" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "원격 서버" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "리스폰" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "볼륨 조절" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "사망했습니다" + #: src/client/gameui.cpp #, fuzzy msgid "Chat currently disabled by game or mod" @@ -2061,8 +2106,9 @@ msgid "Failed to compile the \"%s\" shader." msgstr "$1을 다운로드하는 데에 실패했습니다" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." -msgstr "" +#, fuzzy +msgid "GLSL is not supported by the driver" +msgstr "본 빌드에서 지원되지 않는 사운드 시스템" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" #: src/content/mod_configuration.cpp @@ -2112,7 +2158,7 @@ msgstr "자동전진" msgid "Automatic jumping" msgstr "자동 점프" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "" @@ -2124,7 +2170,7 @@ msgstr "뒤로" msgid "Block bounds" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "카메라 변경" @@ -2148,7 +2194,7 @@ msgstr "볼륨 줄이기" msgid "Double tap \"jump\" to toggle fly" msgstr "\"점프\"를 두번 탭하여 비행" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "드롭하기" @@ -2164,11 +2210,11 @@ msgstr "범위 증가" msgid "Inc. volume" msgstr "볼륨 늘리기" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "인벤토리" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "점프" @@ -2200,7 +2246,7 @@ msgstr "다음 아이템" msgid "Prev. item" msgstr "이전.아이템" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "범위 선택" @@ -2212,7 +2258,7 @@ msgstr "오른쪽" msgid "Screenshot" msgstr "스크린샷" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "살금살금" @@ -2220,15 +2266,15 @@ msgstr "살금살금" msgid "Toggle HUD" msgstr "HUD 토글" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "채팅 기록 토글" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "고속 스위치" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "비행 스위치" @@ -2236,11 +2282,11 @@ msgstr "비행 스위치" msgid "Toggle fog" msgstr "안개 토글" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "미니맵 토글" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "자유시점 스위치" @@ -2248,7 +2294,7 @@ msgstr "자유시점 스위치" msgid "Toggle pitchmove" msgstr "피치 이동 토글" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "확대/축소" @@ -2285,7 +2331,7 @@ msgstr "현재 비밀번호" msgid "Passwords do not match!" msgstr "비밀번호가 맞지 않습니다!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "나가기" @@ -2298,15 +2344,46 @@ msgstr "음소거" msgid "Sound Volume: %d%%" msgstr "볼륨 조절: " -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Add button" +msgstr "가운데 버튼" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "완료!" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Remove" +msgstr "원격 서버" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp msgid "Joystick" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Toggle debug" msgstr "안개 토글" @@ -2531,8 +2608,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" "3D 지원.\n" "현재 지원되는 것:\n" @@ -2595,10 +2671,6 @@ msgstr "블록 범위 활성" msgid "Active object send range" msgstr "객체 전달 범위 활성화" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "node를 부술 때의 파티클 효과를 추가합니다." - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2627,6 +2699,17 @@ msgstr "아이템 이름 추가" msgid "Advanced" msgstr "고급" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +#, fuzzy +msgid "Allow clouds to look 3D instead of flat." +msgstr "평평하게 보는 대신에 3D 구름 효과를 사용합니다." + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "" @@ -3034,15 +3117,14 @@ msgstr "구름 반지름" msgid "Clouds" msgstr "구름" -#: src/settings_translation_file.cpp -#, fuzzy -msgid "Clouds are a client-side effect." -msgstr "구름은 클라이언트에 측면 효과." - #: src/settings_translation_file.cpp msgid "Clouds in menu" msgstr "메뉴에 구름" +#: src/settings_translation_file.cpp +msgid "Color depth for post-processing texture" +msgstr "" + #: src/settings_translation_file.cpp msgid "Colored fog" msgstr "색깔있는 안개" @@ -3067,7 +3149,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" "컨텐츠 저장소에서 쉼표로 구분된 숨겨진 플래그 목록입니다.\n" "\"nonfree\"는 Free Software Foundation에서 정의한대로 '자유 소프트웨어'로 분" @@ -3221,6 +3303,14 @@ msgstr "디버그 로그 수준" msgid "Debugging" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "전용 서버 단계" @@ -3377,19 +3467,11 @@ msgid "" "When the 'snowbiomes' flag is enabled, this is ignored." msgstr "" -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "블록 애니메이션 비동기화" - #: src/settings_translation_file.cpp #, fuzzy msgid "Developer Options" msgstr "장식" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "입자 효과" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "비밀번호 없으면 불가" @@ -3417,6 +3499,14 @@ msgstr "점프를 두번 탭하여 비행" msgid "Double-tapping the jump key toggles fly mode." msgstr "점프키를 두번 누르면 비행 모드를 활성화시킵니다." +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "Mapgen 디버그 정보를 덤프 합니다." @@ -3494,8 +3584,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" #: src/settings_translation_file.cpp @@ -3576,10 +3666,10 @@ msgstr "" "예 : 0은 화면 흔들림 없음; 1.0은 노멀; 2.0은 더블." #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" "IPv6 서버를 실행 활성화/비활성화.\n" "IPv6 서버는 IPv6 클라이언트 시스템 구성에 따라 제한 될 수 있습니다.\n" @@ -3597,12 +3687,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "인벤토리 아이템의 애니메이션 적용." -#: src/settings_translation_file.cpp -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "" - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -3914,10 +3998,6 @@ msgstr "GUI 크기 조정" msgid "GUI scaling filter" msgstr "GUI 크기 조정 필터" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "GUI 크기 조정 필터 txr2img" - #: src/settings_translation_file.cpp #, fuzzy msgid "Gamepads" @@ -4149,12 +4229,6 @@ msgstr "" "활성화시, \"sneak\"키 대신 \"특수\"키가 내려가는데 \n" "사용됩니다." -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -4174,6 +4248,13 @@ msgid "" "empty password." msgstr "적용할 경우, 새로운 플레이어는 빈 암호로 가입 할 수 없습니다." +#: src/settings_translation_file.cpp +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4271,11 +4352,6 @@ msgstr "" msgid "Interval of saving important changes in the world, stated in seconds." msgstr "" -#: src/settings_translation_file.cpp -#, fuzzy -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "도구 설명 표시 지연, 1000분의 1초." - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "인벤토리 아이템 애니메이션" @@ -4907,10 +4983,6 @@ msgstr "" msgid "Maximum users" msgstr "최대 사용자" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "메쉬 캐시" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "메시지" @@ -4944,6 +5016,10 @@ msgstr "" msgid "Minimum limit of random number of small caves per mapchunk." msgstr "" +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "밉매핑(Mipmapping)" @@ -5037,9 +5113,10 @@ msgid "" msgstr "" #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" "플레이어의 이름.\n" @@ -5500,17 +5577,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5743,16 +5822,6 @@ msgstr "" msgid "Shader path" msgstr "쉐이더 경로" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "셰이더" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Shadow filter quality" @@ -5928,10 +5997,9 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" #: src/settings_translation_file.cpp @@ -6216,10 +6284,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "" -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "시간 전송 간격" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "시간 속도" @@ -6289,6 +6353,10 @@ msgstr "불투명한 액체" msgid "Transparency Sorting Distance" msgstr "" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "" @@ -6342,7 +6410,10 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" #: src/settings_translation_file.cpp @@ -6365,17 +6436,15 @@ msgstr "" msgid "Upper Y limit of floatlands." msgstr "" -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "평평하게 보는 대신에 3D 구름 효과를 사용합니다." - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "주 메뉴 배경에 구름 애니메이션을 사용 합니다." #: src/settings_translation_file.cpp #, fuzzy -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "각도에 따라 텍스처를 볼 때 이방성 필터링을 사용 합니다." #: src/settings_translation_file.cpp @@ -6624,23 +6693,15 @@ msgstr "" "하지만 일부 이미지는 바로 하드웨어에 생성됩니다. \n" "(e.g. render-to-texture for nodes in inventory)." -#: src/settings_translation_file.cpp -msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -6661,10 +6722,6 @@ msgid "" "Mods may still set a background." msgstr "" -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -6687,8 +6744,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -6854,6 +6910,9 @@ msgstr "" #~ "로컬 서버를 시작하려면 공백으로 두십시오.\n" #~ "주 메뉴의 주소 공간은 이 설정에 중복됩니다." +#~ msgid "Adds particles when digging a node." +#~ msgstr "node를 부술 때의 파티클 효과를 추가합니다." + #~ msgid "" #~ "Adjust dpi configuration to your screen (non X11/Android only) e.g. for " #~ "4k screens." @@ -6959,6 +7018,10 @@ msgstr "" #~ msgid "Clean transparent textures" #~ msgstr "깨끗하고 투명한 텍스처" +#, fuzzy +#~ msgid "Clouds are a client-side effect." +#~ msgstr "구름은 클라이언트에 측면 효과." + #~ msgid "Command key" #~ msgstr "명령 키" @@ -7040,9 +7103,15 @@ msgstr "" #~ msgid "Damage enabled" #~ msgstr "데미지 활성화" +#~ msgid "Debug info and profiler graph hidden" +#~ msgstr "디버그 정보 및 프로파일러 그래프 숨기기" + #~ msgid "Debug info toggle key" #~ msgstr "디버그 정보 토글 키" +#~ msgid "Debug info, profiler graph, and wireframe hidden" +#~ msgstr "디버그 정보, 프로파일러 그래프 , 선 표현 숨김" + #~ msgid "Dec. volume key" #~ msgstr "볼륨 낮추기 키" @@ -7073,10 +7142,16 @@ msgstr "" #~ msgid "Del. Favorite" #~ msgstr "즐겨찾기 삭제" +#~ msgid "Desynchronize block animation" +#~ msgstr "블록 애니메이션 비동기화" + #, fuzzy #~ msgid "Dig key" #~ msgstr "오른쪽 키" +#~ msgid "Digging particles" +#~ msgstr "입자 효과" + #~ msgid "Disable anticheat" #~ msgstr "Anticheat를 사용 안함" @@ -7103,6 +7178,10 @@ msgstr "" #~ msgid "Dynamic shadows:" #~ msgstr "글꼴 그림자" +#, fuzzy +#~ msgid "Enable" +#~ msgstr "활성화됨" + #~ msgid "Enable VBO" #~ msgstr "VBO 적용" @@ -7147,9 +7226,6 @@ msgstr "" #~ msgid "Enter " #~ msgstr "들어가기 " -#~ msgid "FPS in pause menu" -#~ msgstr "일시정지 메뉴에서 FPS" - #~ msgid "Fallback font shadow" #~ msgstr "대체 글꼴 그림자" @@ -7203,8 +7279,8 @@ msgstr "" #~ msgid "Full screen BPP" #~ msgstr "전체 화면 BPP" -#~ msgid "Game" -#~ msgstr "게임" +#~ msgid "GUI scaling filter txr2img" +#~ msgstr "GUI 크기 조정 필터 txr2img" #~ msgid "Gamma" #~ msgstr "감마" @@ -7240,6 +7316,10 @@ msgstr "" #~ msgid "Install: file: \"$1\"" #~ msgstr "모드 설치: 파일: \"$1\"" +#, fuzzy +#~ msgid "Interval of sending time of day to clients, stated in seconds." +#~ msgstr "도구 설명 표시 지연, 1000분의 1초." + #~ msgid "Invalid gamespec." #~ msgstr "인식할 수 없는 게임 사양입니다." @@ -7251,641 +7331,641 @@ msgstr "" #~ msgid "" #~ "Key for decreasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "보여지는 범위 감소에 대한 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for decreasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "볼륨 감소 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #, fuzzy #~ msgid "" #~ "Key for digging.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "점프키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for dropping the currently selected item.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "현재 선택된 아이템 드롭에 대한 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for increasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "보여지는 범위 증가에 대한 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for increasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "보여지는 범위 증가에 대한 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for jumping.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "점프키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for moving fast in fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "고속 모드에서 빠르게 이동하는 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for moving the player backward.\n" #~ "Will also disable autoforward, when active.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "플레이어가 \n" #~ "뒤쪽으로 움직이는 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for moving the player forward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "플레이어가 앞으로 움직이는 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for moving the player left.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "플레이어가 왼쪽으로 움직이는 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for moving the player right.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "플레이어가 오른쪽으로 움직이는 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for muting the game.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "점프키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for opening the chat window to type commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "명령어를 입력하기 위해 채팅창을 여는 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for opening the chat window to type local commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "로컬 명령어를 입력하기 위해 채팅창을 여는 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for opening the chat window.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "채팅창을 여는 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for opening the inventory.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "인벤토리를 여는 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #, fuzzy #~ msgid "" #~ "Key for placing.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "점프키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for selecting the 11th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "인벤토리를 여는 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for selecting the 12th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "인벤토리를 여는 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for selecting the 13th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "13번째 hotbar 슬롯을 선택하는 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for selecting the 14th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "14번째 hotbar 슬롯을 선택하는 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for selecting the 15th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "15번째 hotbar 슬롯을 선택하는 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for selecting the 16th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "16번째 hotbar 슬롯을 선택하는 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for selecting the 17th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "17번째 hotbar 슬롯을 선택하는 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for selecting the 18th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "18번째 hotbar 슬롯을 선택하는 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for selecting the 19th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "19번째 hotbar 슬롯을 선택하는 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for selecting the 20th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "20번째 hotbar 슬롯을 선택하는 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for selecting the 21st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "21번째 hotbar 슬롯을 선택하는 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for selecting the 22nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "22번째 hotbar 슬롯을 선택하는 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for selecting the 23rd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "23번째 hotbar 슬롯을 선택하는 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for selecting the 24th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "24번째 hotbar 슬롯을 선택하는 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for selecting the 25th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "25번째 hotbar 슬롯을 선택하는 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for selecting the 26th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "26번째 hotbar 슬롯을 선택하는 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for selecting the 27th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "27번째 hotbar 슬롯을 선택하는 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for selecting the 28th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "28번째 hotbar 슬롯을 선택하는 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for selecting the 29th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "29번째 hotbar 슬롯을 선택하는 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for selecting the 30th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "30번째 hotbar 슬롯을 선택하는 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for selecting the 31st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "31번째 hotbar 슬롯을 선택하는 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for selecting the 32nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "32번째 hotbar 슬롯을 선택하는 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for selecting the eighth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "8번째 hotbar 슬롯을 선택하는 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for selecting the fifth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "5번째 hotbar 슬롯을 선택하는 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for selecting the first hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "1번째 hotbar 슬롯을 선택하는 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for selecting the fourth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "4번째 hotbar 슬롯을 선택하는 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for selecting the next item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "다음 아이템 hotbar 슬롯을 선택하는 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for selecting the ninth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "9번째 hotbar 슬롯을 선택하는 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for selecting the previous item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "이전 아이템 hotbar 슬롯을 선택하는 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for selecting the second hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "2번째 hotbar 슬롯을 선택하는 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for selecting the seventh hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "7번째 hotbar 슬롯을 선택하는 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for selecting the sixth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "6번째 hotbar 슬롯을 선택하는 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for selecting the tenth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "10번째 hotbar 슬롯을 선택하는 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for selecting the third hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "3번째 hotbar 슬롯을 선택하는 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for sneaking.\n" #~ "Also used for climbing down and descending in water if aux1_descends is " #~ "disabled.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "살금살금걷기 키입니다.\n" #~ "만약 aux1_descends를 사용할 수 없는 경우에 물에서 내려가거나 올라올 수 있" #~ "습니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for switching between first- and third-person camera.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "1인칭에서 3인칭간 카메라 전환키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for taking screenshots.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "스크린샷키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for toggling autoforward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "자동전진 토글에 대한 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for toggling cinematic mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "시네마틱 모드 스위치 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for toggling display of minimap.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "미니 맵 표시 설정/해제 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for toggling fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "고속 모드 스위치 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for toggling flying.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "비행 모드 스위치 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for toggling noclip mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "자유시점 모드 스위치 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for toggling pitch move mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "피치 이동 모드 토글에 대한 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for toggling the camera update. Only used for development\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "카메라 업데이트 스위치 키입니다. 개발을 위해서만 사용됩니다. \n" -#~ "참조 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "참조 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of chat.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "채팅 디스플레이 토글 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for toggling the display of debug info.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "디버그 정보 표시 스위치 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for toggling the display of fog.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "안개 디스플레이 토글 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for toggling the display of the HUD.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "HUD 표시 스위치 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for toggling the display of the large chat console.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "채팅 콘솔 디스플레이 토글 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key for toggling unlimited view range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "제한없이 보여지는 범위에 대한 스위치 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Key to use view zoom when possible.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "가능한 경우 시야 확대를 사용하는 키입니다.\n" -#~ "Http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3 참조" +#~ "Http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 참조" #~ msgid "" #~ "Keybindings. (If this menu screws up, remove stuff from minetest.conf)" @@ -7922,6 +8002,9 @@ msgstr "" #~ msgid "Menus" #~ msgstr "메뉴" +#~ msgid "Mesh cache" +#~ msgstr "메쉬 캐시" + #~ msgid "Minimap" #~ msgstr "미니맵" @@ -8106,6 +8189,9 @@ msgstr "" #~ msgid "Server / Singleplayer" #~ msgstr "서버 / 싱글 플레이어" +#~ msgid "Shaders" +#~ msgstr "셰이더" + #, fuzzy #~ msgid "Shaders (experimental)" #~ msgstr "평평한 땅 (실험용)" @@ -8121,6 +8207,10 @@ msgstr "" #~ "이것은 OpenGL video backend에서만 \n" #~ "작동합니다." +#, fuzzy +#~ msgid "Shaders are disabled." +#~ msgstr "카메라 업데이트 비활성화" + #~ msgid "Shadow limit" #~ msgstr "그림자 제한" @@ -8142,6 +8232,9 @@ msgstr "" #~ msgstr "" #~ "카메라의 회전을 매끄럽게 만듭니다. 사용 하지 않으려면 0을 입력하세요." +#~ msgid "Sound system is disabled" +#~ msgstr "사운드 시스템 비활성화" + #~ msgid "Special" #~ msgstr "특별함" @@ -8182,6 +8275,9 @@ msgstr "" #~ msgid "This font will be used for certain languages." #~ msgstr "이 글꼴은 특정 언어에 사용 됩니다." +#~ msgid "Time send interval" +#~ msgstr "시간 전송 간격" + #~ msgid "To enable shaders the OpenGL driver needs to be used." #~ msgstr "쉐이더를 사용하려면 OpenGL 드라이버를 사용할 필요가 있습니다." diff --git a/po/kv/luanti.po b/po/kv/luanti.po index 337abcb43..2ab1149ba 100644 --- a/po/kv/luanti.po +++ b/po/kv/luanti.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: minetest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" "PO-Revision-Date: 2024-08-06 19:09+0000\n" "Last-Translator: Mićadźoridź \n" "Language-Team: Komi » содтӧд юӧрла али «.help all» — msgid "[all | ] [-t]" msgstr "[all | <команда>] [-t]" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "Вежны" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "Куд бӧрйыны" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "Файл бӧрйыны" + +#: builtin/common/settings/components.lua +msgid "Set" +msgstr "Индыны" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(Лӧсьӧдӧм йывсьыс юӧр абу)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "2D шувгӧм" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "Дугӧдны" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "Октавъяс" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "Вештӧм" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "Видзны" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "Бердӧг" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "Сид" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "X кузя разалӧм" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "Y кузя разалӧм" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "Z паськалӧм" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "подув ногӧн" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "(Системалӧн кывйыс)" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "Восьсалун" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "Чат" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "Чышкыны" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "Веськӧдлӧм" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "Кусӧдӧма" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Enabled" +msgstr "ӧзтӧма" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "Медшӧр" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "Вуджӧм" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "Нинӧм абу аддзӧма" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "Корсьны" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "Унджык лӧсьӧдӧм петкӧдлыны" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "Техника нимъяс петкӧдлыны" + +#: builtin/common/settings/dlg_settings.lua +msgid "Touchscreen layout" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "pause_menu" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Client Mods" +msgstr "Клиентъяслӧн модъяс" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "Содтӧдъяс: ворсӧмъяс" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "Содтӧдъяс: модъяс" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "Динамикаа вуджӧръяс" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "" + #: builtin/fstk/ui.lua msgid "" msgstr "<сиптӧма>" @@ -166,7 +405,6 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "" @@ -203,11 +441,6 @@ msgstr "Модъяс" msgid "No packages could be retrieved" msgstr "Содтӧдъяс босьтны эз артмы" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "Нинӧм абу аддзӧма" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "Выльмӧдӧмъяс абуӧсь" @@ -253,18 +486,6 @@ msgstr "Нин пуктӧма" msgid "Base Game:" msgstr "Медшӧр ворсӧм:" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "Дугӧдны" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -390,6 +611,12 @@ msgstr "$2 моз $1 пуктыны эз артмы" msgid "Unable to install a $1 as a texture pack" msgstr "Текстура чукӧр моз $1 пуктыны эз артмы" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "(Ӧзтӧма, торксьӧмъяс эмӧсь)" @@ -454,12 +681,6 @@ msgstr "" msgid "Optional dependencies:" msgstr "" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "Видзны" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "Енкӧла:" @@ -610,11 +831,6 @@ msgstr "Юяс" msgid "Sea level rivers" msgstr "Саридз веркӧс судта юяс" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "Сид" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "Биомъяс костын лайкыд вуджӧм" @@ -750,6 +966,23 @@ msgid "" "override any renaming here." msgstr "" +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "Ставсӧ ӧзтыны" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "Выль $1 версия восьтӧма" @@ -778,7 +1011,7 @@ msgstr "Некор" msgid "Visit website" msgstr "Сайтӧ пырны" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "Лӧсьӧданін" @@ -792,225 +1025,6 @@ msgstr "" "Видлӧй восьса серверъяслысь лыддьӧгнысӧ выльмӧдны да видлӧй ӧтуввезкӧд " "йитчӧмсӧ." -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "Вежны" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "Куд бӧрйыны" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "Файл бӧрйыны" - -#: builtin/mainmenu/settings/components.lua -msgid "Set" -msgstr "Индыны" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(Лӧсьӧдӧм йывсьыс юӧр абу)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "2D шувгӧм" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "Октавъяс" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "Вештӧм" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "Бердӧг" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "X кузя разалӧм" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "Y кузя разалӧм" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "Z паськалӧм" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "подув ногӧн" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "(Системалӧн кывйыс)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "Восьсалун" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "Чат" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "Чышкыны" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "Веськӧдлӧм" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "Кусӧдӧма" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Enabled" -msgstr "ӧзтӧма" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "Медшӧр" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "Вуджӧм" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "Корсьны" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "Унджык лӧсьӧдӧм петкӧдлыны" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "Техника нимъяс петкӧдлыны" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "Клиентъяслӧн модъяс" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "Содтӧдъяс: ворсӧмъяс" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "Содтӧдъяс: модъяс" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "ӧзтӧма" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "Shaders are disabled." -msgstr "" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "Динамикаа вуджӧръяс" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "Унджык" @@ -1031,10 +1045,6 @@ msgstr "Медшӧр артмӧдысьяс" msgid "Core Team" msgstr "Медшӧр котыр" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "Вӧдитчысьлысь мыччӧдсӧ видзан куд восьтыны" @@ -1181,10 +1191,22 @@ msgstr "Ворсны кутны" msgid "You need to install a game before you can create a world." msgstr "Енкӧла вӧчтӧдз тіянлы колӧ пуктыны ворсӧм." +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "Бӧрйӧмъяс" + #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "Инпас" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "Клиент" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "" @@ -1198,6 +1220,11 @@ msgstr "Доймӧм / PvP" msgid "Favorites" msgstr "Бӧрйӧмъяс" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "Ворсӧмъяс" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "Ӧта-мӧдкӧд лӧсявтӧм серверъясыс" @@ -1210,10 +1237,26 @@ msgstr "" msgid "Login" msgstr "Пырны" +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +msgid "Open server website" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Public Servers" msgstr "Восьса серверъяс" @@ -1296,23 +1339,6 @@ msgid "" "Check debug.txt for details." msgstr "" -#: src/client/game.cpp -msgid "- Mode: " -msgstr "" - -#: src/client/game.cpp -msgid "- Public: " -msgstr "- Восьса: " - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "- РvP: " - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "- Серверлӧн ним: " - #: src/client/game.cpp msgid "A serialization error occurred:" msgstr "" @@ -1322,6 +1348,10 @@ msgstr "" msgid "Access denied. Reason: %s" msgstr "" +#: src/client/game.cpp +msgid "All debug info hidden" +msgstr "" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "" @@ -1342,6 +1372,10 @@ msgstr "" msgid "Block bounds shown for nearby blocks" msgstr "" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "" @@ -1354,10 +1388,6 @@ msgstr "" msgid "Can't show block bounds (disabled by game or mod)" msgstr "" -#: src/client/game.cpp -msgid "Change Password" -msgstr "Гусякывсӧ вежны" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "" @@ -1386,26 +1416,6 @@ msgstr "" msgid "Connection failed for unknown reason" msgstr "" -#: src/client/game.cpp -msgid "Continue" -msgstr "" - -#: src/client/game.cpp -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1419,31 +1429,15 @@ msgstr "Клиентӧс вӧчӧм..." msgid "Creating server..." msgstr "Сервер вӧчӧм..." -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "" - #: src/client/game.cpp msgid "Debug info shown" msgstr "" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "" - #: src/client/game.cpp #, c-format msgid "Error creating client: %s" msgstr "" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "Менюӧ петны" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "Вӧрсӧмсьыс петны" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "" @@ -1480,18 +1474,6 @@ msgstr "" msgid "Fog enabled by game or mod" msgstr "" -#: src/client/game.cpp -msgid "Game info:" -msgstr "Ворсӧм йывсьыс юӧр:" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "" - #: src/client/game.cpp msgid "Item definitions..." msgstr "" @@ -1528,14 +1510,6 @@ msgstr "" msgid "Node definitions..." msgstr "" -#: src/client/game.cpp -msgid "Off" -msgstr "Кусӧдӧма" - -#: src/client/game.cpp -msgid "On" -msgstr "Ӧзтӧма" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "" @@ -1548,38 +1522,22 @@ msgstr "" msgid "Profiler graph shown" msgstr "" -#: src/client/game.cpp -msgid "Remote server" -msgstr "" - #: src/client/game.cpp msgid "Resolving address..." msgstr "" -#: src/client/game.cpp -msgid "Respawn" -msgstr "Ловзьыны" - #: src/client/game.cpp msgid "Shutting down..." msgstr "Помасьӧм..." -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "Шы горалун" - #: src/client/game.cpp msgid "Sound muted" msgstr "" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "Шы система кусӧдӧма" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "" @@ -1651,18 +1609,103 @@ msgstr "" msgid "Volume changed to %d%%" msgstr "" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "" -#: src/client/game.cpp -msgid "You died" -msgstr "Кулінныд" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "- Восьса: " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "- РvP: " + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "- Серверлӧн ним: " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "Гусякывсӧ вежны" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "Менюӧ петны" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "Вӧрсӧмсьыс петны" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "Ворсӧм йывсьыс юӧр:" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "Кусӧдӧма" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "Ӧзтӧма" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "Ловзьыны" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "Шы горалун" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "Кулінныд" + #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" msgstr "" @@ -1989,7 +2032,7 @@ msgid "Failed to compile the \"%s\" shader." msgstr "" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." +msgid "GLSL is not supported by the driver" msgstr "" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" @@ -2037,7 +2080,7 @@ msgstr "" msgid "Automatic jumping" msgstr "Автоматӧн чеччыштӧм" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "Aux1" @@ -2049,7 +2092,7 @@ msgstr "Бӧрӧ" msgid "Block bounds" msgstr "Мапблоклӧн доръяс" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "" @@ -2073,7 +2116,7 @@ msgstr "" msgid "Double tap \"jump\" to toggle fly" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "Чӧвтны" @@ -2089,11 +2132,11 @@ msgstr "" msgid "Inc. volume" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "Чеччыштны" @@ -2125,7 +2168,7 @@ msgstr "" msgid "Prev. item" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "Тыдалан диапазон" @@ -2137,7 +2180,7 @@ msgstr "" msgid "Screenshot" msgstr "Скриншот" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "Кыйксьӧдны" @@ -2145,15 +2188,15 @@ msgstr "Кыйксьӧдны" msgid "Toggle HUD" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "" @@ -2161,11 +2204,11 @@ msgstr "" msgid "Toggle fog" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "" @@ -2173,7 +2216,7 @@ msgstr "" msgid "Toggle pitchmove" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "" @@ -2209,7 +2252,7 @@ msgstr "Важ гусякыв" msgid "Passwords do not match!" msgstr "Гусякывъясыс эз ӧтлаасьны!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "Пӧдлавны" @@ -2222,16 +2265,46 @@ msgstr "" msgid "Sound Volume: %d%%" msgstr "Шы горалун: %d%%" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Add button" +msgstr "Шӧр личкантор" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "Дась!" + +#: src/gui/touchscreeneditor.cpp +msgid "Remove" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Joystick" msgstr "Контроллерлӧн ID-ыс" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Toggle debug" msgstr "" @@ -2429,8 +2502,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" #: src/settings_translation_file.cpp @@ -2483,10 +2555,6 @@ msgstr "" msgid "Active object send range" msgstr "" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "" - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2509,6 +2577,16 @@ msgstr "Веськӧдлысьлӧн ним" msgid "Advanced" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Allow clouds to look 3D instead of flat." +msgstr "" + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "" @@ -2876,14 +2954,14 @@ msgstr "" msgid "Clouds" msgstr "Кымӧръяс" -#: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." -msgstr "" - #: src/settings_translation_file.cpp msgid "Clouds in menu" msgstr "Менюын кымӧръяс" +#: src/settings_translation_file.cpp +msgid "Color depth for post-processing texture" +msgstr "" + #: src/settings_translation_file.cpp msgid "Colored fog" msgstr "Рӧма руалӧм" @@ -2906,7 +2984,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" #: src/settings_translation_file.cpp @@ -3041,6 +3119,14 @@ msgstr "" msgid "Debugging" msgstr "Лӧсьӧдӧм" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "" @@ -3192,18 +3278,10 @@ msgid "" "When the 'snowbiomes' flag is enabled, this is ignored." msgstr "" -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "" - #: src/settings_translation_file.cpp msgid "Developer Options" msgstr "" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "Кушӧн гусякывсӧ кольны оз позь" @@ -3231,6 +3309,14 @@ msgstr "" msgid "Double-tapping the jump key toggles fly mode." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "" @@ -3305,8 +3391,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" #: src/settings_translation_file.cpp @@ -3379,8 +3465,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" #: src/settings_translation_file.cpp @@ -3395,12 +3480,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "" - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -3703,10 +3782,6 @@ msgstr "" msgid "GUI scaling filter" msgstr "" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "" - #: src/settings_translation_file.cpp msgid "Gamepads" msgstr "Ворсан контроллеръяс" @@ -3930,12 +4005,6 @@ msgid "" "descending." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -3954,6 +4023,13 @@ msgid "" "empty password." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4048,10 +4124,6 @@ msgstr "" msgid "Interval of saving important changes in the world, stated in seconds." msgstr "" -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "" - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "" @@ -4666,10 +4738,6 @@ msgstr "" msgid "Maximum users" msgstr "" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "Мешлӧн кеш" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "" @@ -4702,6 +4770,10 @@ msgstr "" msgid "Minimum limit of random number of small caves per mapchunk." msgstr "" +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "" @@ -4791,7 +4863,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" @@ -5231,17 +5303,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5434,16 +5508,6 @@ msgstr "" msgid "Shader path" msgstr "" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "Шейдӧръяс" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "" @@ -5605,10 +5669,9 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" #: src/settings_translation_file.cpp @@ -5887,10 +5950,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "" -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "" @@ -5950,6 +6009,10 @@ msgstr "Сӧдзов кизьӧрторъяс" msgid "Transparency Sorting Distance" msgstr "" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "Пулӧн шувгӧм" @@ -6000,7 +6063,10 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" #: src/settings_translation_file.cpp @@ -6023,16 +6089,14 @@ msgstr "" msgid "Upper Y limit of floatlands." msgstr "" -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "" - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "Менюын шуньгысь кымӧръяс." #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" #: src/settings_translation_file.cpp @@ -6271,20 +6335,12 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -6295,10 +6351,6 @@ msgid "" "Mods may still set a background." msgstr "" -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -6321,8 +6373,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -6461,9 +6512,22 @@ msgstr "" #~ msgid "Disable anticheat" #~ msgstr "Анти-чит кусӧдны" +#, fuzzy +#~ msgid "Enable" +#~ msgstr "ӧзтӧма" + #~ msgid "Invalid gamespec." #~ msgstr "Торксьӧм ворсан конфигурацияыс." +#~ msgid "Mesh cache" +#~ msgstr "Мешлӧн кеш" + +#~ msgid "Shaders" +#~ msgstr "Шейдӧръяс" + +#~ msgid "Sound system is disabled" +#~ msgstr "Шы система кусӧдӧма" + #~ msgid "View more information in a web browser" #~ msgstr "Видзӧдны ӧтуввезын содтӧм юӧр" diff --git a/po/ky/luanti.po b/po/ky/luanti.po index 3269922f0..f78014074 100644 --- a/po/ky/luanti.po +++ b/po/ky/luanti.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Kyrgyz (Minetest)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" "PO-Revision-Date: 2019-11-10 15:04+0000\n" "Last-Translator: Krock \n" "Language-Team: Kyrgyz ] [-t]" msgstr "" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "" + +#: builtin/common/settings/components.lua +#, fuzzy +msgid "Select directory" +msgstr "Дүйнөнү тандаңыз:" + +#: builtin/common/settings/components.lua +#, fuzzy +msgid "Select file" +msgstr "Дүйнөнү тандаңыз:" + +#: builtin/common/settings/components.lua +#, fuzzy +msgid "Set" +msgstr "Тандоо" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "Жокко чыгаруу" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "Сактоо" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "Маек" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "Тазалоо" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +#, fuzzy +msgid "Controls" +msgstr "Ctrl" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +#, fuzzy +msgid "Disabled" +msgstr "Баарын өчүрүү" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Enabled" +msgstr "күйгүзүлгөн" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Touchscreen layout" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "pause_menu" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Client Mods" +msgstr "Дүйнөнү тандаңыз:" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Content: Games" +msgstr "Улантуу" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Content: Mods" +msgstr "Улантуу" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "" + #: builtin/fstk/ui.lua msgid "" msgstr "" @@ -169,7 +416,6 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "Артка" @@ -207,11 +453,6 @@ msgstr "" msgid "No packages could be retrieved" msgstr "" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "" @@ -258,18 +499,6 @@ msgstr "" msgid "Base Game:" msgstr "Оюн" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "Жокко чыгаруу" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua #, fuzzy @@ -400,6 +629,12 @@ msgstr "Дүйнөнү инициалдаштыруу катасы" msgid "Unable to install a $1 as a texture pack" msgstr "Дүйнөнү инициалдаштыруу катасы" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "" @@ -467,12 +702,6 @@ msgstr "" msgid "Optional dependencies:" msgstr "" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "Сактоо" - #: builtin/mainmenu/dlg_config_world.lua #, fuzzy msgid "World:" @@ -625,11 +854,6 @@ msgstr "Оң Windows" msgid "Sea level rivers" msgstr "" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "" @@ -768,6 +992,23 @@ msgid "" "override any renaming here." msgstr "" +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "Баарын күйгүзүү" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "" @@ -792,7 +1033,7 @@ msgstr "" msgid "Visit website" msgstr "" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "Ырастоолор" @@ -804,234 +1045,6 @@ msgstr "" msgid "Try reenabling public serverlist and check your internet connection." msgstr "" -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -#, fuzzy -msgid "Select directory" -msgstr "Дүйнөнү тандаңыз:" - -#: builtin/mainmenu/settings/components.lua -#, fuzzy -msgid "Select file" -msgstr "Дүйнөнү тандаңыз:" - -#: builtin/mainmenu/settings/components.lua -#, fuzzy -msgid "Set" -msgstr "Тандоо" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "Маек" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "Тазалоо" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -#, fuzzy -msgid "Controls" -msgstr "Ctrl" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -#, fuzzy -msgid "Disabled" -msgstr "Баарын өчүрүү" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Enabled" -msgstr "күйгүзүлгөн" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Client Mods" -msgstr "Дүйнөнү тандаңыз:" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Content: Games" -msgstr "Улантуу" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Content: Mods" -msgstr "Улантуу" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "күйгүзүлгөн" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Shaders are disabled." -msgstr "Баарын өчүрүү" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "" @@ -1052,10 +1065,6 @@ msgstr "" msgid "Core Team" msgstr "" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "" - #: builtin/mainmenu/tab_about.lua #, fuzzy msgid "Open User Data Directory" @@ -1208,11 +1217,23 @@ msgstr "Оюн" msgid "You need to install a game before you can create a world." msgstr "" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "Тандалмалар:" + #: builtin/mainmenu/tab_online.lua #, fuzzy msgid "Address" msgstr "Дареги/порту" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "Дүйнөнү тандаңыз:" + #: builtin/mainmenu/tab_online.lua #, fuzzy msgid "Creative mode" @@ -1229,6 +1250,11 @@ msgstr "Убалды күйгүзүү" msgid "Favorites" msgstr "Тандалмалар:" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "Оюн" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "" @@ -1242,10 +1268,26 @@ msgstr "Оюн" msgid "Login" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +msgid "Open server website" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Public Servers" msgstr "" @@ -1336,24 +1378,6 @@ msgstr "" "\n" "Толугураак маалымат үчүн, debug.txt'ти текшериңиз." -#: src/client/game.cpp -msgid "- Mode: " -msgstr "" - -#: src/client/game.cpp -#, fuzzy -msgid "- Public: " -msgstr "Жалпылык" - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "" - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "" - #: src/client/game.cpp msgid "A serialization error occurred:" msgstr "" @@ -1363,6 +1387,10 @@ msgstr "" msgid "Access denied. Reason: %s" msgstr "" +#: src/client/game.cpp +msgid "All debug info hidden" +msgstr "" + #: src/client/game.cpp #, fuzzy msgid "Automatic forward disabled" @@ -1385,6 +1413,10 @@ msgstr "" msgid "Block bounds shown for nearby blocks" msgstr "" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "" @@ -1398,10 +1430,6 @@ msgstr "күйгүзүлгөн" msgid "Can't show block bounds (disabled by game or mod)" msgstr "" -#: src/client/game.cpp -msgid "Change Password" -msgstr "Сырсөздү өзгөртүү" - #: src/client/game.cpp #, fuzzy msgid "Cinematic mode disabled" @@ -1432,26 +1460,6 @@ msgstr "Туташтыруу катасы (убактыңыз өтүп кетт msgid "Connection failed for unknown reason" msgstr "" -#: src/client/game.cpp -msgid "Continue" -msgstr "Улантуу" - -#: src/client/game.cpp -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1466,31 +1474,15 @@ msgstr "Клиент жаратылууда..." msgid "Creating server..." msgstr "Сервер жаратылууда...." -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "" - #: src/client/game.cpp msgid "Debug info shown" msgstr "" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "" - #: src/client/game.cpp #, fuzzy, c-format msgid "Error creating client: %s" msgstr "Клиент жаратылууда..." -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "Менюга чыгуу" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "Оюндан чыгуу" - #: src/client/game.cpp #, fuzzy msgid "Fast mode disabled" @@ -1533,20 +1525,6 @@ msgstr "күйгүзүлгөн" msgid "Fog enabled by game or mod" msgstr "" -#: src/client/game.cpp -msgid "Game info:" -msgstr "" - -#: src/client/game.cpp -#, fuzzy -msgid "Game paused" -msgstr "Оюн" - -#: src/client/game.cpp -#, fuzzy -msgid "Hosting server" -msgstr "Сервер жаратылууда...." - #: src/client/game.cpp #, fuzzy msgid "Item definitions..." @@ -1586,14 +1564,6 @@ msgstr "" msgid "Node definitions..." msgstr "" -#: src/client/game.cpp -msgid "Off" -msgstr "" - -#: src/client/game.cpp -msgid "On" -msgstr "" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "" @@ -1606,40 +1576,24 @@ msgstr "" msgid "Profiler graph shown" msgstr "" -#: src/client/game.cpp -msgid "Remote server" -msgstr "" - #: src/client/game.cpp msgid "Resolving address..." msgstr "Дареги чечилүүдө..." -#: src/client/game.cpp -msgid "Respawn" -msgstr "Кайтадан жаралуу" - #: src/client/game.cpp #, fuzzy msgid "Shutting down..." msgstr "Оюн өчүрүлүүдө..." -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "Бир кишилик" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "Үн көлөмү" - #: src/client/game.cpp #, fuzzy msgid "Sound muted" msgstr "Үн көлөмү" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "" @@ -1712,19 +1666,107 @@ msgstr "" msgid "Volume changed to %d%%" msgstr "" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "" #: src/client/game.cpp +msgid "Zoom currently disabled by game or mod" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "" + +#: src/client/game_formspec.cpp +#, fuzzy +msgid "- Public: " +msgstr "Жалпылык" + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "Сырсөздү өзгөртүү" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "Улантуу" + +#: src/client/game_formspec.cpp +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "Менюга чыгуу" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "Оюндан чыгуу" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "" + +#: src/client/game_formspec.cpp +#, fuzzy +msgid "Game paused" +msgstr "Оюн" + +#: src/client/game_formspec.cpp +#, fuzzy +msgid "Hosting server" +msgstr "Сервер жаратылууда...." + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "Кайтадан жаралуу" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "Үн көлөмү" + +#: src/client/game_formspec.cpp #, fuzzy msgid "You died" msgstr "Сиз өлдүңүз." -#: src/client/game.cpp -msgid "Zoom currently disabled by game or mod" -msgstr "" - #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" msgstr "" @@ -2068,7 +2110,7 @@ msgid "Failed to compile the \"%s\" shader." msgstr "Дүйнөнү инициалдаштыруу катасы" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." +msgid "GLSL is not supported by the driver" msgstr "" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" @@ -2119,7 +2161,7 @@ msgstr "Алга" msgid "Automatic jumping" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "" @@ -2131,7 +2173,7 @@ msgstr "Артка" msgid "Block bounds" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp #, fuzzy msgid "Change camera" msgstr "Баскычтарды өзгөртүү" @@ -2156,7 +2198,7 @@ msgstr "" msgid "Double tap \"jump\" to toggle fly" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "Ыргытуу" @@ -2173,11 +2215,11 @@ msgstr "" msgid "Inc. volume" msgstr "Үн көлөмү" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "Мүлк-шайман" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "Секирүү" @@ -2211,7 +2253,7 @@ msgstr "Кийинки" msgid "Prev. item" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "" @@ -2224,7 +2266,7 @@ msgstr "Оңго" msgid "Screenshot" msgstr "Тез сүрөт" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "Уурданып басуу" @@ -2233,16 +2275,16 @@ msgstr "Уурданып басуу" msgid "Toggle HUD" msgstr "Учууга которуу" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp #, fuzzy msgid "Toggle chat log" msgstr "Тез басууга которуу" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "Тез басууга которуу" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "Учууга которуу" @@ -2251,12 +2293,12 @@ msgstr "Учууга которуу" msgid "Toggle fog" msgstr "Учууга которуу" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp #, fuzzy msgid "Toggle minimap" msgstr "Тез басууга которуу" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "" @@ -2265,7 +2307,7 @@ msgstr "" msgid "Toggle pitchmove" msgstr "Тез басууга которуу" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "Масштаб" @@ -2302,7 +2344,7 @@ msgstr "Эски сырсөз" msgid "Passwords do not match!" msgstr "Сырсөздөр дал келген жок!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "Чыгуу" @@ -2316,15 +2358,44 @@ msgstr "баскычты басыңыз" msgid "Sound Volume: %d%%" msgstr "Үн көлөмү: " -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Add button" +msgstr "Ортоңку баскыч" + +#: src/gui/touchscreeneditor.cpp +msgid "Done" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Remove" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp msgid "Joystick" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Toggle debug" msgstr "Учууга которуу" @@ -2523,8 +2594,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" #: src/settings_translation_file.cpp @@ -2577,10 +2647,6 @@ msgstr "" msgid "Active object send range" msgstr "" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "" - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2604,6 +2670,16 @@ msgstr "Дүйнө аты" msgid "Advanced" msgstr "Кошумча" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Allow clouds to look 3D instead of flat." +msgstr "" + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "" @@ -2978,15 +3054,15 @@ msgstr "" msgid "Clouds" msgstr "3D-булуттар" -#: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Clouds in menu" msgstr "Башкы меню" +#: src/settings_translation_file.cpp +msgid "Color depth for post-processing texture" +msgstr "" + #: src/settings_translation_file.cpp msgid "Colored fog" msgstr "" @@ -3009,7 +3085,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" #: src/settings_translation_file.cpp @@ -3150,6 +3226,14 @@ msgstr "" msgid "Debugging" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "" @@ -3302,19 +3386,10 @@ msgid "" "When the 'snowbiomes' flag is enabled, this is ignored." msgstr "" -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "" - #: src/settings_translation_file.cpp msgid "Developer Options" msgstr "" -#: src/settings_translation_file.cpp -#, fuzzy -msgid "Digging particles" -msgstr "Баарын күйгүзүү" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "" @@ -3342,6 +3417,14 @@ msgstr "" msgid "Double-tapping the jump key toggles fly mode." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "" @@ -3417,8 +3500,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" #: src/settings_translation_file.cpp @@ -3491,8 +3574,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" #: src/settings_translation_file.cpp @@ -3507,12 +3589,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "" - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -3814,10 +3890,6 @@ msgstr "" msgid "GUI scaling filter" msgstr "" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Gamepads" @@ -4043,12 +4115,6 @@ msgid "" "descending." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -4067,6 +4133,13 @@ msgid "" "empty password." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4161,10 +4234,6 @@ msgstr "" msgid "Interval of saving important changes in the world, stated in seconds." msgstr "" -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "" - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "" @@ -4782,10 +4851,6 @@ msgstr "" msgid "Maximum users" msgstr "" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "" @@ -4818,6 +4883,10 @@ msgstr "" msgid "Minimum limit of random number of small caves per mapchunk." msgstr "" +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp #, fuzzy msgid "Mipmapping" @@ -4908,7 +4977,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" @@ -5356,17 +5425,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5565,16 +5636,6 @@ msgstr "" msgid "Shader path" msgstr "Көлөкөлөгүчтөр" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "Көлөкөлөгүчтөр" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Shadow filter quality" @@ -5741,10 +5802,9 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" #: src/settings_translation_file.cpp @@ -6023,10 +6083,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "" -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "" @@ -6087,6 +6143,10 @@ msgstr "Кооз бактар" msgid "Transparency Sorting Distance" msgstr "" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "" @@ -6138,7 +6198,10 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" #: src/settings_translation_file.cpp @@ -6161,16 +6224,14 @@ msgstr "" msgid "Upper Y limit of floatlands." msgstr "" -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "" - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "" #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" #: src/settings_translation_file.cpp @@ -6414,20 +6475,12 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -6438,10 +6491,6 @@ msgid "" "Mods may still set a background." msgstr "" -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -6464,8 +6513,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -6727,10 +6775,18 @@ msgstr "" #~ msgid "Dig key" #~ msgstr "Оң меню" +#, fuzzy +#~ msgid "Digging particles" +#~ msgstr "Баарын күйгүзүү" + #, fuzzy #~ msgid "Disable anticheat" #~ msgstr "Бөлүкчөлөрдү күйгүзүү" +#, fuzzy +#~ msgid "Enable" +#~ msgstr "күйгүзүлгөн" + #, fuzzy #~ msgid "Enable VBO" #~ msgstr "Баарын күйгүзүү" @@ -6755,9 +6811,6 @@ msgstr "" #~ msgid "Forward key" #~ msgstr "Алга" -#~ msgid "Game" -#~ msgstr "Оюн" - #, fuzzy #~ msgid "Hide: Temporary Settings" #~ msgstr "Ырастоолор" @@ -6872,6 +6925,13 @@ msgstr "" #~ msgid "Select Package File:" #~ msgstr "Дүйнөнү тандаңыз:" +#~ msgid "Shaders" +#~ msgstr "Көлөкөлөгүчтөр" + +#, fuzzy +#~ msgid "Shaders are disabled." +#~ msgstr "Баарын өчүрүү" + #, fuzzy #~ msgid "Simple Leaves" #~ msgstr "Күңүрт суу" diff --git a/po/lt/luanti.po b/po/lt/luanti.po index c7cbac5ff..25a9a0e16 100644 --- a/po/lt/luanti.po +++ b/po/lt/luanti.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Lithuanian (Minetest)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" "PO-Revision-Date: 2024-05-01 12:07+0000\n" "Last-Translator: EditaNEmilis \n" "Language-Team: Lithuanian ] [-t]" msgstr "" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "Naršyti" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "Keisti" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "Pasirinkite aplanką" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "Pasirinkite failą" + +#: builtin/common/settings/components.lua +#, fuzzy +msgid "Set" +msgstr "Pasirinkti" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(Nėra nustatymo aprašymo)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "Atšaukti" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "Įrašyti" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "Sėkla" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#, fuzzy +msgid "defaults" +msgstr "keisti žaidimą" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "Susirašinėti" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "Išvalyti" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +#, fuzzy +msgid "Controls" +msgstr "Kairysis Control" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +#, fuzzy +msgid "Disabled" +msgstr "Išjungti papildinį" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Enabled" +msgstr "įjungtas" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "Ieškoti" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Touchscreen layout" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "pause_menu" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Client Mods" +msgstr "Pasirinkite pasaulį:" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Content: Games" +msgstr "Tęsti" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Content: Mods" +msgstr "Tęsti" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "" + #: builtin/fstk/ui.lua msgid "" msgstr "" @@ -168,7 +414,6 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "Atgal" @@ -205,11 +450,6 @@ msgstr "Papildiniai" msgid "No packages could be retrieved" msgstr "" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "" - #: builtin/mainmenu/content/dlg_contentdb.lua #, fuzzy msgid "No updates" @@ -256,18 +496,6 @@ msgstr "Jau įdiegta" msgid "Base Game:" msgstr "Pagrindinis Žaidimas:" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "Atšaukti" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -406,6 +634,12 @@ msgstr "Nepavyko įdiegti $1 į $2" msgid "Unable to install a $1 as a texture pack" msgstr "Nepavyko įdiegti $1 į $2" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "" @@ -470,12 +704,6 @@ msgstr "" msgid "Optional dependencies:" msgstr "" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "Įrašyti" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "Pasaulis:" @@ -631,11 +859,6 @@ msgstr "Upės" msgid "Sea level rivers" msgstr "Upės jūros lygyje" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "Sėkla" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "" @@ -776,6 +999,23 @@ msgid "" "override any renaming here." msgstr "" +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "Įjungti visus" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "" @@ -801,7 +1041,7 @@ msgstr "Niekada" msgid "Visit website" msgstr "Svetainė" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "Nustatymai" @@ -815,233 +1055,6 @@ msgstr "" "Pabandykite dar kart įjungti viešą serverių sąrašą ir patikrinkite savo " "interneto ryšį." -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "Naršyti" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "Keisti" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "Pasirinkite aplanką" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "Pasirinkite failą" - -#: builtin/mainmenu/settings/components.lua -#, fuzzy -msgid "Set" -msgstr "Pasirinkti" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(Nėra nustatymo aprašymo)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#, fuzzy -msgid "defaults" -msgstr "keisti žaidimą" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "Susirašinėti" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "Išvalyti" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -#, fuzzy -msgid "Controls" -msgstr "Kairysis Control" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -#, fuzzy -msgid "Disabled" -msgstr "Išjungti papildinį" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Enabled" -msgstr "įjungtas" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "Ieškoti" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Client Mods" -msgstr "Pasirinkite pasaulį:" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Content: Games" -msgstr "Tęsti" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Content: Mods" -msgstr "Tęsti" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "įjungtas" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Shaders are disabled." -msgstr "Išjungti papildinį" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "" @@ -1062,10 +1075,6 @@ msgstr "Pagrindiniai kūrėjai" msgid "Core Team" msgstr "" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "" - #: builtin/mainmenu/tab_about.lua #, fuzzy msgid "Open User Data Directory" @@ -1222,11 +1231,23 @@ msgstr "Slėpti vidinius" msgid "You need to install a game before you can create a world." msgstr "" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "Pašalinti iš mėgiamų" + #: builtin/mainmenu/tab_online.lua #, fuzzy msgid "Address" msgstr "- Adresas: " +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "Žaisti tinkle(klientas)" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "Kūrybinė veiksena" @@ -1242,6 +1263,11 @@ msgstr "Leisti sužeidimus" msgid "Favorites" msgstr "Mėgiami:" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "Žaidimas" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "" @@ -1255,10 +1281,26 @@ msgstr "Slėpti vidinius" msgid "Login" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +msgid "Open server website" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua #, fuzzy msgid "Public Servers" @@ -1349,23 +1391,6 @@ msgstr "" "\n" "Patikrinkite debug.txt dėl papildomos informacijos." -#: src/client/game.cpp -msgid "- Mode: " -msgstr "" - -#: src/client/game.cpp -msgid "- Public: " -msgstr "- Viešas: " - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "" - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "- Serverio pavadinimas: " - #: src/client/game.cpp #, fuzzy msgid "A serialization error occurred:" @@ -1376,6 +1401,10 @@ msgstr "Įvyko klaida:" msgid "Access denied. Reason: %s" msgstr "" +#: src/client/game.cpp +msgid "All debug info hidden" +msgstr "" + #: src/client/game.cpp #, fuzzy msgid "Automatic forward disabled" @@ -1398,6 +1427,10 @@ msgstr "" msgid "Block bounds shown for nearby blocks" msgstr "" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "" @@ -1411,10 +1444,6 @@ msgstr "Žalojimas įjungtas" msgid "Can't show block bounds (disabled by game or mod)" msgstr "" -#: src/client/game.cpp -msgid "Change Password" -msgstr "Keisti slaptažodį" - #: src/client/game.cpp #, fuzzy msgid "Cinematic mode disabled" @@ -1446,39 +1475,6 @@ msgstr "Ryšio klaida (baigėsi prijungimo laikas?)" msgid "Connection failed for unknown reason" msgstr "" -#: src/client/game.cpp -msgid "Continue" -msgstr "Tęsti" - -#: src/client/game.cpp -#, fuzzy -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" -"Numatytas valdymas:\n" -"Nematomi meniu:\n" -"- vienas palietimas: mygtukas aktyvuoti\n" -"- dvigubas palietimas: padėti/naudoti\n" -"- slinkti pirštu: žvalgytis aplink\n" -"Meniu/Inventorius matomi:\n" -"- dvigubas palietimas (išorėje):\n" -" -->uždaryti\n" -"- liesti rietuvę, liesti angą:\n" -" --> judinti rietuvę\n" -"- liesti&tempti, liesti antru pirštu\n" -" --> padėti vieną elementą į angą\n" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1492,31 +1488,15 @@ msgstr "Kuriamas klientas..." msgid "Creating server..." msgstr "Kuriamas serveris...." -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "" - #: src/client/game.cpp msgid "Debug info shown" msgstr "" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "" - #: src/client/game.cpp #, fuzzy, c-format msgid "Error creating client: %s" msgstr "Kuriamas klientas..." -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "Grįžti į meniu" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "Išeiti iš žaidimo" - #: src/client/game.cpp #, fuzzy msgid "Fast mode disabled" @@ -1559,19 +1539,6 @@ msgstr "įjungtas" msgid "Fog enabled by game or mod" msgstr "" -#: src/client/game.cpp -msgid "Game info:" -msgstr "" - -#: src/client/game.cpp -#, fuzzy -msgid "Game paused" -msgstr "Žaidimo pavadinimas" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "Kuriamas serveris" - #: src/client/game.cpp msgid "Item definitions..." msgstr "Elemento apibrėžimai..." @@ -1610,14 +1577,6 @@ msgstr "" msgid "Node definitions..." msgstr "Mazgo apibrėžimai..." -#: src/client/game.cpp -msgid "Off" -msgstr "" - -#: src/client/game.cpp -msgid "On" -msgstr "" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "" @@ -1630,39 +1589,23 @@ msgstr "" msgid "Profiler graph shown" msgstr "" -#: src/client/game.cpp -msgid "Remote server" -msgstr "" - #: src/client/game.cpp msgid "Resolving address..." msgstr "Ieškoma adreso..." -#: src/client/game.cpp -msgid "Respawn" -msgstr "Prisikelti" - #: src/client/game.cpp msgid "Shutting down..." msgstr "Išjungiama..." -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "Žaisti vienam" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "Garso lygis" - #: src/client/game.cpp #, fuzzy msgid "Sound muted" msgstr "Garso lygis" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "" @@ -1735,18 +1678,117 @@ msgstr "" msgid "Volume changed to %d%%" msgstr "" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "" -#: src/client/game.cpp -msgid "You died" -msgstr "Jūs numirėte" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "- Viešas: " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "- Serverio pavadinimas: " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "Keisti slaptažodį" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "Tęsti" + +#: src/client/game_formspec.cpp +#, fuzzy +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" +"Numatytas valdymas:\n" +"Nematomi meniu:\n" +"- vienas palietimas: mygtukas aktyvuoti\n" +"- dvigubas palietimas: padėti/naudoti\n" +"- slinkti pirštu: žvalgytis aplink\n" +"Meniu/Inventorius matomi:\n" +"- dvigubas palietimas (išorėje):\n" +" -->uždaryti\n" +"- liesti rietuvę, liesti angą:\n" +" --> judinti rietuvę\n" +"- liesti&tempti, liesti antru pirštu\n" +" --> padėti vieną elementą į angą\n" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "Grįžti į meniu" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "Išeiti iš žaidimo" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "" + +#: src/client/game_formspec.cpp +#, fuzzy +msgid "Game paused" +msgstr "Žaidimo pavadinimas" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "Kuriamas serveris" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "Prisikelti" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "Garso lygis" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "Jūs numirėte" + #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" msgstr "" @@ -2093,7 +2135,7 @@ msgid "Failed to compile the \"%s\" shader." msgstr "Nepavyko parsiųsti $1" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." +msgid "GLSL is not supported by the driver" msgstr "" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" @@ -2145,7 +2187,7 @@ msgstr "Pirmyn" msgid "Automatic jumping" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "" @@ -2157,7 +2199,7 @@ msgstr "Atgal" msgid "Block bounds" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp #, fuzzy msgid "Change camera" msgstr "Nustatyti klavišus" @@ -2182,7 +2224,7 @@ msgstr "" msgid "Double tap \"jump\" to toggle fly" msgstr "Du kart paliesti „šokti“, kad įjungti skrydį" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "Mesti" @@ -2199,11 +2241,11 @@ msgstr "" msgid "Inc. volume" msgstr "Garso lygis" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "Inventorius" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "Pašokti" @@ -2237,7 +2279,7 @@ msgstr "Kitas" msgid "Prev. item" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "Intervalo pasirinkimas" @@ -2249,7 +2291,7 @@ msgstr "Dešinėn" msgid "Screenshot" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "Sėlinti" @@ -2258,16 +2300,16 @@ msgstr "Sėlinti" msgid "Toggle HUD" msgstr "Įjungti skrydį" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp #, fuzzy msgid "Toggle chat log" msgstr "Įjungti greitą" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "Įjungti greitą" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "Įjungti skrydį" @@ -2276,12 +2318,12 @@ msgstr "Įjungti skrydį" msgid "Toggle fog" msgstr "Įjungti skrydį" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp #, fuzzy msgid "Toggle minimap" msgstr "Įjungti noclip" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "Įjungti noclip" @@ -2290,7 +2332,7 @@ msgstr "Įjungti noclip" msgid "Toggle pitchmove" msgstr "Įjungti greitą" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "Pritraukti" @@ -2327,7 +2369,7 @@ msgstr "Senas slaptažodis" msgid "Passwords do not match!" msgstr "Slaptažodžiai nesutampa!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "Išeiti" @@ -2341,15 +2383,45 @@ msgstr "paspauskite klavišą" msgid "Sound Volume: %d%%" msgstr "Garso lygis: " -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Add button" +msgstr "Vidurinis mygtukas" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "Atlikta!" + +#: src/gui/touchscreeneditor.cpp +msgid "Remove" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp msgid "Joystick" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Toggle debug" msgstr "Įjungti skrydį" @@ -2549,8 +2621,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" #: src/settings_translation_file.cpp @@ -2603,10 +2674,6 @@ msgstr "" msgid "Active object send range" msgstr "" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "" - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2630,6 +2697,16 @@ msgstr "Pasaulio pavadinimas" msgid "Advanced" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Allow clouds to look 3D instead of flat." +msgstr "" + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "" @@ -3007,15 +3084,15 @@ msgstr "" msgid "Clouds" msgstr "Trimačiai debesys" -#: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Clouds in menu" msgstr "Pagrindinis meniu" +#: src/settings_translation_file.cpp +msgid "Color depth for post-processing texture" +msgstr "" + #: src/settings_translation_file.cpp msgid "Colored fog" msgstr "" @@ -3038,7 +3115,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" #: src/settings_translation_file.cpp @@ -3176,6 +3253,14 @@ msgstr "" msgid "Debugging" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "" @@ -3329,20 +3414,11 @@ msgid "" "When the 'snowbiomes' flag is enabled, this is ignored." msgstr "" -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Developer Options" msgstr "Dekoracijos" -#: src/settings_translation_file.cpp -#, fuzzy -msgid "Digging particles" -msgstr "Įjungti visus" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "" @@ -3370,6 +3446,14 @@ msgstr "" msgid "Double-tapping the jump key toggles fly mode." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "" @@ -3445,8 +3529,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" #: src/settings_translation_file.cpp @@ -3520,8 +3604,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" #: src/settings_translation_file.cpp @@ -3536,12 +3619,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "" - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -3844,10 +3921,6 @@ msgstr "" msgid "GUI scaling filter" msgstr "" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Gamepads" @@ -4074,12 +4147,6 @@ msgid "" "descending." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -4098,6 +4165,13 @@ msgid "" "empty password." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4192,10 +4266,6 @@ msgstr "" msgid "Interval of saving important changes in the world, stated in seconds." msgstr "" -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "" - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "" @@ -4822,10 +4892,6 @@ msgstr "" msgid "Maximum users" msgstr "" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "" @@ -4858,6 +4924,10 @@ msgstr "" msgid "Minimum limit of random number of small caves per mapchunk." msgstr "" +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "" @@ -4948,7 +5018,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" @@ -5391,17 +5461,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5608,16 +5680,6 @@ msgstr "" msgid "Shader path" msgstr "Šešėliavimai" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "Šešėliavimai" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "" @@ -5783,10 +5845,9 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" #: src/settings_translation_file.cpp @@ -6065,10 +6126,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "" -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "" @@ -6129,6 +6186,10 @@ msgstr "Nepermatomi lapai" msgid "Transparency Sorting Distance" msgstr "" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "" @@ -6179,7 +6240,10 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" #: src/settings_translation_file.cpp @@ -6202,16 +6266,14 @@ msgstr "" msgid "Upper Y limit of floatlands." msgstr "" -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "" - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "" #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" #: src/settings_translation_file.cpp @@ -6453,20 +6515,12 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -6477,10 +6531,6 @@ msgid "" "Mods may still set a background." msgstr "" -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -6503,8 +6553,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -6772,6 +6821,10 @@ msgstr "" #~ msgid "Dig key" #~ msgstr "Dešinėn" +#, fuzzy +#~ msgid "Digging particles" +#~ msgstr "Įjungti visus" + #, fuzzy #~ msgid "Download a game, such as Minetest Game, from minetest.net" #~ msgstr "Atsisiųskite sub žaidimą, tokį kaip minetest_game, iš minetest.net" @@ -6783,6 +6836,10 @@ msgstr "" #~ msgid "Downloading and installing $1, please wait..." #~ msgstr "Atsiunčiama $1, prašome palaukti..." +#, fuzzy +#~ msgid "Enable" +#~ msgstr "įjungtas" + #, fuzzy #~ msgid "Enable VBO" #~ msgstr "Įjungti papildinį" @@ -6805,9 +6862,6 @@ msgstr "" #~ msgid "Forward key" #~ msgstr "Pirmyn" -#~ msgid "Game" -#~ msgstr "Žaidimas" - #, fuzzy #~ msgid "Hide: Temporary Settings" #~ msgstr "Nustatymai" @@ -6940,6 +6994,13 @@ msgstr "" #~ msgid "Server / Singleplayer" #~ msgstr "Žaisti vienam" +#~ msgid "Shaders" +#~ msgstr "Šešėliavimai" + +#, fuzzy +#~ msgid "Shaders are disabled." +#~ msgstr "Išjungti papildinį" + #, fuzzy #~ msgid "Simple Leaves" #~ msgstr "Nepermatomi lapai" diff --git a/po/luanti.pot b/po/luanti.pot index 2c752aa1c..d9ac753f1 100644 --- a/po/luanti.pot +++ b/po/luanti.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: luanti\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -78,6 +78,244 @@ msgstr "" msgid "Get help for commands (-t: output in chat)" msgstr "" +#: builtin/common/settings/components.lua +msgid "Set" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Touchscreen layout" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "pause_menu" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Client Mods" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "" + #: builtin/fstk/ui.lua msgid "OK" msgstr "" @@ -154,7 +392,6 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "" @@ -204,11 +441,6 @@ msgstr "" msgid "Update All [$1]" msgstr "" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "Downloading..." msgstr "" @@ -270,18 +502,6 @@ msgstr "" msgid "Install" msgstr "" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "" - #: builtin/mainmenu/content/dlg_install.lua msgid "Error getting dependencies for package $1" msgstr "" @@ -378,6 +598,12 @@ msgstr "" msgid "$1 mods" msgstr "" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "" @@ -418,12 +644,6 @@ msgstr "" msgid "No optional dependencies" msgstr "" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "" - #: builtin/mainmenu/dlg_config_world.lua msgid "Find More Mods" msgstr "" @@ -618,11 +838,6 @@ msgstr "" msgid "World name" msgstr "" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "" - #: builtin/mainmenu/dlg_create_world.lua src/settings_translation_file.cpp msgid "Mapgen" msgstr "" @@ -736,6 +951,22 @@ msgstr "" msgid "Rename Modpack:" msgstr "" +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Expand all" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "" @@ -760,7 +991,7 @@ msgstr "" msgid "Never" msgstr "" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "" @@ -772,223 +1003,6 @@ msgstr "" msgid "Public server list is disabled" msgstr "" -#: builtin/mainmenu/settings/components.lua -msgid "Set" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "Shaders are disabled." -msgstr "" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "Enable" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "" @@ -1017,10 +1031,6 @@ msgstr "" msgid "Active renderer:" msgstr "" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "Share debug log" msgstr "" @@ -1157,6 +1167,14 @@ msgstr "" msgid "Start Game" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Refresh" msgstr "" @@ -1173,10 +1191,32 @@ msgstr "" msgid "Login" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "Game: $1" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +msgid "" +"Clients:\n" +"$1" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +msgid "Open server website" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Remove favorite" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "Add favorite" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "" @@ -1287,7 +1327,7 @@ msgstr "" msgid "Connection failed for unknown reason" msgstr "" -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "" @@ -1355,10 +1395,6 @@ msgstr "" msgid "Sound unmuted" msgstr "" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "" - #: src/client/game.cpp #, c-format msgid "Volume changed to %d%%" @@ -1468,16 +1504,20 @@ msgstr "" msgid "Profiler graph shown" msgstr "" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "" #: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" +msgid "Bounding boxes shown" msgstr "" #: src/client/game.cpp -msgid "Debug info and profiler graph hidden" +msgid "All debug info hidden" msgstr "" #: src/client/game.cpp @@ -1535,91 +1575,6 @@ msgstr "" msgid "Zoom currently disabled by game or mod" msgstr "" -#: src/client/game.cpp -msgid "You died" -msgstr "" - -#: src/client/game.cpp -msgid "Respawn" -msgstr "" - -#: src/client/game.cpp -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" - -#: src/client/game.cpp -msgid "Continue" -msgstr "" - -#: src/client/game.cpp -msgid "Change Password" -msgstr "" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "" - -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "" - -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "" - -#: src/client/game.cpp -msgid "Game info:" -msgstr "" - -#: src/client/game.cpp -msgid "- Mode: " -msgstr "" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "" - -#: src/client/game.cpp -msgid "Remote server" -msgstr "" - -#: src/client/game.cpp -msgid "On" -msgstr "" - -#: src/client/game.cpp -msgid "Off" -msgstr "" - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "" - -#: src/client/game.cpp -msgid "- Public: " -msgstr "" - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "" - #: src/client/game.cpp #, c-format msgid "The server is probably running a different version of %s." @@ -1639,6 +1594,91 @@ msgstr "" msgid "Connection error (timed out?)" msgstr "" +#: src/client/game_formspec.cpp +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "" + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "" + #: src/client/gameui.cpp msgid "Chat shown" msgstr "" @@ -1960,7 +2000,7 @@ msgid "Minimap in texture mode" msgstr "" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." +msgid "GLSL is not supported by the driver" msgstr "" #: src/client/shader.cpp @@ -2041,23 +2081,23 @@ msgstr "" msgid "Right" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "" @@ -2069,19 +2109,19 @@ msgstr "" msgid "Next item" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "" @@ -2089,11 +2129,11 @@ msgstr "" msgid "Toggle pitchmove" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "" @@ -2117,7 +2157,7 @@ msgstr "" msgid "Screenshot" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "" @@ -2149,7 +2189,7 @@ msgstr "" msgid "Toggle HUD" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "" @@ -2190,7 +2230,7 @@ msgstr "" msgid "Sound Volume: %d%%" msgstr "" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "" @@ -2198,15 +2238,43 @@ msgstr "" msgid "Muted" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +msgid "Add button" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Done" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Remove" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Toggle debug" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Joystick" msgstr "" @@ -2632,7 +2700,10 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" #: src/settings_translation_file.cpp @@ -2652,8 +2723,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" #: src/settings_translation_file.cpp @@ -2855,16 +2925,12 @@ msgstr "" msgid "Clouds" msgstr "" -#: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." -msgstr "" - #: src/settings_translation_file.cpp msgid "3D clouds" msgstr "" #: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." +msgid "Allow clouds to look 3D instead of flat." msgstr "" #: src/settings_translation_file.cpp @@ -2914,7 +2980,9 @@ msgid "Anisotropic filtering" msgstr "" #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" #: src/settings_translation_file.cpp @@ -2928,17 +2996,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -3033,14 +3103,6 @@ msgid "" "at the expense of minor visual glitches that do not impact game playability." msgstr "" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "" - #: src/settings_translation_file.cpp msgid "Waving Nodes" msgstr "" @@ -3144,17 +3206,6 @@ msgid "" "This can cause much more artifacts in the shadow." msgstr "" -#: src/settings_translation_file.cpp -msgid "Poisson filtering" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Enable Poisson disk filtering.\n" -"On true uses Poisson disk to make \"soft shadows\". Otherwise uses PCF " -"filtering." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "" @@ -3172,20 +3223,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Map shadows update frames" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Spread a complete update of shadow map over given number of frames.\n" -"Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" #: src/settings_translation_file.cpp @@ -3346,8 +3385,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -3436,18 +3474,6 @@ msgid "" "to hardware (e.g. render-to-texture for nodes in inventory)." msgstr "" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" - #: src/settings_translation_file.cpp msgid "Tooltip delay" msgstr "" @@ -3616,7 +3642,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" #: src/settings_translation_file.cpp @@ -3660,8 +3686,9 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." msgstr "" #: src/settings_translation_file.cpp @@ -3686,7 +3713,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" @@ -3846,8 +3873,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" #: src/settings_translation_file.cpp @@ -5423,13 +5449,11 @@ msgid "" msgstr "" #: src/settings_translation_file.cpp -msgid "Shaders" +msgid "OpenGL debug" msgstr "" #: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." +msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" #: src/settings_translation_file.cpp @@ -5464,6 +5488,18 @@ msgid "" "Set to 0 to disable it entirely." msgstr "" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Cloud radius" msgstr "" @@ -5475,24 +5511,6 @@ msgid "" "corners." msgstr "" -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "" - #: src/settings_translation_file.cpp msgid "Mapblock mesh generation delay" msgstr "" @@ -5514,6 +5532,16 @@ msgid "" "threads." msgstr "" +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + #: src/settings_translation_file.cpp msgid "Minimap scan height" msgstr "" @@ -5559,12 +5587,12 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -5583,11 +5611,37 @@ msgid "" msgstr "" #: src/settings_translation_file.cpp -msgid "OpenGL debug" +msgid "Color depth for post-processing texture" msgstr "" #: src/settings_translation_file.cpp -msgid "Enables debug and error-checking in the OpenGL driver." +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Poisson filtering" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Enable Poisson disk filtering.\n" +"On true uses Poisson disk to make \"soft shadows\". Otherwise uses PCF " +"filtering." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Map shadows update frames" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "" +"Spread a complete update of the shadow map over a given number of frames.\n" +"Higher values might make shadows laggy, lower values\n" +"will consume more resources." msgstr "" #: src/settings_translation_file.cpp @@ -6010,14 +6064,6 @@ msgid "" "Set this to -1 to disable the limit." msgstr "" -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "" - #: src/settings_translation_file.cpp msgid "Map save interval" msgstr "" diff --git a/po/lv/luanti.po b/po/lv/luanti.po index 9a0f6267d..553e6f96f 100644 --- a/po/lv/luanti.po +++ b/po/lv/luanti.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: minetest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" "PO-Revision-Date: 2024-01-22 21:01+0000\n" "Last-Translator: Uko Koknevics \n" "Language-Team: Latvian ] [-t]" msgstr "" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "Pārlūkot" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "Izmainīt" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "Izvēlēties mapi" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "Izvēlēties failu" + +#: builtin/common/settings/components.lua +#, fuzzy +msgid "Set" +msgstr "Select" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(Nav iestatījuma apraksta)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "2D Troksnis" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "Atcelt" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "Oktāvas" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "Nobīde" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#, fuzzy +msgid "Persistence" +msgstr "Noturība" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "Saglabāt" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "Mērogs" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "Sēkla" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "Izkaisījums pa X asi" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "Izkaisījums pa Y asi" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "Izkaisījums pa Z asi" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "absolūtā vērtība" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "noklusējuma" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "atvieglots" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "Čats" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "Notīrīt" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "Vadība" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "Atspējots" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "Iespējots" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Movement" +msgstr "Ātrā pārvietošanās" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "Nav rezultātu" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Reset setting to default" +msgstr "Atiestatīt uz noklusējumu" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "Meklēšana" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "Rādīt tehniskos nosaukumus" + +#: builtin/common/settings/dlg_settings.lua +msgid "Touchscreen layout" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "pause_menu" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Client Mods" +msgstr "Izvēlieties pasauli:" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Content: Games" +msgstr "Saturs" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Content: Mods" +msgstr "Saturs" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "" + #: builtin/fstk/ui.lua msgid "" msgstr "" @@ -167,7 +412,6 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "Atpakaļ" @@ -204,11 +448,6 @@ msgstr "Modi" msgid "No packages could be retrieved" msgstr "Nevarēja iegūt papildinājumus" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "Nav rezultātu" - #: builtin/mainmenu/content/dlg_contentdb.lua #, fuzzy msgid "No updates" @@ -257,18 +496,6 @@ msgstr "Šis taustiņš jau tiek izmantots" msgid "Base Game:" msgstr "Spēlēt (kā serveris)" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "Atcelt" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -402,6 +629,12 @@ msgstr "Neizdevās instalēt modu kā $1" msgid "Unable to install a $1 as a texture pack" msgstr "Neizdevās ieinstalēt $1 kā tekstūru paku" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "" @@ -466,12 +699,6 @@ msgstr "Nav neobligāto atkarību" msgid "Optional dependencies:" msgstr "Neobligātās atkarības:" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "Saglabāt" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "Pasaule:" @@ -625,11 +852,6 @@ msgstr "" msgid "Sea level rivers" msgstr "" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "Sēkla" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "" @@ -769,6 +991,23 @@ msgstr "" "Šim modu komplektam ir noteikts nosaukums, kas uzdots failā modpack.conf, un " "tas anulēs jebkādu pārsaukšanu šeit." +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "Iespējot visus" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "" @@ -793,7 +1032,7 @@ msgstr "" msgid "Visit website" msgstr "" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "Uzstādījumi" @@ -808,232 +1047,6 @@ msgstr "" "Pamēģiniet atkārtoti ieslēgt publisko serveru sarakstu un pārbaudiet " "interneta savienojumu." -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "Pārlūkot" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "Izmainīt" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "Izvēlēties mapi" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "Izvēlēties failu" - -#: builtin/mainmenu/settings/components.lua -#, fuzzy -msgid "Set" -msgstr "Select" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(Nav iestatījuma apraksta)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "2D Troksnis" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "Oktāvas" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "Nobīde" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#, fuzzy -msgid "Persistence" -msgstr "Noturība" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "Mērogs" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "Izkaisījums pa X asi" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "Izkaisījums pa Y asi" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "Izkaisījums pa Z asi" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "absolūtā vērtība" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "noklusējuma" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "atvieglots" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "Čats" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "Notīrīt" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "Vadība" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "Atspējots" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "Iespējots" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Movement" -msgstr "Ātrā pārvietošanās" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Reset setting to default" -msgstr "Atiestatīt uz noklusējumu" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "Meklēšana" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "Rādīt tehniskos nosaukumus" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Client Mods" -msgstr "Izvēlieties pasauli:" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Content: Games" -msgstr "Saturs" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Content: Mods" -msgstr "Saturs" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "Iespējots" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Shaders are disabled." -msgstr "Kameras atjaunošana atspējota" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "" @@ -1054,10 +1067,6 @@ msgstr "Pamata izstrādātāji" msgid "Core Team" msgstr "" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "" - #: builtin/mainmenu/tab_about.lua #, fuzzy msgid "Open User Data Directory" @@ -1208,11 +1217,23 @@ msgstr "Sākt spēli" msgid "You need to install a game before you can create a world." msgstr "" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "Izdzēst no izlases" + #: builtin/mainmenu/tab_online.lua #, fuzzy msgid "Address" msgstr "- Adrese: " +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "Izvēlieties pasauli:" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "Radošais režīms" @@ -1228,6 +1249,11 @@ msgstr "- Bojājumi: " msgid "Favorites" msgstr "Pievienot izlasei" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "Spēle" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "" @@ -1240,10 +1266,26 @@ msgstr "Pievienoties spēlei" msgid "Login" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +msgid "Open server website" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "Pings" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua #, fuzzy msgid "Public Servers" @@ -1333,23 +1375,6 @@ msgstr "" "\n" "Vairāk informācijas failā debug.txt." -#: src/client/game.cpp -msgid "- Mode: " -msgstr "- Režīms: " - -#: src/client/game.cpp -msgid "- Public: " -msgstr "- Publisks: " - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "- PvP: " - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "- Severa nosaukums: " - #: src/client/game.cpp #, fuzzy msgid "A serialization error occurred:" @@ -1360,6 +1385,11 @@ msgstr "Radās kļūme:" msgid "Access denied. Reason: %s" msgstr "" +#: src/client/game.cpp +#, fuzzy +msgid "All debug info hidden" +msgstr "Atkļūdošanas informācija parādīta" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "Automātiskā pārvietošanās izslēgta" @@ -1380,6 +1410,10 @@ msgstr "" msgid "Block bounds shown for nearby blocks" msgstr "" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "Kameras atjaunošana atspējota" @@ -1393,10 +1427,6 @@ msgstr "Kameras atjaunošana iespējota" msgid "Can't show block bounds (disabled by game or mod)" msgstr "Tuvināšana šobrīd atspējota vai nu spēlei, vai modam" -#: src/client/game.cpp -msgid "Change Password" -msgstr "Nomainīt paroli" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "Kino režīms izslēgts" @@ -1425,39 +1455,6 @@ msgstr "Savienojuma kļūme (noildze?)" msgid "Connection failed for unknown reason" msgstr "" -#: src/client/game.cpp -msgid "Continue" -msgstr "Turpināt" - -#: src/client/game.cpp -#, fuzzy -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" -"Noklusējuma kontroles:\n" -"Ne izvēlnē:\n" -"- pieskāriens: aktivizē pogu\n" -"- dubultpieskāriens: nolikt/izmantot\n" -"- vilkt ar pirksto: skatīties apkārt\n" -"Izvēlnē/inventārā:\n" -"- dubultpieskāriens (ārpus izvēlnes)\n" -" --> aizvērt izvēlni\n" -"- pieskāriens priekšmetiem, pieskāriens kastītei:\n" -" --> pārvietot priekšmetus\n" -"- pieskāriens&vilkšana, ar otru pirkstu pieskāriens:\n" -" --> novietot vienu priekšmetu kastītē\n" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1471,32 +1468,15 @@ msgstr "Izveido klientu..." msgid "Creating server..." msgstr "Izveido serveri..." -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "Atkļūdošanas informācija un profilēšanas grafiks paslēpti" - #: src/client/game.cpp msgid "Debug info shown" msgstr "Atkļūdošanas informācija parādīta" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "" -"Atkļūdošanas informācija, profilēšanas grafiks un karkasattēlojums atspējoti" - #: src/client/game.cpp #, fuzzy, c-format msgid "Error creating client: %s" msgstr "Izveido klientu..." -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "Iziet uz izvēlni" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "Iziet uz OS" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "Ātrais režīms izslēgts" @@ -1534,18 +1514,6 @@ msgstr "Migla iespējota" msgid "Fog enabled by game or mod" msgstr "Tuvināšana šobrīd atspējota vai nu spēlei, vai modam" -#: src/client/game.cpp -msgid "Game info:" -msgstr "Spēles informācija:" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "Spēle nopauzēta" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "Lokāls serveris" - #: src/client/game.cpp msgid "Item definitions..." msgstr "Priekšmetu apraksti..." @@ -1583,14 +1551,6 @@ msgstr "“Noclip” režīms ieslēgts (bet: nav “noclip” privilēģijas)" msgid "Node definitions..." msgstr "Bloku apraksti..." -#: src/client/game.cpp -msgid "Off" -msgstr "Izslēgts" - -#: src/client/game.cpp -msgid "On" -msgstr "Ieslēgts" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "Kustība uz augšu/leju pēc skatīšanās virziena izslēgta" @@ -1603,38 +1563,22 @@ msgstr "Kustība uz augšu/leju pēc skatīšanās virziena ieslēgta" msgid "Profiler graph shown" msgstr "Profilēšanas grafiks parādīts" -#: src/client/game.cpp -msgid "Remote server" -msgstr "Attālināts serveris" - #: src/client/game.cpp msgid "Resolving address..." msgstr "Atrisina adresi..." -#: src/client/game.cpp -msgid "Respawn" -msgstr "Atdzīvoties" - #: src/client/game.cpp msgid "Shutting down..." msgstr "Beidz darbu..." -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "Viena spēlētāja režīms" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "Skaņas skaļums" - #: src/client/game.cpp msgid "Sound muted" msgstr "Skaņa izslēgta" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "" @@ -1708,18 +1652,116 @@ msgstr "Redzamības diapazons nomainīts uz %d" msgid "Volume changed to %d%%" msgstr "Skaļums nomainīts uz %d%%" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "Karkasattēlojums iespējots" -#: src/client/game.cpp -msgid "You died" -msgstr "Jūs nomirāt" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "Tuvināšana šobrīd atspējota vai nu spēlei, vai modam" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "- Režīms: " + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "- Publisks: " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "- PvP: " + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "- Severa nosaukums: " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "Nomainīt paroli" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "Turpināt" + +#: src/client/game_formspec.cpp +#, fuzzy +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" +"Noklusējuma kontroles:\n" +"Ne izvēlnē:\n" +"- pieskāriens: aktivizē pogu\n" +"- dubultpieskāriens: nolikt/izmantot\n" +"- vilkt ar pirksto: skatīties apkārt\n" +"Izvēlnē/inventārā:\n" +"- dubultpieskāriens (ārpus izvēlnes)\n" +" --> aizvērt izvēlni\n" +"- pieskāriens priekšmetiem, pieskāriens kastītei:\n" +" --> pārvietot priekšmetus\n" +"- pieskāriens&vilkšana, ar otru pirkstu pieskāriens:\n" +" --> novietot vienu priekšmetu kastītē\n" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "Iziet uz izvēlni" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "Iziet uz OS" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "Spēles informācija:" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "Spēle nopauzēta" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "Lokāls serveris" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "Izslēgts" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "Ieslēgts" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "Attālināts serveris" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "Atdzīvoties" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "Skaņas skaļums" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "Jūs nomirāt" + #: src/client/gameui.cpp #, fuzzy msgid "Chat currently disabled by game or mod" @@ -2060,7 +2102,7 @@ msgid "Failed to compile the \"%s\" shader." msgstr "Neizdevās lejuplādēt $1" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." +msgid "GLSL is not supported by the driver" msgstr "" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" @@ -2111,7 +2153,7 @@ msgstr "Auto-iešana" msgid "Automatic jumping" msgstr "Automātiskā lekšana" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "" @@ -2123,7 +2165,7 @@ msgstr "Atmuguriski" msgid "Block bounds" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "Mainīt kameru" @@ -2147,7 +2189,7 @@ msgstr "Sam. skaļumu" msgid "Double tap \"jump\" to toggle fly" msgstr "Nospied “lekt” divreiz, lai lidotu" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "Mest" @@ -2163,11 +2205,11 @@ msgstr "Pal. diapazonu" msgid "Inc. volume" msgstr "Pal. skaļumu" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "Inventārs" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "Lekt" @@ -2199,7 +2241,7 @@ msgstr "Nāk. priekšmets" msgid "Prev. item" msgstr "Iepr. priekšmets" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "Redzamības diapazons" @@ -2211,7 +2253,7 @@ msgstr "Pa labi" msgid "Screenshot" msgstr "Ekrānšāviņš" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "Lavīties" @@ -2219,15 +2261,15 @@ msgstr "Lavīties" msgid "Toggle HUD" msgstr "Spēles saskarne" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "Čata logs" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "Ātrā pārvietošanās" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "Lidot" @@ -2235,11 +2277,11 @@ msgstr "Lidot" msgid "Toggle fog" msgstr "Migla" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "Minikarte" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "“Noclip”" @@ -2247,7 +2289,7 @@ msgstr "“Noclip”" msgid "Toggle pitchmove" msgstr "Pārvietoties pēc skatīšanās leņķa" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "Zoom" @@ -2284,7 +2326,7 @@ msgstr "Vecā parole" msgid "Passwords do not match!" msgstr "Paroles nesakrīt!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "Iziet" @@ -2297,15 +2339,46 @@ msgstr "Apklusināts" msgid "Sound Volume: %d%%" msgstr "Skaņas skaļums: " -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Add button" +msgstr "Vidējā poga" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "Gatavs!" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Remove" +msgstr "Attālināts serveris" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp msgid "Joystick" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Toggle debug" msgstr "Migla" @@ -2505,8 +2578,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" #: src/settings_translation_file.cpp @@ -2559,10 +2631,6 @@ msgstr "" msgid "Active object send range" msgstr "" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "" - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2586,6 +2654,16 @@ msgstr "Pasaules nosaukums" msgid "Advanced" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Allow clouds to look 3D instead of flat." +msgstr "" + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "" @@ -2959,11 +3037,11 @@ msgid "Clouds" msgstr "" #: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." +msgid "Clouds in menu" msgstr "" #: src/settings_translation_file.cpp -msgid "Clouds in menu" +msgid "Color depth for post-processing texture" msgstr "" #: src/settings_translation_file.cpp @@ -2988,7 +3066,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" #: src/settings_translation_file.cpp @@ -3123,6 +3201,14 @@ msgstr "" msgid "Debugging" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "" @@ -3274,19 +3360,11 @@ msgid "" "When the 'snowbiomes' flag is enabled, this is ignored." msgstr "" -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Developer Options" msgstr "Dekorācijas" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "" @@ -3314,6 +3392,14 @@ msgstr "" msgid "Double-tapping the jump key toggles fly mode." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "" @@ -3389,8 +3475,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" #: src/settings_translation_file.cpp @@ -3463,8 +3549,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" #: src/settings_translation_file.cpp @@ -3479,12 +3564,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "" - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -3787,10 +3866,6 @@ msgstr "" msgid "GUI scaling filter" msgstr "" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Gamepads" @@ -4016,12 +4091,6 @@ msgid "" "descending." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -4040,6 +4109,13 @@ msgid "" "empty password." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4137,10 +4213,6 @@ msgstr "" msgid "Interval of saving important changes in the world, stated in seconds." msgstr "" -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "" - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "" @@ -4756,10 +4828,6 @@ msgstr "" msgid "Maximum users" msgstr "" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "" @@ -4792,6 +4860,10 @@ msgstr "" msgid "Minimum limit of random number of small caves per mapchunk." msgstr "" +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "" @@ -4882,7 +4954,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" @@ -5325,17 +5397,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5532,16 +5606,6 @@ msgstr "" msgid "Shader path" msgstr "" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "Šeideri" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "" @@ -5705,10 +5769,9 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" #: src/settings_translation_file.cpp @@ -5987,10 +6050,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "" -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "" @@ -6049,6 +6108,10 @@ msgstr "" msgid "Transparency Sorting Distance" msgstr "" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "" @@ -6099,7 +6162,10 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" #: src/settings_translation_file.cpp @@ -6122,16 +6188,14 @@ msgstr "" msgid "Upper Y limit of floatlands." msgstr "" -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "" - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "" #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" #: src/settings_translation_file.cpp @@ -6369,20 +6433,12 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -6393,10 +6449,6 @@ msgid "" "Mods may still set a background." msgstr "" -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -6419,8 +6471,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -6642,6 +6693,14 @@ msgstr "" #~ msgid "Damage enabled" #~ msgstr "Bojājumi iespējoti" +#~ msgid "Debug info and profiler graph hidden" +#~ msgstr "Atkļūdošanas informācija un profilēšanas grafiks paslēpti" + +#~ msgid "Debug info, profiler graph, and wireframe hidden" +#~ msgstr "" +#~ "Atkļūdošanas informācija, profilēšanas grafiks un karkasattēlojums " +#~ "atspējoti" + #~ msgid "Disabled unlimited viewing range" #~ msgstr "Atspējots neierobežots redzamības diapazons" @@ -6657,6 +6716,10 @@ msgstr "" #~ msgid "Downloading and installing $1, please wait..." #~ msgstr "Lejuplādējas un instalējas $1, lūdzu uzgaidiet..." +#, fuzzy +#~ msgid "Enable" +#~ msgstr "Iespējots" + #~ msgid "Enter " #~ msgstr "Ievadiet " @@ -6674,9 +6737,6 @@ msgstr "" #~ msgid "Flying" #~ msgstr "Lidošana" -#~ msgid "Game" -#~ msgstr "Spēle" - #~ msgid "Generate Normal Maps" #~ msgstr "Izveidot normāl-kartes" @@ -6788,10 +6848,17 @@ msgstr "" #~ msgid "Screen:" #~ msgstr "Ekrāns:" +#~ msgid "Shaders" +#~ msgstr "Šeideri" + #, fuzzy #~ msgid "Shaders (experimental)" #~ msgstr "Šeideri (nepieejami)" +#, fuzzy +#~ msgid "Shaders are disabled." +#~ msgstr "Kameras atjaunošana atspējota" + #~ msgid "Simple Leaves" #~ msgstr "Vienkāršas lapas" diff --git a/po/lzh/luanti.po b/po/lzh/luanti.po index 623feee94..725b23383 100644 --- a/po/lzh/luanti.po +++ b/po/lzh/luanti.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: minetest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" "PO-Revision-Date: 2023-12-03 17:17+0000\n" "Last-Translator: Krock \n" "Language-Team: Chinese (Literary) ] [-t]" msgstr "" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Set" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Touchscreen layout" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "pause_menu" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Client Mods" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "" + #: builtin/fstk/ui.lua msgid "" msgstr "" @@ -157,7 +395,6 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "" @@ -193,11 +430,6 @@ msgstr "" msgid "No packages could be retrieved" msgstr "" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "" @@ -242,18 +474,6 @@ msgstr "" msgid "Base Game:" msgstr "" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -375,6 +595,12 @@ msgstr "" msgid "Unable to install a $1 as a texture pack" msgstr "" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "" @@ -437,12 +663,6 @@ msgstr "" msgid "Optional dependencies:" msgstr "" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "" @@ -593,11 +813,6 @@ msgstr "川" msgid "Sea level rivers" msgstr "" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "" @@ -733,6 +948,22 @@ msgid "" "override any renaming here." msgstr "" +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Expand all" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "" @@ -757,7 +988,7 @@ msgstr "" msgid "Visit website" msgstr "" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "" @@ -769,223 +1000,6 @@ msgstr "" msgid "Try reenabling public serverlist and check your internet connection." msgstr "" -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Set" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "Enable" -msgstr "" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "Shaders are disabled." -msgstr "" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "" @@ -1006,10 +1020,6 @@ msgstr "" msgid "Core Team" msgstr "" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "" @@ -1154,10 +1164,20 @@ msgstr "" msgid "You need to install a game before you can create a world." msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "Add favorite" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Clients:\n" +"$1" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "" @@ -1171,6 +1191,10 @@ msgstr "" msgid "Favorites" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "Game: $1" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "" @@ -1183,10 +1207,26 @@ msgstr "" msgid "Login" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +msgid "Open server website" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Public Servers" msgstr "" @@ -1269,23 +1309,6 @@ msgid "" "Check debug.txt for details." msgstr "" -#: src/client/game.cpp -msgid "- Mode: " -msgstr "" - -#: src/client/game.cpp -msgid "- Public: " -msgstr "" - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "" - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "" - #: src/client/game.cpp msgid "A serialization error occurred:" msgstr "" @@ -1295,6 +1318,10 @@ msgstr "" msgid "Access denied. Reason: %s" msgstr "" +#: src/client/game.cpp +msgid "All debug info hidden" +msgstr "" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "" @@ -1315,6 +1342,10 @@ msgstr "" msgid "Block bounds shown for nearby blocks" msgstr "" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "" @@ -1327,10 +1358,6 @@ msgstr "" msgid "Can't show block bounds (disabled by game or mod)" msgstr "" -#: src/client/game.cpp -msgid "Change Password" -msgstr "" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "" @@ -1359,26 +1386,6 @@ msgstr "" msgid "Connection failed for unknown reason" msgstr "" -#: src/client/game.cpp -msgid "Continue" -msgstr "" - -#: src/client/game.cpp -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1392,31 +1399,15 @@ msgstr "" msgid "Creating server..." msgstr "" -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "" - #: src/client/game.cpp msgid "Debug info shown" msgstr "" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "" - #: src/client/game.cpp #, c-format msgid "Error creating client: %s" msgstr "" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "" @@ -1453,18 +1444,6 @@ msgstr "" msgid "Fog enabled by game or mod" msgstr "" -#: src/client/game.cpp -msgid "Game info:" -msgstr "" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "" - #: src/client/game.cpp msgid "Item definitions..." msgstr "" @@ -1501,14 +1480,6 @@ msgstr "" msgid "Node definitions..." msgstr "" -#: src/client/game.cpp -msgid "Off" -msgstr "" - -#: src/client/game.cpp -msgid "On" -msgstr "" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "" @@ -1521,38 +1492,22 @@ msgstr "" msgid "Profiler graph shown" msgstr "" -#: src/client/game.cpp -msgid "Remote server" -msgstr "" - #: src/client/game.cpp msgid "Resolving address..." msgstr "" -#: src/client/game.cpp -msgid "Respawn" -msgstr "复生" - #: src/client/game.cpp msgid "Shutting down..." msgstr "" -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "" - #: src/client/game.cpp msgid "Sound muted" msgstr "消音" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "" @@ -1624,18 +1579,103 @@ msgstr "" msgid "Volume changed to %d%%" msgstr "" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "" -#: src/client/game.cpp -msgid "You died" -msgstr "尔死矣" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "" + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "复生" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "尔死矣" + #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" msgstr "" @@ -1962,7 +2002,7 @@ msgid "Failed to compile the \"%s\" shader." msgstr "" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." +msgid "GLSL is not supported by the driver" msgstr "" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" @@ -2010,7 +2050,7 @@ msgstr "" msgid "Automatic jumping" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "" @@ -2022,7 +2062,7 @@ msgstr "" msgid "Block bounds" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "" @@ -2046,7 +2086,7 @@ msgstr "" msgid "Double tap \"jump\" to toggle fly" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "" @@ -2062,11 +2102,11 @@ msgstr "" msgid "Inc. volume" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "" @@ -2098,7 +2138,7 @@ msgstr "" msgid "Prev. item" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "" @@ -2110,7 +2150,7 @@ msgstr "" msgid "Screenshot" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "" @@ -2118,15 +2158,15 @@ msgstr "" msgid "Toggle HUD" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "" @@ -2134,11 +2174,11 @@ msgstr "" msgid "Toggle fog" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "" @@ -2146,7 +2186,7 @@ msgstr "" msgid "Toggle pitchmove" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "" @@ -2182,7 +2222,7 @@ msgstr "" msgid "Passwords do not match!" msgstr "" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "" @@ -2195,15 +2235,43 @@ msgstr "" msgid "Sound Volume: %d%%" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +msgid "Add button" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Done" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Remove" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp msgid "Joystick" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Toggle debug" msgstr "" @@ -2398,8 +2466,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" #: src/settings_translation_file.cpp @@ -2452,10 +2519,6 @@ msgstr "" msgid "Active object send range" msgstr "" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "" - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2478,6 +2541,16 @@ msgstr "" msgid "Advanced" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Allow clouds to look 3D instead of flat." +msgstr "" + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "" @@ -2845,11 +2918,11 @@ msgid "Clouds" msgstr "" #: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." +msgid "Clouds in menu" msgstr "" #: src/settings_translation_file.cpp -msgid "Clouds in menu" +msgid "Color depth for post-processing texture" msgstr "" #: src/settings_translation_file.cpp @@ -2874,7 +2947,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" #: src/settings_translation_file.cpp @@ -3009,6 +3082,14 @@ msgstr "" msgid "Debugging" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "" @@ -3160,18 +3241,10 @@ msgid "" "When the 'snowbiomes' flag is enabled, this is ignored." msgstr "" -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "" - #: src/settings_translation_file.cpp msgid "Developer Options" msgstr "" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "" @@ -3199,6 +3272,14 @@ msgstr "" msgid "Double-tapping the jump key toggles fly mode." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "" @@ -3272,8 +3353,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" #: src/settings_translation_file.cpp @@ -3346,8 +3427,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" #: src/settings_translation_file.cpp @@ -3362,12 +3442,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "" - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -3669,10 +3743,6 @@ msgstr "" msgid "GUI scaling filter" msgstr "" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "" - #: src/settings_translation_file.cpp msgid "Gamepads" msgstr "" @@ -3896,12 +3966,6 @@ msgid "" "descending." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -3920,6 +3984,13 @@ msgid "" "empty password." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4014,10 +4085,6 @@ msgstr "" msgid "Interval of saving important changes in the world, stated in seconds." msgstr "" -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "" - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "" @@ -4632,10 +4699,6 @@ msgstr "" msgid "Maximum users" msgstr "" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "" @@ -4668,6 +4731,10 @@ msgstr "" msgid "Minimum limit of random number of small caves per mapchunk." msgstr "" +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "" @@ -4757,7 +4824,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" @@ -5196,17 +5263,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5399,16 +5468,6 @@ msgstr "" msgid "Shader path" msgstr "" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "" @@ -5570,10 +5629,9 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" #: src/settings_translation_file.cpp @@ -5852,10 +5910,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "" -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "" @@ -5914,6 +5968,10 @@ msgstr "" msgid "Transparency Sorting Distance" msgstr "" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "" @@ -5964,7 +6022,10 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" #: src/settings_translation_file.cpp @@ -5987,16 +6048,14 @@ msgstr "" msgid "Upper Y limit of floatlands." msgstr "" -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "" - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "" #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" #: src/settings_translation_file.cpp @@ -6233,20 +6292,12 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -6257,10 +6308,6 @@ msgid "" "Mods may still set a background." msgstr "" -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -6283,8 +6330,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" diff --git a/po/mi/luanti.po b/po/mi/luanti.po index 8a4b42099..38d3a96ee 100644 --- a/po/mi/luanti.po +++ b/po/mi/luanti.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: minetest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" "PO-Revision-Date: 2023-12-03 17:17+0000\n" "Last-Translator: Krock \n" "Language-Team: Maori ] [-t]" msgstr "" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Set" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Enabled" +msgstr "Taea te kino" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Touchscreen layout" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "pause_menu" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Client Mods" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "" + #: builtin/fstk/ui.lua msgid "" msgstr "" @@ -162,7 +401,6 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "" @@ -198,11 +436,6 @@ msgstr "" msgid "No packages could be retrieved" msgstr "" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "" @@ -247,18 +480,6 @@ msgstr "" msgid "Base Game:" msgstr "" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -383,6 +604,12 @@ msgstr "" msgid "Unable to install a $1 as a texture pack" msgstr "" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "" @@ -445,12 +672,6 @@ msgstr "" msgid "Optional dependencies:" msgstr "" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "" @@ -601,11 +822,6 @@ msgstr "" msgid "Sea level rivers" msgstr "" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "" @@ -741,6 +957,22 @@ msgid "" "override any renaming here." msgstr "" +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Expand all" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "" @@ -765,7 +997,7 @@ msgstr "" msgid "Visit website" msgstr "" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "Tautuhinga" @@ -777,225 +1009,6 @@ msgstr "" msgid "Try reenabling public serverlist and check your internet connection." msgstr "" -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Set" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Enabled" -msgstr "Taea te kino" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "Taea te kino" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "Shaders are disabled." -msgstr "" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "Kaihunga" @@ -1016,10 +1029,6 @@ msgstr "" msgid "Core Team" msgstr "" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "" @@ -1165,10 +1174,20 @@ msgstr "Tīmata Kēmu" msgid "You need to install a game before you can create a world." msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "Add favorite" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "Wāhi noho" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Clients:\n" +"$1" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "" @@ -1182,6 +1201,10 @@ msgstr "" msgid "Favorites" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "Game: $1" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "" @@ -1194,10 +1217,26 @@ msgstr "Uru Kēmu" msgid "Login" msgstr "Takiuru" +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +msgid "Open server website" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Public Servers" msgstr "" @@ -1280,23 +1319,6 @@ msgid "" "Check debug.txt for details." msgstr "" -#: src/client/game.cpp -msgid "- Mode: " -msgstr "" - -#: src/client/game.cpp -msgid "- Public: " -msgstr "" - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "" - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "" - #: src/client/game.cpp msgid "A serialization error occurred:" msgstr "" @@ -1306,6 +1328,10 @@ msgstr "" msgid "Access denied. Reason: %s" msgstr "" +#: src/client/game.cpp +msgid "All debug info hidden" +msgstr "" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "" @@ -1326,6 +1352,10 @@ msgstr "" msgid "Block bounds shown for nearby blocks" msgstr "" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "" @@ -1338,10 +1368,6 @@ msgstr "" msgid "Can't show block bounds (disabled by game or mod)" msgstr "" -#: src/client/game.cpp -msgid "Change Password" -msgstr "Huri Kupuhuna" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "" @@ -1370,26 +1396,6 @@ msgstr "" msgid "Connection failed for unknown reason" msgstr "" -#: src/client/game.cpp -msgid "Continue" -msgstr "Haere Tonu" - -#: src/client/game.cpp -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1403,31 +1409,15 @@ msgstr "" msgid "Creating server..." msgstr "" -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "" - #: src/client/game.cpp msgid "Debug info shown" msgstr "" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "" - #: src/client/game.cpp #, c-format msgid "Error creating client: %s" msgstr "" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "Puta ki te pae tahua" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "Tata kēmu taki puta" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "" @@ -1464,18 +1454,6 @@ msgstr "" msgid "Fog enabled by game or mod" msgstr "" -#: src/client/game.cpp -msgid "Game info:" -msgstr "" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "" - #: src/client/game.cpp msgid "Item definitions..." msgstr "" @@ -1512,14 +1490,6 @@ msgstr "" msgid "Node definitions..." msgstr "" -#: src/client/game.cpp -msgid "Off" -msgstr "" - -#: src/client/game.cpp -msgid "On" -msgstr "" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "" @@ -1532,38 +1502,22 @@ msgstr "" msgid "Profiler graph shown" msgstr "" -#: src/client/game.cpp -msgid "Remote server" -msgstr "" - #: src/client/game.cpp msgid "Resolving address..." msgstr "" -#: src/client/game.cpp -msgid "Respawn" -msgstr "" - #: src/client/game.cpp msgid "Shutting down..." msgstr "" -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "Rōrahi Oro" - #: src/client/game.cpp msgid "Sound muted" msgstr "" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "" @@ -1635,16 +1589,101 @@ msgstr "" msgid "Volume changed to %d%%" msgstr "" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "" #: src/client/game.cpp -msgid "You died" +msgid "Zoom currently disabled by game or mod" msgstr "" -#: src/client/game.cpp -msgid "Zoom currently disabled by game or mod" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "" + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "Huri Kupuhuna" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "Haere Tonu" + +#: src/client/game_formspec.cpp +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "Puta ki te pae tahua" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "Tata kēmu taki puta" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "Rōrahi Oro" + +#: src/client/game_formspec.cpp +msgid "You died" msgstr "" #: src/client/gameui.cpp @@ -1976,7 +2015,7 @@ msgid "Failed to compile the \"%s\" shader." msgstr "" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." +msgid "GLSL is not supported by the driver" msgstr "" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" @@ -2024,7 +2063,7 @@ msgstr "" msgid "Automatic jumping" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "" @@ -2036,7 +2075,7 @@ msgstr "" msgid "Block bounds" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "" @@ -2060,7 +2099,7 @@ msgstr "" msgid "Double tap \"jump\" to toggle fly" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "" @@ -2076,11 +2115,11 @@ msgstr "" msgid "Inc. volume" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "" @@ -2112,7 +2151,7 @@ msgstr "" msgid "Prev. item" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "" @@ -2124,7 +2163,7 @@ msgstr "" msgid "Screenshot" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "" @@ -2132,15 +2171,15 @@ msgstr "" msgid "Toggle HUD" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "" @@ -2148,11 +2187,11 @@ msgstr "" msgid "Toggle fog" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "" @@ -2160,7 +2199,7 @@ msgstr "" msgid "Toggle pitchmove" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "" @@ -2196,7 +2235,7 @@ msgstr "" msgid "Passwords do not match!" msgstr "" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "" @@ -2209,15 +2248,43 @@ msgstr "" msgid "Sound Volume: %d%%" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +msgid "Add button" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Done" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Remove" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp msgid "Joystick" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Toggle debug" msgstr "" @@ -2413,8 +2480,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" #: src/settings_translation_file.cpp @@ -2467,10 +2533,6 @@ msgstr "" msgid "Active object send range" msgstr "" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "" - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2493,6 +2555,16 @@ msgstr "" msgid "Advanced" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Allow clouds to look 3D instead of flat." +msgstr "" + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "" @@ -2860,11 +2932,11 @@ msgid "Clouds" msgstr "" #: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." +msgid "Clouds in menu" msgstr "" #: src/settings_translation_file.cpp -msgid "Clouds in menu" +msgid "Color depth for post-processing texture" msgstr "" #: src/settings_translation_file.cpp @@ -2889,7 +2961,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" #: src/settings_translation_file.cpp @@ -3024,6 +3096,14 @@ msgstr "" msgid "Debugging" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "" @@ -3175,18 +3255,10 @@ msgid "" "When the 'snowbiomes' flag is enabled, this is ignored." msgstr "" -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "" - #: src/settings_translation_file.cpp msgid "Developer Options" msgstr "" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "" @@ -3214,6 +3286,14 @@ msgstr "" msgid "Double-tapping the jump key toggles fly mode." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "" @@ -3288,8 +3368,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" #: src/settings_translation_file.cpp @@ -3362,8 +3442,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" #: src/settings_translation_file.cpp @@ -3378,12 +3457,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "" - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -3685,10 +3758,6 @@ msgstr "" msgid "GUI scaling filter" msgstr "" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "" - #: src/settings_translation_file.cpp msgid "Gamepads" msgstr "" @@ -3912,12 +3981,6 @@ msgid "" "descending." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -3936,6 +3999,13 @@ msgid "" "empty password." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4030,10 +4100,6 @@ msgstr "" msgid "Interval of saving important changes in the world, stated in seconds." msgstr "" -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "" - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "" @@ -4648,10 +4714,6 @@ msgstr "" msgid "Maximum users" msgstr "" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "" @@ -4684,6 +4746,10 @@ msgstr "" msgid "Minimum limit of random number of small caves per mapchunk." msgstr "" +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "" @@ -4773,7 +4839,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" @@ -5212,17 +5278,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5415,16 +5483,6 @@ msgstr "" msgid "Shader path" msgstr "" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "" @@ -5585,10 +5643,9 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" #: src/settings_translation_file.cpp @@ -5867,10 +5924,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "" -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "" @@ -5929,6 +5982,10 @@ msgstr "" msgid "Transparency Sorting Distance" msgstr "" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "" @@ -5979,7 +6036,10 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" #: src/settings_translation_file.cpp @@ -6002,16 +6062,14 @@ msgstr "" msgid "Upper Y limit of floatlands." msgstr "" -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "" - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "" #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" #: src/settings_translation_file.cpp @@ -6248,20 +6306,12 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -6272,10 +6322,6 @@ msgid "" "Mods may still set a background." msgstr "" -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -6298,8 +6344,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -6452,3 +6497,7 @@ msgstr "" #~ "- Mouse: tirohanga\n" #~ "- Mouse wheel: ti pako\n" #~ "- %s: korero\n" + +#, fuzzy +#~ msgid "Enable" +#~ msgstr "Taea te kino" diff --git a/po/mn/luanti.po b/po/mn/luanti.po index 2e8d9e549..91ddcb1af 100644 --- a/po/mn/luanti.po +++ b/po/mn/luanti.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: minetest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" "PO-Revision-Date: 2023-12-03 17:17+0000\n" "Last-Translator: Krock \n" "Language-Team: Mongolian ] [-t]" msgstr "" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Set" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Touchscreen layout" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "pause_menu" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Client Mods" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "" + #: builtin/fstk/ui.lua #, fuzzy msgid "" @@ -162,7 +400,6 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "" @@ -198,11 +435,6 @@ msgstr "" msgid "No packages could be retrieved" msgstr "" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "" @@ -247,18 +479,6 @@ msgstr "" msgid "Base Game:" msgstr "" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -381,6 +601,12 @@ msgstr "" msgid "Unable to install a $1 as a texture pack" msgstr "" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "(Идэвхжсэн, алдаатай)" @@ -443,12 +669,6 @@ msgstr "" msgid "Optional dependencies:" msgstr "" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "Ертөнц:" @@ -599,11 +819,6 @@ msgstr "" msgid "Sea level rivers" msgstr "" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "" @@ -739,6 +954,22 @@ msgid "" "override any renaming here." msgstr "" +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Expand all" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "Шинэ $1 хувилбар ашиглах боломжтой байна." @@ -767,7 +998,7 @@ msgstr "Хэзээ ч үгүй" msgid "Visit website" msgstr "Вебсайтаар зочилох" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "" @@ -779,223 +1010,6 @@ msgstr "" msgid "Try reenabling public serverlist and check your internet connection." msgstr "" -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Set" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "Enable" -msgstr "" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "Shaders are disabled." -msgstr "" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "" @@ -1016,10 +1030,6 @@ msgstr "" msgid "Core Team" msgstr "" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "" @@ -1165,10 +1175,20 @@ msgstr "" msgid "You need to install a game before you can create a world." msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "Add favorite" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Clients:\n" +"$1" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "" @@ -1182,6 +1202,10 @@ msgstr "" msgid "Favorites" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "Game: $1" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "" @@ -1194,10 +1218,26 @@ msgstr "" msgid "Login" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +msgid "Open server website" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Public Servers" msgstr "" @@ -1280,23 +1320,6 @@ msgid "" "Check debug.txt for details." msgstr "" -#: src/client/game.cpp -msgid "- Mode: " -msgstr "" - -#: src/client/game.cpp -msgid "- Public: " -msgstr "" - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "" - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "" - #: src/client/game.cpp msgid "A serialization error occurred:" msgstr "" @@ -1306,6 +1329,10 @@ msgstr "" msgid "Access denied. Reason: %s" msgstr "" +#: src/client/game.cpp +msgid "All debug info hidden" +msgstr "" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "" @@ -1326,6 +1353,10 @@ msgstr "" msgid "Block bounds shown for nearby blocks" msgstr "" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "" @@ -1338,10 +1369,6 @@ msgstr "" msgid "Can't show block bounds (disabled by game or mod)" msgstr "" -#: src/client/game.cpp -msgid "Change Password" -msgstr "" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "" @@ -1370,26 +1397,6 @@ msgstr "" msgid "Connection failed for unknown reason" msgstr "" -#: src/client/game.cpp -msgid "Continue" -msgstr "" - -#: src/client/game.cpp -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1403,31 +1410,15 @@ msgstr "" msgid "Creating server..." msgstr "" -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "" - #: src/client/game.cpp msgid "Debug info shown" msgstr "" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "" - #: src/client/game.cpp #, c-format msgid "Error creating client: %s" msgstr "" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "" @@ -1464,18 +1455,6 @@ msgstr "" msgid "Fog enabled by game or mod" msgstr "" -#: src/client/game.cpp -msgid "Game info:" -msgstr "" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "" - #: src/client/game.cpp msgid "Item definitions..." msgstr "" @@ -1512,14 +1491,6 @@ msgstr "" msgid "Node definitions..." msgstr "" -#: src/client/game.cpp -msgid "Off" -msgstr "" - -#: src/client/game.cpp -msgid "On" -msgstr "" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "" @@ -1532,38 +1503,22 @@ msgstr "" msgid "Profiler graph shown" msgstr "" -#: src/client/game.cpp -msgid "Remote server" -msgstr "" - #: src/client/game.cpp msgid "Resolving address..." msgstr "" -#: src/client/game.cpp -msgid "Respawn" -msgstr "Дахин төрөх" - #: src/client/game.cpp msgid "Shutting down..." msgstr "" -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "" - #: src/client/game.cpp msgid "Sound muted" msgstr "" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "" @@ -1635,18 +1590,103 @@ msgstr "" msgid "Volume changed to %d%%" msgstr "" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "" -#: src/client/game.cpp -msgid "You died" -msgstr "Та үхсэн" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "" + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "Дахин төрөх" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "Та үхсэн" + #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" msgstr "" @@ -1973,7 +2013,7 @@ msgid "Failed to compile the \"%s\" shader." msgstr "" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." +msgid "GLSL is not supported by the driver" msgstr "" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" @@ -2021,7 +2061,7 @@ msgstr "" msgid "Automatic jumping" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "" @@ -2033,7 +2073,7 @@ msgstr "" msgid "Block bounds" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "" @@ -2057,7 +2097,7 @@ msgstr "" msgid "Double tap \"jump\" to toggle fly" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "" @@ -2073,11 +2113,11 @@ msgstr "" msgid "Inc. volume" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "" @@ -2109,7 +2149,7 @@ msgstr "" msgid "Prev. item" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "" @@ -2121,7 +2161,7 @@ msgstr "" msgid "Screenshot" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "" @@ -2129,15 +2169,15 @@ msgstr "" msgid "Toggle HUD" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "" @@ -2145,11 +2185,11 @@ msgstr "" msgid "Toggle fog" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "" @@ -2157,7 +2197,7 @@ msgstr "" msgid "Toggle pitchmove" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "" @@ -2193,7 +2233,7 @@ msgstr "" msgid "Passwords do not match!" msgstr "" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "" @@ -2206,15 +2246,43 @@ msgstr "" msgid "Sound Volume: %d%%" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +msgid "Add button" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Done" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Remove" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp msgid "Joystick" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Toggle debug" msgstr "" @@ -2410,8 +2478,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" #: src/settings_translation_file.cpp @@ -2464,10 +2531,6 @@ msgstr "" msgid "Active object send range" msgstr "" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "" - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2490,6 +2553,16 @@ msgstr "" msgid "Advanced" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Allow clouds to look 3D instead of flat." +msgstr "" + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "" @@ -2857,11 +2930,11 @@ msgid "Clouds" msgstr "" #: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." +msgid "Clouds in menu" msgstr "" #: src/settings_translation_file.cpp -msgid "Clouds in menu" +msgid "Color depth for post-processing texture" msgstr "" #: src/settings_translation_file.cpp @@ -2886,7 +2959,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" #: src/settings_translation_file.cpp @@ -3021,6 +3094,14 @@ msgstr "" msgid "Debugging" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "" @@ -3172,18 +3253,10 @@ msgid "" "When the 'snowbiomes' flag is enabled, this is ignored." msgstr "" -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "" - #: src/settings_translation_file.cpp msgid "Developer Options" msgstr "" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "" @@ -3211,6 +3284,14 @@ msgstr "" msgid "Double-tapping the jump key toggles fly mode." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "" @@ -3284,8 +3365,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" #: src/settings_translation_file.cpp @@ -3358,8 +3439,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" #: src/settings_translation_file.cpp @@ -3374,12 +3454,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "" - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -3681,10 +3755,6 @@ msgstr "" msgid "GUI scaling filter" msgstr "" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "" - #: src/settings_translation_file.cpp msgid "Gamepads" msgstr "" @@ -3908,12 +3978,6 @@ msgid "" "descending." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -3932,6 +3996,13 @@ msgid "" "empty password." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4026,10 +4097,6 @@ msgstr "" msgid "Interval of saving important changes in the world, stated in seconds." msgstr "" -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "" - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "" @@ -4645,10 +4712,6 @@ msgstr "" msgid "Maximum users" msgstr "" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "" @@ -4681,6 +4744,10 @@ msgstr "" msgid "Minimum limit of random number of small caves per mapchunk." msgstr "" +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "" @@ -4770,7 +4837,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" @@ -5210,17 +5277,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5413,16 +5482,6 @@ msgstr "" msgid "Shader path" msgstr "" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "" @@ -5583,10 +5642,9 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" #: src/settings_translation_file.cpp @@ -5865,10 +5923,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "" -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "" @@ -5927,6 +5981,10 @@ msgstr "" msgid "Transparency Sorting Distance" msgstr "" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "" @@ -5977,7 +6035,10 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" #: src/settings_translation_file.cpp @@ -6000,16 +6061,14 @@ msgstr "" msgid "Upper Y limit of floatlands." msgstr "" -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "" - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "" #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" #: src/settings_translation_file.cpp @@ -6246,20 +6305,12 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -6270,10 +6321,6 @@ msgid "" "Mods may still set a background." msgstr "" -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -6296,8 +6343,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" diff --git a/po/mr/luanti.po b/po/mr/luanti.po index e41732192..20c03eaf2 100644 --- a/po/mr/luanti.po +++ b/po/mr/luanti.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: minetest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" "PO-Revision-Date: 2023-12-03 17:17+0000\n" "Last-Translator: Krock \n" "Language-Team: Marathi ] [-t]" msgstr "" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "ब्राउझ करा" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Set" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "रद्द करा" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "ऑफसेट" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "बदल जतन करा" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "मोज" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "सीड" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "थंबवा" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "वापरा" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "कोणतीही गोष्ट नाहीत" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Touchscreen layout" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "pause_menu" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Client Mods" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "" + #: builtin/fstk/ui.lua msgid "" msgstr "" @@ -159,7 +397,6 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "" @@ -196,11 +433,6 @@ msgstr "मॉड" msgid "No packages could be retrieved" msgstr "काहीच सापडत नाही" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "कोणतीही गोष्ट नाहीत" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "अपडेट नाहीत" @@ -246,18 +478,6 @@ msgstr "आधीच स्थापित" msgid "Base Game:" msgstr "मुख्य खेळ:" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "रद्द करा" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -382,6 +602,12 @@ msgstr "" msgid "Unable to install a $1 as a texture pack" msgstr "" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "" @@ -444,12 +670,6 @@ msgstr "कोणताही मॉड बदलणार नाही" msgid "Optional dependencies:" msgstr "बदलणारे मॉड:" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "बदल जतन करा" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "जग:" @@ -601,11 +821,6 @@ msgstr "नद्या" msgid "Sea level rivers" msgstr "समुद्र पातळीवरील नद्या" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "सीड" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "भिन्न हवामान आणि आपत्ती यांच्यात सपाट संक्रमण" @@ -741,6 +956,23 @@ msgid "" "override any renaming here." msgstr "" +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "सर्व वापरा" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "" @@ -765,7 +997,7 @@ msgstr "" msgid "Visit website" msgstr "" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "" @@ -777,224 +1009,6 @@ msgstr "" msgid "Try reenabling public serverlist and check your internet connection." msgstr "" -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "ब्राउझ करा" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Set" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "ऑफसेट" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "मोज" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "थंबवा" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "वापरा" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "वापरा" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "Shaders are disabled." -msgstr "" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "" @@ -1015,10 +1029,6 @@ msgstr "" msgid "Core Team" msgstr "" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "" @@ -1164,10 +1174,20 @@ msgstr "" msgid "You need to install a game before you can create a world." msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "Add favorite" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Clients:\n" +"$1" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "" @@ -1181,6 +1201,11 @@ msgstr "" msgid "Favorites" msgstr "" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "खेळ" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "" @@ -1193,10 +1218,26 @@ msgstr "" msgid "Login" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +msgid "Open server website" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua #, fuzzy msgid "Public Servers" @@ -1280,23 +1321,6 @@ msgid "" "Check debug.txt for details." msgstr "" -#: src/client/game.cpp -msgid "- Mode: " -msgstr "" - -#: src/client/game.cpp -msgid "- Public: " -msgstr "" - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "" - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "" - #: src/client/game.cpp #, fuzzy msgid "A serialization error occurred:" @@ -1307,6 +1331,10 @@ msgstr "एक त्रुटी आली:" msgid "Access denied. Reason: %s" msgstr "" +#: src/client/game.cpp +msgid "All debug info hidden" +msgstr "" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "" @@ -1327,6 +1355,10 @@ msgstr "" msgid "Block bounds shown for nearby blocks" msgstr "" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "" @@ -1339,10 +1371,6 @@ msgstr "" msgid "Can't show block bounds (disabled by game or mod)" msgstr "" -#: src/client/game.cpp -msgid "Change Password" -msgstr "" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "" @@ -1371,26 +1399,6 @@ msgstr "" msgid "Connection failed for unknown reason" msgstr "" -#: src/client/game.cpp -msgid "Continue" -msgstr "" - -#: src/client/game.cpp -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1404,31 +1412,15 @@ msgstr "" msgid "Creating server..." msgstr "" -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "" - #: src/client/game.cpp msgid "Debug info shown" msgstr "" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "" - #: src/client/game.cpp #, c-format msgid "Error creating client: %s" msgstr "" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "" @@ -1465,18 +1457,6 @@ msgstr "" msgid "Fog enabled by game or mod" msgstr "" -#: src/client/game.cpp -msgid "Game info:" -msgstr "" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "" - #: src/client/game.cpp msgid "Item definitions..." msgstr "" @@ -1513,14 +1493,6 @@ msgstr "" msgid "Node definitions..." msgstr "" -#: src/client/game.cpp -msgid "Off" -msgstr "" - -#: src/client/game.cpp -msgid "On" -msgstr "" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "" @@ -1533,38 +1505,22 @@ msgstr "" msgid "Profiler graph shown" msgstr "" -#: src/client/game.cpp -msgid "Remote server" -msgstr "" - #: src/client/game.cpp msgid "Resolving address..." msgstr "" -#: src/client/game.cpp -msgid "Respawn" -msgstr "पुनर्जन्म" - #: src/client/game.cpp msgid "Shutting down..." msgstr "" -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "" - #: src/client/game.cpp msgid "Sound muted" msgstr "" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "" @@ -1636,18 +1592,103 @@ msgstr "" msgid "Volume changed to %d%%" msgstr "" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "" -#: src/client/game.cpp -msgid "You died" -msgstr "तू मेलास" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "" + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "पुनर्जन्म" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "तू मेलास" + #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" msgstr "" @@ -1975,7 +2016,7 @@ msgid "Failed to compile the \"%s\" shader." msgstr "$१ डाउनलोड करू नाही शकत" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." +msgid "GLSL is not supported by the driver" msgstr "" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" @@ -2025,7 +2066,7 @@ msgstr "" msgid "Automatic jumping" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "" @@ -2037,7 +2078,7 @@ msgstr "" msgid "Block bounds" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "" @@ -2061,7 +2102,7 @@ msgstr "" msgid "Double tap \"jump\" to toggle fly" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "" @@ -2077,11 +2118,11 @@ msgstr "" msgid "Inc. volume" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "" @@ -2113,7 +2154,7 @@ msgstr "" msgid "Prev. item" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "" @@ -2125,7 +2166,7 @@ msgstr "" msgid "Screenshot" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "" @@ -2133,15 +2174,15 @@ msgstr "" msgid "Toggle HUD" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "" @@ -2149,11 +2190,11 @@ msgstr "" msgid "Toggle fog" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "" @@ -2161,7 +2202,7 @@ msgstr "" msgid "Toggle pitchmove" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "" @@ -2198,7 +2239,7 @@ msgstr "" msgid "Passwords do not match!" msgstr "" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "" @@ -2211,15 +2252,43 @@ msgstr "" msgid "Sound Volume: %d%%" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +msgid "Add button" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Done" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Remove" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp msgid "Joystick" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Toggle debug" msgstr "" @@ -2414,8 +2483,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" #: src/settings_translation_file.cpp @@ -2468,10 +2536,6 @@ msgstr "" msgid "Active object send range" msgstr "" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "" - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2495,6 +2559,16 @@ msgstr "जगाचे नाव" msgid "Advanced" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Allow clouds to look 3D instead of flat." +msgstr "" + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "" @@ -2863,11 +2937,11 @@ msgid "Clouds" msgstr "" #: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." +msgid "Clouds in menu" msgstr "" #: src/settings_translation_file.cpp -msgid "Clouds in menu" +msgid "Color depth for post-processing texture" msgstr "" #: src/settings_translation_file.cpp @@ -2892,7 +2966,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" #: src/settings_translation_file.cpp @@ -3027,6 +3101,14 @@ msgstr "" msgid "Debugging" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "" @@ -3178,19 +3260,11 @@ msgid "" "When the 'snowbiomes' flag is enabled, this is ignored." msgstr "" -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Developer Options" msgstr "सजावट" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "" @@ -3218,6 +3292,14 @@ msgstr "" msgid "Double-tapping the jump key toggles fly mode." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "" @@ -3293,8 +3375,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" #: src/settings_translation_file.cpp @@ -3367,8 +3449,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" #: src/settings_translation_file.cpp @@ -3383,12 +3464,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "" - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -3690,10 +3765,6 @@ msgstr "" msgid "GUI scaling filter" msgstr "" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Gamepads" @@ -3918,12 +3989,6 @@ msgid "" "descending." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -3942,6 +4007,13 @@ msgid "" "empty password." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4036,10 +4108,6 @@ msgstr "" msgid "Interval of saving important changes in the world, stated in seconds." msgstr "" -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "" - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "" @@ -4654,10 +4722,6 @@ msgstr "" msgid "Maximum users" msgstr "" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "" @@ -4690,6 +4754,10 @@ msgstr "" msgid "Minimum limit of random number of small caves per mapchunk." msgstr "" +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "" @@ -4779,7 +4847,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" @@ -5219,17 +5287,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5423,16 +5493,6 @@ msgstr "" msgid "Shader path" msgstr "" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "" @@ -5593,10 +5653,9 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" #: src/settings_translation_file.cpp @@ -5875,10 +5934,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "" -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "" @@ -5937,6 +5992,10 @@ msgstr "" msgid "Transparency Sorting Distance" msgstr "" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "" @@ -5987,7 +6046,10 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" #: src/settings_translation_file.cpp @@ -6010,16 +6072,14 @@ msgstr "" msgid "Upper Y limit of floatlands." msgstr "" -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "" - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "" #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" #: src/settings_translation_file.cpp @@ -6256,20 +6316,12 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -6280,10 +6332,6 @@ msgid "" "Mods may still set a background." msgstr "" -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -6306,8 +6354,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -6434,8 +6481,9 @@ msgstr "" #~ msgid "Download one from minetest.net" #~ msgstr "minetest.net वरुन डाउनलोड करा" -#~ msgid "Game" -#~ msgstr "खेळ" +#, fuzzy +#~ msgid "Enable" +#~ msgstr "वापरा" #~ msgid "View more information in a web browser" #~ msgstr "अंतर्जाल शोधक वर माहिती काढा" diff --git a/po/ms/luanti.po b/po/ms/luanti.po index 06cfa5b03..e1aacf188 100644 --- a/po/ms/luanti.po +++ b/po/ms/luanti.po @@ -2,10 +2,9 @@ msgid "" msgstr "" "Project-Id-Version: Malay (Minetest)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" -"PO-Revision-Date: 2024-10-17 02:15+0000\n" -"Last-Translator: \"Yaya - Nurul Azeera Hidayah @ Muhammad Nur Hidayat " -"Yasuyoshi\" \n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" +"PO-Revision-Date: 2024-11-28 13:00+0000\n" +"Last-Translator: Muhammad Nuruddin \n" "Language-Team: Malay \n" "Language: ms\n" @@ -13,7 +12,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 5.8-rc\n" +"X-Generator: Weblate 5.9-dev\n" #: builtin/client/chatcommands.lua msgid "Clear the out chat queue" @@ -78,6 +77,249 @@ msgstr "" msgid "[all | ] [-t]" msgstr "[all | ] [-t]" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "Layar" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "Sunting" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "Pilih direktori" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "Pilih fail" + +#: builtin/common/settings/components.lua +msgid "Set" +msgstr "Tetapkan" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(Tiada perihal untuk tetapan yang diberi)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "Hingar 2D" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "Batal" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "Lakunariti" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "Oktaf" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "Ofset" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "Penerusan" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "Simpan" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "Skala" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "Benih" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "Sebaran X" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "Sebaran Y" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "Sebaran Z" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "nilai mutlak" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "lalai" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "tumpul" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "(The game will need to enable automatic exposure as well)" +msgstr "(Permainan akan perlu membolehkan bayang juga)" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "(The game will need to enable bloom as well)" +msgstr "(Permainan akan perlu membolehkan bayang juga)" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "(Permainan akan perlu membolehkan bayang juga)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "(Guna bahasa sistem)" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "Ketercapaian" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "Automatik" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "Sembang" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "Padam" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "Kawalan" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "Dilumpuhkan" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "Dibolehkan" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "Umum" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "Pergerakan" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "Tiada hasil" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default" +msgstr "Tetap semula tetapan lalai" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "Tetap semula tetapan lalai ($1)" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "Cari" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "Tunjuk tetapan lanjutan" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "Tunjuk nama teknikal" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Touchscreen layout" +msgstr "Skrin Sentuh" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "pause_menu" +msgstr "FPS di menu jeda" + +#: builtin/common/settings/settingtypes.lua +msgid "Client Mods" +msgstr "Mods Klien" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "Kandungan: Permainan" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "Kandungan: Mods" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "(Permainan akan perlu membolehkan bayang juga)" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "Tersuai" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "Bayang dinamik" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "Tinggi" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "Rendah" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "Sederhana" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "Sangat Tinggi" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "Sangat Rendah" + #: builtin/fstk/ui.lua msgid "" msgstr "" @@ -160,11 +402,10 @@ msgstr "$1 dimuat turun..." #: builtin/mainmenu/content/dlg_contentdb.lua msgid "All" -msgstr "" +msgstr "Semua" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "Kembali" @@ -179,7 +420,7 @@ msgstr "Memuat turun..." #: builtin/mainmenu/content/dlg_contentdb.lua msgid "Featured" -msgstr "" +msgstr "Diketengahkan" #: builtin/mainmenu/content/dlg_contentdb.lua msgid "Games" @@ -201,11 +442,6 @@ msgstr "Mods" msgid "No packages could be retrieved" msgstr "Tiada pakej yang boleh diambil" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "Tiada hasil" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "Tiada kemas kini" @@ -251,18 +487,6 @@ msgstr "Sudah dipasang" msgid "Base Game:" msgstr "Permainan Asas:" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "Batal" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -317,11 +541,11 @@ msgstr "Keterangan Pelayan" #: builtin/mainmenu/content/dlg_package.lua msgid "Donate" -msgstr "" +msgstr "Derma" #: builtin/mainmenu/content/dlg_package.lua msgid "Forum Topic" -msgstr "" +msgstr "Topik Forum" #: builtin/mainmenu/content/dlg_package.lua #, fuzzy @@ -335,15 +559,15 @@ msgstr "Pasang $1" #: builtin/mainmenu/content/dlg_package.lua msgid "Issue Tracker" -msgstr "" +msgstr "Penjejak Isu" #: builtin/mainmenu/content/dlg_package.lua msgid "Source" -msgstr "" +msgstr "Sumber" #: builtin/mainmenu/content/dlg_package.lua msgid "Translate" -msgstr "" +msgstr "Terjemahkan" #: builtin/mainmenu/content/dlg_package.lua builtin/mainmenu/tab_content.lua msgid "Uninstall" @@ -360,7 +584,7 @@ msgstr "Lawati laman sesawang" #: builtin/mainmenu/content/dlg_package.lua msgid "by $1 — $2 downloads — +$3 / $4 / -$5" -msgstr "" +msgstr "oleh $1 — $2 muat turun — +$3 / $4 / -$5" #: builtin/mainmenu/content/pkgmgr.lua msgid "$1 (Enabled)" @@ -390,6 +614,12 @@ msgstr "Tidak mampu memasang $1 sebagai $2" msgid "Unable to install a $1 as a texture pack" msgstr "Tidak mampu memasang $1 sebagai pek tekstur" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "(Dibolehkan, ada ralat)" @@ -454,12 +684,6 @@ msgstr "Tiada kebergantungan pilihan" msgid "Optional dependencies:" msgstr "Kebergantungan pilihan:" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "Simpan" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "Dunia:" @@ -612,11 +836,6 @@ msgstr "Sungai" msgid "Sea level rivers" msgstr "Sungai aras laut" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "Benih" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "Peralihan lembut di antara biom" @@ -762,6 +981,23 @@ msgstr "" "Pek mods ini mempunyai nama khusus diberikan dalam fail modpack.conf " "miliknya yang akan mengatasi sebarang penamaan semula di sini." +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "Membolehkan semua" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "Versi $1 baharu kini tersedia" @@ -790,7 +1026,7 @@ msgstr "Tidak Selamanya" msgid "Visit website" msgstr "Lawati laman sesawang" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "Tetapan" @@ -804,228 +1040,6 @@ msgstr "" "Cuba aktifkan semula senarai pelayan awam dan periksa sambungan internet " "anda." -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "Layar" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "Sunting" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "Pilih direktori" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "Pilih fail" - -#: builtin/mainmenu/settings/components.lua -msgid "Set" -msgstr "Tetapkan" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(Tiada perihal untuk tetapan yang diberi)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "Hingar 2D" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "Lakunariti" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "Oktaf" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "Ofset" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "Penerusan" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "Skala" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "Sebaran X" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "Sebaran Y" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "Sebaran Z" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "nilai mutlak" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "lalai" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "tumpul" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable automatic exposure as well)" -msgstr "(Permainan akan perlu membolehkan bayang juga)" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable bloom as well)" -msgstr "(Permainan akan perlu membolehkan bayang juga)" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "(Permainan akan perlu membolehkan bayang juga)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "(Guna bahasa sistem)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "Ketercapaian" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "Sembang" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "Padam" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "Kawalan" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "Dilumpuhkan" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "Dibolehkan" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "Umum" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "Pergerakan" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default" -msgstr "Tetap semula tetapan lalai" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "Tetap semula tetapan lalai ($1)" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "Cari" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "Tunjuk tetapan lanjutan" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "Tunjuk nama teknikal" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "Mods Klien" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "Kandungan: Permainan" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "Kandungan: Mods" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "Dibolehkan" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Shaders are disabled." -msgstr "Kemas kini kamera dilumpuhkan" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "(Permainan akan perlu membolehkan bayang juga)" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "Tersuai" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "Bayang dinamik" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "Tinggi" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "Rendah" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "Sederhana" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "Sangat Tinggi" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "Sangat Rendah" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "Perihal" @@ -1046,10 +1060,6 @@ msgstr "Pembangun Teras" msgid "Core Team" msgstr "Pasukan Teras" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "Peranti Irrlicht:" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "Buka Direktori Data Pengguna" @@ -1203,10 +1213,22 @@ msgstr "" "Anda perlu memasang sebuah permainan sebelum anda boleh mencipta sebuah " "dunia." +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "Buang kegemaran" + #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "Alamat" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "Klien" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "Mod Kreatif" @@ -1220,6 +1242,11 @@ msgstr "Boleh cedera / PvP" msgid "Favorites" msgstr "Kegemaran" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "Permainan" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "Pelayan Tidak Serasi" @@ -1232,10 +1259,28 @@ msgstr "Sertai Permainan" msgid "Login" msgstr "Log masuk" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Number of mods: $1" +msgstr "Jumlah jalur timbul" + +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Open server website" +msgstr "Langkah pelayan khusus" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "Ping" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Public Servers" msgstr "Pelayan Awam" @@ -1321,23 +1366,6 @@ msgstr "" "\n" "Periksa fail debug.txt untuk maklumat lanjut." -#: src/client/game.cpp -msgid "- Mode: " -msgstr "- Mod: " - -#: src/client/game.cpp -msgid "- Public: " -msgstr "- Awam: " - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "- PvP: " - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "- Nama Pelayan: " - #: src/client/game.cpp msgid "A serialization error occurred:" msgstr "Telah berlakunya ralat penyirian:" @@ -1347,6 +1375,11 @@ msgstr "Telah berlakunya ralat penyirian:" msgid "Access denied. Reason: %s" msgstr "Capaian dinafikan. Sebab: %s" +#: src/client/game.cpp +#, fuzzy +msgid "All debug info hidden" +msgstr "Maklumat nyahpepijat ditunjukkan" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "Pergerakan automatik dilumpuhkan" @@ -1367,6 +1400,10 @@ msgstr "Batas blok ditunjukkan untuk blok semasa" msgid "Block bounds shown for nearby blocks" msgstr "Batas blok ditunjukkan untuk blok berhampiran" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "Kemas kini kamera dilumpuhkan" @@ -1379,10 +1416,6 @@ msgstr "Kemas kini kamera dibolehkan" msgid "Can't show block bounds (disabled by game or mod)" msgstr "Tidak boleh tunjuk batas blok (dilumpuhkan oleh permainan atau mods)" -#: src/client/game.cpp -msgid "Change Password" -msgstr "Tukar Kata Laluan" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "Mod sinematik dilumpuhkan" @@ -1411,38 +1444,6 @@ msgstr "Ralat dalam penyambungan (tamat tempoh?)" msgid "Connection failed for unknown reason" msgstr "Sambungan gagal untuk sebab yang tidak diketahui" -#: src/client/game.cpp -msgid "Continue" -msgstr "Teruskan" - -#: src/client/game.cpp -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" -"Kawalan:\n" -"Tiada menu dibuka:\n" -"- tarik dengan jari: lihat sekeliling\n" -"- ketik: letak/ketuk/guna (lalai)\n" -"- ketik dan tahan: gali/guna (lalai)\n" -"Menu/inventori dibuka:\n" -"- ketik berganda (di luar):\n" -" --> tutup\n" -"- sentuh tindanan, sentuh slot:\n" -" --> pindah tindanan\n" -"- sentuh&seret, ketik dengan jari ke2\n" -" --> letak satu item dalam slot\n" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1456,31 +1457,15 @@ msgstr "Sedang mencipta klien..." msgid "Creating server..." msgstr "Sedang mencipta pelayan..." -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "Maklumat nyahpepijat dan graf pembukah disembunyikan" - #: src/client/game.cpp msgid "Debug info shown" msgstr "Maklumat nyahpepijat ditunjukkan" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "Maklumat nyahpepijat, graf pembukah, dan rangka dawai disembunyikan" - #: src/client/game.cpp #, c-format msgid "Error creating client: %s" msgstr "Ralat dalam mencipta klien: %s" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "Keluar ke Menu" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "Keluar Terus Permainan" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "Mod pergerakan pantas dilumpuhkan" @@ -1519,18 +1504,6 @@ msgstr "Kabut dibolehkan" msgid "Fog enabled by game or mod" msgstr "Kabut dibolehkan oleh permainan atau mods" -#: src/client/game.cpp -msgid "Game info:" -msgstr "Maklumat permainan:" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "Permainan dijedakan" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "Mengehos pelayan" - #: src/client/game.cpp msgid "Item definitions..." msgstr "Sedang mentakrifkan item..." @@ -1567,14 +1540,6 @@ msgstr "Mod tembus blok dibolehkan (nota: tiada keistimewaan 'tembus blok')" msgid "Node definitions..." msgstr "Sedang mentakrifkan nod..." -#: src/client/game.cpp -msgid "Off" -msgstr "Tutup" - -#: src/client/game.cpp -msgid "On" -msgstr "Buka" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "Mod pergerakan pic dilumpuhkan" @@ -1587,38 +1552,22 @@ msgstr "Mod pergerakan pic dibolehkan" msgid "Profiler graph shown" msgstr "Graf pembukah ditunjukkan" -#: src/client/game.cpp -msgid "Remote server" -msgstr "Pelayan jarak jauh" - #: src/client/game.cpp msgid "Resolving address..." msgstr "Sedang menyelesaikan alamat..." -#: src/client/game.cpp -msgid "Respawn" -msgstr "Jelma semula" - #: src/client/game.cpp msgid "Shutting down..." msgstr "Sedang menutup..." -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "Ekapemain" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "Kekuatan Bunyi" - #: src/client/game.cpp msgid "Sound muted" msgstr "Bunyi dibisukan" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "Sistem bunyi dilumpuhkan" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "Sistem bunyi tidak disokong di binaan ini" @@ -1696,18 +1645,116 @@ msgstr "" msgid "Volume changed to %d%%" msgstr "Kekuatan bunyi ditukar ke %d%%" +#: src/client/game.cpp +#, fuzzy +msgid "Wireframe not supported by video driver" +msgstr "Pembayang dibolehkan tetapi GLSL tidak disokong oleh pemacu." + #: src/client/game.cpp msgid "Wireframe shown" msgstr "Rangka dawai ditunjukkan" -#: src/client/game.cpp -msgid "You died" -msgstr "Anda telah meninggal" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "Zum dilumpuhkan oleh permainan atau mods ketika ini" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "- Mod: " + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "- Awam: " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "- PvP: " + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "- Nama Pelayan: " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "Tukar Kata Laluan" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "Teruskan" + +#: src/client/game_formspec.cpp +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" +"Kawalan:\n" +"Tiada menu dibuka:\n" +"- tarik dengan jari: lihat sekeliling\n" +"- ketik: letak/ketuk/guna (lalai)\n" +"- ketik dan tahan: gali/guna (lalai)\n" +"Menu/inventori dibuka:\n" +"- ketik berganda (di luar):\n" +" --> tutup\n" +"- sentuh tindanan, sentuh slot:\n" +" --> pindah tindanan\n" +"- sentuh&seret, ketik dengan jari ke2\n" +" --> letak satu item dalam slot\n" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "Keluar ke Menu" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "Keluar Terus Permainan" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "Maklumat permainan:" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "Permainan dijedakan" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "Mengehos pelayan" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "Tutup" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "Buka" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "Pelayan jarak jauh" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "Jelma semula" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "Kekuatan Bunyi" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "Anda telah meninggal" + #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" msgstr "Sembang dilumpuhkan oleh permainan atau mods ketika ini" @@ -2034,7 +2081,8 @@ msgid "Failed to compile the \"%s\" shader." msgstr "Gagal untuk kompil pembayang \"%s\"." #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." +#, fuzzy +msgid "GLSL is not supported by the driver" msgstr "Pembayang dibolehkan tetapi GLSL tidak disokong oleh pemacu." #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" @@ -2086,7 +2134,7 @@ msgstr "Autopergerakan" msgid "Automatic jumping" msgstr "Lompat automatik" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "Aux1" @@ -2098,7 +2146,7 @@ msgstr "Ke Belakang" msgid "Block bounds" msgstr "Batas blok" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "Tukar kamera" @@ -2122,7 +2170,7 @@ msgstr "Perlahankan bunyi" msgid "Double tap \"jump\" to toggle fly" msgstr "Ketik berganda \"lompat\" untuk menogol terbang" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "Jatuhkan" @@ -2138,11 +2186,11 @@ msgstr "Naikkan jarak" msgid "Inc. volume" msgstr "Kuatkan bunyi" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "Inventori" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "Lompat" @@ -2174,7 +2222,7 @@ msgstr "Item seterusnya" msgid "Prev. item" msgstr "Item sebelumnya" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "Jarak Pemilihan" @@ -2186,7 +2234,7 @@ msgstr "Ke Kanan" msgid "Screenshot" msgstr "Tangkap layar" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "Selinap" @@ -2194,15 +2242,15 @@ msgstr "Selinap" msgid "Toggle HUD" msgstr "Togol papar pandu (HUD)" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "Togol log sembang" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "Togol pergerakan pantas" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "Togol Terbang" @@ -2210,11 +2258,11 @@ msgstr "Togol Terbang" msgid "Toggle fog" msgstr "Togol kabut" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "Togol peta mini" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "Togol tembus blok" @@ -2222,7 +2270,7 @@ msgstr "Togol tembus blok" msgid "Toggle pitchmove" msgstr "Togol pergerakan mencuram" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "Zum" @@ -2258,7 +2306,7 @@ msgstr "Kata Laluan Lama" msgid "Passwords do not match!" msgstr "Kata laluan tidak padan!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "Keluar" @@ -2271,16 +2319,47 @@ msgstr "Dibisukan" msgid "Sound Volume: %d%%" msgstr "Kekuatan Bunyi: %d%%" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Add button" +msgstr "Butang Tengah" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "Selesai!" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Remove" +msgstr "Pelayan jarak jauh" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Joystick" msgstr "ID Kayu Bedik" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" -msgstr "" +msgstr "Menu tambahan" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Toggle debug" msgstr "Togol kabut" @@ -2290,14 +2369,18 @@ msgid "" "Another client is connected with this name. If your client closed " "unexpectedly, try again in a minute." msgstr "" +"Sebuah klien lain sedang bersambung dengan nama ini. Jika klien anda tutup " +"secara tiba-tiba, cuba lagi dalam beberapa minit." #: src/network/clientpackethandler.cpp msgid "Empty passwords are disallowed. Set a password and try again." msgstr "" +"Kata laluan kosong adalah tidak dibenarkan. Tetapkan kata laluan dan cuba " +"lagi." #: src/network/clientpackethandler.cpp msgid "Internal server error" -msgstr "" +msgstr "Ralat dalaman pelayan" #: src/network/clientpackethandler.cpp #, fuzzy @@ -2324,7 +2407,7 @@ msgstr "Nama sudah diambil. Sila pilih nama yang lain" #: src/network/clientpackethandler.cpp msgid "Player name contains disallowed characters" -msgstr "" +msgstr "Nama pemain mempunyai aksara yang tidak dibenarkan" #: src/network/clientpackethandler.cpp #, fuzzy @@ -2340,30 +2423,36 @@ msgstr "Sedang menutup..." msgid "" "The server has experienced an internal error. You will now be disconnected." msgstr "" +"Pelayan telah mengalami ralat dalaman. Anda kini akan diputuskan sambungan." #: src/network/clientpackethandler.cpp msgid "The server is running in singleplayer mode. You cannot connect." msgstr "" +"Pelayan sedang berjalan dalam mod ekapemain. Anda tidak boleh bersambung." #: src/network/clientpackethandler.cpp msgid "Too many users" -msgstr "" +msgstr "Terlalu banyak pengguna" #: src/network/clientpackethandler.cpp msgid "Unknown disconnect reason." -msgstr "" +msgstr "Sebab pemutusan sambungan tidak diketahui." #: src/network/clientpackethandler.cpp msgid "" "Your client sent something the server didn't expect. Try reconnecting or " "updating your client." msgstr "" +"Klien anda telah menghantar sesuatu yang tidak dijangka oleh pelayan. Cuba " +"sambungkan semula atau kemas kini klien anda." #: src/network/clientpackethandler.cpp msgid "" "Your client's version is not supported.\n" "Please contact the server administrator." msgstr "" +"Versi klien anda tidak disokong.\n" +"Sila hubungi pentadbir pelayan." #: src/server.cpp #, c-format @@ -2494,6 +2583,7 @@ msgstr "" "Hingar 3D yang menentukan jumlah kurungan bawah tanah per ketulan peta." #: src/settings_translation_file.cpp +#, fuzzy msgid "" "3D support.\n" "Currently supported:\n" @@ -2502,8 +2592,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" "Sokongan 3D.\n" "Mod yang disokong ketika ini:\n" @@ -2568,10 +2657,6 @@ msgstr "Jarak blok aktif" msgid "Active object send range" msgstr "Jarak penghantaran objek aktif" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "Menambah partikel apabila menggali nod." - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2603,6 +2688,17 @@ msgstr "Nama pentadbir" msgid "Advanced" msgstr "Lanjutan" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +#, fuzzy +msgid "Allow clouds to look 3D instead of flat." +msgstr "Guna paparan awan 3D menggantikan awan rata." + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "Membolehkan cecair untuk menjadi lut cahaya." @@ -2655,11 +2751,11 @@ msgstr "Kaedah antialias" #: src/settings_translation_file.cpp msgid "Anticheat flags" -msgstr "" +msgstr "Pilihan antitipu" #: src/settings_translation_file.cpp msgid "Anticheat movement tolerance" -msgstr "" +msgstr "Toleransi pergerakan antitipu" #: src/settings_translation_file.cpp msgid "Append item name" @@ -2694,7 +2790,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Apply specular shading to nodes." -msgstr "" +msgstr "Gunakan pembayangan spekular pada nod." #: src/settings_translation_file.cpp msgid "Arm inertia" @@ -3008,14 +3104,14 @@ msgstr "Jejari awan" msgid "Clouds" msgstr "Awan" -#: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." -msgstr "Awan itu kesan janaan pihak klien." - #: src/settings_translation_file.cpp msgid "Clouds in menu" msgstr "Awan dalam menu" +#: src/settings_translation_file.cpp +msgid "Color depth for post-processing texture" +msgstr "" + #: src/settings_translation_file.cpp msgid "Colored fog" msgstr "Kabut berwarna" @@ -3043,7 +3139,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" "Senarai bendera yang ingin disembunyikan dalam repositori kandungan " "dipisahkan dengan koma.\n" @@ -3214,6 +3310,14 @@ msgstr "Tahap log nyahpepijat" msgid "Debugging" msgstr "Nyahpepijat" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "Langkah pelayan khusus" @@ -3394,18 +3498,10 @@ msgstr "" "Gurun akan dijana apabila np_biome melebihi nilai ini.\n" "Apabila bendera 'snowbiomes' dibolehkan, tetapan ini diabaikan." -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "Menyahsegerakkan animasi blok" - #: src/settings_translation_file.cpp msgid "Developer Options" msgstr "Pilihan Pembangun" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "Partikel ketika menggali" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "Menolak kata laluan kosong" @@ -3437,6 +3533,14 @@ msgstr "Ketik berganda \"lompat\" untuk terbang" msgid "Double-tapping the jump key toggles fly mode." msgstr "Ketik berganda kekunci lompat menogol mod terbang." +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "Longgokkan maklumat nyahpepijat janapeta." @@ -3521,9 +3625,10 @@ msgstr "" "pemandangan, menyelakukan perlakuan mata manusia." #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" "Membolehkan bayang berwarna. \n" "Jika dibenarkan, nod lut cahaya mengeluarkan bayang berwarna. Fungsi ini " @@ -3590,7 +3695,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Enable updates available indicator on content tab" -msgstr "" +msgstr "Dayakan penunjuk tersedia kemas kini pada tab kandungan" #: src/settings_translation_file.cpp msgid "" @@ -3614,10 +3719,10 @@ msgstr "" "Contohnya: 0 untuk tiada apungan; 1.0 untuk biasa; 2.0 untuk dua kali ganda." #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" "Membolehkan/melumpuhkan penjalanan pelayan IPv6.\n" "Diabaikan jika tetapan bind_address ditetapkan.\n" @@ -3639,13 +3744,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "Membolehkan animasi item dalam inventori." -#: src/settings_translation_file.cpp -#, fuzzy -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "Membolehkan pengagregatan jejaring yang diputar di paksi Y (facedir)." - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "Membolehkan nyahpepijat dan pemeriksaan ralat dalam pemacu OpenGL." @@ -3666,6 +3764,11 @@ msgid "" "\"auto\" means that the touchscreen controls will be enabled and disabled\n" "automatically depending on the last used input method." msgstr "" +"Mendayakan kawalan skrin sentuh, membolehkan anda bermain permainan dengan " +"skrin sentuh.\n" +"\"auto\" bermaksud bahawa kawalan skrin sentuh akan didayakan dan " +"dinyahdayakan\n" +"secara automatik bergantung pada kaedah input terakhir yang digunakan." #: src/settings_translation_file.cpp msgid "" @@ -3993,10 +4096,6 @@ msgstr "Penyesuaian GUI" msgid "GUI scaling filter" msgstr "Penapis penyesuaian GUI" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "Penapis penyesuaian GUI txr2img" - #: src/settings_translation_file.cpp msgid "Gamepads" msgstr "Pad permainan" @@ -4249,6 +4348,9 @@ msgid "" "ContentDB to\n" "check for package updates when opening the mainmenu." msgstr "" +"Jika didayakan dan anda telah memasang pakej ContentDB, Luanti boleh " +"menghubungi ContentDB untuk\n" +"menyemak kemas kini pakej semasa membuka menu utama." #: src/settings_translation_file.cpp msgid "" @@ -4259,15 +4361,6 @@ msgstr "" "Jika dibolehkan, kekunci \"Aux1\" akan digunakan untuk panjat ke bawah dan\n" "turun dalam mod terbang, menggantikan kekunci \"Selinap\"." -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" -"Jika dibolehkan, pendaftaran akaun dipisahkan dari log masuk dalam UI.\n" -"Jika dilumpuhkan, akaun baharu akan didaftarkan secara automatik ketika log " -"masuk." - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -4293,6 +4386,17 @@ msgstr "" "Jika dibolehkan, pemain tidak boleh sertai tanpa kata laluan atau tukar " "kepada kata laluan yang kosong." +#: src/settings_translation_file.cpp +#, fuzzy +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" +"Jika dibolehkan, pendaftaran akaun dipisahkan dari log masuk dalam UI.\n" +"Jika dilumpuhkan, akaun baharu akan didaftarkan secara automatik ketika log " +"masuk." + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4417,12 +4521,6 @@ msgstr "" "Selang masa di antara penyimpanan perubahan penting dalam dunia, dinyatakan " "dalam unit saat." -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "" -"Selang di antara penghantaran maklumat waktu dalam hari kepada klien, " -"dinyatakan dalam saat." - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "Animasi item inventori" @@ -5081,6 +5179,10 @@ msgid "" "You generally don't need to change this, however busy servers may benefit " "from a higher number." msgstr "" +"Bilangan maksimum paket yang dihantar setiap langkah penghantaran dalam kod " +"rangkaian peringkat rendah.\n" +"Anda biasanya tidak perlu menukar ini, walau bagaimanapun pelayan yang sibuk " +"mungkin mendapat manfaat daripada bilangan yang lebih tinggi." #: src/settings_translation_file.cpp msgid "Maximum number of players that can be connected simultaneously." @@ -5144,10 +5246,6 @@ msgstr "" msgid "Maximum users" msgstr "Had jumlah pengguna" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "Cache jejaring" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "Mesej hari ini" @@ -5180,6 +5278,10 @@ msgstr "Had minimum jumlah rawak gua besar per ketulan peta." msgid "Minimum limit of random number of small caves per mapchunk." msgstr "Had minimum jumlah rawak gua kecil per ketulan peta." +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "Pemetaan Mip" @@ -5273,9 +5375,10 @@ msgstr "" "- Pilihan floatlands di v7 (dilumpuhkan secara lalainya)." #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" "Nama pemain.\n" @@ -5317,7 +5420,7 @@ msgstr "Tonjolan nod" #: src/settings_translation_file.cpp msgid "Node specular" -msgstr "" +msgstr "Spekular nod" #: src/settings_translation_file.cpp msgid "NodeTimer interval" @@ -5577,6 +5680,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Radius to use when the block bounds HUD feature is set to near blocks." msgstr "" +"Jejari untuk digunakan apabila ciri HUD sempadan blok ditetapkan kepada blok " +"berhampiran." #: src/settings_translation_file.cpp msgid "Raises terrain to make valleys around the rivers." @@ -5803,23 +5908,26 @@ msgid "See https://www.sqlite.org/pragma.html#pragma_synchronous" msgstr "Lihat http://www.sqlite.org/pragma.html#pragma_synchronous" #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Select the antialiasing method to apply.\n" "\n" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5903,6 +6011,8 @@ msgid "" "Send names of online players to the serverlist. If disabled only the player " "count is revealed." msgstr "" +"Hantar nama pemain dalam talian ke senarai pelayan. Jika dinyahdayakan hanya " +"kiraan pemain didedahkan." #: src/settings_translation_file.cpp #, fuzzy @@ -5935,6 +6045,9 @@ msgid "" "Flags are positive. Uncheck the flag to disable corresponding anticheat " "module." msgstr "" +"Konfigurasi antielat pelayan.\n" +"Bendera adalah positif. Nyahtanda bendera untuk menyahdayakan modul antielat " +"yang sepadan." #: src/settings_translation_file.cpp msgid "Server description" @@ -6083,16 +6196,6 @@ msgstr "" msgid "Shader path" msgstr "Laluan pembayang" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "Pembayang" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "Kualiti penapisan bayang" @@ -6164,6 +6267,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Simulate translucency when looking at foliage in the sunlight." msgstr "" +"Simulasikan lut sinar apabila melihat dedaunan di bawah cahaya matahari." #: src/settings_translation_file.cpp msgid "" @@ -6284,11 +6388,11 @@ msgstr "" "tindanan untuk sesetengah (atau semua) item." #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" "Sebar kemas kini lengkap peta bayang merentasi jumlah bingkai yang diberi.\n" "Nilai lebih tinggi mungkin membuatkan bayang lembap bertindak balas,\n" @@ -6677,10 +6781,6 @@ msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "" "Waktu dalam hari apabila dunia baru dimulakan, dalam milijam (0-23999)." -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "Selang penghantaran masa" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "Kelajuan masa" @@ -6708,6 +6808,8 @@ msgid "" "Tolerance of movement cheat detector.\n" "Increase the value if players experience stuttery movement." msgstr "" +"Toleransi pengesan elat pergerakan.\n" +"Tingkatkan nilai jika pemain mengalami pergerakan gagap." #: src/settings_translation_file.cpp msgid "Tooltip delay" @@ -6747,6 +6849,11 @@ msgstr "Cecair berlut cahaya" msgid "Transparency Sorting Distance" msgstr "Jarak Pengisihan Lut Sinar" +#: src/settings_translation_file.cpp +#, fuzzy +msgid "Transparency Sorting Group by Buffers" +msgstr "Jarak Pengisihan Lut Sinar" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "Hingar pokok" @@ -6807,12 +6914,16 @@ msgid "Undersampling" msgstr "Pensampelan pengurangan" #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Undersampling is similar to using a lower screen resolution, but it applies\n" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" "Pensampelan pengurangan serupa seperti menggunakan leraian skrin lebih " "rendah,\n" @@ -6842,16 +6953,15 @@ msgstr "Had Y atas kurungan bawah tanah." msgid "Upper Y limit of floatlands." msgstr "Had Y atas tanah terapung." -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "Guna paparan awan 3D menggantikan awan rata." - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "Gunakan animasi awan sebagai latar belakang menu utama." #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +#, fuzzy +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" "Gunakan penapisan anisotropik apabila melihat tekstur dari suatu sudut." @@ -6895,7 +7005,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Use smooth cloud shading." -msgstr "" +msgstr "Gunakan pembayangan awan yang licin." #: src/settings_translation_file.cpp msgid "" @@ -7104,13 +7214,17 @@ msgstr "Warna pautan sesawang" #: src/settings_translation_file.cpp msgid "When enabled, liquid reflections are simulated." -msgstr "" +msgstr "Apabila didayakan, pantulan cecair disimulasikan." #: src/settings_translation_file.cpp msgid "" "When enabled, the GUI is optimized to be more usable on touchscreens.\n" "Whether this is enabled by default depends on your hardware form-factor." msgstr "" +"Apabila didayakan, GUI dioptimumkan agar lebih boleh digunakan pada skrin " +"sentuh.\n" +"Sama ada ini didayakan secara lalai bergantung pada faktor bentuk perkakasan " +"anda." #: src/settings_translation_file.cpp msgid "" @@ -7125,29 +7239,14 @@ msgstr "" "ke perkakasan (contohnya, kemas-gabung-ke-tekstur untuk nod dalam inventori)." #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" -"Apabila penapis penyesuaian GUI gui_scaling_filter_txr2img ditetapkan kepada " -"\"true\", salin semula\n" -"kesemua imej tersebut dari perkakasan ke perisian untuk disesuaikan. " -"Sekiranya ditetapkan kepada\n" -"\"false\", berbalik kepada kaedah penyesuaian yang lama, untuk pemacu video " -"yang tidak mampu\n" -"menyokong dengan sempurna fungsi muat turun semula tekstur daripada " -"perkakasan." - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -7174,11 +7273,6 @@ msgstr "" "Sama ada latar belakang tanda nama patut ditunjukkan secara lalainya.\n" "Mods masih boleh menetapkan latar belakang." -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" -"Sama ada animasi tekstur nod patut dinyahsegerakkan pada setiap blok peta." - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -7206,9 +7300,9 @@ msgid "Whether to fog out the end of the visible area." msgstr "Sama ada ingin papar kabut di penghujung kawasan yang kelihatan." #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -7402,6 +7496,9 @@ msgstr "Had cURL selari" #~ "Ambil perhatian bahawa medan alamat dalam menu utama mengatasi tetapan " #~ "ini." +#~ msgid "Adds particles when digging a node." +#~ msgstr "Menambah partikel apabila menggali nod." + #~ msgid "" #~ "Adjust dpi configuration to your screen (non X11/Android only) e.g. for " #~ "4k screens." @@ -7562,6 +7659,9 @@ msgstr "Had cURL selari" #~ msgid "Clean transparent textures" #~ msgstr "Bersihkan tekstur lut sinar" +#~ msgid "Clouds are a client-side effect." +#~ msgstr "Awan itu kesan janaan pihak klien." + #~ msgid "Command key" #~ msgstr "Kekunci perintah" @@ -7658,9 +7758,15 @@ msgstr "Had cURL selari" #~ msgid "Darkness sharpness" #~ msgstr "Ketajaman kegelapan" +#~ msgid "Debug info and profiler graph hidden" +#~ msgstr "Maklumat nyahpepijat dan graf pembukah disembunyikan" + #~ msgid "Debug info toggle key" #~ msgstr "Kekunci togol maklumat nyahpepijat" +#~ msgid "Debug info, profiler graph, and wireframe hidden" +#~ msgstr "Maklumat nyahpepijat, graf pembukah, dan rangka dawai disembunyikan" + #~ msgid "Dec. volume key" #~ msgstr "Kekunci perlahankan bunyi" @@ -7723,9 +7829,15 @@ msgstr "Had cURL selari" #~ "pentakrifan biom menggantikan cara asal.\n" #~ "Had Y atasan lava di gua-gua besar." +#~ msgid "Desynchronize block animation" +#~ msgstr "Menyahsegerakkan animasi blok" + #~ msgid "Dig key" #~ msgstr "Kekunci gali" +#~ msgid "Digging particles" +#~ msgstr "Partikel ketika menggali" + #~ msgid "Disable anticheat" #~ msgstr "Melumpuhkan antitipu" @@ -7753,6 +7865,10 @@ msgstr "Had cURL selari" #~ msgid "Dynamic shadows:" #~ msgstr "Bayang dinamik:" +#, fuzzy +#~ msgid "Enable" +#~ msgstr "Dibolehkan" + #~ msgid "Enable VBO" #~ msgstr "Membolehkan VBO" @@ -7786,6 +7902,13 @@ msgstr "Had cURL selari" #~ "tekstur atau perlu dijana secara automatik.\n" #~ "Perlukan pembayang dibolehkan." +#, fuzzy +#~ msgid "" +#~ "Enables caching of facedir rotated meshes.\n" +#~ "This is only effective with shaders disabled." +#~ msgstr "" +#~ "Membolehkan pengagregatan jejaring yang diputar di paksi Y (facedir)." + #~ msgid "Enables filmic tone mapping" #~ msgstr "Membolehkan pemetaan tona sinematik" @@ -7835,9 +7958,6 @@ msgstr "Had cURL selari" #~ "Pilihan percubaan, mungkin menampakkan ruang yang nyata di\n" #~ "antara blok apabila ditetapkan dengan nombor lebih besar daripada 0." -#~ msgid "FPS in pause menu" -#~ msgstr "FPS di menu jeda" - #~ msgid "FSAA" #~ msgstr "FSAA" @@ -7924,8 +8044,8 @@ msgstr "Had cURL selari" #~ msgid "Full screen BPP" #~ msgstr "BPP skrin penuh" -#~ msgid "Game" -#~ msgstr "Permainan" +#~ msgid "GUI scaling filter txr2img" +#~ msgstr "Penapis penyesuaian GUI txr2img" #~ msgid "Gamma" #~ msgstr "Gama" @@ -8096,660 +8216,668 @@ msgstr "Had cURL selari" #~ msgid "Instrumentation" #~ msgstr "Instrumentasi" +#~ msgid "Interval of sending time of day to clients, stated in seconds." +#~ msgstr "" +#~ "Selang di antara penghantaran maklumat waktu dalam hari kepada klien, " +#~ "dinyatakan dalam saat." + #~ msgid "Invalid gamespec." #~ msgstr "Spesifikasi permainan tidak sah." #~ msgid "Inventory key" #~ msgstr "Kekunci inventori" +#~ msgid "Irrlicht device:" +#~ msgstr "Peranti Irrlicht:" + #~ msgid "Jump key" #~ msgstr "Kekunci lompat" #~ msgid "" #~ "Key for decreasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk mengurangkan jarak pandang.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for decreasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk memperlahankan bunyi.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for digging.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk menggali.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for dropping the currently selected item.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk menjatuhkan item yang sedang dipilih.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk menambah jarak pandang.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk menguatkan bunyi.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for jumping.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk melompat.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving fast in fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk bergerak pantas dalam mod pergerakan pantas.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player backward.\n" #~ "Will also disable autoforward, when active.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk menggerakkan pemain ke belakang.\n" #~ "Juga akan melumpuhkan autopergerakan, apabila aktif.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player forward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk menggerakkan pemain ke depan.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player left.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk menggerakkan pemain ke kiri.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player right.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk menggerakkan pemain ke kanan.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for muting the game.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk membisukan permainan.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk membuka tetingkap sembang untuk menaip perintah.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type local commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk membuka tetingkap sembang untuk menaip perintah tempatan.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk membuka tetingkap sembang.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the inventory.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk membuka inventori.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for placing.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk meletak.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 11th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk memilih slot ke-11 dalam hotbar.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 12th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk memilih slot ke-12 dalam hotbar.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 13th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk memilih slot ke-13 dalam hotbar.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 14th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk memilih slot ke-14 dalam hotbar.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 15th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk memilih slot ke-15 dalam hotbar.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 16th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk memilih slot ke-16 dalam hotbar.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 17th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk memilih slot ke-17 dalam hotbar.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 18th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk memilih slot ke-18 dalam hotbar.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 19th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk memilih slot ke-19 dalam hotbar.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 20th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk memilih slot ke-20 dalam hotbar.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 21st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk memilih slot ke-21 dalam hotbar.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 22nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk memilih slot ke-22 dalam hotbar.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 23rd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk memilih slot ke-23 dalam hotbar.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 24th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk memilih slot ke-24 dalam hotbar.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 25th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk memilih slot ke-25 dalam hotbar.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 26th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk memilih slot ke-26 dalam hotbar.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 27th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk memilih slot ke-27 dalam hotbar.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 28th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk memilih slot ke-28 dalam hotbar.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 29th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk memilih slot ke-29 dalam hotbar.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 30th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk memilih slot ke-30 dalam hotbar.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 31st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk memilih slot ke-31 dalam hotbar.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 32nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk memilih slot ke-32 dalam hotbar.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the eighth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk memilih slot ke-8 dalam hotbar.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the fifth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk memilih slot ke-5 dalam hotbar.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the first hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk memilih slot pertama dalam hotbar.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the fourth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk memilih slot ke-4 dalam hotbar.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the next item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk memilih item seterusnya di dalam hotbar.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the ninth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk memilih slot ke-9 dalam hotbar.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the previous item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk memilih item sebelumnya di dalam hotbar.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the second hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk memilih slot ke-2 dalam hotbar.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the seventh hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk memilih slot ke-7 dalam hotbar.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the sixth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk memilih slot ke-6 dalam hotbar.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the tenth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk memilih slot ke-10 dalam hotbar.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the third hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk memilih slot ke-3 dalam hotbar.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for sneaking.\n" #~ "Also used for climbing down and descending in water if aux1_descends is " #~ "disabled.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk menyelinap.\n" #~ "Juga digunakan untuk turun bawah ketika memanjat dan dalam air jika " #~ "tetapan aux1_descends dilumpuhkan.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for switching between first- and third-person camera.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk bertukar antara kamera orang pertama dan ketiga.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for taking screenshots.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk menangkap gambar layar.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling autoforward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk menogol autopergerakan.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling cinematic mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk menogol mod sinematik.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling display of minimap.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk menogol paparan peta mini.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk menogol mod pergerakan pantas.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling flying.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk menogol mod terbang.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling noclip mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk menogol mod tembus blok.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling pitch move mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk menogol mod pergerakan pic.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the camera update. Only used for development\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk menogol pengemaskinian kamera. Hanya digunakan untuk " #~ "pembangunan.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of chat.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk menogol paparan sembang.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of debug info.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk menogol paparan maklumat nyahpepijat.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of fog.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk menogol paparan kabut.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the HUD.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk menogol papar pandu (HUD).\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the large chat console.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk menogol paparan konsol sembang besar.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the profiler. Used for development.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk menogol paparan pembukah. Digunakan untuk pembangunan.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling unlimited view range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk menogol jarak pandangan tiada had.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key to use view zoom when possible.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kekunci untuk menggunakan pandangan zum apabila dibenarkan.\n" -#~ "Lihat http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Lihat http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Keybindings. (If this menu screws up, remove stuff from minetest.conf)" @@ -8826,6 +8954,9 @@ msgstr "Had cURL selari" #~ msgid "Menus" #~ msgstr "Menu" +#~ msgid "Mesh cache" +#~ msgstr "Cache jejaring" + #~ msgid "Minimap" #~ msgstr "Peta mini" @@ -9042,6 +9173,9 @@ msgstr "Had cURL selari" #~ "menggunakan lebih banyak sumber.\n" #~ "Nilai minimum 0.001 saat dan nilai maksimum 0.2 saat" +#~ msgid "Shaders" +#~ msgstr "Pembayang" + #~ msgid "Shaders (experimental)" #~ msgstr "Pembayang (dalam uji kaji)" @@ -9057,6 +9191,17 @@ msgstr "Had cURL selari" #~ "prestasi\n" #~ "untuk sesetengah kad video." +#~ msgid "" +#~ "Shaders are a fundamental part of rendering and enable advanced visual " +#~ "effects." +#~ msgstr "" +#~ "Pembayang ialah bahagian asas pemaparan dan membolehkan kesan visual " +#~ "lanjutan." + +#, fuzzy +#~ msgid "Shaders are disabled." +#~ msgstr "Kemas kini kamera dilumpuhkan" + #~ msgid "Shadow limit" #~ msgstr "Had bayang" @@ -9088,6 +9233,9 @@ msgstr "Had cURL selari" #~ msgid "Smooths rotation of camera. 0 to disable." #~ msgstr "Melembutkan pemutaran kamera. Set sebagai 0 untuk melumpuhkannya." +#~ msgid "Sound system is disabled" +#~ msgstr "Sistem bunyi dilumpuhkan" + #~ msgid "Special" #~ msgstr "Istimewa" @@ -9136,6 +9284,12 @@ msgstr "Had cURL selari" #~ msgid "This font will be used for certain languages." #~ msgstr "Fon ini akan digunakan untuk sesetengah bahasa." +#~ msgid "This is not a recommended configuration." +#~ msgstr "Ini bukan konfigurasi yang disarankan." + +#~ msgid "Time send interval" +#~ msgstr "Selang penghantaran masa" + #~ msgid "To enable shaders the OpenGL driver needs to be used." #~ msgstr "Untuk membolehkan pembayang, pemacu OpenGL mesti digunakan." @@ -9260,6 +9414,21 @@ msgstr "Had cURL selari" #~ msgid "Waving water" #~ msgstr "Air bergelora" +#~ msgid "" +#~ "When gui_scaling_filter_txr2img is true, copy those images\n" +#~ "from hardware to software for scaling. When false, fall back\n" +#~ "to the old scaling method, for video drivers that don't\n" +#~ "properly support downloading textures back from hardware." +#~ msgstr "" +#~ "Apabila penapis penyesuaian GUI gui_scaling_filter_txr2img ditetapkan " +#~ "kepada \"true\", salin semula\n" +#~ "kesemua imej tersebut dari perkakasan ke perisian untuk disesuaikan. " +#~ "Sekiranya ditetapkan kepada\n" +#~ "\"false\", berbalik kepada kaedah penyesuaian yang lama, untuk pemacu " +#~ "video yang tidak mampu\n" +#~ "menyokong dengan sempurna fungsi muat turun semula tekstur daripada " +#~ "perkakasan." + #~ msgid "" #~ "Whether FreeType fonts are used, requires FreeType support to be compiled " #~ "in.\n" @@ -9273,6 +9442,11 @@ msgstr "Had cURL selari" #~ msgstr "" #~ "Sama ada kurungan bawah tanah kadang-kala terlunjur daripada rupa bumi." +#~ msgid "" +#~ "Whether node texture animations should be desynchronized per mapblock." +#~ msgstr "" +#~ "Sama ada animasi tekstur nod patut dinyahsegerakkan pada setiap blok peta." + #~ msgid "Whether to allow players to damage and kill each other." #~ msgstr "" #~ "Menetapkan sama ada ingin membenarkan pemain untuk mencederakan dan " diff --git a/po/ms_Arab/luanti.po b/po/ms_Arab/luanti.po index b940461ec..b67a703d6 100644 --- a/po/ms_Arab/luanti.po +++ b/po/ms_Arab/luanti.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: minetest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" "PO-Revision-Date: 2024-08-15 19:09+0000\n" "Last-Translator: bgo-eiu \n" "Language-Team: Malay (Jawi) ] [-t]" msgstr "[all | <ڤرينته>]" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "لاير" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "ايديت" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "ڤيليه ديريکتوري" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "ڤيليه فاٴيل" + +#: builtin/common/settings/components.lua +#, fuzzy +msgid "Set" +msgstr "Select" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(تياد ڤريحل اونتوق تتڤن يڠ دبري)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "هيڠر 2D" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "بطل" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "لاکوناريتي" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "اوکتف" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "اوفسيت" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#, fuzzy +msgid "Persistence" +msgstr "ڤنروسن" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "سيمڤن" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "سکالا" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "بنيه" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "سيبرن X" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "سيبرن Y" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "سيبرن Z" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "نيلاي مطلق" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "لالاي" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "تومڤول" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "سيمبڠ" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "ڤادم" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "کاولن" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "دلومڤوهکن" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "دبوليهکن" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Movement" +msgstr "ڤرݢرقن ڤنتس" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "تياد حاصيل" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Reset setting to default" +msgstr "ڤوليهکن تتڤن اصل" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "چاري" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "تونجوق نام تيکنيکل" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Touchscreen layout" +msgstr "نيلاي امبڠ سکرين سنتوه" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "pause_menu" +msgstr "FPS دمينو جيدا" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Client Mods" +msgstr "ڤيليه دنيا:" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Content: Games" +msgstr "کندوڠن" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Content: Mods" +msgstr "کندوڠن" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +#, fuzzy +msgid "Dynamic shadows" +msgstr "بايڠ فون" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "" + #: builtin/fstk/ui.lua msgid "" msgstr "<تياد يڠ ترسديا>" @@ -164,7 +412,6 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua #, fuzzy msgid "Back" msgstr "کبلاکڠ" @@ -202,11 +449,6 @@ msgstr "مودس" msgid "No packages could be retrieved" msgstr "تياد ڤاکيج يڠ بوليه دأمبيل" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "تياد حاصيل" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "تياد کمس کيني" @@ -252,18 +494,6 @@ msgstr "سوده دڤاسڠ" msgid "Base Game:" msgstr "ڤرماٴينن اساس:" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "بطل" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -389,6 +619,12 @@ msgstr "تيدق ممڤو مماسڠ $1 سباݢاي $2" msgid "Unable to install a $1 as a texture pack" msgstr "تيدق ممڤو مماسڠ $1 سباݢاي ڤيک تيکستور" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "(دبوليهکن⹁ اد رالت)" @@ -453,12 +689,6 @@ msgstr "تياد کبرݢنتوڠن ڤيليهن" msgid "Optional dependencies:" msgstr "کبرݢنتوڠن ڤيليهن:" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "سيمڤن" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "دنيا:" @@ -609,11 +839,6 @@ msgstr "سوڠاي" msgid "Sea level rivers" msgstr "سوڠاي اوس لاٴوت" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "بنيه" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "ڤراليهن دأنتارا بيوم" @@ -756,6 +981,23 @@ msgstr "" "ڤيک مودس اين ممڤوڽاٴي نام خصوص دبريکن دالم فاٴيل modpack.conf ميليقڽ يڠ اکن " "مڠاتسي سبارڠ ڤناماٴن سمولا دسيني." +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "ممبوليهکن سموا" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "" @@ -780,7 +1022,7 @@ msgstr "" msgid "Visit website" msgstr "" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "تتڤن" @@ -793,233 +1035,6 @@ msgstr "سکريڤ ڤيهق کليئن دلومڤوهکن" msgid "Try reenabling public serverlist and check your internet connection." msgstr "چوبا اکتيفکن سمولا سناراي ڤلاين عوام دان ڤريقسا سامبوڠن اينترنيت اندا." -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "لاير" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "ايديت" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "ڤيليه ديريکتوري" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "ڤيليه فاٴيل" - -#: builtin/mainmenu/settings/components.lua -#, fuzzy -msgid "Set" -msgstr "Select" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(تياد ڤريحل اونتوق تتڤن يڠ دبري)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "هيڠر 2D" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "لاکوناريتي" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "اوکتف" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "اوفسيت" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#, fuzzy -msgid "Persistence" -msgstr "ڤنروسن" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "سکالا" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "سيبرن X" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "سيبرن Y" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "سيبرن Z" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "نيلاي مطلق" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "لالاي" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "تومڤول" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "سيمبڠ" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "ڤادم" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "کاولن" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "دلومڤوهکن" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "دبوليهکن" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Movement" -msgstr "ڤرݢرقن ڤنتس" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Reset setting to default" -msgstr "ڤوليهکن تتڤن اصل" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "چاري" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "تونجوق نام تيکنيکل" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Client Mods" -msgstr "ڤيليه دنيا:" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Content: Games" -msgstr "کندوڠن" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Content: Mods" -msgstr "کندوڠن" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "دبوليهکن" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Shaders are disabled." -msgstr "کمس کيني کاميرا دلومڤوهکن" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -#, fuzzy -msgid "Dynamic shadows" -msgstr "بايڠ فون" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "ڤريحال" @@ -1041,10 +1056,6 @@ msgstr "ڤمباڠون ترس" msgid "Core Team" msgstr "" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "" - #: builtin/mainmenu/tab_about.lua #, fuzzy msgid "Open User Data Directory" @@ -1196,11 +1207,23 @@ msgstr "مولاکن ڤرماٴينن" msgid "You need to install a game before you can create a world." msgstr "اندا ڤرلو ڤاسڠ ڤرماٴينن سبلوم اندا بوليه ڤاسڠ مودس" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "ڤورت جارق جاٴوه" + #: builtin/mainmenu/tab_online.lua #, fuzzy msgid "Address" msgstr "- علامت: " +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "کليئن" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "مود کرياتيف" @@ -1216,6 +1239,11 @@ msgstr "بوليه چدرا" msgid "Favorites" msgstr "کݢمرن" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "ڤرماٴينن" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "" @@ -1228,10 +1256,26 @@ msgstr "سرتاٴي ڤرماٴينن" msgid "Login" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +msgid "Open server website" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "ڤيڠ" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua #, fuzzy msgid "Public Servers" @@ -1321,23 +1365,6 @@ msgstr "" "\n" "ڤريقسا فاٴيل debug.txt اونتوق معلومت لنجوت." -#: src/client/game.cpp -msgid "- Mode: " -msgstr "- مود: " - -#: src/client/game.cpp -msgid "- Public: " -msgstr "- عوام: " - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "- PvP: " - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "- نام ڤلاين: " - #: src/client/game.cpp #, fuzzy msgid "A serialization error occurred:" @@ -1348,6 +1375,11 @@ msgstr "تله برلاکوڽ رالت:" msgid "Access denied. Reason: %s" msgstr "" +#: src/client/game.cpp +#, fuzzy +msgid "All debug info hidden" +msgstr "معلومت ڽهڤڤيجت دتونجوقکن" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "ڤرݢرقن اٴوتوماتيک دلومڤوهکن" @@ -1368,6 +1400,10 @@ msgstr "" msgid "Block bounds shown for nearby blocks" msgstr "" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "کمس کيني کاميرا دلومڤوهکن" @@ -1381,10 +1417,6 @@ msgstr "کمس کيني کاميرا دبوليهکن" msgid "Can't show block bounds (disabled by game or mod)" msgstr "زوم سدڠ دلومڤوهکن اوليه ڤرماٴينن اتاو مودس" -#: src/client/game.cpp -msgid "Change Password" -msgstr "توکر کات لالوان" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "مود سينماتيک دلومڤوهکن" @@ -1414,39 +1446,6 @@ msgstr "رالت دالم ڤڽمبوڠن (تامت تيمڤوه؟)" msgid "Connection failed for unknown reason" msgstr "" -#: src/client/game.cpp -msgid "Continue" -msgstr "تروسکن" - -#: src/client/game.cpp -#, fuzzy -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" -"کاولن اصل:\n" -"تيادا مينو کليهتن:\n" -"- تکن سکالي: اکتيفکن بوتڠ\n" -"- تکن دوا کالي: لتق بارڠ\\ݢونا سسواتو\n" -"- تاريق دڠن جاري: ليهت سکليليڠ\n" -"مينو\\اينۏينتوري کليهتن:\n" -"- تکن برݢندا (لوار کاوسن اينۏينتوري):\n" -" -->توتوڤ\n" -"- تکن تيندنن⹁ تکن سلوت:\n" -" --> ڤينده تيندنن\n" -"- سنتوه دان تاريق⹁ تکن سکرين ڤاکاي جاري کدوا\n" -" --> لتق ساتو ايتم دري تيندنن کدالم سلوت\n" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1460,31 +1459,15 @@ msgstr "سدڠ منچيڤت کليئن..." msgid "Creating server..." msgstr "سدڠ منچيڤت ڤلاين..." -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "معلومت ڽهڤڤيجت دان ݢراف ڤمبوکه دسمبوڽيکن" - #: src/client/game.cpp msgid "Debug info shown" msgstr "معلومت ڽهڤڤيجت دتونجوقکن" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "معلومت ڽهڤڤيجت⹁ ݢراف ڤمبوکه⹁ دان رڠک داواي دسمبوڽيکن" - #: src/client/game.cpp #, fuzzy, c-format msgid "Error creating client: %s" msgstr "سدڠ منچيڤت کليئن..." -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "کلوار کمينو" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "کلوار تروس ڤرماٴينن" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "مود ڤرݢرقن ڤنتس دلومڤوهکن" @@ -1522,18 +1505,6 @@ msgstr "کابوت دبوليهکن" msgid "Fog enabled by game or mod" msgstr "زوم سدڠ دلومڤوهکن اوليه ڤرماٴينن اتاو مودس" -#: src/client/game.cpp -msgid "Game info:" -msgstr "معلومت ڤرماٴينن:" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "ڤرماٴينن دجيداکن" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "مڠهوس ڤلاين" - #: src/client/game.cpp msgid "Item definitions..." msgstr "سدڠ منتعريفکن ايتم..." @@ -1571,14 +1542,6 @@ msgstr "مود تمبوس بلوک دبوليهکن (نوت: تيادا کأيس msgid "Node definitions..." msgstr "سدڠ منتعريفکن نود..." -#: src/client/game.cpp -msgid "Off" -msgstr "توتوڤ" - -#: src/client/game.cpp -msgid "On" -msgstr "بوک" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "مود ڤرݢرقن ڤيچ دلومڤوهکن" @@ -1591,38 +1554,22 @@ msgstr "مود ڤرݢرقن ڤيچ دبوليهکن" msgid "Profiler graph shown" msgstr "ݢراف ڤمبوکه دتونجوقکن" -#: src/client/game.cpp -msgid "Remote server" -msgstr "ڤلاين جارق جاٴوه" - #: src/client/game.cpp msgid "Resolving address..." msgstr "سدڠ مڽلسايکن علامت..." -#: src/client/game.cpp -msgid "Respawn" -msgstr "جلما سمولا" - #: src/client/game.cpp msgid "Shutting down..." msgstr "سدڠ منوتوڤ..." -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "ڤماٴين ڤرسأورڠن" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "ککواتن بوڽي" - #: src/client/game.cpp msgid "Sound muted" msgstr "بوڽي دبيسوکن" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "سيستم بوڽي دلومڤوهکن" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "سيستم بوڽي تيدق دسوکوڠ دبيناٴن اين" @@ -1696,18 +1643,116 @@ msgstr "جارق ڤندڠ دتوکر ک%d" msgid "Volume changed to %d%%" msgstr "ککواتن بوڽي داوبه کڤد %d%%" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "رڠک داواي دتونجوقکن" -#: src/client/game.cpp -msgid "You died" -msgstr "اندا تله منيڠݢل" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "زوم سدڠ دلومڤوهکن اوليه ڤرماٴينن اتاو مودس" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "- مود: " + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "- عوام: " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "- PvP: " + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "- نام ڤلاين: " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "توکر کات لالوان" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "تروسکن" + +#: src/client/game_formspec.cpp +#, fuzzy +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" +"کاولن اصل:\n" +"تيادا مينو کليهتن:\n" +"- تکن سکالي: اکتيفکن بوتڠ\n" +"- تکن دوا کالي: لتق بارڠ\\ݢونا سسواتو\n" +"- تاريق دڠن جاري: ليهت سکليليڠ\n" +"مينو\\اينۏينتوري کليهتن:\n" +"- تکن برݢندا (لوار کاوسن اينۏينتوري):\n" +" -->توتوڤ\n" +"- تکن تيندنن⹁ تکن سلوت:\n" +" --> ڤينده تيندنن\n" +"- سنتوه دان تاريق⹁ تکن سکرين ڤاکاي جاري کدوا\n" +" --> لتق ساتو ايتم دري تيندنن کدالم سلوت\n" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "کلوار کمينو" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "کلوار تروس ڤرماٴينن" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "معلومت ڤرماٴينن:" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "ڤرماٴينن دجيداکن" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "مڠهوس ڤلاين" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "توتوڤ" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "بوک" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "ڤلاين جارق جاٴوه" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "جلما سمولا" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "ککواتن بوڽي" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "اندا تله منيڠݢل" + #: src/client/gameui.cpp #, fuzzy msgid "Chat currently disabled by game or mod" @@ -2048,8 +2093,9 @@ msgid "Failed to compile the \"%s\" shader." msgstr "ݢاݢل ممبوک لامن سساوڠ" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." -msgstr "" +#, fuzzy +msgid "GLSL is not supported by the driver" +msgstr "سيستم بوڽي تيدق دسوکوڠ دبيناٴن اين" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" #: src/content/mod_configuration.cpp @@ -2098,7 +2144,7 @@ msgstr "أوتوڤرݢرقن" msgid "Automatic jumping" msgstr "لومڤت أوتوماتيک" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "" @@ -2110,7 +2156,7 @@ msgstr "کبلاکڠ" msgid "Block bounds" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "توکر کاميرا" @@ -2134,7 +2180,7 @@ msgstr "ڤرلاهنکن بوڽي" msgid "Double tap \"jump\" to toggle fly" msgstr "تکن دوا کالي \"لومڤت\" اونتوق منوݢول تربڠ" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "جاتوهکن" @@ -2150,11 +2196,11 @@ msgstr "ناٴيقکن جارق" msgid "Inc. volume" msgstr "کواتکن بوڽي" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "اينۏينتوري" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "لومڤت" @@ -2186,7 +2232,7 @@ msgstr "ايتم ستروسڽ" msgid "Prev. item" msgstr "ايتم سبلومڽ" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "جارق ڤميليهن" @@ -2198,7 +2244,7 @@ msgstr "ککانن" msgid "Screenshot" msgstr "تڠکڤ لاير" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "سلينڤ" @@ -2206,15 +2252,15 @@ msgstr "سلينڤ" msgid "Toggle HUD" msgstr "توݢول ڤاڤر ڤندو (HUD)" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "توݢول لوݢ سيمبڠ" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "توݢول ڤرݢرقن ڤنتس" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "توݢول تربڠ" @@ -2222,11 +2268,11 @@ msgstr "توݢول تربڠ" msgid "Toggle fog" msgstr "توݢول کابوت" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "توݢول ڤتا ميني" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "توݢول تمبوس بلوک" @@ -2234,7 +2280,7 @@ msgstr "توݢول تمبوس بلوک" msgid "Toggle pitchmove" msgstr "توݢول ڤرݢرقن منچورم" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "زوم" @@ -2271,7 +2317,7 @@ msgstr "کات لالوان لام" msgid "Passwords do not match!" msgstr "کات لالوان تيدق ڤادن!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "کلوار" @@ -2284,16 +2330,47 @@ msgstr "دبيسوکن" msgid "Sound Volume: %d%%" msgstr "ککواتن بوڽي: " -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Add button" +msgstr "بوتڠ تڠه" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "سلساي!" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Remove" +msgstr "ڤلاين جارق جاٴوه" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Joystick" msgstr "ID کايو بديق" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Toggle debug" msgstr "توݢول کابوت" @@ -2502,8 +2579,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" "سوکوڠن 3D.\n" "يڠ دسوکوڠ ڤد ماس اين:\n" @@ -2568,10 +2644,6 @@ msgstr "جارق بلوک اکتيف" msgid "Active object send range" msgstr "جارق ڤڠهنترن اوبجيک اکتيف" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "منمبه ڤرتيکل اڤابيلا مڠݢالي نود." - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2595,6 +2667,17 @@ msgstr "تمبه نام ايتم" msgid "Advanced" msgstr "تتڤن مندالم" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +#, fuzzy +msgid "Allow clouds to look 3D instead of flat." +msgstr "ݢونا ڤاڤرن اون 3D مڠݢنتيکن اون رات." + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "" @@ -2982,15 +3065,14 @@ msgstr "ججاري اون" msgid "Clouds" msgstr "اون" -#: src/settings_translation_file.cpp -#, fuzzy -msgid "Clouds are a client-side effect." -msgstr "اون ايت ايفيک ڤد ڤيهق کليئن." - #: src/settings_translation_file.cpp msgid "Clouds in menu" msgstr "اون دالم مينو" +#: src/settings_translation_file.cpp +msgid "Color depth for post-processing texture" +msgstr "" + #: src/settings_translation_file.cpp msgid "Colored fog" msgstr "کابوت برورنا" @@ -3014,7 +3096,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" #: src/settings_translation_file.cpp @@ -3154,6 +3236,14 @@ msgstr "" msgid "Debugging" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "" @@ -3318,19 +3408,11 @@ msgid "" "When the 'snowbiomes' flag is enabled, this is ignored." msgstr "" -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "مڽهسݢرقکن انيماسي بلوک" - #: src/settings_translation_file.cpp #, fuzzy msgid "Developer Options" msgstr "هياسن" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "ڤرتيکل کتيک مڠݢالي" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "منولق کات لالوان کوسوڠ" @@ -3358,6 +3440,14 @@ msgstr "تکن \"لومڤت\" دوا کالي اونتوق تربڠ" msgid "Double-tapping the jump key toggles fly mode." msgstr "تکن بوتڠ \"لومڤت\" سچارا چڤت دوا کالي اونتوق منوݢول مود تربڠ." +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "" @@ -3437,8 +3527,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" #: src/settings_translation_file.cpp @@ -3523,10 +3613,10 @@ msgstr "" "چونتوهڽ: 0 اونتوق تيادا اڤوڠن⁏ 1.0 اونتوق بياسا⁏ 2.0 اونتوق دوا کالي ݢندا." #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" "ممبوليهکن\\ملومڤوهکن ڤنجالنن ڤلاين IPv6.\n" "دأبايکن جک تتڤن bind_address دتتڤکن.\n" @@ -3549,13 +3639,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "ممبوليهکن انيماسي ايتم دالم اينۏينتوري." -#: src/settings_translation_file.cpp -#, fuzzy -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "ممبوليهکن ڤڠاݢريݢتن ججاريڠ يڠ دڤوتر دڤکسي Y ايايت (facedir)." - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -3878,10 +3961,6 @@ msgstr "سکال GUI" msgid "GUI scaling filter" msgstr "ڤناڤيس سکال GUI" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "ڤناڤيس سکال GUI جنيس txr2img" - #: src/settings_translation_file.cpp #, fuzzy msgid "Gamepads" @@ -4129,15 +4208,6 @@ msgstr "" "جيک دبوليهکن⹁ ککونچي \"ايستيميوا\" اکن دݢوناکن اونتوق ڤنجت کباوه دان\n" "تورون دالم مود تربڠ⹁ مڠݢنتيکن ککونچي \"سلينڤ\"." -#: src/settings_translation_file.cpp -#, fuzzy -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" -"ممبوليهکن ڤڠصحن ڤندفترن اڤابيلا مڽمبوڠ کڤد ڤلاين.\n" -"جک دلومڤوهکن⹁ اکاٴون بارو اکن ددفترکن سچارا اٴوتوماتيک." - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -4159,6 +4229,16 @@ msgid "" "empty password." msgstr "جک دبوليهکن⹁ ڤماٴين٢ بارو تيدق بوليه ماسوق دڠن کات لالوان يڠ کوسوڠ." +#: src/settings_translation_file.cpp +#, fuzzy +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" +"ممبوليهکن ڤڠصحن ڤندفترن اڤابيلا مڽمبوڠ کڤد ڤلاين.\n" +"جک دلومڤوهکن⹁ اکاٴون بارو اکن ددفترکن سچارا اٴوتوماتيک." + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4261,11 +4341,6 @@ msgid "Interval of saving important changes in the world, stated in seconds." msgstr "" "سلڠ ماس دأنتارا ڤڽيمڤنن ڤروبهن ڤنتيڠ دالم دنيا⹁ دڽاتاکن دالم اونيت ساٴت." -#: src/settings_translation_file.cpp -#, fuzzy -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "سلڠ دأنتارا ڤڠهنترن معلومت ماس ڤلاين کڤد کليئن." - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "انيماسي ايتم اينۏينتوري" @@ -4903,10 +4978,6 @@ msgstr "" msgid "Maximum users" msgstr "حد جومله ڤڠݢونا" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "کيش ججاريڠ" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "ميسيج هاري اين" @@ -4940,6 +5011,10 @@ msgstr "" msgid "Minimum limit of random number of small caves per mapchunk." msgstr "" +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "ڤمتاٴن ميڤ" @@ -5032,7 +5107,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" @@ -5528,17 +5603,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5750,16 +5827,6 @@ msgstr "" msgid "Shader path" msgstr "لالوان ڤمبايڠ" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "ڤمبايڠ" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Shadow filter quality" @@ -5937,10 +6004,9 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" #: src/settings_translation_file.cpp @@ -6270,10 +6336,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "وقتو دالم هاري اڤابيلا دنيا بارو دمولاکن⹁ دالم ميليجم (0-23999)." -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "سلڠ ڤڠهنترن ماس" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "کلاجوان ماس" @@ -6343,6 +6405,10 @@ msgstr "چچاٴير لݢڤ" msgid "Transparency Sorting Distance" msgstr "" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "" @@ -6391,12 +6457,16 @@ msgid "Undersampling" msgstr "ڤنسمڤلن ڤڠورڠن" #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Undersampling is similar to using a lower screen resolution, but it applies\n" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" "ڤنسمڤلن ڤڠورڠن سروڤ سڤرتي مڠݢوناکن ريسولوسي سکرين رنده⹁\n" "تتاڤي اي هاڽ داڤليکاسيکن کڤد دنيا ڤرماٴينن سهاج⹁ تيدق مڠوبه GUI.\n" @@ -6423,17 +6493,15 @@ msgstr "" msgid "Upper Y limit of floatlands." msgstr "" -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "ݢونا ڤاڤرن اون 3D مڠݢنتيکن اون رات." - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "ݢوناکن انيماسي اون سباݢاي لاتر بلاکڠ مينو اوتام." #: src/settings_translation_file.cpp #, fuzzy -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "ݢوناکن ڤناڤيسن انيسوتروڤيک اڤابيلا مليهت تيکستور دري سواتو سودوت." #: src/settings_translation_file.cpp @@ -6687,26 +6755,14 @@ msgstr "" "کڤرکاکسن (چونتوهڽ⹁ ڤنرجمهن-ک-تيکستور اونتوق نود دالم اينۏينتوري)." #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" -"اڤابيلا gui_scaling_filter_txr2img دتتڤکن کڤد \"true\"⹁ سالين سمولا کسموا\n" -"ايميج ترسبوت دري ڤرکاکسن کڤرايسين اونتوق دسسوايکن. سکيراڽ دتتڤکن کڤد\n" -"\"false\"⹁ برباليق کڤد قاعده ڤڽسواين يڠ لام⹁ اونتوق ڤماچو ۏيديو يڠ تيدق " -"ممڤو\n" -"مڽوکوڠ دڠن سمڤورنا فوڠسي موات تورون سمولا تيکستور درڤد ڤرکاکسن." - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -6725,10 +6781,6 @@ msgid "" "Mods may still set a background." msgstr "" -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "سام اد انيماسي تيکستور نود ڤاتوت دڽهسݢرقکن ڤد ستياڤ بلوک ڤتا." - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -6754,9 +6806,9 @@ msgid "Whether to fog out the end of the visible area." msgstr "سام اد اندا هندق مڠکابوتکن ڤڠهوجوڠ کاوسن يڠ کليهتن." #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -6934,6 +6986,9 @@ msgstr "" #~ "بيار کوسوڠ اونتوق ممولاکن ڤلاين ڤرماٴينن تمڤتن.\n" #~ "امبيل ڤرهاتيان بهاوا ميدن علامت دالم مينو اوتام مڠاتسي تتڤن اين." +#~ msgid "Adds particles when digging a node." +#~ msgstr "منمبه ڤرتيکل اڤابيلا مڠݢالي نود." + #~ msgid "" #~ "Adjust dpi configuration to your screen (non X11/Android only) e.g. for " #~ "4k screens." @@ -7024,6 +7079,10 @@ msgstr "" #~ msgid "Clean transparent textures" #~ msgstr "برسيهکن تيکستور لوت سينر" +#, fuzzy +#~ msgid "Clouds are a client-side effect." +#~ msgstr "اون ايت ايفيک ڤد ڤيهق کليئن." + #~ msgid "Command key" #~ msgstr "ککونچي ارهن" @@ -7099,9 +7158,15 @@ msgstr "" #~ msgid "Damage enabled" #~ msgstr "بوليه چدرا" +#~ msgid "Debug info and profiler graph hidden" +#~ msgstr "معلومت ڽهڤڤيجت دان ݢراف ڤمبوکه دسمبوڽيکن" + #~ msgid "Debug info toggle key" #~ msgstr "ککونچي توݢول معلومت ڽهڤڤيجت" +#~ msgid "Debug info, profiler graph, and wireframe hidden" +#~ msgstr "معلومت ڽهڤڤيجت⹁ ݢراف ڤمبوکه⹁ دان رڠک داواي دسمبوڽيکن" + #~ msgid "Dec. volume key" #~ msgstr "ککونچي ڤرلاهنکن بوڽي" @@ -7125,10 +7190,16 @@ msgstr "" #~ msgid "Del. Favorite" #~ msgstr "ڤادم کݢمرن" +#~ msgid "Desynchronize block animation" +#~ msgstr "مڽهسݢرقکن انيماسي بلوک" + #, fuzzy #~ msgid "Dig key" #~ msgstr "ککومچي ککانن" +#~ msgid "Digging particles" +#~ msgstr "ڤرتيکل کتيک مڠݢالي" + #~ msgid "Disable anticheat" #~ msgstr "ملومڤوهکن انتيتيڤو" @@ -7151,6 +7222,10 @@ msgstr "" #~ msgid "Dynamic shadows:" #~ msgstr "بايڠ فون" +#, fuzzy +#~ msgid "Enable" +#~ msgstr "دبوليهکن" + #, fuzzy #~ msgid "Enable creative mode for all players" #~ msgstr "ممبوليهکن مود کرياتيف اونتوق ڤتا بارو دچيڤتا." @@ -7182,6 +7257,12 @@ msgstr "" #~ "اوليه ڤيک تيکستور اتاو ڤرلو دجان سچارا أوتوماتيک.\n" #~ "ڤرلوکن ڤمبايڠ دبوليهکن." +#, fuzzy +#~ msgid "" +#~ "Enables caching of facedir rotated meshes.\n" +#~ "This is only effective with shaders disabled." +#~ msgstr "ممبوليهکن ڤڠاݢريݢتن ججاريڠ يڠ دڤوتر دڤکسي Y ايايت (facedir)." + #~ msgid "Enables minimap." #~ msgstr "ممبوليهکن ڤتا ميني." @@ -7221,9 +7302,6 @@ msgstr "" #~ "ڤيليهن ڤرچوباٴن⹁ موڠکين منمڤقکن رواڠ ڽات دانتارا\n" #~ "بلوک اڤابيلا دتتڤکن دڠن نومبور لبيه بسر درڤد 0." -#~ msgid "FPS in pause menu" -#~ msgstr "FPS دمينو جيدا" - #~ msgid "FSAA" #~ msgstr "FSAA" @@ -7299,8 +7377,8 @@ msgstr "" #~ msgid "Full screen BPP" #~ msgstr "BPP سکرين ڤنوه" -#~ msgid "Game" -#~ msgstr "ڤرماٴينن" +#~ msgid "GUI scaling filter txr2img" +#~ msgstr "ڤناڤيس سکال GUI جنيس txr2img" #~ msgid "Generate Normal Maps" #~ msgstr "جان ڤتا نورمل" @@ -7450,6 +7528,10 @@ msgstr "" #~ msgid "Install: file: \"$1\"" #~ msgstr "ڤاسڠ: فايل: \"$1\"" +#, fuzzy +#~ msgid "Interval of sending time of day to clients, stated in seconds." +#~ msgstr "سلڠ دأنتارا ڤڠهنترن معلومت ماس ڤلاين کڤد کليئن." + #~ msgid "Invalid gamespec." #~ msgstr "سڤيسيفيکاسي ڤرماٴينن تيدق صح." @@ -7461,656 +7543,656 @@ msgstr "" #~ msgid "" #~ "Key for decreasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق مڠورڠکن جارق ڤندڠ.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for decreasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق ممڤرلاهنکن بوڽي.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for digging.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق ملومڤت.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for dropping the currently selected item.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق منجاتوهکن ايتم يڠ سدڠ دڤيليه.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق منمبه جارق ڤندڠ.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق مڠواتکن بوڽي.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for jumping.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق ملومڤت.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving fast in fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق برݢرق ڤنتس دالم مود ڤرݢرقن ڤنتس.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player backward.\n" #~ "Will also disable autoforward, when active.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق مڠݢرقکن ڤماٴين کبلاکڠ.\n" #~ "جوݢ اکن ملومڤوهکن أوتوڤرݢرقن⹁ اڤابيلا اکتيف.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player forward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق مڠݢرقکن ڤماٴين کدڤن.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player left.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق مڠݢرقکن ڤماٴين ککيري.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player right.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق مڠݢرقکن ڤماٴين ککانن.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for muting the game.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق ممبيسوکن ڤرماٴينن.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق ممبوک تتيڠکڤ سيمبڠ اونتوق مناٴيڤ ارهن.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type local commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق ممبوک تتيڠکڤ سيمبڠ اونتوق مناٴيڤ ارهن تمڤتن.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق ممبوک تتيڠکڤ سيمبڠ.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the inventory.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق ممبوک اينۏينتوري.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for placing.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق ملومڤت.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 11th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق مميليه سلوت ک-11 دالم هوتبر.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 12th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق مميليه سلوت ک-12 دالم هوتبر.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 13th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق مميليه سلوت ک-13 دالم هوتبر.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 14th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق مميليه سلوت ک-14 دالم هوتبر.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 15th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق مميليه سلوت ک-15 دالم هوتبر.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 16th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق مميليه سلوت ک-16 دالم هوتبر.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 17th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق مميليه سلوت ک-17 دالم هوتبر.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 18th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق مميليه سلوت ک-18 دالم هوتبر.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 19th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق مميليه سلوت ک-19 دالم هوتبر.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 20th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق مميليه سلوت ک-20 دالم هوتبر.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 21st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق مميليه سلوت ک-21 دالم هوتبر.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 22nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق مميليه سلوت ک-22 دالم هوتبر.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 23rd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق مميليه سلوت ک-23 دالم هوتبر.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 24th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق مميليه سلوت ک-24 دالم هوتبر.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 25th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق مميليه سلوت ک-25 دالم هوتبر.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 26th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق مميليه سلوت ک-26 دالم هوتبر.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 27th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق مميليه سلوت ک-27 دالم هوتبر.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 28th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق مميليه سلوت ک-28 دالم هوتبر.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 29th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق مميليه سلوت ک-29 دالم هوتبر.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 30th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق مميليه سلوت ک-30 دالم هوتبر.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 31st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق مميليه سلوت ک-31 دالم هوتبر.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 32nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق مميليه سلوت ک-32 دالم هوتبر.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the eighth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق مميليه سلوت ک-8 دالم هوتبر.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the fifth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق مميليه سلوت ک-5 دالم هوتبر.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the first hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق مميليه سلوت ڤرتام دالم هوتبر.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the fourth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق مميليه سلوت ک-4 دالم هوتبر.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the next item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق مميليه ايتم ستروسڽ ددالم هوتبر.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the ninth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق مميليه سلوت ک-9 دالم هوتبر.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the previous item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق مميليه بارڠ سبلومڽ دهوتبر.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the second hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق مميليه سلوت ک-2 دالم هوتبر.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the seventh hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق مميليه سلوت ک-7 دالم هوتبر.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the sixth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق مميليه سلوت ک-6 دالم هوتبر.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the tenth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق مميليه سلوت ک-10 دالم هوتبر.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the third hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق مميليه سلوت ک-3 دالم هوتبر.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for sneaking.\n" #~ "Also used for climbing down and descending in water if aux1_descends is " #~ "disabled.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق مڽلينڤ.\n" #~ "جوݢ دݢوناکن اونتوق تورون باواه کتيک ممنجت دان دالم اٴير جيک تتڤن " #~ "aux1_descends دلومڤوهکن.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for switching between first- and third-person camera.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق برتوکر انتارا کاميرا اورڠ ڤرتام دان کتيݢ.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for taking screenshots.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق منڠکڤ ݢمبر لاير.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling autoforward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق منوݢول أوتوڤرݢرقن.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling cinematic mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق منوݢول مود سينماتيک.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling display of minimap.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق منوݢول ڤاڤرن ڤتا ميني.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق منوݢول مود ڤرݢرقن ڤنتس.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling flying.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق منوݢول مود تربڠ.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling noclip mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق منوݢول مود تمبوس بلوک.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling pitch move mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق منوݢول مود ڤرݢرقن ڤيچ.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the camera update. Only used for development\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق منوݢول ڤڠمسکينين کاميرا. هاڽ دݢوناکن اونتوق ڤمباڠونن.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of chat.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق منوݢول ڤاڤرن سيمبڠ.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of debug info.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق منوݢول ڤاڤرن معلومت ڽهڤڤيجت.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of fog.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق منوݢول ڤاڤرن کابوت.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the HUD.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق منوݢول ڤاڤر ڤندو (HUD).\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the large chat console.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق منوݢول ڤاڤرن کونسول سيمبڠ بسر.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the profiler. Used for development.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق منوݢول ڤمبوکه. دݢوناکن اونتوق ڤمباڠونن.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling unlimited view range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق منوݢول جارق ڤندڠن تيادا حد.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key to use view zoom when possible.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ککونچي اونتوق مڠݢوناکن ڤندڠن زوم اڤابيلا دبنرکن.\n" -#~ "ليهت http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ليهت http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Keybindings. (If this menu screws up, remove stuff from minetest.conf)" #~ msgstr "" -#~ "ايکتن ککونچي. (جيک مينو اين برسليرق⹁ ڤادم سستڠه بندا دري فايل minetest." -#~ "conf)" +#~ "ايکتن ککونچي. (جيک مينو اين برسليرق⹁ ڤادم سستڠه بندا دري فايل " +#~ "minetest.conf)" #~ msgid "Large chat console key" #~ msgstr "ککونچي کونسول سيمبڠ بسر" @@ -8149,6 +8231,9 @@ msgstr "" #~ msgid "Menus" #~ msgstr "مينو" +#~ msgid "Mesh cache" +#~ msgstr "کيش ججاريڠ" + #~ msgid "Minimap" #~ msgstr "ڤتا ميني" @@ -8323,6 +8408,9 @@ msgstr "" #~ msgid "Server / Singleplayer" #~ msgstr "ڤلاين ڤرماٴينن \\ ڤماٴين ڤرسأورڠن" +#~ msgid "Shaders" +#~ msgstr "ڤمبايڠ" + #, fuzzy #~ msgid "Shaders (experimental)" #~ msgstr "تانه تراڤوڠ (دالم اوجيکاجي)" @@ -8340,6 +8428,10 @@ msgstr "" #~ "ڤريستاسي اونتوق سستڠه کد ۏيديو.\n" #~ "نامون اي هاڽ برفوڠسي دڠن ڤمبهاݢين بلاکڠ ۏيديو OpenGL." +#, fuzzy +#~ msgid "Shaders are disabled." +#~ msgstr "کمس کيني کاميرا دلومڤوهکن" + #~ msgid "" #~ "Shadow offset (in pixels) of the fallback font. If 0, then shadow will " #~ "not be drawn." @@ -8368,6 +8460,9 @@ msgstr "" #~ msgid "Smooths rotation of camera. 0 to disable." #~ msgstr "ملمبوتکن ڤموترن کاميرا. سيت سباݢاي 0 اونتوق ملومڤوهکنڽ." +#~ msgid "Sound system is disabled" +#~ msgstr "سيستم بوڽي دلومڤوهکن" + #~ msgid "Special" #~ msgstr "ايستيميوا" @@ -8402,6 +8497,9 @@ msgstr "" #~ "اتاو ڤلمبوتن تتيکوس.\n" #~ "برݢونا اونتوق مراکم ۏيديو." +#~ msgid "Time send interval" +#~ msgstr "سلڠ ڤڠهنترن ماس" + #~ msgid "To enable shaders the OpenGL driver needs to be used." #~ msgstr "اونتوق ممبوليهکن ڤمبايڠ⹁ ڤماچو OpenGL مستي دݢوناکن." @@ -8468,6 +8566,19 @@ msgstr "" #~ msgid "Waving Plants" #~ msgstr "تومبوهن برݢويڠ" +#~ msgid "" +#~ "When gui_scaling_filter_txr2img is true, copy those images\n" +#~ "from hardware to software for scaling. When false, fall back\n" +#~ "to the old scaling method, for video drivers that don't\n" +#~ "properly support downloading textures back from hardware." +#~ msgstr "" +#~ "اڤابيلا gui_scaling_filter_txr2img دتتڤکن کڤد \"true\"⹁ سالين سمولا " +#~ "کسموا\n" +#~ "ايميج ترسبوت دري ڤرکاکسن کڤرايسين اونتوق دسسوايکن. سکيراڽ دتتڤکن کڤد\n" +#~ "\"false\"⹁ برباليق کڤد قاعده ڤڽسواين يڠ لام⹁ اونتوق ڤماچو ۏيديو يڠ تيدق " +#~ "ممڤو\n" +#~ "مڽوکوڠ دڠن سمڤورنا فوڠسي موات تورون سمولا تيکستور درڤد ڤرکاکسن." + #~ msgid "" #~ "Whether FreeType fonts are used, requires FreeType support to be compiled " #~ "in.\n" @@ -8476,6 +8587,10 @@ msgstr "" #~ "منتڤکن سام اد فون FreeType دݢوناکن⹁ ممرلوکن سوکوڠن Freetype\n" #~ "دکومڤيل برسام. جيک دلومڤوهکن⹁ فون ڤتا بيت دان ۏيکتور XML اکن دݢوناکن." +#~ msgid "" +#~ "Whether node texture animations should be desynchronized per mapblock." +#~ msgstr "سام اد انيماسي تيکستور نود ڤاتوت دڽهسݢرقکن ڤد ستياڤ بلوک ڤتا." + #~ msgid "Whether to allow players to damage and kill each other." #~ msgstr "" #~ "منتڤکن سام اد ايڠين ممبنرکن ڤماٴين اونتوق منچدراکن دان ممبونوه ساتو سام " diff --git a/po/nb/luanti.po b/po/nb/luanti.po index 92e009609..585820352 100644 --- a/po/nb/luanti.po +++ b/po/nb/luanti.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Norwegian Bokmål (Minetest)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" "PO-Revision-Date: 2024-10-22 11:01+0000\n" "Last-Translator: Allan Nordhøy \n" "Language-Team: Norwegian Bokmål ] [-t]" msgstr "[all | ]" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "Bla gjennom" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "Endre" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "Velg mappe" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "Velg fil" + +#: builtin/common/settings/components.lua +#, fuzzy +msgid "Set" +msgstr "Velg" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(Ingen beskrivelse av innstillingen)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "2D-støy" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "Avbryt" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "Fraktal tekstur" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "Oktaver" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "Offset" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "Standhaftighet" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "Lagre" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "Skala" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "Frø" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "X-spredning" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "Y-spredning" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "Z-spredning" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "Absoluttverdi" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "Forvalg" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "myknet" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "(The game will need to enable automatic exposure as well)" +msgstr "(Spillet må også aktivere skygger)" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "(The game will need to enable bloom as well)" +msgstr "(Spillet må også aktivere skygger)" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "(Spillet må også aktivere skygger)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "(Bruk systemspråk)" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "Tilgjengelighet" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "Chatte" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "Tøm" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "Kontroller" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "Deaktivert" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "Aktivert" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "Generelt" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "Bevegelse" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "Ingen resultater" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default" +msgstr "Tilbakestill til standard" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "Tilbakestill til standard ($1)" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "Søk" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "Vis avanserte innstillinger" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "Vis tekniske navn" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Touchscreen layout" +msgstr "Strandlydsterskel" + +#: builtin/common/settings/dlg_settings.lua +msgid "pause_menu" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Client Mods" +msgstr "Velg endringer" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "Innhold: Spill" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "Innhold: Mods" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "(Spillet må også aktivere skygger)" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "Tilpasset" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "Dynamiske skygger" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "Høy" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "Lav" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "Medium" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "Ultrahøy" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "Veldig lav" + #: builtin/fstk/ui.lua msgid "" msgstr "" @@ -165,7 +409,6 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "Tilbake" @@ -202,11 +445,6 @@ msgstr "Modder" msgid "No packages could be retrieved" msgstr "Kunne ikke hente pakker" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "Ingen resultater" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "Ingen oppdateringer" @@ -252,18 +490,6 @@ msgstr "Allerede installert" msgid "Base Game:" msgstr "Grunnspill:" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "Avbryt" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -392,6 +618,12 @@ msgstr "Kan ikke installere $1 som en $2" msgid "Unable to install a $1 as a texture pack" msgstr "Kan ikke installere en $1 som en teksturpakke" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "(Aktivert, har feil)" @@ -456,12 +688,6 @@ msgstr "Ingen valgfrie avhengigheter" msgid "Optional dependencies:" msgstr "Valgfrie avhengigheter:" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "Lagre" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "Verden:" @@ -612,11 +838,6 @@ msgstr "Elver" msgid "Sea level rivers" msgstr "Havnivå Elver" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "Frø" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "Jevn overgang mellom biotoper" @@ -762,6 +983,23 @@ msgstr "" "Denne modpakken har et gitt navn i modpack.conf som vil overstyre enhver " "omdøping." +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "Aktiver alle" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "En ny $1 versjon er tilgjengelig" @@ -790,7 +1028,7 @@ msgstr "Aldri" msgid "Visit website" msgstr "Besøk nettsted" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "Innstillinger" @@ -803,230 +1041,6 @@ msgid "Try reenabling public serverlist and check your internet connection." msgstr "" "Prøv å aktivere offentlig serverliste og sjekk Internett-tilkoblingen din." -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "Bla gjennom" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "Endre" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "Velg mappe" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "Velg fil" - -#: builtin/mainmenu/settings/components.lua -#, fuzzy -msgid "Set" -msgstr "Velg" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(Ingen beskrivelse av innstillingen)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "2D-støy" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "Fraktal tekstur" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "Oktaver" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "Offset" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "Standhaftighet" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "Skala" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "X-spredning" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "Y-spredning" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "Z-spredning" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "Absoluttverdi" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "Forvalg" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "myknet" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable automatic exposure as well)" -msgstr "(Spillet må også aktivere skygger)" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable bloom as well)" -msgstr "(Spillet må også aktivere skygger)" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "(Spillet må også aktivere skygger)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "(Bruk systemspråk)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "Tilgjengelighet" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "Chatte" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "Tøm" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "Kontroller" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "Deaktivert" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "Aktivert" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "Generelt" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "Bevegelse" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default" -msgstr "Tilbakestill til standard" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "Tilbakestill til standard ($1)" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "Søk" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "Vis avanserte innstillinger" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "Vis tekniske navn" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Client Mods" -msgstr "Velg endringer" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "Innhold: Spill" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "Innhold: Mods" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "Aktivert" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Shaders are disabled." -msgstr "Kameraoppdatering slått av" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "(Spillet må også aktivere skygger)" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "Tilpasset" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "Dynamiske skygger" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "Høy" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "Lav" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "Medium" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "Ultrahøy" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "Veldig lav" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "Om" @@ -1047,10 +1061,6 @@ msgstr "Kjerneutviklere" msgid "Core Team" msgstr "Kjerneteam" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "Åpen brukerdatamappe" @@ -1201,10 +1211,22 @@ msgstr "Start spill" msgid "You need to install a game before you can create a world." msgstr "Du må installere ett spill før du kan installere en modifikasjon" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "Ta bort favoritt" + #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "Adresse" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "Klient" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "Kreativ modus" @@ -1218,6 +1240,11 @@ msgstr "Skade / PvP" msgid "Favorites" msgstr "Favoritter" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "Spill" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "Inkompatible servere" @@ -1230,10 +1257,27 @@ msgstr "Ta del i spill" msgid "Login" msgstr "Logg på" +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Open server website" +msgstr "Serverens oppdateringsintervall (servertikk)" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "Forsinkelse" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Public Servers" msgstr "Offentlige servere" @@ -1318,23 +1362,6 @@ msgstr "" "\n" "Sjekk debug.txt for detaljer." -#: src/client/game.cpp -msgid "- Mode: " -msgstr "- Modus: " - -#: src/client/game.cpp -msgid "- Public: " -msgstr "- Offentlig: " - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "- Alle mot alle (PvP): " - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "- Tjenernavn: " - #: src/client/game.cpp msgid "A serialization error occurred:" msgstr "En serialiseringsfeil oppstod:" @@ -1344,6 +1371,11 @@ msgstr "En serialiseringsfeil oppstod:" msgid "Access denied. Reason: %s" msgstr "Ingen tilgang. På grunn av: %s" +#: src/client/game.cpp +#, fuzzy +msgid "All debug info hidden" +msgstr "Feilsøkingsinformasjon vises" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "Automatisk forover slått av" @@ -1364,6 +1396,10 @@ msgstr "Block bounds vist for gjeldende blokk" msgid "Block bounds shown for nearby blocks" msgstr "Block bounds vist for nærliggende blokker" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "Kameraoppdatering slått av" @@ -1376,10 +1412,6 @@ msgstr "Kameraoppdatering slått på" msgid "Can't show block bounds (disabled by game or mod)" msgstr "Kan ikke vise blockbounds (deaktivert av spill eller mod)" -#: src/client/game.cpp -msgid "Change Password" -msgstr "Endre passord" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "Filmatisk modus avskrudd" @@ -1408,39 +1440,6 @@ msgstr "Tilkoblingsfeil (tidsavbrudd?)" msgid "Connection failed for unknown reason" msgstr "Tilkoblingen mislyktes av ukjent årsak" -#: src/client/game.cpp -msgid "Continue" -msgstr "Fortsett" - -#: src/client/game.cpp -#, fuzzy -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" -"Standardstyring:\n" -"Ved ingen synlig meny:\n" -"- enkel berøring: knapp aktiveres\n" -"- dobbel berøring: legg på plass/bruke\n" -"- glidende berøring: se rundt deg\n" -"Meny/beholdning synlig:\n" -"- dobbel berøring (ute):\n" -" -->lukk\n" -"- berør stabel, berør spor:\n" -" --> flytt stabel\n" -"- berør&trekk, berør med den andre fingeren\n" -" --> legg én enkelt gjenstand i spor\n" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1454,31 +1453,15 @@ msgstr "Oppretter klient…" msgid "Creating server..." msgstr "Oppretter tjener…" -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "Feilsøkingsinformasjon og profileringsgraf er skjult" - #: src/client/game.cpp msgid "Debug info shown" msgstr "Feilsøkingsinformasjon vises" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "Feilsøkingsinformasjon, profileringsgraf og wireframe skjult" - #: src/client/game.cpp #, c-format msgid "Error creating client: %s" msgstr "Feil ved oppretting av klient: %s" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "Avslutt til meny" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "Avslutt til operativsystem" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "Hurtigmodus slått av" @@ -1516,18 +1499,6 @@ msgstr "Tåke slått på" msgid "Fog enabled by game or mod" msgstr "Zoom er for øyeblikket deaktivert av spill eller mod" -#: src/client/game.cpp -msgid "Game info:" -msgstr "Spillinfo:" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "Spillet er satt på pause" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "Vertstjener" - #: src/client/game.cpp msgid "Item definitions..." msgstr "Gjenstandsdefinisjoner…" @@ -1564,14 +1535,6 @@ msgstr "Noclip-modus aktivert (merk: ingen \"noclip\"-rettigheter)" msgid "Node definitions..." msgstr "Blokkdefinisjoner..." -#: src/client/game.cpp -msgid "Off" -msgstr "Av" - -#: src/client/game.cpp -msgid "On" -msgstr "På" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "Pitch flyttemodus deaktivert" @@ -1584,38 +1547,22 @@ msgstr "Pitch flyttemodus aktivert" msgid "Profiler graph shown" msgstr "Profil graf vises" -#: src/client/game.cpp -msgid "Remote server" -msgstr "Ekstern server" - #: src/client/game.cpp msgid "Resolving address..." msgstr "Løser adresse ..." -#: src/client/game.cpp -msgid "Respawn" -msgstr "Gjenoppstå" - #: src/client/game.cpp msgid "Shutting down..." msgstr "Slår av..." -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "Enkeltspiller" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "Lydstyrke" - #: src/client/game.cpp msgid "Sound muted" msgstr "Lyd av" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "Lydsystemet er deaktivert" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "Lydsystem støttes ikke på denne versjonen" @@ -1687,18 +1634,116 @@ msgstr "Visningsområde endret til %d men begrenset til %d av spill eller mod" msgid "Volume changed to %d%%" msgstr "Volumet endret til %d%%" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "Kantlinjer vises" -#: src/client/game.cpp -msgid "You died" -msgstr "Du døde" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "Zoom er for øyeblikket deaktivert av spill eller mod" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "- Modus: " + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "- Offentlig: " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "- Alle mot alle (PvP): " + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "- Tjenernavn: " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "Endre passord" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "Fortsett" + +#: src/client/game_formspec.cpp +#, fuzzy +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" +"Standardstyring:\n" +"Ved ingen synlig meny:\n" +"- enkel berøring: knapp aktiveres\n" +"- dobbel berøring: legg på plass/bruke\n" +"- glidende berøring: se rundt deg\n" +"Meny/beholdning synlig:\n" +"- dobbel berøring (ute):\n" +" -->lukk\n" +"- berør stabel, berør spor:\n" +" --> flytt stabel\n" +"- berør&trekk, berør med den andre fingeren\n" +" --> legg én enkelt gjenstand i spor\n" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "Avslutt til meny" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "Avslutt til operativsystem" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "Spillinfo:" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "Spillet er satt på pause" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "Vertstjener" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "Av" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "På" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "Ekstern server" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "Gjenoppstå" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "Lydstyrke" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "Du døde" + #: src/client/gameui.cpp #, fuzzy msgid "Chat currently disabled by game or mod" @@ -2038,8 +2083,9 @@ msgid "Failed to compile the \"%s\" shader." msgstr "Klarte ikke laste ned $1" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." -msgstr "" +#, fuzzy +msgid "GLSL is not supported by the driver" +msgstr "Lydsystem støttes ikke på denne versjonen" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" #: src/content/mod_configuration.cpp @@ -2088,7 +2134,7 @@ msgstr "Automatisk fremover" msgid "Automatic jumping" msgstr "Automatisk hopping" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "" @@ -2100,7 +2146,7 @@ msgstr "Tilbake" msgid "Block bounds" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "Endre visning" @@ -2124,7 +2170,7 @@ msgstr "Senk lydstyrke" msgid "Double tap \"jump\" to toggle fly" msgstr "Trykk raskt på «hopp» to ganger for å starte og slutte å fly" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "Dropp" @@ -2140,11 +2186,11 @@ msgstr "Øk siktavstanden" msgid "Inc. volume" msgstr "Øk lydstyrken" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "Beholdning" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "Hopp" @@ -2176,7 +2222,7 @@ msgstr "Neste gjenstand" msgid "Prev. item" msgstr "Forrige gjenstand" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "Velg rekkevidde" @@ -2188,7 +2234,7 @@ msgstr "Høyre" msgid "Screenshot" msgstr "Skjermdump" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "Snike" @@ -2196,15 +2242,15 @@ msgstr "Snike" msgid "Toggle HUD" msgstr "HUD (hurtigtilgang) av/på" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "Chattehistorikk av/på" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "Rask forflytning av/på" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "Flymodus av/på" @@ -2212,11 +2258,11 @@ msgstr "Flymodus av/på" msgid "Toggle fog" msgstr "Tåke av/på" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "Minikart av/på" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "Gjennomtrengelige blokker av/på" @@ -2224,7 +2270,7 @@ msgstr "Gjennomtrengelige blokker av/på" msgid "Toggle pitchmove" msgstr "Pitchbevegelse (lateralaksevinkel) av/på" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "Forstørrelse" @@ -2261,7 +2307,7 @@ msgstr "Gammelt passord" msgid "Passwords do not match!" msgstr "Passordene samsvarer ikke!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "Avslutt" @@ -2274,16 +2320,47 @@ msgstr "Av" msgid "Sound Volume: %d%%" msgstr "Lydstyrke: %d%%" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Add button" +msgstr "Midtknapp" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "Ferdig!" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Remove" +msgstr "Ekstern server" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Joystick" msgstr "Spillstikke-ID" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Toggle debug" msgstr "Tåke av/på" @@ -2505,8 +2582,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" "3D-støtte.\n" "For øyeblikket støttes følgende alternativer:\n" @@ -2572,10 +2648,6 @@ msgstr "Rekkevidde for aktive blokker" msgid "Active object send range" msgstr "Område for sending av aktive objekt" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "Legger på partikler når man graver ut en blokk." - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2598,6 +2670,17 @@ msgstr "Administratornavn" msgid "Advanced" msgstr "Avansert" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +#, fuzzy +msgid "Allow clouds to look 3D instead of flat." +msgstr "Bruk 3D-skyer i stedet for flate." + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "" @@ -3006,15 +3089,14 @@ msgstr "Skyradius" msgid "Clouds" msgstr "Skyer" -#: src/settings_translation_file.cpp -#, fuzzy -msgid "Clouds are a client-side effect." -msgstr "Skyer er en effekt på klientsiden." - #: src/settings_translation_file.cpp msgid "Clouds in menu" msgstr "Skyer i meny" +#: src/settings_translation_file.cpp +msgid "Color depth for post-processing texture" +msgstr "" + #: src/settings_translation_file.cpp msgid "Colored fog" msgstr "Farget tåke" @@ -3039,7 +3121,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" "Komma-atskilt liste med of flags to hide in the content repository.\n" "\"nonfree\" kan brukes til å skjule pakker som ikke kvalifiserer som \"fri " @@ -3191,6 +3273,14 @@ msgstr "Loggingsnivå for feilsøking" msgid "Debugging" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "Serverens oppdateringsintervall (servertikk)" @@ -3344,19 +3434,11 @@ msgid "" "When the 'snowbiomes' flag is enabled, this is ignored." msgstr "" -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Developer Options" msgstr "Dekorasjoner" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "Gravepartikler" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "Ikke tillatt tomme passord" @@ -3384,6 +3466,14 @@ msgstr "Dobbeltklikk hopp for å fly" msgid "Double-tapping the jump key toggles fly mode." msgstr "Dobbeltklikking av hoppetasten veksler flyvningsmodus." +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "" @@ -3462,8 +3552,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" #: src/settings_translation_file.cpp @@ -3536,8 +3626,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" #: src/settings_translation_file.cpp @@ -3552,12 +3641,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "" - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -3872,10 +3955,6 @@ msgstr "" msgid "GUI scaling filter" msgstr "" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Gamepads" @@ -4105,15 +4184,6 @@ msgid "" "descending." msgstr "" -#: src/settings_translation_file.cpp -#, fuzzy -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" -"Skru på registerbekreftelse ved tilkobling til tjener.\n" -"Hvis avskrudd, vil en ny konto registres automatisk." - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -4132,6 +4202,16 @@ msgid "" "empty password." msgstr "" +#: src/settings_translation_file.cpp +#, fuzzy +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" +"Skru på registerbekreftelse ved tilkobling til tjener.\n" +"Hvis avskrudd, vil en ny konto registres automatisk." + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4226,10 +4306,6 @@ msgstr "" msgid "Interval of saving important changes in the world, stated in seconds." msgstr "" -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "" - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "" @@ -4864,10 +4940,6 @@ msgstr "" msgid "Maximum users" msgstr "Maks antall brukere" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "Dagens melding" @@ -4900,6 +4972,10 @@ msgstr "" msgid "Minimum limit of random number of small caves per mapchunk." msgstr "" +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "" @@ -4992,7 +5068,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" @@ -5441,17 +5517,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5686,16 +5764,6 @@ msgstr "" msgid "Shader path" msgstr "" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "Shaders" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "" @@ -5869,10 +5937,9 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" #: src/settings_translation_file.cpp @@ -6163,10 +6230,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "" -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "" @@ -6230,6 +6293,10 @@ msgstr "Bølgende blader" msgid "Transparency Sorting Distance" msgstr "" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "" @@ -6283,7 +6350,10 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" #: src/settings_translation_file.cpp @@ -6307,16 +6377,14 @@ msgstr "" msgid "Upper Y limit of floatlands." msgstr "Y-verdi for store grotters øvre grense." -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "Bruk 3D-skyer i stedet for flate." - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "Bruk animerte skyer som bakgrunn for hovedmenyen." #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" #: src/settings_translation_file.cpp @@ -6566,20 +6634,12 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -6590,10 +6650,6 @@ msgid "" "Mods may still set a background." msgstr "" -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -6616,8 +6672,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -6779,6 +6834,9 @@ msgstr "Maksimal parallellisering i cURL" #~ "Vær klar over at adressen i feltet i hovedmenyen overkjører denne " #~ "innstillingen." +#~ msgid "Adds particles when digging a node." +#~ msgstr "Legger på partikler når man graver ut en blokk." + #~ msgid "" #~ "Adjust dpi configuration to your screen (non X11/Android only) e.g. for " #~ "4k screens." @@ -6889,6 +6947,10 @@ msgstr "Maksimal parallellisering i cURL" #~ msgid "Clean transparent textures" #~ msgstr "Rene, gjennomsiktige teksturer" +#, fuzzy +#~ msgid "Clouds are a client-side effect." +#~ msgstr "Skyer er en effekt på klientsiden." + #~ msgid "Command key" #~ msgstr "Tast for chat og kommandoer" @@ -6968,9 +7030,15 @@ msgstr "Maksimal parallellisering i cURL" #~ msgid "Damage enabled" #~ msgstr "Skade aktivert" +#~ msgid "Debug info and profiler graph hidden" +#~ msgstr "Feilsøkingsinformasjon og profileringsgraf er skjult" + #~ msgid "Debug info toggle key" #~ msgstr "Tast for å vise/skjule feilsøkingsinfo" +#~ msgid "Debug info, profiler graph, and wireframe hidden" +#~ msgstr "Feilsøkingsinformasjon, profileringsgraf og wireframe skjult" + #~ msgid "Dec. volume key" #~ msgstr "Tast for senking av lydstyrke" @@ -6984,6 +7052,9 @@ msgstr "Maksimal parallellisering i cURL" #~ msgid "Dig key" #~ msgstr "Høyre tast" +#~ msgid "Digging particles" +#~ msgstr "Gravepartikler" + #~ msgid "Disable anticheat" #~ msgstr "Skru av antijuksing" @@ -7006,6 +7077,10 @@ msgstr "Maksimal parallellisering i cURL" #~ msgid "Dynamic shadows:" #~ msgstr "Dynamiske skygger: " +#, fuzzy +#~ msgid "Enable" +#~ msgstr "Aktivert" + #~ msgid "Enable VBO" #~ msgstr "Aktiver VBO" @@ -7061,9 +7136,6 @@ msgstr "Maksimal parallellisering i cURL" #~ msgid "FreeType fonts" #~ msgstr "FreeType-skrifttyper" -#~ msgid "Game" -#~ msgstr "Spill" - #~ msgid "Generate Normal Maps" #~ msgstr "Generer normale kart" @@ -7202,483 +7274,483 @@ msgstr "Maksimal parallellisering i cURL" #~ msgid "" #~ "Key for decreasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for å redusere synsrekkevidde.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for decreasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for redusering av lydstyrken.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for digging.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for hopping.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for dropping the currently selected item.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for kasting av gjeldende valgt element.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for økning av synsrekkevidde.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for økning av lydstyrken.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for jumping.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for hopping.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving fast in fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for hurtig gange i raskt modus.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player backward.\n" #~ "Will also disable autoforward, when active.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for å bevege spilleren bakover\n" #~ "Vil også koble ut automatisk foroverbevegelse, hvis aktiv.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player forward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for å bevege spilleren fremover.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player left.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for å bevege spilleren til venstre.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player right.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for å bevege spilleren til høyre.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for placing.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for hopping.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 11th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for utvelging av ellevte hurtigplassfelt.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 12th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for utvelging av tolvte hurtigplassfelt.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 13th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for utvelging av trettende hurtigplassfelt.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 14th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for utvelging av fjortende hurtigplassfelt.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 15th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for utvelging av femtende hurtigplassfelt.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 16th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for utvelging sekstende hurtigplassfelt.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 17th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for utvelging av syttende hurtigplassfelt.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 18th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for utvelging av attende hurtigplassfelt.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 19th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for utvelging av nittende hurtigplassfelt.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 20th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for utvelging av tjuende hurtigplassfelt.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 21st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for utvelging av tjueførste hurtigplassfelt.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 22nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for utvelging av tjueandre hurtigplassfelt.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 23rd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for utvelging av tjuetredje hurtigplassfelt.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 24th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for utvelging av tjuefjerde hurtigplassfelt.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 25th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for utvelging av tjuefemte hurtigplassfelt.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 26th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for utvelging av tjuesjette hurtigplassfelt.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 27th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for utvelging av tjuesyvende hurtigplassfelt.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 28th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for utvelging av tjueåttende hurtigplassfelt.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 29th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for utvelging av tjueniende hurtigplassfelt.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 30th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for utvelging av trettiende hurtigplassfelt.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 31st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for utvelging av trettiførste hurtigplassfelt.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 32nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for utvelging av trettiandre hurtigplassfelt.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the eighth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for utvelging av åttende hurtigplassfelt.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the fifth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for utvelging av femte hurtigplassfelt.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the first hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for utvelging av første hurtigplassfelt.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the fourth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for utvelging av fjerde hurtigplassfelt.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the next item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for utvelging av neste element i hurtigfeltet.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the ninth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for utvelging av niende hurtigplassfelt.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the previous item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for utvelging av forrige element i hurtigfeltet.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the second hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for utvelging av andre hurtigplassfelt.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the seventh hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for utvelging av syvende hurtigplassfelt.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the sixth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for utvelging av sjette hurtigplassfelt.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the tenth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for utvelging av tiende hurtigplassfelt.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the third hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for utvelging av tredje hurtigplassfelt.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for sneaking.\n" #~ "Also used for climbing down and descending in water if aux1_descends is " #~ "disabled.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Sniketast.\n" #~ "Brukes også for å gå ned på stiger og i vann dersom aux1_descends ikke " #~ "brukes.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for toggling autoforward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for hopping.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for toggling pitch move mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for hurtig gange i raskt modus.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for toggling the display of chat.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for hurtig gange i raskt modus.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for toggling the display of fog.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tast for hurtig gange i raskt modus.\n" -#~ "Se http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Se http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Keybindings. (If this menu screws up, remove stuff from minetest.conf)" @@ -7809,15 +7881,25 @@ msgstr "Maksimal parallellisering i cURL" #~ msgid "Server / Singleplayer" #~ msgstr "Server/alene" +#~ msgid "Shaders" +#~ msgstr "Shaders" + #~ msgid "Shaders (experimental)" #~ msgstr "Shaders (eksperimentelt)" #~ msgid "Shaders (unavailable)" #~ msgstr "Shaders (ikke tilgjengelig)" +#, fuzzy +#~ msgid "Shaders are disabled." +#~ msgstr "Kameraoppdatering slått av" + #~ msgid "Simple Leaves" #~ msgstr "Enkle Blader" +#~ msgid "Sound system is disabled" +#~ msgstr "Lydsystemet er deaktivert" + #~ msgid "Special" #~ msgstr "Spesial" diff --git a/po/nl/luanti.po b/po/nl/luanti.po index 64cec187b..e335c98d3 100644 --- a/po/nl/luanti.po +++ b/po/nl/luanti.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Dutch (Minetest)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" "PO-Revision-Date: 2023-10-22 17:18+0000\n" "Last-Translator: Bas Huis \n" "Language-Team: Dutch ] [-t]" msgstr "[all | ]" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "Bladeren" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "Aanpassen" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "Selecteer map" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "Selecteer bestand" + +#: builtin/common/settings/components.lua +#, fuzzy +msgid "Set" +msgstr "Selecteren" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(Er is geen beschrijving van deze instelling beschikbaar)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "2D Ruis" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "Annuleren" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "Lacunaritie" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "Octaven" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "afstand" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "Persistentie" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "Opslaan" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "Schaal" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "Kiemgetal" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "X spreiding" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "Y spreiding" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "Z spreiding" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "absolute waarde" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "standaard" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "makkelijker" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "Chatten" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "Wissen" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "Besturing" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "Uitgeschakeld" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "Ingeschakeld" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Movement" +msgstr "Snelle modus" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "Geen resultaten" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Reset setting to default" +msgstr "Herstel de Standaardwaarde" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "Zoeken" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "Technische namen weergeven" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Touchscreen layout" +msgstr "Gevoeligheid van het aanraakscherm" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "pause_menu" +msgstr "FPS in het pauze-menu" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Client Mods" +msgstr "Selecteer Mods" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Content: Games" +msgstr "Inhoud" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Content: Mods" +msgstr "Inhoud" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "Dynamische schaduwen" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "Hoog" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "Laag" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "Gemiddeld" + +#: builtin/common/settings/shadows_component.lua +#, fuzzy +msgid "Very High" +msgstr "Zeer Hoog" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "Zeer Laag" + #: builtin/fstk/ui.lua msgid "" msgstr "" @@ -165,7 +412,6 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "Terug" @@ -203,11 +449,6 @@ msgstr "Mods" msgid "No packages could be retrieved" msgstr "Er konden geen pakketten geladen worden" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "Geen resultaten" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "Geen updates" @@ -254,18 +495,6 @@ msgstr "Reeds geïnstalleerd" msgid "Base Game:" msgstr "Basis Spel:" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "Annuleren" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -395,6 +624,12 @@ msgstr "Installeren van mod $1 in $2 is mislukt" msgid "Unable to install a $1 as a texture pack" msgstr "Kan $1 niet als textuurpakket installeren" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "" @@ -459,12 +694,6 @@ msgstr "Geen optionele afhankelijkheden" msgid "Optional dependencies:" msgstr "Optionele afhankelijkheden:" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "Opslaan" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "Wereld:" @@ -619,11 +848,6 @@ msgstr "Rivieren" msgid "Sea level rivers" msgstr "Rivieren op zeeniveau" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "Kiemgetal" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "Zachte overgang tussen vegetatiezones" @@ -765,6 +989,23 @@ msgstr "" "Deze modpack heeft een expliciete naam gegeven in zijn modpack.conf die elke " "hernoeming hier zal overschrijven." +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "Alles aanzetten" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "" @@ -789,7 +1030,7 @@ msgstr "" msgid "Visit website" msgstr "" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "Instellingen" @@ -803,232 +1044,6 @@ msgstr "" "Probeer de publieke serverlijst opnieuw in te schakelen en controleer de " "internet verbinding." -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "Bladeren" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "Aanpassen" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "Selecteer map" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "Selecteer bestand" - -#: builtin/mainmenu/settings/components.lua -#, fuzzy -msgid "Set" -msgstr "Selecteren" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(Er is geen beschrijving van deze instelling beschikbaar)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "2D Ruis" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "Lacunaritie" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "Octaven" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "afstand" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "Persistentie" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "Schaal" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "X spreiding" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "Y spreiding" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "Z spreiding" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "absolute waarde" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "standaard" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "makkelijker" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "Chatten" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "Wissen" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "Besturing" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "Uitgeschakeld" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "Ingeschakeld" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Movement" -msgstr "Snelle modus" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Reset setting to default" -msgstr "Herstel de Standaardwaarde" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "Zoeken" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "Technische namen weergeven" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Client Mods" -msgstr "Selecteer Mods" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Content: Games" -msgstr "Inhoud" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Content: Mods" -msgstr "Inhoud" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "Ingeschakeld" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Shaders are disabled." -msgstr "Camera-update uitgeschakeld" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "Dynamische schaduwen" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "Hoog" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "Laag" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "Gemiddeld" - -#: builtin/mainmenu/settings/shadows_component.lua -#, fuzzy -msgid "Very High" -msgstr "Zeer Hoog" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "Zeer Laag" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "Over" @@ -1049,10 +1064,6 @@ msgstr "Hoofdontwikkelaars" msgid "Core Team" msgstr "" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "Open de gebruikersdatamap" @@ -1204,10 +1215,22 @@ msgstr "Start spel" msgid "You need to install a game before you can create a world." msgstr "" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "Poort van externe server" + #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "Adres" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "Cliënt" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "Creatieve modus" @@ -1221,6 +1244,11 @@ msgstr "Schade / PvP" msgid "Favorites" msgstr "Favorieten" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "Spel" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "Incompatibele Servers" @@ -1233,10 +1261,28 @@ msgstr "Join spel" msgid "Login" msgstr "" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Number of mods: $1" +msgstr "Aantal 'emerge' threads" + +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Open server website" +msgstr "Toegewijde serverstap" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "Ping" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Public Servers" msgstr "Publieke Servers" @@ -1323,23 +1369,6 @@ msgstr "" "\n" "Kijk in debug.txt voor details." -#: src/client/game.cpp -msgid "- Mode: " -msgstr "- Mode(creatief/overleving): " - -#: src/client/game.cpp -msgid "- Public: " -msgstr "- Openbaar: " - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "- PvP: " - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "- Server Naam: " - #: src/client/game.cpp msgid "A serialization error occurred:" msgstr "Er is een serialisatie-fout opgetreden:" @@ -1349,6 +1378,11 @@ msgstr "Er is een serialisatie-fout opgetreden:" msgid "Access denied. Reason: %s" msgstr "Toegang geweigerd. Reden: %s" +#: src/client/game.cpp +#, fuzzy +msgid "All debug info hidden" +msgstr "Debug informatie weergegeven" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "Automatisch vooruit uitgeschakeld" @@ -1369,6 +1403,10 @@ msgstr "Blokgrenzen getoond voor huidige blok" msgid "Block bounds shown for nearby blocks" msgstr "Blokgrenzen getoond voor nabije blokken" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "Camera-update uitgeschakeld" @@ -1382,10 +1420,6 @@ msgstr "Camera-update ingeschakeld" msgid "Can't show block bounds (disabled by game or mod)" msgstr "Kan blokgrenzen niet tonen (privilege 'basic_debug' is nodig)" -#: src/client/game.cpp -msgid "Change Password" -msgstr "Verander wachtwoord" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "Filmische modus uitgeschakeld" @@ -1414,39 +1448,6 @@ msgstr "Fout bij verbinden (time out?)" msgid "Connection failed for unknown reason" msgstr "Verbinding mislukt om onbekende reden" -#: src/client/game.cpp -msgid "Continue" -msgstr "Verder spelen" - -#: src/client/game.cpp -#, fuzzy -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" -"Standaardbesturing:\n" -"Geen menu getoond:\n" -"- enkele tik: activeren\n" -"- dubbele tik: plaats / gebruik\n" -"- vinger schuiven: rondkijken\n" -"Menu of inventaris getoond:\n" -"- dubbele tik buiten menu:\n" -" --> sluiten\n" -"- aanraken stapel of vak:\n" -" --> stapel verplaatsen\n" -"- aanraken & slepen, tik met tweede vinger\n" -" --> plaats enkel object in vak\n" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1460,31 +1461,15 @@ msgstr "Gebruiker aanmaken..." msgid "Creating server..." msgstr "Bezig server te maken..." -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "Debug info en profiler grafiek verborgen" - #: src/client/game.cpp msgid "Debug info shown" msgstr "Debug informatie weergegeven" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "Debug info, profiler grafiek en wireframe verborgen" - #: src/client/game.cpp #, fuzzy, c-format msgid "Error creating client: %s" msgstr "Fout bij aanmaken van client: %s" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "Terug naar menu" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "Afsluiten" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "Snelle modus uitgeschakeld" @@ -1522,18 +1507,6 @@ msgstr "Mist ingeschakeld" msgid "Fog enabled by game or mod" msgstr "Zoom momenteel uitgeschakeld door game of mod" -#: src/client/game.cpp -msgid "Game info:" -msgstr "Spel info:" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "Spel gepauzeerd" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "Server maken" - #: src/client/game.cpp msgid "Item definitions..." msgstr "Voorwerpdefinities..." @@ -1570,14 +1543,6 @@ msgstr "Noclip-modus ingeschakeld (opmerking: geen 'noclip' recht)" msgid "Node definitions..." msgstr "Node definities..." -#: src/client/game.cpp -msgid "Off" -msgstr "Uit" - -#: src/client/game.cpp -msgid "On" -msgstr "Aan" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "Pitch move-modus uitgeschakeld" @@ -1590,38 +1555,22 @@ msgstr "Pitch move-modus ingeschakeld" msgid "Profiler graph shown" msgstr "Profiler-grafiek weergegeven" -#: src/client/game.cpp -msgid "Remote server" -msgstr "Externe server" - #: src/client/game.cpp msgid "Resolving address..." msgstr "Server-adres opzoeken..." -#: src/client/game.cpp -msgid "Respawn" -msgstr "Herboren worden" - #: src/client/game.cpp msgid "Shutting down..." msgstr "Uitschakelen..." -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "Singleplayer" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "Geluidsvolume" - #: src/client/game.cpp msgid "Sound muted" msgstr "Geluid gedempt" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "Systeemgeluiden zijn uitgeschakeld" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "Geluidssysteem is niet ondersteund in deze versie" @@ -1695,18 +1644,116 @@ msgstr "Kijkbereik gewijzigd naar %d" msgid "Volume changed to %d%%" msgstr "Volume gewijzigd naar %d%%" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "Draadframe weergegeven" -#: src/client/game.cpp -msgid "You died" -msgstr "Je bent gestorven" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "Zoom momenteel uitgeschakeld door game of mod" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "- Mode(creatief/overleving): " + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "- Openbaar: " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "- PvP: " + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "- Server Naam: " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "Verander wachtwoord" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "Verder spelen" + +#: src/client/game_formspec.cpp +#, fuzzy +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" +"Standaardbesturing:\n" +"Geen menu getoond:\n" +"- enkele tik: activeren\n" +"- dubbele tik: plaats / gebruik\n" +"- vinger schuiven: rondkijken\n" +"Menu of inventaris getoond:\n" +"- dubbele tik buiten menu:\n" +" --> sluiten\n" +"- aanraken stapel of vak:\n" +" --> stapel verplaatsen\n" +"- aanraken & slepen, tik met tweede vinger\n" +" --> plaats enkel object in vak\n" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "Terug naar menu" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "Afsluiten" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "Spel info:" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "Spel gepauzeerd" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "Server maken" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "Uit" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "Aan" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "Externe server" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "Herboren worden" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "Geluidsvolume" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "Je bent gestorven" + #: src/client/gameui.cpp #, fuzzy msgid "Chat currently disabled by game or mod" @@ -2047,8 +2094,9 @@ msgid "Failed to compile the \"%s\" shader." msgstr "Openen van webpagina mislukt" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." -msgstr "" +#, fuzzy +msgid "GLSL is not supported by the driver" +msgstr "Geluidssysteem is niet ondersteund in deze versie" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" #: src/content/mod_configuration.cpp @@ -2096,7 +2144,7 @@ msgstr "Automatisch Vooruit" msgid "Automatic jumping" msgstr "Automatisch springen" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "Aux1" @@ -2108,7 +2156,7 @@ msgstr "Achteruit" msgid "Block bounds" msgstr "Blok grenzen" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "Camera veranderen" @@ -2132,7 +2180,7 @@ msgstr "Volume verminderen" msgid "Double tap \"jump\" to toggle fly" msgstr "2x \"springen\" schakelt vliegen aan/uit" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "Weggooien" @@ -2148,11 +2196,11 @@ msgstr "Afstand verhogen" msgid "Inc. volume" msgstr "Volume verhogen" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "inventaris" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "Springen" @@ -2184,7 +2232,7 @@ msgstr "Volgende item" msgid "Prev. item" msgstr "Vorig element" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "Zichtbereik" @@ -2196,7 +2244,7 @@ msgstr "Rechts" msgid "Screenshot" msgstr "Screenshot" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "Sluipen" @@ -2204,15 +2252,15 @@ msgstr "Sluipen" msgid "Toggle HUD" msgstr "Schakel HUD in/uit" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "Chatlogboek wisselen" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "Snel bewegen aan/uit" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "Vliegen aan/uit" @@ -2220,11 +2268,11 @@ msgstr "Vliegen aan/uit" msgid "Toggle fog" msgstr "Schakel mist in/uit" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "Schakel mini-kaart in/uit" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "Noclip aan/uit" @@ -2232,7 +2280,7 @@ msgstr "Noclip aan/uit" msgid "Toggle pitchmove" msgstr "Schakel pitchmove aan/uit" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "Zoomen" @@ -2269,7 +2317,7 @@ msgstr "Huidig wachtwoord" msgid "Passwords do not match!" msgstr "De wachtwoorden zijn niet gelijk!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "Terug" @@ -2282,16 +2330,47 @@ msgstr "Gedempt" msgid "Sound Volume: %d%%" msgstr "Geluidsvolume: %d%%" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Add button" +msgstr "Muiswielknop" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "Klaar!" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Remove" +msgstr "Externe server" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Joystick" msgstr "Stuurknuppel ID" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Toggle debug" msgstr "Schakel mist in/uit" @@ -2518,8 +2597,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" "3D ondersteuning.\n" "Op dit moment ondersteund:\n" @@ -2588,10 +2666,6 @@ msgstr "Bereik waarbinnen blokken actief zijn" msgid "Active object send range" msgstr "Bereik waarbinnen actieve objecten gestuurd worden" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "Voeg opvliegende deeltjes toe bij het graven." - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2624,6 +2698,17 @@ msgstr "Voeg itemnaam toe" msgid "Advanced" msgstr "Geavanceerd" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +#, fuzzy +msgid "Allow clouds to look 3D instead of flat." +msgstr "Toon 3D wolken in plaats van platte wolken." + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "" @@ -3037,15 +3122,14 @@ msgstr "Diameter van de wolken" msgid "Clouds" msgstr "Wolken" -#: src/settings_translation_file.cpp -#, fuzzy -msgid "Clouds are a client-side effect." -msgstr "Wolken bestaan enkel op de cliënt." - #: src/settings_translation_file.cpp msgid "Clouds in menu" msgstr "Wolken in het menu" +#: src/settings_translation_file.cpp +msgid "Color depth for post-processing texture" +msgstr "" + #: src/settings_translation_file.cpp msgid "Colored fog" msgstr "Gekleurde mist" @@ -3069,7 +3153,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" "Door komma's gescheiden lijst met vlaggen om te verbergen in de " "inhoudsbibliotheek. \n" @@ -3242,6 +3326,14 @@ msgstr "Debug logniveau" msgid "Debugging" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "Toegewijde serverstap" @@ -3413,19 +3505,11 @@ msgstr "" "Woestijnen treden op wanneer np_biome deze waarde overschrijdt. \n" "Als de vlag 'snowbiomes' is ingeschakeld, wordt dit genegeerd." -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "Textuur-animaties niet synchroniseren" - #: src/settings_translation_file.cpp #, fuzzy msgid "Developer Options" msgstr "Decoraties" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "Graaf deeltjes" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "Lege wachtwoorden niet toestaan" @@ -3453,6 +3537,14 @@ msgstr "2x \"springen\" om te vliegen" msgid "Double-tapping the jump key toggles fly mode." msgstr "2x \"springen\" schakelt vlieg-modus aan/uit." +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "Dump de mapgen-debug informatie." @@ -3536,9 +3628,10 @@ msgid "" msgstr "" #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" "Gekleurde schaduwen inschakelen.\n" "Indien ingeschakeld werpen doorzichtige nodes gekleurde schaduwen af. Dit is " @@ -3630,10 +3723,10 @@ msgstr "" "2.0 voor twee keer grotere loopbeweging." #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" "Schakel het uitvoeren van een IPv6-server in/uit. \n" "Wordt genegeerd als bind_address is ingesteld. \n" @@ -3656,13 +3749,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "Schakelt animatie van inventaris items aan." -#: src/settings_translation_file.cpp -#, fuzzy -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "Schakelt caching van facedir geroteerde meshes." - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -4005,10 +4091,6 @@ msgstr "GUI schaalfactor" msgid "GUI scaling filter" msgstr "GUI schalingsfilter" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "GUI schalingsfilter: txr2img" - #: src/settings_translation_file.cpp #, fuzzy msgid "Gamepads" @@ -4280,15 +4362,6 @@ msgstr "" "toets om\n" "omlaag te klimmen en af te dalen." -#: src/settings_translation_file.cpp -#, fuzzy -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" -"Schakel registerbevestiging in wanneer u verbinding maakt met de server. \n" -"Indien uitgeschakeld, wordt een nieuw account automatisch geregistreerd." - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -4315,6 +4388,16 @@ msgid "" msgstr "" "Spelers kunnen zich niet aanmelden zonder wachtwoord indien aangeschakeld." +#: src/settings_translation_file.cpp +#, fuzzy +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" +"Schakel registerbevestiging in wanneer u verbinding maakt met de server. \n" +"Indien uitgeschakeld, wordt een nieuw account automatisch geregistreerd." + #: src/settings_translation_file.cpp #, fuzzy msgid "" @@ -4442,11 +4525,6 @@ msgstr "" "Interval voor het opslaan van belangrijke veranderingen in de wereld. In " "seconden." -#: src/settings_translation_file.cpp -#, fuzzy -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "Interval voor het sturen van de kloktijd naar cliënten." - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "Inventaris items animaties" @@ -5179,10 +5257,6 @@ msgstr "" msgid "Maximum users" msgstr "Maximaal aantal gebruikers" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "Cache voor meshes" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "Bericht van de dag" @@ -5219,6 +5293,10 @@ msgstr "Minimumlimiet van willekeurig aantal grote grotten per mapchunk." msgid "Minimum limit of random number of small caves per mapchunk." msgstr "Minimale limiet van willekeurig aantal kleine grotten per mapchunk." +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "Mip-Mapping" @@ -5320,9 +5398,10 @@ msgstr "" "- De optionele zweeflanden van v7 (standaard uitgeschakeld)." #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" "Naam van de speler.\n" @@ -5870,17 +5949,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -6130,16 +6211,6 @@ msgstr "" msgid "Shader path" msgstr "Shader pad" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "Shaders" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "Kwaliteit schaduwfilter" @@ -6330,10 +6401,9 @@ msgstr "" #: src/settings_translation_file.cpp #, fuzzy msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" "Verspeid een volledige update van de schaduwmap over het opgegeven aantal " "frames.\n" @@ -6723,10 +6793,6 @@ msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "" "Tijdstip waarop een nieuwe wereld wordt gestart, in mili-uren (0-23999)." -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "Kloktijd verstuur-interval" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "Tijdsnelheid" @@ -6798,6 +6864,10 @@ msgstr "Ondoorzichtige vloeistoffen" msgid "Transparency Sorting Distance" msgstr "" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "Bomen ruis" @@ -6846,12 +6916,16 @@ msgid "Undersampling" msgstr "Rendering" #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Undersampling is similar to using a lower screen resolution, but it applies\n" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" "Onderbemonstering is gelijkaardig aan het gebruik van een lagere " "schermresolutie,\n" @@ -6880,17 +6954,15 @@ msgstr "Bovenste Y-limiet van kerkers." msgid "Upper Y limit of floatlands." msgstr "Bovenste Y-limiet van zwevende eilanden." -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "Toon 3D wolken in plaats van platte wolken." - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "Toon wolken in de achtergrond van het hoofdmenu." #: src/settings_translation_file.cpp #, fuzzy -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "Gebruik anisotropisch filteren voor texturen getoond onder een hoek." #: src/settings_translation_file.cpp @@ -7152,26 +7224,14 @@ msgstr "" "in de rugzak)." #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" -"Als gui_scaling_filter_txr2img aan staat, worden plaatjes\n" -"van de GPU naar het werkgeheugen gekopiëerd voor schalen.\n" -"Anders wordt de oude methode gebruikt, voor video-kaarten\n" -"die geen ondersteuning hebben voor het kopiëren van texturen\n" -"terug naar het werkgeheugen." - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -7193,10 +7253,6 @@ msgstr "" "Of achtergronden van naam-tags standaard getoond moeten worden.\n" "Mods kunnen alsnog een achtergrond instellen." -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "Node-animaties in wereldblokken niet synchroniseren." - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -7223,9 +7279,9 @@ msgstr "" "Maak het einde van het zichtbereik mistig, zodat het einde niet opvalt." #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -7423,12 +7479,15 @@ msgstr "Maximaal parallellisme in cURL" #~ "Indien leeg, wordt een lokale server gestart.\n" #~ "In het hoofdmenu kan een ander adres opgegeven worden." +#~ msgid "Adds particles when digging a node." +#~ msgstr "Voeg opvliegende deeltjes toe bij het graven." + #~ msgid "" #~ "Adjust dpi configuration to your screen (non X11/Android only) e.g. for " #~ "4k screens." #~ msgstr "" -#~ "Pas de dpi-configuratie aan op uw scherm (alleen niet X11 / Android), b." -#~ "v. voor 4k-schermen." +#~ "Pas de dpi-configuratie aan op uw scherm (alleen niet X11 / Android), " +#~ "b.v. voor 4k-schermen." #, fuzzy #~ msgid "" @@ -7542,6 +7601,10 @@ msgstr "Maximaal parallellisme in cURL" #~ msgid "Clean transparent textures" #~ msgstr "Schone transparante texturen" +#, fuzzy +#~ msgid "Clouds are a client-side effect." +#~ msgstr "Wolken bestaan enkel op de cliënt." + #~ msgid "Command key" #~ msgstr "Commando-toets" @@ -7637,9 +7700,15 @@ msgstr "Maximaal parallellisme in cURL" #~ msgid "Darkness sharpness" #~ msgstr "Steilheid Van de meren" +#~ msgid "Debug info and profiler graph hidden" +#~ msgstr "Debug info en profiler grafiek verborgen" + #~ msgid "Debug info toggle key" #~ msgstr "Toets voor aan/uitzetten debug informatie" +#~ msgid "Debug info, profiler graph, and wireframe hidden" +#~ msgstr "Debug info, profiler grafiek en wireframe verborgen" + #~ msgid "Dec. volume key" #~ msgstr "Volume verlagen toets" @@ -7677,9 +7746,15 @@ msgstr "Maximaal parallellisme in cURL" #~ msgid "Del. Favorite" #~ msgstr "Verwijder Favoriete" +#~ msgid "Desynchronize block animation" +#~ msgstr "Textuur-animaties niet synchroniseren" + #~ msgid "Dig key" #~ msgstr "Toets voor graven" +#~ msgid "Digging particles" +#~ msgstr "Graaf deeltjes" + #~ msgid "Disable anticheat" #~ msgstr "Valsspeelbescherming uitschakelen" @@ -7704,6 +7779,10 @@ msgstr "Maximaal parallellisme in cURL" #~ msgid "Dynamic shadows:" #~ msgstr "Dynamische schaduwen:" +#, fuzzy +#~ msgid "Enable" +#~ msgstr "Ingeschakeld" + #~ msgid "Enable VBO" #~ msgstr "VBO aanzetten" @@ -7738,6 +7817,12 @@ msgstr "Maximaal parallellisme in cURL" #~ "of ze moeten automatisch gegenereerd worden.\n" #~ "Schaduwen moeten aanstaan." +#, fuzzy +#~ msgid "" +#~ "Enables caching of facedir rotated meshes.\n" +#~ "This is only effective with shaders disabled." +#~ msgstr "Schakelt caching van facedir geroteerde meshes." + #~ msgid "Enables filmic tone mapping" #~ msgstr "Schakelt filmisch tone-mapping in" @@ -7781,9 +7866,6 @@ msgstr "Maximaal parallellisme in cURL" #~ "Experimentele optie. Kan bij een waarde groter dan 0 zichtbare\n" #~ "ruimtes tussen blokken tot gevolg hebben." -#~ msgid "FPS in pause menu" -#~ msgstr "FPS in het pauze-menu" - #~ msgid "FSAA" #~ msgstr "FSAA" @@ -7870,8 +7952,8 @@ msgstr "Maximaal parallellisme in cURL" #~ msgid "Full screen BPP" #~ msgstr "BPP bij volledig scherm" -#~ msgid "Game" -#~ msgstr "Spel" +#~ msgid "GUI scaling filter txr2img" +#~ msgstr "GUI schalingsfilter: txr2img" #, fuzzy #~ msgid "Gamma" @@ -8036,6 +8118,10 @@ msgstr "Maximaal parallellisme in cURL" #~ msgid "Instrumentation" #~ msgstr "Per soort" +#, fuzzy +#~ msgid "Interval of sending time of day to clients, stated in seconds." +#~ msgstr "Interval voor het sturen van de kloktijd naar cliënten." + #~ msgid "Invalid gamespec." #~ msgstr "Onjuiste spel-spec." @@ -8047,650 +8133,650 @@ msgstr "Maximaal parallellisme in cURL" #~ msgid "" #~ "Key for decreasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om de zichtastand te verminderen.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for decreasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om het volume te verlagen.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for digging.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets voor graven.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for dropping the currently selected item.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets voor het weggooien van het geselecteerde object.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om de zichtastand te vergroten.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om het volume te verhogen.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for jumping.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets voor springen.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving fast in fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om snel te bewegen.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player backward.\n" #~ "Will also disable autoforward, when active.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om de speler achteruit te bewegen.\n" #~ "Zal ook het automatisch voortbewegen deactiveren, indien actief.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player forward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om de speler vooruit te bewegen.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player left.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om de speler naar links te bewegen.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player right.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om de speler naar rechts te bewegen.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for muting the game.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om de game te dempen.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om het chat-window te openen om commando's te typen.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type local commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om het chat-window te openen om lokale commando's te typen.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om het chat-window te openen.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the inventory.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om het rugzak-window te openen.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for placing.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets voor plaatsen.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 11th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om de 11de positie in de hotbar te selecteren.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 12th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om de 12de positie in de hotbar te selecteren.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 13th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om de 13de positie in de hotbar te selecteren.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 14th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om de 14de positie in de hotbar te selecteren.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 15th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om de 15de positie in de hotbar te selecteren.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 16th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om de 16de positie in de hotbar te selecteren.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 17th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om de 17de positie in de hotbar te selecteren.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 18th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om de 18de positie in de hotbar te selecteren.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 19th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om de 19de positie in de hotbar te selecteren.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 20th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om de 20ste positie in de hotbar te selecteren.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 21st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om de 21ste positie in de hotbar te selecteren.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 22nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om de 22ste positie in de hotbar te selecteren.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 23rd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om de 23ste positie in de hotbar te selecteren.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 24th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om de 24ste positie in de hotbar te selecteren.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 25th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om de 25ste positie in de hotbar te selecteren.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 26th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om de 26ste positie in de hotbar te selecteren.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 27th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om de 27ste positie in de hotbar te selecteren.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 28th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om de 28ste positie in de hotbar te selecteren.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 29th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om de 29ste positie in de hotbar te selecteren.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 30th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om de 30ste positie in de hotbar te selecteren.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 31st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om de 32ste positie in de hotbar te selecteren.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 32nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om de 32ste positie in de hotbar te selecteren.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the eighth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om de 8ste positie in de hotbar te selecteren.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the fifth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om de vijfde positie in de hotbar te selecteren.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the first hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om de eerste positie in de hotbar te selecteren.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the fourth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om de vierde positie in de hotbar te selecteren.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the next item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om het volgende item in de hotbar te selecteren.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the ninth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om de negende positie in de hotbar te selecteren.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the previous item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om het vorige item in de hotbar te selecteren.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the second hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om de tweede positie in de hotbar te selecteren.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the seventh hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om de zevende positie in de hotbar te selecteren.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the sixth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om de zesde positie in de hotbar te selecteren.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the tenth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om de 10de positie in de hotbar te selecteren.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the third hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om de derde positie in de hotbar te selecteren.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for sneaking.\n" #~ "Also used for climbing down and descending in water if aux1_descends is " #~ "disabled.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om te sluipen.\n" #~ "Wordt ook gebruikt om naar beneden te klimmen en te dalen indien " #~ "aux1_descends uitstaat.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for switching between first- and third-person camera.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om tussen 1e-persoon camera en 3e-persoon camera te schakelen.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for taking screenshots.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om screenshots te maken.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling autoforward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om automatisch lopen aan/uit te schakelen.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling cinematic mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om cinematic modus aan/uit te schakelen.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling display of minimap.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om de mini-kaart aan/uit te schakelen.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om snelle modus aan/uit te schakelen.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling flying.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om vliegen aan/uit te schakelen.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling noclip mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om 'noclip' modus aan/uit te schakelen.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling pitch move mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om 'pitch move' modus aan/uit te schakelen.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the camera update. Only used for development\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om camera-verversing aan/uit te schakelen. Enkel gebruikt voor " #~ "ontwikkeling.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of chat.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om het tonen van chatberichten aan/uit te schakelen.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of debug info.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om debug informatie aan/uit te schakelen.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of fog.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om mist aan/uit te schakelen.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the HUD.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om de HUD aan/uit te schakelen.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the large chat console.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om het tonen van de grote chat weergave aan/uit te schakelen.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the profiler. Used for development.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om het tonen van de code-profiler aan/uit te schakelen. Gebruikt " #~ "voor ontwikkeling.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling unlimited view range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om oneindige zichtastand aan/uit te schakelen.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key to use view zoom when possible.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Toets om in te zoemen wanneer mogelijk.\n" -#~ "Zie http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zie http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Keybindings. (If this menu screws up, remove stuff from minetest.conf)" @@ -8755,6 +8841,9 @@ msgstr "Maximaal parallellisme in cURL" #~ msgid "Menus" #~ msgstr "Menu's" +#~ msgid "Mesh cache" +#~ msgstr "Cache voor meshes" + #~ msgid "Minimap" #~ msgstr "Mini-kaart" @@ -8959,6 +9048,9 @@ msgstr "Maximaal parallellisme in cURL" #~ msgid "Server / Singleplayer" #~ msgstr "Server / Singleplayer" +#~ msgid "Shaders" +#~ msgstr "Shaders" + #~ msgid "Shaders (experimental)" #~ msgstr "Shaders (experimenteel)" @@ -8975,6 +9067,10 @@ msgstr "Maximaal parallellisme in cURL" #~ "videokaarten de prestaties verbeteren.\n" #~ "Alleen mogelijk met OpenGL." +#, fuzzy +#~ msgid "Shaders are disabled." +#~ msgstr "Camera-update uitgeschakeld" + #~ msgid "Shadow limit" #~ msgstr "Schaduw limiet" @@ -9007,6 +9103,9 @@ msgstr "Maximaal parallellisme in cURL" #~ msgid "Smooths rotation of camera. 0 to disable." #~ msgstr "Maakt camera-rotatie vloeiender. O om uit te zetten." +#~ msgid "Sound system is disabled" +#~ msgstr "Systeemgeluiden zijn uitgeschakeld" + #~ msgid "Special" #~ msgstr "Speciaal" @@ -9047,6 +9146,9 @@ msgstr "Maximaal parallellisme in cURL" #~ msgid "This font will be used for certain languages." #~ msgstr "Dit font wordt gebruikt voor bepaalde talen." +#~ msgid "Time send interval" +#~ msgstr "Kloktijd verstuur-interval" + #~ msgid "To enable shaders the OpenGL driver needs to be used." #~ msgstr "Om schaduwen mogelijk te maken moet OpenGL worden gebruikt." @@ -9152,6 +9254,18 @@ msgstr "Maximaal parallellisme in cURL" #~ msgid "Waving water" #~ msgstr "Golvend water" +#~ msgid "" +#~ "When gui_scaling_filter_txr2img is true, copy those images\n" +#~ "from hardware to software for scaling. When false, fall back\n" +#~ "to the old scaling method, for video drivers that don't\n" +#~ "properly support downloading textures back from hardware." +#~ msgstr "" +#~ "Als gui_scaling_filter_txr2img aan staat, worden plaatjes\n" +#~ "van de GPU naar het werkgeheugen gekopiëerd voor schalen.\n" +#~ "Anders wordt de oude methode gebruikt, voor video-kaarten\n" +#~ "die geen ondersteuning hebben voor het kopiëren van texturen\n" +#~ "terug naar het werkgeheugen." + #~ msgid "" #~ "Whether FreeType fonts are used, requires FreeType support to be compiled " #~ "in.\n" @@ -9162,6 +9276,10 @@ msgstr "Maximaal parallellisme in cURL" #~ "Indien uitgeschakeld, zullen bitmap en XML verctor lettertypes gebruikt " #~ "worden." +#~ msgid "" +#~ "Whether node texture animations should be desynchronized per mapblock." +#~ msgstr "Node-animaties in wereldblokken niet synchroniseren." + #~ msgid "Whether to allow players to damage and kill each other." #~ msgstr "Maak het mogelijk dat spelers elkaar kunnen verwonden en doden." diff --git a/po/nn/luanti.po b/po/nn/luanti.po index aa6b3851a..eef5a7558 100644 --- a/po/nn/luanti.po +++ b/po/nn/luanti.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Norwegian Nynorsk (Minetest)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" "PO-Revision-Date: 2024-02-27 22:01+0000\n" "Last-Translator: jhh \n" "Language-Team: Norwegian Nynorsk ] [-t]" msgstr "[all [ ]" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "Bla gjennom" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "Rediger" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "Vel mappe" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "Vel fil" + +#: builtin/common/settings/components.lua +#, fuzzy +msgid "Set" +msgstr "Velj" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(Ikkje nokon skildring gjeven)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "2D-støy" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "Avbryt" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "Lacunaritet" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "Oktaver" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "Forskyvning" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "Brigdingsmotstand" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "Lagre" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "Skala" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "Frø" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "x spreiing" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "y spreiing" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "Z spreiing" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "Absolutt verdi" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "standardar" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "letta" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "Chat" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "Rydd til side" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "Styring" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "Deaktivert" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "Aktivert" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "Ingen resultat" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Reset setting to default" +msgstr "Sett opphavsverdien att" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "Søk" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "Vis tekniske namn" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Touchscreen layout" +msgstr "Touchskjerm" + +#: builtin/common/settings/dlg_settings.lua +msgid "pause_menu" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Client Mods" +msgstr "Klienttillegg" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "Innhald: Spel" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "Innhald: Speltillegg" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "Dynamiske skuggar" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "Høg" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "Låg" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "Medium" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "Særs høg" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "Svært låg" + #: builtin/fstk/ui.lua msgid "" msgstr "" @@ -165,7 +406,6 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "Attende" @@ -203,11 +443,6 @@ msgstr "Mods" msgid "No packages could be retrieved" msgstr "Ingen pakkar kunne verte henta" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "Ingen resultat" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "Ingen oppdateringar" @@ -253,18 +488,6 @@ msgstr "Allereie installert" msgid "Base Game:" msgstr "Basisspel:" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "Avbryt" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -396,6 +619,12 @@ msgstr "Kan ikkje leggja til eit tillegg som $1" msgid "Unable to install a $1 as a texture pack" msgstr "Kan ikkje leggja til $1 som ein tekstursamling" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "(Slege på, har mistak)" @@ -460,12 +689,6 @@ msgstr "Ingen valfrie avhengigheiter" msgid "Optional dependencies:" msgstr "Valfrie avhengigheiter:" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "Lagre" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "Verd:" @@ -616,11 +839,6 @@ msgstr "Elver" msgid "Sea level rivers" msgstr "Elver på havnivå" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "Frø" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "Jamn biotopskifting" @@ -761,6 +979,23 @@ msgstr "" "Denne modifikasjons-pakka har eit eksplisitt namn i sin modpakke.conf som " "vill overstyre all omdøping her." +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "Aktiver alt" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "Ein ny $1 versjon er tilgjengeleg" @@ -789,7 +1024,7 @@ msgstr "Aldri" msgid "Visit website" msgstr "Vitja nettstad" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "Innstillingar" @@ -803,227 +1038,6 @@ msgstr "" "Freist å slå på igjen den offentlege tenarlista, og sjekk Internett-" "tilkoplinga di." -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "Bla gjennom" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "Rediger" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "Vel mappe" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "Vel fil" - -#: builtin/mainmenu/settings/components.lua -#, fuzzy -msgid "Set" -msgstr "Velj" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(Ikkje nokon skildring gjeven)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "2D-støy" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "Lacunaritet" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "Oktaver" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "Forskyvning" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "Brigdingsmotstand" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "Skala" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "x spreiing" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "y spreiing" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "Z spreiing" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "Absolutt verdi" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "standardar" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "letta" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "Chat" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "Rydd til side" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "Styring" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "Deaktivert" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "Aktivert" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Reset setting to default" -msgstr "Sett opphavsverdien att" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "Søk" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "Vis tekniske namn" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "Klienttillegg" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "Innhald: Spel" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "Innhald: Speltillegg" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "Aktivert" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Shaders are disabled." -msgstr "Kamera oppdatering er deaktivert" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "Dynamiske skuggar" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "Høg" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "Låg" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "Medium" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "Særs høg" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "Svært låg" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "Om" @@ -1044,10 +1058,6 @@ msgstr "Kjerne-utviklarar" msgid "Core Team" msgstr "Kjerneteam" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "Opna brukardatamappa" @@ -1195,10 +1205,22 @@ msgstr "Start spel" msgid "You need to install a game before you can create a world." msgstr "" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "Slett Favoritt" + #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "Adresse" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "Klient" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "Kreativ stode" @@ -1212,6 +1234,11 @@ msgstr "Skade / PvP" msgid "Favorites" msgstr "Favorittar" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "Spel" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "Inkompatible tenarar" @@ -1224,10 +1251,26 @@ msgstr "Bli med i spel" msgid "Login" msgstr "Innlogging" +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +msgid "Open server website" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "Ping" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Public Servers" msgstr "Offentlege tenarar" @@ -1313,23 +1356,6 @@ msgstr "" "\n" "Sjekk problemsøkjar.txt for detaljar." -#: src/client/game.cpp -msgid "- Mode: " -msgstr "- modus: " - -#: src/client/game.cpp -msgid "- Public: " -msgstr "- Offentleg: " - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "- Spelar mot spelar (PvP): " - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "- Tenarnamn: " - #: src/client/game.cpp msgid "A serialization error occurred:" msgstr "Ein serialiseringsfeil har oppstått:" @@ -1339,6 +1365,11 @@ msgstr "Ein serialiseringsfeil har oppstått:" msgid "Access denied. Reason: %s" msgstr "" +#: src/client/game.cpp +#, fuzzy +msgid "All debug info hidden" +msgstr "Problemsøkjaren visar sin informasjon" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "Automatiske framsteg er avtatt" @@ -1359,6 +1390,10 @@ msgstr "" msgid "Block bounds shown for nearby blocks" msgstr "" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "Kamera oppdatering er deaktivert" @@ -1372,10 +1407,6 @@ msgstr "Kamera oppdatering er aktivert" msgid "Can't show block bounds (disabled by game or mod)" msgstr "Zoom er for tiden deaktivert tå spelet eller ein modifikasjon" -#: src/client/game.cpp -msgid "Change Password" -msgstr "Endre lykelord" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "Filmatisk modus er avtatt" @@ -1404,39 +1435,6 @@ msgstr "Tilkoplingsfeil (Tidsavbrot?)" msgid "Connection failed for unknown reason" msgstr "Tilkoplinga feila av ein ukjent grunn" -#: src/client/game.cpp -msgid "Continue" -msgstr "Fortset" - -#: src/client/game.cpp -#, fuzzy -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" -"Utgangspunkts Kontroller:\n" -"Ikkje nokon meny synleg:\n" -"- einskild berøring: knapp aktiveres\n" -"- dobbel berøring: plassér/bruk\n" -"- stryk finger: sjå rundt\n" -"Meny/Synleg innhald:\n" -"- dobbel berøring (ute):\n" -" -->lukk\n" -"- berør stokk, berør slott:\n" -" --> flytt stokk\n" -"- berør&dra, berør med den andre finger'n\n" -" --> plassér enkelt-gjenstand til slott\n" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1450,31 +1448,15 @@ msgstr "Skapar klient..." msgid "Creating server..." msgstr "Skapar tenarmaskin..." -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "Problemsøkjar informasjon og profilerings graf er gøymt" - #: src/client/game.cpp msgid "Debug info shown" msgstr "Problemsøkjaren visar sin informasjon" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "Problemsøkjaren, profilerings grafen, og jern-tråd-rammen er gøymt" - #: src/client/game.cpp #, c-format msgid "Error creating client: %s" msgstr "Kunne ikkje skapa klient: %s" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "Gå ut til meny" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "Gå ut til data'n" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "Ekspressmodus er avtatt" @@ -1512,18 +1494,6 @@ msgstr "Tåke er aktivert" msgid "Fog enabled by game or mod" msgstr "Zoom er for tiden deaktivert tå spelet eller ein modifikasjon" -#: src/client/game.cpp -msgid "Game info:" -msgstr "Spel info:" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "Spelet er i avbrot, og er ståande til du kjem tilbake" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "Er i gang med vertskap tå tenarmaskin" - #: src/client/game.cpp msgid "Item definitions..." msgstr "Definerér gjennstander..." @@ -1561,14 +1531,6 @@ msgstr "" msgid "Node definitions..." msgstr "Definerér noder..." -#: src/client/game.cpp -msgid "Off" -msgstr "Av" - -#: src/client/game.cpp -msgid "On" -msgstr "På" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "Tone bevegingsmodus e avtatt" @@ -1581,38 +1543,22 @@ msgstr "Tone bevegingsmodus er i gang" msgid "Profiler graph shown" msgstr "Profilerings graf er vist" -#: src/client/game.cpp -msgid "Remote server" -msgstr "Fjern-tenarmaskin" - #: src/client/game.cpp msgid "Resolving address..." msgstr "Slår opp addressa..." -#: src/client/game.cpp -msgid "Respawn" -msgstr "Kom opp att" - #: src/client/game.cpp msgid "Shutting down..." msgstr "Slår av..." -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "Enkeltspelar oppleving" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "Lydvolum" - #: src/client/game.cpp msgid "Sound muted" msgstr "Lyd e dempa" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "Lydsystemet er slått av" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "Lydsystemet er ikkje støtta på denne builden" @@ -1686,18 +1632,116 @@ msgstr "Utsiktsrekkjevidd er forandra til %d" msgid "Volume changed to %d%%" msgstr "Volum e forandra til %d%%" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "Jern-tråd-ramma er vist" -#: src/client/game.cpp -msgid "You died" -msgstr "Du døydde" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "Zoom er for tiden deaktivert tå spelet eller ein modifikasjon" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "- modus: " + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "- Offentleg: " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "- Spelar mot spelar (PvP): " + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "- Tenarnamn: " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "Endre lykelord" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "Fortset" + +#: src/client/game_formspec.cpp +#, fuzzy +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" +"Utgangspunkts Kontroller:\n" +"Ikkje nokon meny synleg:\n" +"- einskild berøring: knapp aktiveres\n" +"- dobbel berøring: plassér/bruk\n" +"- stryk finger: sjå rundt\n" +"Meny/Synleg innhald:\n" +"- dobbel berøring (ute):\n" +" -->lukk\n" +"- berør stokk, berør slott:\n" +" --> flytt stokk\n" +"- berør&dra, berør med den andre finger'n\n" +" --> plassér enkelt-gjenstand til slott\n" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "Gå ut til meny" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "Gå ut til data'n" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "Spel info:" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "Spelet er i avbrot, og er ståande til du kjem tilbake" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "Er i gang med vertskap tå tenarmaskin" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "Av" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "På" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "Fjern-tenarmaskin" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "Kom opp att" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "Lydvolum" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "Du døydde" + #: src/client/gameui.cpp #, fuzzy msgid "Chat currently disabled by game or mod" @@ -2038,8 +2082,9 @@ msgid "Failed to compile the \"%s\" shader." msgstr "Klarte ikkje å opne nettside" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." -msgstr "" +#, fuzzy +msgid "GLSL is not supported by the driver" +msgstr "Lydsystemet er ikkje støtta på denne builden" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" #: src/content/mod_configuration.cpp @@ -2087,7 +2132,7 @@ msgstr "Automatiske framsteg" msgid "Automatic jumping" msgstr "Automatiske hopp" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "" @@ -2099,7 +2144,7 @@ msgstr "Bakover" msgid "Block bounds" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "Byt kamera" @@ -2123,7 +2168,7 @@ msgstr "Senk volum" msgid "Double tap \"jump\" to toggle fly" msgstr "Dobbel berør \"hopp\" for å ha på flyve løyve" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "Slipp" @@ -2139,11 +2184,11 @@ msgstr "Øk rekkevidde" msgid "Inc. volume" msgstr "Øk volum" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "Inventar" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "Hopp" @@ -2175,7 +2220,7 @@ msgstr "Neste gjenstand" msgid "Prev. item" msgstr "Forrige gjenstand" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "Velj rekkevidde" @@ -2187,7 +2232,7 @@ msgstr "Høgre" msgid "Screenshot" msgstr "Skjermbilde" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "Sniking" @@ -2195,15 +2240,15 @@ msgstr "Sniking" msgid "Toggle HUD" msgstr "Slå av/på HUD" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "Slå chatloggen av eller på" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "Slå på/av ekspress modus" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "Slåpå/av flyve løyving" @@ -2211,11 +2256,11 @@ msgstr "Slåpå/av flyve løyving" msgid "Toggle fog" msgstr "Slå av/på tåke" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "Slå på/av minikart" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "Slå på/av ikkjeklipp" @@ -2223,7 +2268,7 @@ msgstr "Slå på/av ikkjeklipp" msgid "Toggle pitchmove" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "Zoom" @@ -2260,7 +2305,7 @@ msgstr "Gammalt passord" msgid "Passwords do not match!" msgstr "Passorda passar ikkje!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "Avslutt" @@ -2273,15 +2318,46 @@ msgstr "Målbindt" msgid "Sound Volume: %d%%" msgstr "Lydstyrke: %d%%" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Add button" +msgstr "Mellom knappen" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "Ferdig!" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Remove" +msgstr "Fjern-tenarmaskin" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp msgid "Joystick" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Toggle debug" msgstr "Slå av/på tåke" @@ -2484,8 +2560,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" #: src/settings_translation_file.cpp @@ -2539,10 +2614,6 @@ msgstr "" msgid "Active object send range" msgstr "" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "" - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2568,6 +2639,16 @@ msgstr "Verdsnamn" msgid "Advanced" msgstr "Avansert" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Allow clouds to look 3D instead of flat." +msgstr "" + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "" @@ -2941,15 +3022,14 @@ msgstr "Skyradius" msgid "Clouds" msgstr "Skyer" -#: src/settings_translation_file.cpp -#, fuzzy -msgid "Clouds are a client-side effect." -msgstr "Skyer er ei effekt på klientsida." - #: src/settings_translation_file.cpp msgid "Clouds in menu" msgstr "Skyer i meny" +#: src/settings_translation_file.cpp +msgid "Color depth for post-processing texture" +msgstr "" + #: src/settings_translation_file.cpp msgid "Colored fog" msgstr "Farga tåke" @@ -2972,7 +3052,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" #: src/settings_translation_file.cpp @@ -3110,6 +3190,14 @@ msgstr "" msgid "Debugging" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "" @@ -3262,19 +3350,11 @@ msgid "" "When the 'snowbiomes' flag is enabled, this is ignored." msgstr "" -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Developer Options" msgstr "Dekorasjonar" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "" @@ -3302,6 +3382,14 @@ msgstr "" msgid "Double-tapping the jump key toggles fly mode." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "" @@ -3380,8 +3468,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" #: src/settings_translation_file.cpp @@ -3454,8 +3542,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" #: src/settings_translation_file.cpp @@ -3470,12 +3557,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "" - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -3780,10 +3861,6 @@ msgstr "" msgid "GUI scaling filter" msgstr "" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Gamepads" @@ -4009,12 +4086,6 @@ msgid "" "descending." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -4033,6 +4104,13 @@ msgid "" "empty password." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4127,10 +4205,6 @@ msgstr "" msgid "Interval of saving important changes in the world, stated in seconds." msgstr "" -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "" - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "" @@ -4750,10 +4824,6 @@ msgstr "" msgid "Maximum users" msgstr "" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "" @@ -4786,6 +4856,10 @@ msgstr "" msgid "Minimum limit of random number of small caves per mapchunk." msgstr "" +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "" @@ -4876,7 +4950,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" @@ -5323,17 +5397,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5534,16 +5610,6 @@ msgstr "" msgid "Shader path" msgstr "" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "Skuggeleggjarar" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "" @@ -5708,10 +5774,9 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" #: src/settings_translation_file.cpp @@ -5991,10 +6056,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "" -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "" @@ -6057,6 +6118,10 @@ msgstr "Raslende lauv" msgid "Transparency Sorting Distance" msgstr "" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "" @@ -6107,7 +6172,10 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" #: src/settings_translation_file.cpp @@ -6130,16 +6198,14 @@ msgstr "" msgid "Upper Y limit of floatlands." msgstr "" -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "" - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "" #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" #: src/settings_translation_file.cpp @@ -6383,20 +6449,12 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -6407,10 +6465,6 @@ msgid "" "Mods may still set a background." msgstr "" -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -6433,8 +6487,7 @@ msgstr "Om ein skal tåkelegge enden av det synlege området." #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -6593,8 +6646,8 @@ msgstr "" #~ "Adjust dpi configuration to your screen (non X11/Android only) e.g. for " #~ "4k screens." #~ msgstr "" -#~ "Juster dpi-konfigurasjonen for din skjem (kun system utan X11/Android), f." -#~ "eks. for 4K-skjermar." +#~ "Juster dpi-konfigurasjonen for din skjem (kun system utan X11/Android), " +#~ "f.eks. for 4K-skjermar." #~ msgid "All Settings" #~ msgstr "Alle innstillingar" @@ -6643,6 +6696,10 @@ msgstr "" #~ msgid "Chat toggle key" #~ msgstr "Knapp for å slå chatten av/på" +#, fuzzy +#~ msgid "Clouds are a client-side effect." +#~ msgstr "Skyer er ei effekt på klientsida." + #~ msgid "Command key" #~ msgstr "Kommandoknapp" @@ -6708,9 +6765,15 @@ msgstr "" #~ msgid "Damage enabled" #~ msgstr "Skade aktivert" +#~ msgid "Debug info and profiler graph hidden" +#~ msgstr "Problemsøkjar informasjon og profilerings graf er gøymt" + #~ msgid "Debug info toggle key" #~ msgstr "Knapp for å slå debuggingsinformasjon av/på" +#~ msgid "Debug info, profiler graph, and wireframe hidden" +#~ msgstr "Problemsøkjaren, profilerings grafen, og jern-tråd-rammen er gøymt" + #~ msgid "Default game" #~ msgstr "Standard spel" @@ -6739,15 +6802,16 @@ msgstr "" #~ msgid "Dynamic shadows:" #~ msgstr "Sjølvrørande skuggar:" +#, fuzzy +#~ msgid "Enable" +#~ msgstr "Aktivert" + #~ msgid "Enter " #~ msgstr "Gå " #~ msgid "Fancy Leaves" #~ msgstr "Fancy blader" -#~ msgid "Game" -#~ msgstr "Spel" - #~ msgid "Generate Normal Maps" #~ msgstr "Generér normale kart" @@ -6767,8 +6831,8 @@ msgstr "" #~ msgid "" #~ "Keybindings. (If this menu screws up, remove stuff from minetest.conf)" #~ msgstr "" -#~ "Knappebindinger. (Om denne menyen går galen, ta bort tinga fra \"minetest." -#~ "conf\")" +#~ "Knappebindinger. (Om denne menyen går galen, ta bort tinga fra " +#~ "\"minetest.conf\")" #~ msgid "Main" #~ msgstr "Hovud" @@ -6846,6 +6910,9 @@ msgstr "" #~ msgid "Select Package File:" #~ msgstr "Velje eit pakke dokument:" +#~ msgid "Shaders" +#~ msgstr "Skuggeleggjarar" + #, fuzzy #~ msgid "Shaders (experimental)" #~ msgstr "Skuggeleggjarar ()" @@ -6853,9 +6920,16 @@ msgstr "" #~ msgid "Shaders (unavailable)" #~ msgstr "Skuggeleggjarar (ikkje tilgjengelege)" +#, fuzzy +#~ msgid "Shaders are disabled." +#~ msgstr "Kamera oppdatering er deaktivert" + #~ msgid "Simple Leaves" #~ msgstr "Enkle blader" +#~ msgid "Sound system is disabled" +#~ msgstr "Lydsystemet er slått av" + #~ msgid "Special" #~ msgstr "Spesial" diff --git a/po/oc/luanti.po b/po/oc/luanti.po index 5d77fda70..bd3868085 100644 --- a/po/oc/luanti.po +++ b/po/oc/luanti.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: minetest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" "PO-Revision-Date: 2023-12-03 17:17+0000\n" "Last-Translator: Krock \n" "Language-Team: Occitan ] [-t]" msgstr "[all | ]" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "Navegar" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "Modifiar" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "Seleccionar un repertòre" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "Seleccionar un fichèir" + +#: builtin/common/settings/components.lua +msgid "Set" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(Pas de descripcion o de paramètre bailat)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "Brut 2D" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "Annular" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "Lacunaritada" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "Octavas" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "Descalatge" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "Persisténcia" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "Sauvar" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "Eschala" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "Grana" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "Escart X" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "Escart Y" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "Escart Z" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "valor absoluda" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "defaut" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "polit" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "Espotir" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "Desactivat" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "Activat" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "Pas de resultats" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Reset setting to default" +msgstr "Tornar per defaut" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "Charchar" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "Mostrar los noms tecnics" + +#: builtin/common/settings/dlg_settings.lua +msgid "Touchscreen layout" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "pause_menu" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Client Mods" +msgstr "Mòds dau Client" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "Contengut: Juòcs" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "Contengut: Mòds" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "Ombras dinamicas" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "Nautas" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "Bassas" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "Meitantas" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "Franc Nautas" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "Franc Bassas" + #: builtin/fstk/ui.lua msgid "" msgstr "" @@ -166,7 +405,6 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "" @@ -203,11 +441,6 @@ msgstr "Mòds" msgid "No packages could be retrieved" msgstr "Pas gis de paquets poguèron èsser quèrre" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "Pas de resultats" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "Pas de mesas a jorn" @@ -253,18 +486,6 @@ msgstr "Dejá installat" msgid "Base Game:" msgstr "Juòc de Basa:" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "Annular" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -393,6 +614,12 @@ msgstr "Se pòt pas installar un $1 coma un $2" msgid "Unable to install a $1 as a texture pack" msgstr "Se pòt pas installar $1 coma un pack de texturas" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "(Activat, a una error)" @@ -457,12 +684,6 @@ msgstr "Pas de dependéncias optionalas" msgid "Optional dependencies:" msgstr "Dependéncias optionalas:" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "Sauvar" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "Monde:" @@ -614,11 +835,6 @@ msgstr "Ribèiras" msgid "Sea level rivers" msgstr "Ribèiras au nivèl de la mar" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "Grana" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "Transicion doça entre los biòms" @@ -759,6 +975,23 @@ msgstr "" "Aqueste mòdpack ten un nom explicita balhat dins son modpack.conf que vai " "remplaçar tota tornada de nom aquí." +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "Tot activar" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "Una novèla version $1 es disponible" @@ -787,7 +1020,7 @@ msgstr "Pas Jamai" msgid "Visit website" msgstr "Visitar lo site" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "Paramètres" @@ -801,226 +1034,6 @@ msgstr "" "Essatjatz de tornar activar la lista de servidors e verifiatz vòstra " "connexion d'internet." -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "Navegar" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "Modifiar" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "Seleccionar un repertòre" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "Seleccionar un fichèir" - -#: builtin/mainmenu/settings/components.lua -msgid "Set" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(Pas de descripcion o de paramètre bailat)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "Brut 2D" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "Lacunaritada" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "Octavas" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "Descalatge" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "Persisténcia" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "Eschala" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "Escart X" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "Escart Y" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "Escart Z" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "valor absoluda" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "defaut" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "polit" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "Espotir" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "Desactivat" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "Activat" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Reset setting to default" -msgstr "Tornar per defaut" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "Charchar" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "Mostrar los noms tecnics" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "Mòds dau Client" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "Contengut: Juòcs" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "Contengut: Mòds" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "Activat" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Shaders are disabled." -msgstr "Actualizacion de camèra desactivada" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "Ombras dinamicas" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "Nautas" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "Bassas" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "Meitantas" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "Franc Nautas" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "Franc Bassas" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "A prepaus" @@ -1041,10 +1054,6 @@ msgstr "Developaires Principaus" msgid "Core Team" msgstr "Còla Principala" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "Dobrir lo Repertòre de Donadas d'Utilizaire" @@ -1194,10 +1203,22 @@ msgstr "Començar le Juòc" msgid "You need to install a game before you can create a world." msgstr "" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "Espotir lo Favorit" + #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "Adreça" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "Mòds dau Client" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "Mòde Creatiu" @@ -1211,6 +1232,11 @@ msgstr "Daumatge / JcJ" msgid "Favorites" msgstr "Favorits" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "Juòcs" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "Servidors pas compatibles" @@ -1223,10 +1249,26 @@ msgstr "Jonhar lo Juòc" msgid "Login" msgstr "Coneccion" +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +msgid "Open server website" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "Ping" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Public Servers" msgstr "Servidors Publics" @@ -1311,23 +1353,6 @@ msgstr "" "\n" "Espiar debug.txt per los detalhs." -#: src/client/game.cpp -msgid "- Mode: " -msgstr "- Mòda: " - -#: src/client/game.cpp -msgid "- Public: " -msgstr "- Public: " - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "- JcJ: " - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "- Nom dau Servidor: " - #: src/client/game.cpp msgid "A serialization error occurred:" msgstr "Una error de serializacion aparessèt:" @@ -1337,6 +1362,11 @@ msgstr "Una error de serializacion aparessèt:" msgid "Access denied. Reason: %s" msgstr "Accès refusat. Rason: %s" +#: src/client/game.cpp +#, fuzzy +msgid "All debug info hidden" +msgstr "Liams daus Blòcs escònduts" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "Marcha automatica desactivada" @@ -1357,6 +1387,10 @@ msgstr "Liams daus blòcs mostrats per aqueste blòc" msgid "Block bounds shown for nearby blocks" msgstr "Liams daus blòcs mostrats per los blòcs vesins" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "Actualizacion de camèra desactivada" @@ -1371,10 +1405,6 @@ msgid "Can't show block bounds (disabled by game or mod)" msgstr "" "Se pòt pas mostrar los liams de blòcs (desactivat per un mòd o un juòc)" -#: src/client/game.cpp -msgid "Change Password" -msgstr "Chanjar de Senhau" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "Mòda cinematic desactivat" @@ -1403,26 +1433,6 @@ msgstr "Error de connecion (perduda?)" msgid "Connection failed for unknown reason" msgstr "Connexion pas capitada per una rason pas coneguda" -#: src/client/game.cpp -msgid "Continue" -msgstr "Contunhar" - -#: src/client/game.cpp -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1436,31 +1446,15 @@ msgstr "Creacion dau client..." msgid "Creating server..." msgstr "Creacion dau servidor..." -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "" - #: src/client/game.cpp msgid "Debug info shown" msgstr "" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "" - #: src/client/game.cpp #, c-format msgid "Error creating client: %s" msgstr "" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "" @@ -1499,18 +1493,6 @@ msgid "Fog enabled by game or mod" msgstr "" "Se pòt pas mostrar los liams de blòcs (desactivat per un mòd o un juòc)" -#: src/client/game.cpp -msgid "Game info:" -msgstr "" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "" - #: src/client/game.cpp msgid "Item definitions..." msgstr "" @@ -1547,14 +1529,6 @@ msgstr "" msgid "Node definitions..." msgstr "" -#: src/client/game.cpp -msgid "Off" -msgstr "" - -#: src/client/game.cpp -msgid "On" -msgstr "" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "" @@ -1567,38 +1541,22 @@ msgstr "" msgid "Profiler graph shown" msgstr "" -#: src/client/game.cpp -msgid "Remote server" -msgstr "" - #: src/client/game.cpp msgid "Resolving address..." msgstr "" -#: src/client/game.cpp -msgid "Respawn" -msgstr "Tornar" - #: src/client/game.cpp msgid "Shutting down..." msgstr "" -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "" - #: src/client/game.cpp msgid "Sound muted" msgstr "" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "" @@ -1670,18 +1628,103 @@ msgstr "" msgid "Volume changed to %d%%" msgstr "" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "" -#: src/client/game.cpp -msgid "You died" -msgstr "Setz mòrt·a" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "- Mòda: " + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "- Public: " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "- JcJ: " + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "- Nom dau Servidor: " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "Chanjar de Senhau" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "Contunhar" + +#: src/client/game_formspec.cpp +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "Tornar" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "Setz mòrt·a" + #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" msgstr "" @@ -2011,7 +2054,7 @@ msgid "Failed to compile the \"%s\" shader." msgstr "" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." +msgid "GLSL is not supported by the driver" msgstr "" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" @@ -2060,7 +2103,7 @@ msgstr "" msgid "Automatic jumping" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "" @@ -2072,7 +2115,7 @@ msgstr "" msgid "Block bounds" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "" @@ -2096,7 +2139,7 @@ msgstr "" msgid "Double tap \"jump\" to toggle fly" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "" @@ -2112,11 +2155,11 @@ msgstr "" msgid "Inc. volume" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "" @@ -2148,7 +2191,7 @@ msgstr "" msgid "Prev. item" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "" @@ -2160,7 +2203,7 @@ msgstr "" msgid "Screenshot" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "" @@ -2168,15 +2211,15 @@ msgstr "" msgid "Toggle HUD" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "" @@ -2184,11 +2227,11 @@ msgstr "" msgid "Toggle fog" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "" @@ -2196,7 +2239,7 @@ msgstr "" msgid "Toggle pitchmove" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "" @@ -2232,7 +2275,7 @@ msgstr "" msgid "Passwords do not match!" msgstr "" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "" @@ -2245,15 +2288,44 @@ msgstr "" msgid "Sound Volume: %d%%" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +msgid "Add button" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "Achabat!" + +#: src/gui/touchscreeneditor.cpp +msgid "Remove" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp msgid "Joystick" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Toggle debug" msgstr "" @@ -2451,8 +2523,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" #: src/settings_translation_file.cpp @@ -2505,10 +2576,6 @@ msgstr "" msgid "Active object send range" msgstr "" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "" - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2531,6 +2598,16 @@ msgstr "" msgid "Advanced" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Allow clouds to look 3D instead of flat." +msgstr "" + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "" @@ -2903,11 +2980,11 @@ msgid "Clouds" msgstr "" #: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." +msgid "Clouds in menu" msgstr "" #: src/settings_translation_file.cpp -msgid "Clouds in menu" +msgid "Color depth for post-processing texture" msgstr "" #: src/settings_translation_file.cpp @@ -2932,7 +3009,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" #: src/settings_translation_file.cpp @@ -3067,6 +3144,14 @@ msgstr "" msgid "Debugging" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "" @@ -3218,18 +3303,10 @@ msgid "" "When the 'snowbiomes' flag is enabled, this is ignored." msgstr "" -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "" - #: src/settings_translation_file.cpp msgid "Developer Options" msgstr "" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "" @@ -3257,6 +3334,14 @@ msgstr "" msgid "Double-tapping the jump key toggles fly mode." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "" @@ -3332,8 +3417,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" #: src/settings_translation_file.cpp @@ -3406,8 +3491,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" #: src/settings_translation_file.cpp @@ -3422,12 +3506,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "" - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -3729,10 +3807,6 @@ msgstr "" msgid "GUI scaling filter" msgstr "" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "" - #: src/settings_translation_file.cpp msgid "Gamepads" msgstr "" @@ -3956,12 +4030,6 @@ msgid "" "descending." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -3980,6 +4048,13 @@ msgid "" "empty password." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4074,10 +4149,6 @@ msgstr "" msgid "Interval of saving important changes in the world, stated in seconds." msgstr "" -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "" - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "" @@ -4693,10 +4764,6 @@ msgstr "" msgid "Maximum users" msgstr "" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "" @@ -4729,6 +4796,10 @@ msgstr "" msgid "Minimum limit of random number of small caves per mapchunk." msgstr "" +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "" @@ -4819,7 +4890,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" @@ -5259,17 +5330,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5462,16 +5535,6 @@ msgstr "" msgid "Shader path" msgstr "" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "Shaders" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "" @@ -5634,10 +5697,9 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" #: src/settings_translation_file.cpp @@ -5916,10 +5978,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "" -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "" @@ -5978,6 +6036,10 @@ msgstr "" msgid "Transparency Sorting Distance" msgstr "" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "" @@ -6028,7 +6090,10 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" #: src/settings_translation_file.cpp @@ -6051,16 +6116,14 @@ msgstr "" msgid "Upper Y limit of floatlands." msgstr "" -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "" - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "" #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" #: src/settings_translation_file.cpp @@ -6298,20 +6361,12 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -6322,10 +6377,6 @@ msgid "" "Mods may still set a background." msgstr "" -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -6348,8 +6399,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -6548,6 +6598,10 @@ msgstr "" #~ msgid "Dynamic shadows:" #~ msgstr "Ombras dinamicas:" +#, fuzzy +#~ msgid "Enable" +#~ msgstr "Activat" + #~ msgid "Fancy Leaves" #~ msgstr "Fuelhas Gentas" @@ -6594,12 +6648,19 @@ msgstr "" #~ msgid "Screen:" #~ msgstr "Ecran:" +#~ msgid "Shaders" +#~ msgstr "Shaders" + #~ msgid "Shaders (experimental)" #~ msgstr "Shaders (experimentau)" #~ msgid "Shaders (unavailable)" #~ msgstr "Shaders (pas disponibles)" +#, fuzzy +#~ msgid "Shaders are disabled." +#~ msgstr "Actualizacion de camèra desactivada" + #~ msgid "Simple Leaves" #~ msgstr "Fuelhas Simplas" diff --git a/po/pl/luanti.po b/po/pl/luanti.po index 9d82392cf..a659c3e0c 100644 --- a/po/pl/luanti.po +++ b/po/pl/luanti.po @@ -2,9 +2,9 @@ msgid "" msgstr "" "Project-Id-Version: Polish (Minetest)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" -"PO-Revision-Date: 2024-09-05 22:09+0000\n" -"Last-Translator: nauta-turbidus \n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" +"PO-Revision-Date: 2025-01-27 22:03+0000\n" +"Last-Translator: Mateusz Mendel \n" "Language-Team: Polish \n" "Language: pl\n" @@ -13,7 +13,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" -"X-Generator: Weblate 5.8-dev\n" +"X-Generator: Weblate 5.10-dev\n" #: builtin/client/chatcommands.lua msgid "Clear the out chat queue" @@ -78,6 +78,246 @@ msgstr "" msgid "[all | ] [-t]" msgstr "[wszystko | ] [-t]" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "Przeglądaj" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "Edytuj" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "Wybierz katalog" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "Wybierz plik" + +#: builtin/common/settings/components.lua +msgid "Set" +msgstr "Ustaw" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(Brak opisu ustawienia)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "Szum 2d" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "Anuluj" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "Lakunarność" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "Oktawy" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "Margines" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "Trwałość" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "Zapisz" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "Skaluj" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "Ziarno losowości" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "Rozrzut X" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "Rozrzut Y" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "Rozrzut Z" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "wartość bezwzględna" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "domyślne" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "wygładzony" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "(Gra również musi obsługiwać automatyczną regulację ekspozycji)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "(Gra również musi obsługiwać efekt bloom)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "(Gra również musi obsługiwać światło wolumetryczne)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "(Użyj języka systemowego)" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "Dostępność" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "Automatyczny" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "Czat" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "Delete" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "Sterowanie" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "Wyłączone" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "Włączone" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "Ogólne" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "Poruszanie się" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "Brak wyników" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default" +msgstr "Przywróć wartość domyślną" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "Przywróć wartość domyślną ($1)" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "Wyszukaj" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "Pokaż ustawienia zaawansowane" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "Pokaż nazwy techniczne" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Touchscreen layout" +msgstr "Ekran dotykowy" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "pause_menu" +msgstr "FPS podczas pauzy w menu" + +#: builtin/common/settings/settingtypes.lua +msgid "Client Mods" +msgstr "Mody klienta" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "Zawartość: Gry" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "Zawartość: Mody" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "(Gra również musi obsługiwać cienie)" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "Niestandardowe" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "Cienie dynamiczne" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "Wysokie" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "Niskie" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "Średnie" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "Bardzo wysokie" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "Bardzo niskie" + #: builtin/fstk/ui.lua msgid "" msgstr "" @@ -159,27 +399,28 @@ msgid "$1 downloading..." msgstr "Pobieranie $1..." #: builtin/mainmenu/content/dlg_contentdb.lua +#, fuzzy msgid "All" -msgstr "" +msgstr "Wszystko" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "Backspace" #: builtin/mainmenu/content/dlg_contentdb.lua #, fuzzy msgid "ContentDB is not available when Luanti was compiled without cURL" -msgstr "ContentDB nie jest dostępne gdy Minetest był zbudowany bez cURL" +msgstr "ContentDB nie jest dostępny gdy Luanti był skompilowany bez cURL" #: builtin/mainmenu/content/dlg_contentdb.lua msgid "Downloading..." msgstr "Pobieranie..." #: builtin/mainmenu/content/dlg_contentdb.lua +#, fuzzy msgid "Featured" -msgstr "" +msgstr "Wyróżnione" #: builtin/mainmenu/content/dlg_contentdb.lua msgid "Games" @@ -201,11 +442,6 @@ msgstr "Modyfikacje" msgid "No packages could be retrieved" msgstr "Nie można pobrać pakietów" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "Brak wyników" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "Brak aktualizacji" @@ -215,9 +451,8 @@ msgid "Queued" msgstr "W kolejce" #: builtin/mainmenu/content/dlg_contentdb.lua -#, fuzzy msgid "Texture Packs" -msgstr "Paczki zasobów" +msgstr "Paczki tekstur" #: builtin/mainmenu/content/dlg_contentdb.lua msgid "The package $1 was not found." @@ -251,18 +486,6 @@ msgstr "Już zainstalowany" msgid "Base Game:" msgstr "Gra podstawowa:" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "Anuluj" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -271,7 +494,7 @@ msgstr "Zależności:" #: builtin/mainmenu/content/dlg_install.lua #, fuzzy msgid "Error getting dependencies for package $1" -msgstr "Błąd przy pobieraniu zależności dla pakietu" +msgstr "Błąd przy pobieraniu zależności dla pakietu $1" #: builtin/mainmenu/content/dlg_install.lua msgid "Install" @@ -306,44 +529,40 @@ msgid "Overwrite" msgstr "Nadpisz" #: builtin/mainmenu/content/dlg_package.lua -#, fuzzy msgid "ContentDB page" msgstr "Adres URL ContentDB" #: builtin/mainmenu/content/dlg_package.lua -#, fuzzy msgid "Description" msgstr "Opis serwera" #: builtin/mainmenu/content/dlg_package.lua msgid "Donate" -msgstr "" +msgstr "Przekaż darowiznę" #: builtin/mainmenu/content/dlg_package.lua msgid "Forum Topic" -msgstr "" +msgstr "Temat forum" #: builtin/mainmenu/content/dlg_package.lua -#, fuzzy msgid "Information" -msgstr "Informacja:" +msgstr "Informacja" #: builtin/mainmenu/content/dlg_package.lua -#, fuzzy msgid "Install [$1]" msgstr "Zainstaluj $1" #: builtin/mainmenu/content/dlg_package.lua msgid "Issue Tracker" -msgstr "" +msgstr "Lista błędów" #: builtin/mainmenu/content/dlg_package.lua msgid "Source" -msgstr "" +msgstr "Kod źródłowy" #: builtin/mainmenu/content/dlg_package.lua msgid "Translate" -msgstr "" +msgstr "Przetłumacz" #: builtin/mainmenu/content/dlg_package.lua builtin/mainmenu/tab_content.lua msgid "Uninstall" @@ -354,13 +573,13 @@ msgid "Update" msgstr "Aktualizuj" #: builtin/mainmenu/content/dlg_package.lua -#, fuzzy msgid "Website" -msgstr "Odwiedź stronę" +msgstr "Strona internetowa" #: builtin/mainmenu/content/dlg_package.lua +#, fuzzy msgid "by $1 — $2 downloads — +$3 / $4 / -$5" -msgstr "" +msgstr "Przez $1 — $2 pobrań — +$3 / $4 / -$5" #: builtin/mainmenu/content/pkgmgr.lua msgid "$1 (Enabled)" @@ -390,6 +609,12 @@ msgstr "Nie można zainstalować $1 jako $2" msgid "Unable to install a $1 as a texture pack" msgstr "Nie można zainstalować $1 jako paczki tekstur" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "(Włączone, zawiera błąd)" @@ -454,12 +679,6 @@ msgstr "Brak dodatkowych zależności" msgid "Optional dependencies:" msgstr "Dodatkowe zależności:" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "Zapisz" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "Świat:" @@ -614,11 +833,6 @@ msgstr "Rzeki" msgid "Sea level rivers" msgstr "Rzeki na poziomie morza" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "Ziarno losowości" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "Płynne przejście między biomami" @@ -723,14 +937,13 @@ msgid "Dismiss" msgstr "Odrzuć" #: builtin/mainmenu/dlg_reinstall_mtg.lua -#, fuzzy msgid "" "For a long time, Luanti shipped with a default game called \"Minetest " "Game\". Since version 5.8.0, Luanti ships without a default game." msgstr "" -"Przez dłuższy czas, razem z silnikiem Minetest dostarczana była domyślna gra " -"o nazwie \"Minetest Game\". Od wersji 5.8.0, Minetest jest rozpowszechniany " -"bez domyślnej gry." +"Przez dłuższy czas, razem z silnikiem Luanti dostarczana była domyślna gra o " +"nazwie \"Minetest Game\". Od wersji 5.8.0, Luanti jest rozpowszechniany bez " +"domyślnej gry." #: builtin/mainmenu/dlg_reinstall_mtg.lua msgid "" @@ -764,6 +977,23 @@ msgstr "" "Ten mod ma sprecyzowaną nazwę nadaną w pliku konfiguracyjnym modpack.conf, " "która nadpisze każdą zmienioną tutaj nazwę." +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "Włącz wszystkie" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "Nowa wersja $1 jest dostępna" @@ -792,7 +1022,7 @@ msgstr "Nigdy" msgid "Visit website" msgstr "Odwiedź stronę" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "Ustawienia" @@ -806,228 +1036,6 @@ msgstr "" "Spróbuj ponownie włączyć publiczną listę serwerów i sprawdź swoje połączenie " "z siecią Internet." -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "Przeglądaj" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "Edytuj" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "Wybierz katalog" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "Wybierz plik" - -#: builtin/mainmenu/settings/components.lua -msgid "Set" -msgstr "Ustaw" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(Brak opisu ustawienia)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "Szum 2d" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "Lakunarność" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "Oktawy" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "Margines" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "Trwałość" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "Skaluj" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "Rozrzut X" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "Rozrzut Y" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "Rozrzut Z" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "wartość bezwzględna" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "domyślne" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "wygładzony" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable automatic exposure as well)" -msgstr "(Gra również musi obsługiwać cienie)" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable bloom as well)" -msgstr "(Gra również musi obsługiwać cienie)" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "(Gra również musi obsługiwać cienie)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "(Użyj języka systemowego)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "Dostępność" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "Czat" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "Delete" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "Sterowanie" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "Wyłączone" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "Włączone" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "Ogólne" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "Poruszanie się" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default" -msgstr "Przywróć wartość domyślną" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "Przywróć wartość domyślną ($1)" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "Wyszukaj" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "Pokaż ustawienia zaawansowane" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "Pokaż nazwy techniczne" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "Mody klienta" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "Zawartość: Gry" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "Zawartość: Mody" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "Włączone" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Shaders are disabled." -msgstr "Aktualizowanie kamery wyłączone" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "(Gra również musi obsługiwać cienie)" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "Niestandardowe" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "Cienie dynamiczne" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "Wysokie" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "Niskie" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "Średnie" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "Bardzo wysokie" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "Bardzo niskie" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "O" @@ -1048,10 +1056,6 @@ msgstr "Główni twórcy" msgid "Core Team" msgstr "Główny zespół" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "Urządzenie Irrlicht:" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "Otwórz katalog danych użytkownika" @@ -1154,17 +1158,15 @@ msgid "Install games from ContentDB" msgstr "Instaluj gry z ContentDB" #: builtin/mainmenu/tab_local.lua -#, fuzzy msgid "Luanti doesn't come with a game by default." -msgstr "Minetest nie ma domyślnie zainstalowanej gry." +msgstr "Luanti nie ma domyślnie zainstalowanej gry." #: builtin/mainmenu/tab_local.lua -#, fuzzy msgid "" "Luanti is a game-creation platform that allows you to play many different " "games." msgstr "" -"Minetest to platforma tworzenia gier, która pozwala Ci grać w wiele różnych " +"Luanti to platforma tworzenia gier, która pozwala Ci grać w wiele różnych " "gier." #: builtin/mainmenu/tab_local.lua @@ -1203,10 +1205,22 @@ msgstr "Rozpocznij grę" msgid "You need to install a game before you can create a world." msgstr "Musisz zainstalować grę, zanim będziesz mógł stworzyć świat." +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "Usuń z ulubionych" + #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "Adres" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "Klient" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "Tryb kreatywny" @@ -1220,6 +1234,11 @@ msgstr "Obrażenia / PvP" msgid "Favorites" msgstr "Ulubione" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "Gra" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "Niekompatybilne serwery" @@ -1232,10 +1251,28 @@ msgstr "Dołącz do gry" msgid "Login" msgstr "Zaloguj się" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Number of mods: $1" +msgstr "Liczba powstających wątków" + +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Open server website" +msgstr "Krok serwera dedykowanego" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "Ping" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Public Servers" msgstr "Publiczne serwery" @@ -1320,23 +1357,6 @@ msgstr "" "\n" "Sprawdź plik debug.txt by uzyskać więcej informacji." -#: src/client/game.cpp -msgid "- Mode: " -msgstr "- Tryb: " - -#: src/client/game.cpp -msgid "- Public: " -msgstr "- Publiczne: " - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "Gracz przeciwko graczowi: " - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "- Nazwa serwera: " - #: src/client/game.cpp msgid "A serialization error occurred:" msgstr "Wystąpił błąd serializacji:" @@ -1346,6 +1366,11 @@ msgstr "Wystąpił błąd serializacji:" msgid "Access denied. Reason: %s" msgstr "Odmowa dostępu. Powód: %s" +#: src/client/game.cpp +#, fuzzy +msgid "All debug info hidden" +msgstr "Informacje debugu widoczne" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "Automatyczne chodzenie do przodu wyłączone" @@ -1366,6 +1391,10 @@ msgstr "Granice bloku wyświetlane dla bieżącego bloku" msgid "Block bounds shown for nearby blocks" msgstr "Granice bloków pokazane dla pobliskich bloków" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "Aktualizowanie kamery wyłączone" @@ -1378,10 +1407,6 @@ msgstr "Aktualizowanie kamery włączone" msgid "Can't show block bounds (disabled by game or mod)" msgstr "Nie można wyświetlić granic bloków (wyłączone przez grę lub mod)" -#: src/client/game.cpp -msgid "Change Password" -msgstr "Zmień hasło" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "Tryb kinowy wyłączony" @@ -1410,38 +1435,6 @@ msgstr "Błąd połączenia (brak odpowiedzi?)" msgid "Connection failed for unknown reason" msgstr "Połączenie nie powiodło się z nieznanego powodu" -#: src/client/game.cpp -msgid "Continue" -msgstr "Kontynuuj" - -#: src/client/game.cpp -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" -"Domyślne sterowanie:\n" -"Brak widocznego menu:\n" -"- przejechanie palcem: rozglądanie się\n" -"- dotknięcie: postaw/uderz/użyj (domyślnie)\n" -"- długie dotknięcie: kop/użyj (domyślnie)\n" -"Menu/Ekwipunek widoczny:\n" -"- potwójne dotknięcie poza menu:\n" -" -->zamknij\n" -"- dotknięcie stosu, dotknięcie miejsca:\n" -" --> przenieś stos\n" -"- dotknięcie i przeciągnięcie, dotknięcie drugim palcem\n" -" --> umieść pojedynczy przedmiot w miejscu\n" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1455,31 +1448,15 @@ msgstr "Tworzenie klienta..." msgid "Creating server..." msgstr "Tworzenie serwera...." -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "Informacje debugu oraz wykresy są ukryte" - #: src/client/game.cpp msgid "Debug info shown" msgstr "Informacje debugu widoczne" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "Informacje debugu, wykresy oraz tryb siatki są ukryte" - #: src/client/game.cpp #, c-format msgid "Error creating client: %s" msgstr "Błąd tworzenia klienta: %s" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "Wyjście do menu" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "Wyjście z gry" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "Tryb szybki wyłączony" @@ -1516,18 +1493,6 @@ msgstr "Mgła włączona" msgid "Fog enabled by game or mod" msgstr "Mgła włączona przez grę lub mod" -#: src/client/game.cpp -msgid "Game info:" -msgstr "Informacje o grze:" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "Gra wstrzymana" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "Tworzenie serwera" - #: src/client/game.cpp msgid "Item definitions..." msgstr "Definicje przedmiotów..." @@ -1564,14 +1529,6 @@ msgstr "Tryb noclip włączony (uwaga: nie masz uprawnień \"noclip\")" msgid "Node definitions..." msgstr "Definicje bloków..." -#: src/client/game.cpp -msgid "Off" -msgstr "Wyłącz" - -#: src/client/game.cpp -msgid "On" -msgstr "Włącz" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "Tryb nachylenia ruchu wyłączony" @@ -1584,38 +1541,22 @@ msgstr "Tryb nachylenia ruchu włączony" msgid "Profiler graph shown" msgstr "Wykresy profilera widoczne" -#: src/client/game.cpp -msgid "Remote server" -msgstr "Serwer zdalny" - #: src/client/game.cpp msgid "Resolving address..." msgstr "Sprawdzanie adresu..." -#: src/client/game.cpp -msgid "Respawn" -msgstr "Wróć do gry" - #: src/client/game.cpp msgid "Shutting down..." msgstr "Wyłączanie..." -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "Pojedynczy gracz" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "Głośność" - #: src/client/game.cpp msgid "Sound muted" msgstr "Głośność wyciszona" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "System dźwiękowy jest wyłączony" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "System dźwiękowy nie jest obsługiwany w tej kompilacji" @@ -1693,18 +1634,116 @@ msgstr "Zmieniono zasięg widoczności na %d, ale gra lub mod ogranicza go do %d msgid "Volume changed to %d%%" msgstr "Zmieniono poziom głośności na %d%%" +#: src/client/game.cpp +#, fuzzy +msgid "Wireframe not supported by video driver" +msgstr "Shadery są włączone, ale GLSL nie jest wspierany przez sterownik." + #: src/client/game.cpp msgid "Wireframe shown" msgstr "Siatka widoczna" -#: src/client/game.cpp -msgid "You died" -msgstr "Nie żyjesz" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "Powiększenie jest obecnie wyłączone przez grę lub mod" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "- Tryb: " + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "- Publiczne: " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "Gracz przeciwko graczowi: " + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "- Nazwa serwera: " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "Zmień hasło" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "Kontynuuj" + +#: src/client/game_formspec.cpp +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" +"Domyślne sterowanie:\n" +"Brak widocznego menu:\n" +"- przejechanie palcem: rozglądanie się\n" +"- dotknięcie: postaw/uderz/użyj (domyślnie)\n" +"- długie dotknięcie: kop/użyj (domyślnie)\n" +"Menu/Ekwipunek widoczny:\n" +"- potwójne dotknięcie poza menu:\n" +" -->zamknij\n" +"- dotknięcie stosu, dotknięcie miejsca:\n" +" --> przenieś stos\n" +"- dotknięcie i przeciągnięcie, dotknięcie drugim palcem\n" +" --> umieść pojedynczy przedmiot w miejscu\n" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "Wyjście do menu" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "Wyjście z gry" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "Informacje o grze:" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "Gra wstrzymana" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "Tworzenie serwera" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "Wyłącz" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "Włącz" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "Serwer zdalny" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "Wróć do gry" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "Głośność" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "Nie żyjesz" + #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" msgstr "Czat jest obecnie wyłączony przez grę lub mod" @@ -2028,10 +2067,11 @@ msgstr "Minimapa w trybie teksturowym" #: src/client/shader.cpp #, c-format msgid "Failed to compile the \"%s\" shader." -msgstr "Nie udało się skompilować shadera \"%s\"" +msgstr "Nie udało się skompilować shadera \"%s\"." #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." +#, fuzzy +msgid "GLSL is not supported by the driver" msgstr "Shadery są włączone, ale GLSL nie jest wspierany przez sterownik." #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" @@ -2083,7 +2123,7 @@ msgstr "Automatyczne chodzenie do przodu" msgid "Automatic jumping" msgstr "Automatyczne skoki" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "Aux1" @@ -2095,7 +2135,7 @@ msgstr "Tył" msgid "Block bounds" msgstr "Granice bloków" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "Zmień kamerę" @@ -2119,7 +2159,7 @@ msgstr "Zmniejsz głośność" msgid "Double tap \"jump\" to toggle fly" msgstr "Wciśnij dwukrotnie \"Skok\" by włączyć tryb latania" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "Upuść" @@ -2135,11 +2175,11 @@ msgstr "Zwiększ pole widzenia" msgid "Inc. volume" msgstr "Zwiększ głośność" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "Ekwipunek" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "Skok" @@ -2171,7 +2211,7 @@ msgstr "Następny przedmiot" msgid "Prev. item" msgstr "Poprzedni przedmiot" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "Zasięg widzenia" @@ -2183,7 +2223,7 @@ msgstr "Prawo" msgid "Screenshot" msgstr "Zrzut ekranu" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "Skradanie" @@ -2191,15 +2231,15 @@ msgstr "Skradanie" msgid "Toggle HUD" msgstr "Przełącz HUD" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "Przełącz historię czatu" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "Przełącz tryb szybki" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "Przełącz tryb latania" @@ -2207,11 +2247,11 @@ msgstr "Przełącz tryb latania" msgid "Toggle fog" msgstr "Przełącz mgłę" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "Przełącz minimapę" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "Przełącz tryb noclip" @@ -2219,7 +2259,7 @@ msgstr "Przełącz tryb noclip" msgid "Toggle pitchmove" msgstr "Przełączanie przemieszczania" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "Zoom" @@ -2255,7 +2295,7 @@ msgstr "Stare hasło" msgid "Passwords do not match!" msgstr "Hasła nie są jednakowe!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "Wyjście" @@ -2268,38 +2308,73 @@ msgstr "Wyciszony" msgid "Sound Volume: %d%%" msgstr "Głośność: %d%%" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Add button" +msgstr "Środkowy przycisk myszy" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "Gotowe!" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Remove" +msgstr "Serwer zdalny" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Joystick" msgstr "Identyfikator Joystick-a" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp -#, fuzzy +#: src/gui/touchscreenlayout.cpp msgid "Toggle debug" -msgstr "Przełącz mgłę" +msgstr "Przełącz debugowanie" #: src/network/clientpackethandler.cpp +#, fuzzy msgid "" "Another client is connected with this name. If your client closed " "unexpectedly, try again in a minute." msgstr "" - -#: src/network/clientpackethandler.cpp -msgid "Empty passwords are disallowed. Set a password and try again." -msgstr "" - -#: src/network/clientpackethandler.cpp -msgid "Internal server error" -msgstr "" +"Inny klient jest połączony z taką nazwą. Jeśli Twój klient zamknął się w " +"wyniku niespodziewanego błędu, spróbuj jeszcze raz za minutę." #: src/network/clientpackethandler.cpp #, fuzzy +msgid "Empty passwords are disallowed. Set a password and try again." +msgstr "" +"Puste pola z hasłami są niedozwolone. Ustaw hasło i spróbuj jeszcze raz." + +#: src/network/clientpackethandler.cpp +#, fuzzy +msgid "Internal server error" +msgstr "Błąd serwera wewnętrznego" + +#: src/network/clientpackethandler.cpp msgid "Invalid password" -msgstr "Stare hasło" +msgstr "Nieprawidłowe hasło" #. ~ DO NOT TRANSLATE THIS LITERALLY! #. This is a special string which needs to contain the translation's @@ -2321,47 +2396,57 @@ msgid "Name is taken. Please choose another name" msgstr "Nazwa jest zajęta. Wybierz inną nazwę" #: src/network/clientpackethandler.cpp +#, fuzzy msgid "Player name contains disallowed characters" -msgstr "" +msgstr "Nazwa gracza zawiera niedozwolone znaki" #: src/network/clientpackethandler.cpp -#, fuzzy msgid "Player name not allowed" -msgstr "Nazwa gracza jest za długa." +msgstr "Nazwa gracza niedozwolona" #: src/network/clientpackethandler.cpp -#, fuzzy msgid "Server shutting down" msgstr "Wyłączanie..." #: src/network/clientpackethandler.cpp +#, fuzzy msgid "" "The server has experienced an internal error. You will now be disconnected." -msgstr "" +msgstr "Serwer napotkał błąd wewnętrzny. Zostaniesz teraz rozłączony." #: src/network/clientpackethandler.cpp +#, fuzzy msgid "The server is running in singleplayer mode. You cannot connect." msgstr "" +"Serwer działa w trybie dla pojedynczego gracza. Nie możesz się połączyć." #: src/network/clientpackethandler.cpp +#, fuzzy msgid "Too many users" -msgstr "" +msgstr "Zbyt wielu użytkowników" #: src/network/clientpackethandler.cpp +#, fuzzy msgid "Unknown disconnect reason." -msgstr "" +msgstr "Nieznana przyczyna rozłączenia użytkownika." #: src/network/clientpackethandler.cpp +#, fuzzy msgid "" "Your client sent something the server didn't expect. Try reconnecting or " "updating your client." msgstr "" +"Twój klient wysłał serwerowi coś, czego ten się nie spodziewał. Spróbuj " +"połączyć się ponownie lub zaktualizować klienta." #: src/network/clientpackethandler.cpp +#, fuzzy msgid "" "Your client's version is not supported.\n" "Please contact the server administrator." msgstr "" +"Wersja Twojego klienta nie jest wspierana.\n" +"Skontaktuj się z administratorem serwera." #: src/server.cpp #, c-format @@ -2494,6 +2579,7 @@ msgid "3D noise that determines number of dungeons per mapchunk." msgstr "Szum 3D, który wpływa na liczbę lochów na jeden mapchunk." #: src/settings_translation_file.cpp +#, fuzzy msgid "" "3D support.\n" "Currently supported:\n" @@ -2502,8 +2588,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" "Wsparcie 3D\n" "Aktualnie wspierane:\n" @@ -2571,10 +2656,6 @@ msgstr "Zasięg aktywnego bloku" msgid "Active object send range" msgstr "Zasięg wysyłania aktywnego obiektu" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "Dodaje efekty cząstkowe podczas wykopywania bloków." - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2604,6 +2685,17 @@ msgstr "Nazwa administratora" msgid "Advanced" msgstr "Zaawansowane" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +#, fuzzy +msgid "Allow clouds to look 3D instead of flat." +msgstr "Włącz chmury 3D zamiast płaskich." + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "Pozwala na przejrzyste płyny." @@ -2655,12 +2747,14 @@ msgid "Antialiasing method" msgstr "Metoda antyaliasingu" #: src/settings_translation_file.cpp +#, fuzzy msgid "Anticheat flags" -msgstr "" +msgstr "Flagi anticheata" #: src/settings_translation_file.cpp +#, fuzzy msgid "Anticheat movement tolerance" -msgstr "" +msgstr "Tolerancja ruchu anticheata" #: src/settings_translation_file.cpp msgid "Append item name" @@ -2693,8 +2787,9 @@ msgstr "" "liczb zmiennoprzecinkowych i może mieć większy wpływ na wydajność." #: src/settings_translation_file.cpp +#, fuzzy msgid "Apply specular shading to nodes." -msgstr "" +msgstr "Zastosuj cieniowanie lustrzane do bloków." #: src/settings_translation_file.cpp msgid "Arm inertia" @@ -2815,7 +2910,7 @@ msgstr "Szum biomu" #: src/settings_translation_file.cpp #, fuzzy msgid "Block bounds HUD radius" -msgstr "Granice bloków" +msgstr "Zasięg granic bloków HUD" #: src/settings_translation_file.cpp msgid "Block cull optimize distance" @@ -3005,14 +3100,14 @@ msgstr "Zasięg chmur" msgid "Clouds" msgstr "Chmury 3D" -#: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." -msgstr "Chmury są efektem po stronie klienta." - #: src/settings_translation_file.cpp msgid "Clouds in menu" msgstr "Chmury w menu" +#: src/settings_translation_file.cpp +msgid "Color depth for post-processing texture" +msgstr "" + #: src/settings_translation_file.cpp msgid "Colored fog" msgstr "Kolorowa mgła" @@ -3039,15 +3134,15 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" "Lista oddzielonych przecinkami flag do ukrycia w repozytorium treści.\n" "„niewolne” może służyć do ukrywania pakietów, które nie kwalifikują się jako " "„wolne oprogramowanie”,\n" "zgodnie z definicją Free Software Foundation.\n" "Możesz także określić oceny treści.\n" -"Te flagi są niezależne od wersji Minetest,\n" -"więc zobacz pełną listę na https://content.minetest.net/help/content_flags/" +"Te flagi są niezależne od wersji Luanti,\n" +"zobacz więc pełną listę na https://content.minetest.net/help/content_flags/" #: src/settings_translation_file.cpp msgid "" @@ -3207,6 +3302,14 @@ msgstr "Poziom logowania debugowania" msgid "Debugging" msgstr "Debugowanie" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "Krok serwera dedykowanego" @@ -3251,7 +3354,6 @@ msgstr "" "ale także zużywa więcej zasobów." #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Define the oldest clients allowed to connect.\n" "Older clients are compatible in the sense that they will not crash when " @@ -3267,10 +3369,10 @@ msgstr "" "Starsze klienty mogą być kompatybilne w tym sensie, że nie będą się " "zawieszać,\n" "kiedy łączą się z nowym serwerem, ale mogą nie wspierać wszystkich nowych " -"funkcjonalności., których się spodziewasz.\n" +"funkcjonalności, których się spodziewasz.\n" "To pozwala na bardziej szczegółowe rozróżnianie niż " "strict_protocol_version_checking.\n" -"Minetest i tak wymusza swoje własne, wewnętrzne minimum, a włączenie\n" +"Luanti i tak wymusza swoje własne, wewnętrzne minimum, a włączenie\n" "strict_protocol_version_checking efektywnie nadpisze skutki tego ustawienia." #: src/settings_translation_file.cpp @@ -3385,18 +3487,10 @@ msgstr "" "Pustynie pojawią się gdy np_biome przekroczy tą wartość.\n" "Kiedy flaga 'snowbiomes' jest włączona, ta wartość jest ignorowana." -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "Odsynchronizuj animację bloków" - #: src/settings_translation_file.cpp msgid "Developer Options" msgstr "Opcje deweloperskie" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "Włącz efekty cząsteczkowe" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "Nie zezwalaj na puste hasła" @@ -3412,9 +3506,10 @@ msgid "" "Use this to limit the performance impact of transparency depth sorting.\n" "Set to 0 to disable it entirely." msgstr "" -"Odległość w blokach, przy której sortowanie przezroczystości jest włączone\n" +"Odległość w blokach, przy której sortowanie przezroczystości jest włączone.\n" "Użyj tego ustawienia, aby zmniejszyć spadek wydajności związany z " -"sortowaniem przezroczystości" +"sortowaniem przezroczystości.\n" +"Ustaw wartość na 0, aby wyłączyć je całkowicie." #: src/settings_translation_file.cpp msgid "Domain name of server, to be displayed in the serverlist." @@ -3428,6 +3523,14 @@ msgstr "Wciśnij dwukrotnie \"Skok\" by włączyć tryb latania" msgid "Double-tapping the jump key toggles fly mode." msgstr "Wciśnij dwukrotnie \"Skok\" by włączyć tryb latania." +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "Zrzuć informacje debugowania generatora mapy." @@ -3445,7 +3548,6 @@ msgid "Dungeon noise" msgstr "Szum generowania lochów" #: src/settings_translation_file.cpp -#, fuzzy msgid "Effects" msgstr "Efekty graficzne" @@ -3497,7 +3599,7 @@ msgstr "Włącz Post Processing" #: src/settings_translation_file.cpp msgid "Enable Raytraced Culling" -msgstr "Włącz culling oparty o śledzenie promieni" +msgstr "Włącz pomijanie przysłoniętych bloków oparte o śledzenie promieni" #: src/settings_translation_file.cpp msgid "" @@ -3512,9 +3614,10 @@ msgstr "" "oka ludzkiego." #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" "Włącza kolorowe cienie. \n" "Jeśli aktywne, półprzezroczyste bloki rzucają kolorowe cienie. To zużywa " @@ -3553,11 +3656,8 @@ msgid "Enable random user input (only used for testing)." msgstr "Włącz losowe wejście użytkownika (tylko dla testowania)." #: src/settings_translation_file.cpp -#, fuzzy msgid "Enable smooth lighting with simple ambient occlusion." -msgstr "" -"Włącz gładkie oświetlenie z prostym efektem ambient occlusion.\n" -"Wyłącz dla szybkości lub wyglądu." +msgstr "Włącz gładkie oświetlenie z prostym efektem ambient occlusion." #: src/settings_translation_file.cpp msgid "Enable split login/register" @@ -3578,8 +3678,9 @@ msgstr "" "spodziewanych funkcjonalności." #: src/settings_translation_file.cpp +#, fuzzy msgid "Enable updates available indicator on content tab" -msgstr "" +msgstr "Włącz wskaźnik dostępnych aktualizacji w oknie zawartości" #: src/settings_translation_file.cpp msgid "" @@ -3602,10 +3703,10 @@ msgstr "" "Dla przykładu: 0 dla braku drgań; 1.0 dla normalnych; 2.0 dla podwójnych." #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" "Włącza/wyłącza uruchamianie serwera IPv6.\n" "Ignorowane jeśli ustawiony jest bind_address.\n" @@ -3628,13 +3729,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "Włącz animację inwentarza przedmiotów." -#: src/settings_translation_file.cpp -#, fuzzy -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "Włącza cachowanie facedir obracanych meshów." - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "Włącza debug i sprawdzanie błędów w sterowniku OpenGL." @@ -3642,19 +3736,25 @@ msgstr "Włącza debug i sprawdzanie błędów w sterowniku OpenGL." #: src/settings_translation_file.cpp #, fuzzy msgid "Enables smooth scrolling." -msgstr "Włącz Post Processing" +msgstr "Włącza płynne przewijanie." #: src/settings_translation_file.cpp msgid "Enables the post processing pipeline." msgstr "Włącza potok post-processimgu." #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Enables the touchscreen controls, allowing you to play the game with a " "touchscreen.\n" "\"auto\" means that the touchscreen controls will be enabled and disabled\n" "automatically depending on the last used input method." msgstr "" +"Włącza sterowanie ekranu dotykowego, co pozwala Ci na granie w grę na " +"ekranie dotykowym.\n" +"„auto” oznacza, że sterowanie ekranu dotykowego zostanie włączone lub " +"wyłączone\n" +"automatycznie w zależności od ostatnio użytych danych wejściowych." #: src/settings_translation_file.cpp msgid "" @@ -3983,10 +4083,6 @@ msgstr "Skalowanie GUI" msgid "GUI scaling filter" msgstr "Filtr skalowania GUI" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "Filtr skalowania GUI txr2img" - #: src/settings_translation_file.cpp msgid "Gamepads" msgstr "Kontrolery" @@ -4232,11 +4328,15 @@ msgstr "" "włączony." #: src/settings_translation_file.cpp +#, fuzzy msgid "" "If enabled and you have ContentDB packages installed, Luanti may contact " "ContentDB to\n" "check for package updates when opening the mainmenu." msgstr "" +"Jeśli jest włączone i posiadasz zainstalowane paczki ContentDB, to Luanti " +"skontaktuje się z ContentDB, aby\n" +"sprawdzić aktualizacje paczek podczas otwierania menu głównego." #: src/settings_translation_file.cpp msgid "" @@ -4248,14 +4348,6 @@ msgstr "" "opadania\n" "zamiast klawisza \"skradania\"." -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" -"Po włączeniu, rejestracja konta zostanie oddzielona od logowania w UI.\n" -"Po wyłączeniu, nowe konta będą rejestrowane automatycznie przy logowaniu." - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -4281,6 +4373,16 @@ msgstr "" "Po włączeniu, gracze nie mogą dołączyć do gry z pustym hasłem ani zmienić " "swojego hasła na puste." +#: src/settings_translation_file.cpp +#, fuzzy +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" +"Po włączeniu, rejestracja konta zostanie oddzielona od logowania w UI.\n" +"Po wyłączeniu, nowe konta będą rejestrowane automatycznie przy logowaniu." + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4380,7 +4482,7 @@ msgid "" "(anything you pass to a core.register_*() function)" msgstr "" "Mierz globalne funkcje zwrotne przy rejestracji.\n" -"(wszystko co prześlesz do funkcji minetest.register_*() )" +"(wszystko, co prześlesz do funkcji core.register_*())" #: src/settings_translation_file.cpp msgid "" @@ -4404,10 +4506,6 @@ msgstr "Mierz metody bytów przy rejestracji." msgid "Interval of saving important changes in the world, stated in seconds." msgstr "Interwał zapisywania ważnych zmian w świecie, w sekundach." -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "Interwał wysyłania czasu gry do klientów, w sekundach." - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "Animacje przedmiotów w ekwipunku" @@ -4501,13 +4599,15 @@ msgstr "" "Zakres to w przybliżeniu -2 do 2." #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Julia set only.\n" "Y component of hypercomplex constant.\n" "Alters the shape of the fractal.\n" "Range roughly -2 to 2." msgstr "" -"Wyłącznie dla Zbioru Julii: komponent Y stałej hiperzespolonej, \n" +"Wyłącznie dla Zbioru Julii.\n" +"Komponent Y stałej hiperzespolonej, \n" "która determinuje kształt fraktali.\n" "Zakres to w przybliżeniu -2 do 2." @@ -4585,7 +4685,6 @@ msgid "Leaves style" msgstr "Styl liści" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Leaves style:\n" "- Fancy: all faces visible\n" @@ -4594,8 +4693,8 @@ msgid "" msgstr "" "Style liści:\n" "- Fancy: wszystkie ściany widoczne\n" -"- Simple: tylko zewnętrzene ściany, jeżeli special_tiles jest użyty\n" -"- Opaque: wyłącza przeźroczystość" +"- Simple: tylko zewnętrzne ściany\n" +"- Opaque: wyłącza przezroczystość" #: src/settings_translation_file.cpp #, fuzzy @@ -4607,10 +4706,13 @@ msgid "" "This is a lower bound, i.e. server steps may not be shorter than this, but\n" "they are often longer." msgstr "" -"Długość interwału czasowego serwera (w trakcie którego wszystko jest na " -"ogół\n" -"aktualizowane), wyrażony w sekundach.\n" -"Nie ma zastosowania w sesjach hostowanych z menu klienta." +"Długość interwału czasowego serwera (w trakcie którego wszystko jest na ogół " +"aktualizowane), \n" +"wyrażony w sekundach.\n" +"Nie ma zastosowania w sesjach hostowanych z menu klienta.\n" +"To dolna granica, kroki serwera nie mogą być na przykład krótsze niż ta " +"wartość, ale\n" +"zwykle są dłuższe." #: src/settings_translation_file.cpp msgid "Length of liquid waves." @@ -4727,9 +4829,8 @@ msgid "Liquid queue purge time" msgstr "Czas kolejki czyszczenia cieczy" #: src/settings_translation_file.cpp -#, fuzzy msgid "Liquid reflections" -msgstr "Płynność cieczy" +msgstr "Odbicia cieczy" #: src/settings_translation_file.cpp msgid "Liquid sinking" @@ -5062,12 +5163,17 @@ msgstr "" "Ustaw -1 dla nieskończonej liczby." #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Maximum number of packets sent per send step in the low-level networking " "code.\n" "You generally don't need to change this, however busy servers may benefit " "from a higher number." msgstr "" +"Maksymalna liczba pakietów przesyłanych na jeden krok w sieciowym kodzie " +"niskopoziomowym.\n" +"Ogólnie nie musisz go zmieniać, jednakże obciążone serwery mogą działać " +"lepiej, gdy ta liczba będzie wyższa." #: src/settings_translation_file.cpp msgid "Maximum number of players that can be connected simultaneously." @@ -5127,10 +5233,6 @@ msgstr "" msgid "Maximum users" msgstr "Maksymalna ilość użytkowników" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "Pamięć podręczna siatki" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "Wiadomość dnia" @@ -5163,6 +5265,10 @@ msgstr "Dolna granica losowej liczby dużych jaskiń na mapchunk." msgid "Minimum limit of random number of small caves per mapchunk." msgstr "Dolna granica losowej liczby małych jaskiń na mapchunk." +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "Mip-Mappowanie" @@ -5256,9 +5362,10 @@ msgstr "" "- Opcjonalne latające wyspy z v7 (domyślnie wyłączone)." #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" "Nazwa gracza.\n" @@ -5296,8 +5403,9 @@ msgid "Node highlighting" msgstr "Podświetlanie bloków" #: src/settings_translation_file.cpp +#, fuzzy msgid "Node specular" -msgstr "" +msgstr "Odbicie bloku" #: src/settings_translation_file.cpp msgid "NodeTimer interval" @@ -5359,8 +5467,8 @@ msgid "" "Value of 0 (default) will let Luanti autodetect the number of available " "threads." msgstr "" -"Liczba wątków do użycia do generacji modeli.\n" -"Wartość 0 (domyślna) sprawi, że Minetest automatycznie wykryje liczbę " +"Liczba wątków do użycia do generacji siatki.\n" +"Wartość 0 (domyślna) sprawi, że Luanti automatycznie wykryje liczbę " "dostępnych wątków." #: src/settings_translation_file.cpp @@ -5369,7 +5477,7 @@ msgstr "Occlusion Culler" #: src/settings_translation_file.cpp msgid "Occlusion Culling" -msgstr "Pomijanie przesłoniętych modeli po stronie serwera" +msgstr "Pomijanie przesłoniętych bloków" #: src/settings_translation_file.cpp msgid "" @@ -5395,16 +5503,15 @@ msgstr "Debug OpenGL" #: src/settings_translation_file.cpp #, fuzzy msgid "Optimize GUI for touchscreens" -msgstr "Użyj celownika do ekranu dotykowego" +msgstr "Optymalizuj GUI dla ekranów dotykowych" #: src/settings_translation_file.cpp msgid "Optional override for chat weblink color." msgstr "Opcjonalna zmiana koloru łącza internetowego na czacie." #: src/settings_translation_file.cpp -#, fuzzy msgid "Other Effects" -msgstr "Efekty graficzne" +msgstr "Inne efekty" #: src/settings_translation_file.cpp msgid "" @@ -5528,9 +5635,9 @@ msgid "" "Metrics can be fetched on http://127.0.0.1:30000/metrics" msgstr "" "Adres listenera Prometheusa.\n" -"Jeśli Minetest jest skompilowany z włączoną opcją ENABLE_PROMETHEUS,\n" +"Jeśli Luanti jest skompilowany z włączoną opcją ENABLE_PROMETHEUS, to\n" "włącz listener metryk dla Prometheusa na tym adresie.\n" -"Metryki mogą być ładowane na http://127.0.0.1:30000/metrics" +"Metryki mogą być pobrane na stronie http://127.0.0.1:30000/metrics" #: src/settings_translation_file.cpp msgid "Proportion of large caves that contain liquid." @@ -5554,8 +5661,11 @@ msgstr "" "Wartości większe niż 26 skutkują ostrym odcięciem w rogach chmur." #: src/settings_translation_file.cpp +#, fuzzy msgid "Radius to use when the block bounds HUD feature is set to near blocks." msgstr "" +"Zasięg użycia, gdy funkcja granic bloków HUD jest ustawiona na najbliższe " +"bloki." #: src/settings_translation_file.cpp msgid "Raises terrain to make valleys around the rivers." @@ -5782,23 +5892,26 @@ msgid "See https://www.sqlite.org/pragma.html#pragma_synchronous" msgstr "Sprawdź http://www.sqlite.org/pragma.html#pragma_synchronous" #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Select the antialiasing method to apply.\n" "\n" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5834,7 +5947,6 @@ msgid "Selection box width" msgstr "Długość zaznaczenia" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Selects one of 18 fractal types.\n" "1 = 4D \"Roundy\" Mandelbrot set.\n" @@ -5856,7 +5968,7 @@ msgid "" "17 = 4D \"Mandelbulb\" Mandelbrot set.\n" "18 = 4D \"Mandelbulb\" Julia set." msgstr "" -"Wybór 18 fraktali z 9 formuł.\n" +"Wybiera jeden z 18 typów fraktali.\n" "1 = 4D \"Roundy\" zbiór Mandelbrota .\n" "2 = 4D \"Roundy\" zbiór Julii.\n" "3 = 4D \"Squarry\" zbiór Mandelbrota.\n" @@ -5877,15 +5989,18 @@ msgstr "" "18 = 4D \"Mandelbulb\" zbiór Julii." #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Send names of online players to the serverlist. If disabled only the player " "count is revealed." msgstr "" +"Przesyła nazwy użytkowników sieciowych liście serwera. Jeśli jest wyłączona, " +"to tylko liczba graczy zostanie ujawniona." #: src/settings_translation_file.cpp #, fuzzy msgid "Send player names to the server list" -msgstr "Rozgłoś listę serwerów." +msgstr "Prześlij nazwy graczy na listę serwerów" #: src/settings_translation_file.cpp msgid "Server" @@ -5908,11 +6023,15 @@ msgid "Server address" msgstr "Adres serwera" #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Server anticheat configuration.\n" "Flags are positive. Uncheck the flag to disable corresponding anticheat " "module." msgstr "" +"Konfiguracja anticheata na serwerze.\n" +"Flagi mają ustawioną wartość dodatnią. Odznacz flagę, by wyłączyć moduł " +"anticheata." #: src/settings_translation_file.cpp msgid "Server description" @@ -5929,7 +6048,7 @@ msgstr "Port Serwera" #: src/settings_translation_file.cpp #, fuzzy msgid "Server-side occlusion culling" -msgstr "Occulusion culling po stronie serwera" +msgstr "Pomijanie przesłoniętych bloków po stronie serwera" #: src/settings_translation_file.cpp msgid "Server/Env Performance" @@ -5955,24 +6074,20 @@ msgid "" "Value of 0 means no tilt / vertical orbit." msgstr "" "Ustaw nachylenie orbity Słońca/Księżyca w stopniach.\n" -"Wartość 0 oznacza brak nachylenia / orbitę pionową.\n" -"Wartość minimalna: 0.0; wartość maksymalna: 60.0" +"Gry mogą zmieniać nachylenie orbity poprzez API.\n" +"Wartość 0 oznacza brak nachylenia / orbitę pionową." #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Set the exposure compensation in EV units.\n" "Value of 0.0 (default) means no exposure compensation.\n" "Range: from -1 to 1.0" msgstr "" -"Ustaw współczynnik kompensacji ekspozycji.\n" -"Ten współczynnik jest aplikowany na liniową wartość koloru\n" -"przed wszystkimi innymi efektami przetwarzania końcowego.\n" -"Wartość 1.0 (domyślna) oznacza brak kompensacji ekspozycji.\n" -"Zakres: od 0.1 do 10.0" +"Ustaw współczynnik kompensacji ekspozycji w jednostkach EV.\n" +"Wartość 0.0 (domyślna) oznacza brak kompensacji ekspozycji.\n" +"Zakres: od -1 do 1.0" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Set the language. By default, the system language is used.\n" "A restart is required after changing this." @@ -5988,13 +6103,13 @@ msgstr "" "klientów." #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Set the shadow strength gamma.\n" "Adjusts the intensity of in-game dynamic shadows.\n" "Lower value means lighter shadows, higher value means darker shadows." msgstr "" "Ustaw siłę cienia.\n" +"Dostosowuje intensywność dynamicznych cieni w grze.\n" "Niższa wartość oznacza jaśniejsze cienie, wyższa wartość oznacza ciemniejsze " "cienie." @@ -6013,9 +6128,7 @@ msgstr "" #: src/settings_translation_file.cpp #, fuzzy msgid "Set to true to enable Shadow Mapping." -msgstr "" -"Ustawienie wartości pozytywnej włącza drganie liści.\n" -"Do włączenia wymagane są shadery." +msgstr "Ustaw wartość pozytywną, by włączyć odwzorowanie cieni." #: src/settings_translation_file.cpp msgid "" @@ -6028,90 +6141,74 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Set to true to enable volumetric lighting effect (a.k.a. \"Godrays\")." msgstr "" +"Ustaw wartość pozytywną by włączyć efekt światła wolumetrycznego (znanego " +"również jako \"Boskie promienie\")." #: src/settings_translation_file.cpp -#, fuzzy msgid "Set to true to enable waving leaves." -msgstr "" -"Ustawienie wartości pozytywnej włącza drganie liści.\n" -"Do włączenia wymagane są shadery." +msgstr "Ustawienie wartości pozytywnej włącza drganie liści." #: src/settings_translation_file.cpp -#, fuzzy msgid "Set to true to enable waving liquids (like water)." -msgstr "" -"Ustawienie wartości pozytywnej włącza falowanie wody.\n" -"Wymaga shaderów." +msgstr "Ustawienie wartości pozytywnej włącza falowanie cieczy (tak jak woda)." + +#: src/settings_translation_file.cpp +msgid "Set to true to enable waving plants." +msgstr "Ustawienie pozytywnej wartości włącza falowanie roślin." #: src/settings_translation_file.cpp #, fuzzy -msgid "Set to true to enable waving plants." -msgstr "" -"Ustawienie pozytywnej wartości włącza falowanie roślin.\n" -"Wymaga shaderów." - -#: src/settings_translation_file.cpp msgid "" "Set to true to render debugging breakdown of the bloom effect.\n" "In debug mode, the screen is split into 4 quadrants:\n" "top-left - processed base image, top-right - final image\n" "bottom-left - raw base image, bottom-right - bloom texture." msgstr "" +"Ustaw wartość pozytywną, by renderować analizę debugowania efektu bloom.\n" +"W trybie debugowania ekran jest podzielony na 4 ćwiartki:\n" +"Lewa górna- przetwarzany podstawowy obraz, prawa górna- ostateczny obraz\n" +"lewa dolna- surowy, podstawowy obraz, prawa dolna- tekstura z efektem bloom." #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Sets shadow texture quality to 32 bits.\n" "On false, 16 bits texture will be used.\n" "This can cause much more artifacts in the shadow." msgstr "" "Ustawia jakość tekstury cienia na 32 bity.\n" -"Jeśli wartość jest fałszywa, używana będzie tekstura 16-bitowa.\n" +"Jeśli wartość jest negatywna, używana będzie tekstura 16-bitowa.\n" "Może to powodować znacznie więcej artefaktów w cieniu." #: src/settings_translation_file.cpp msgid "Shader path" msgstr "Shadery" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "Shadery" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Shadow filter quality" -msgstr "Jakość zrzutu ekranu" +msgstr "Jakość filtru cienia" #: src/settings_translation_file.cpp -#, fuzzy msgid "Shadow map max distance in nodes to render shadows" -msgstr "Maksymalna odległość mapy cieni w węzłach do renderowania cieni" +msgstr "Maksymalna odległość mapy cieni w blokach do renderowania cieni" #: src/settings_translation_file.cpp -#, fuzzy msgid "Shadow map texture in 32 bits" msgstr "Tekstura mapy cieni w 32 bitach" #: src/settings_translation_file.cpp -#, fuzzy msgid "Shadow map texture size" -msgstr "Minimalna wielkość tekstury dla filtrów" +msgstr "Minimalna wielkość tekstury mapy cieni" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Shadow offset (in pixels) of the default font. If 0, then shadow will not be " "drawn." -msgstr "Offset cienia czcionki, jeżeli 0 to cień nie będzie rysowany." +msgstr "" +"Offset cienia (w pikselach) domyślnej czcionki. Jeżeli 0, to cień nie będzie " +"rysowany." #: src/settings_translation_file.cpp -#, fuzzy msgid "Shadow strength gamma" msgstr "Siła cienia" @@ -6129,11 +6226,10 @@ msgid "" "Show entity selection boxes\n" "A restart is required after changing this." msgstr "" -"Ustaw język. Zostaw puste pole, aby użyć języka systemowego.\n" +"Pokaż pola wyboru jednostki.\n" "Wymagany restart po zmianie ustawienia." #: src/settings_translation_file.cpp -#, fuzzy msgid "Show name tag backgrounds by default" msgstr "Domyślnie wyświetlaj tła znaczników imiennych" @@ -6142,6 +6238,7 @@ msgid "Shutdown message" msgstr "Komunikat zamknięcia serwera" #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Side length of a cube of map blocks that the client will consider together\n" "when generating meshes.\n" @@ -6149,13 +6246,23 @@ msgid "" "draw calls, benefiting especially high-end GPUs.\n" "Systems with a low-end GPU (or no GPU) would benefit from smaller values." msgstr "" - -#: src/settings_translation_file.cpp -msgid "Simulate translucency when looking at foliage in the sunlight." -msgstr "" +"Boczna długość sześcianu bloków mapy, które klient będzie łącznie brał pod " +"uwagę,\n" +"podczas generowania siatek.\n" +"Wyższe wartości zwiększają użycie procesora GPU poprzez zmniejszenie liczby\n" +"wywoływań rysowania, skorzystają na tym zwłaszcza procesory GPU wyższej " +"klasy,\n" +"Systemy z procesorami GPU niższej klasy (lub bez procesora GPU) " +"skorzystałyby z mniejszych wartości." #: src/settings_translation_file.cpp #, fuzzy +msgid "Simulate translucency when looking at foliage in the sunlight." +msgstr "" +"Symuluj półprzezroczystość podczas patrzenia na listowie w świetle " +"słonecznym." + +#: src/settings_translation_file.cpp msgid "" "Size of mapchunks generated by mapgen, stated in mapblocks (16 nodes).\n" "WARNING: There is no benefit, and there are several dangers, in\n" @@ -6165,15 +6272,15 @@ msgid "" "recommended." msgstr "" "Rozmiar mapchunków generowanych przez mapgen, podany w mapblockach (16 " -"węzłów).\n" -"UWAGA!: Nie ma z tego żadnego pożytku, ale występuje kilka zagrożeń, przy\n" -"zwiększaniu tej wartości powyżej 5.\n" +"bloków).\n" +"UWAGA: Nie ma z tego żadnego pożytku, ale przy zwiększaniu tej wartości " +"powyżej 5\n" +"występuje kilka zagrożeń.\n" "Zmniejszenie tej wartości podnosi gęstość jaskiń i lochów.\n" "Zmiana tej wartości ma specjalne zastosowanie, zalecane jest pozostawienie\n" -"jej nietkniętą." +"jej nietkniętej." #: src/settings_translation_file.cpp -#, fuzzy msgid "Sky Body Orbit Tilt" msgstr "Pochylenie orbity ciała niebieskiego" @@ -6182,17 +6289,14 @@ msgid "Slice w" msgstr "Kawałek w" #: src/settings_translation_file.cpp -#, fuzzy msgid "Slope and fill work together to modify the heights." msgstr "Zbocze oraz wypełnienie działają razem, aby zmodyfikować wysokości." #: src/settings_translation_file.cpp -#, fuzzy msgid "Small cave maximum number" msgstr "Maksymalna ilość małych jaskiń" #: src/settings_translation_file.cpp -#, fuzzy msgid "Small cave minimum number" msgstr "Minimalna ilość małych jaskiń" @@ -6211,53 +6315,48 @@ msgstr "Płynne oświetlenie" #: src/settings_translation_file.cpp #, fuzzy msgid "Smooth scrolling" -msgstr "Płynne oświetlenie" +msgstr "Płynne przewijanie" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Smooths rotation of camera when in cinematic mode, 0 to disable. Enter " "cinematic mode by using the key set in Controls." msgstr "" -"Wygładza obracanie widoku kamery w trybie kinowym. Wartość 0 wyłącza tą " -"funkcję." +"Wygładza obracanie widoku kamery w trybie kinowym. Wartość 0 wyłącza tę " +"funkcję. Wejdź w tryb kinowy, używając klawisza ustawionego w opcjach " +"Sterowania." #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Smooths rotation of camera, also called look or mouse smoothing. 0 to " "disable." msgstr "" -"Wygładza obracanie widoku kamery w trybie kinowym. Wartość 0 wyłącza tą " -"funkcję." +"Wygładza obracanie widoku kamery, nazywa się to również patrzeniem lub " +"wygładzaniem myszki. Wartość 0 wyłącza tę funkcję." #: src/settings_translation_file.cpp msgid "Sneaking speed" msgstr "Szybkość skradania" #: src/settings_translation_file.cpp -#, fuzzy msgid "Sneaking speed, in nodes per second." msgstr "Prędkość skradania, w blokach na sekundę." #: src/settings_translation_file.cpp -#, fuzzy msgid "Soft clouds" -msgstr "Chmury 3D" +msgstr "Łagodne chmury" #: src/settings_translation_file.cpp -#, fuzzy msgid "Soft shadow radius" -msgstr "Przeźroczystość cienia czcionki" +msgstr "Obszar gładkiego cienia" #: src/settings_translation_file.cpp msgid "Sound" msgstr "Dźwięk" #: src/settings_translation_file.cpp -#, fuzzy msgid "Sound Extensions Blacklist" -msgstr "Flaga czarnej listy ContentDB" +msgstr "Flaga czarnej listy rozszerzeń głosowych" #: src/settings_translation_file.cpp msgid "" @@ -6284,12 +6383,11 @@ msgstr "" #: src/settings_translation_file.cpp #, fuzzy msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" -"Rozszerz pełną aktualizację mapy cieni na określoną ilość klatek.\n" +"Rozprowadź pełną aktualizację mapy cieni na określoną ilość klatek.\n" "Wyższe wartości mogą sprawić, że cienie będą lagować,\n" "niższe wartości powodują zużycie większej ilości zasobów.\n" "Minimalna wartość: 1; maksymalna wartość: 16" @@ -6305,7 +6403,6 @@ msgstr "" "Standardowe zniekształcenie gaussowego przyśpieszenia środkowego." #: src/settings_translation_file.cpp -#, fuzzy msgid "Static spawn point" msgstr "Statyczny punkt spawnu" @@ -6314,19 +6411,16 @@ msgid "Steepness noise" msgstr "Szum stromości" #: src/settings_translation_file.cpp -#, fuzzy msgid "Step mountain size noise" -msgstr "Szum góry" +msgstr "Rozmiar szumu góry" #: src/settings_translation_file.cpp -#, fuzzy msgid "Step mountain spread noise" -msgstr "Szum góry" +msgstr "Rozmiar rozrzutu szumu góry" #: src/settings_translation_file.cpp -#, fuzzy msgid "Strength of 3D mode parallax." -msgstr "Siła paralaksy." +msgstr "Siła paralaksy trybu 3D." #: src/settings_translation_file.cpp msgid "" @@ -6343,7 +6437,6 @@ msgid "Strict protocol checking" msgstr "Sztywne sprawdzanie protokołu" #: src/settings_translation_file.cpp -#, fuzzy msgid "Strip color codes" msgstr "Usuń kody kolorów" @@ -6385,9 +6478,8 @@ msgid "Temperature variation for biomes." msgstr "Zmienność temperatury biomów." #: src/settings_translation_file.cpp -#, fuzzy msgid "Terrain alternative noise" -msgstr "Szum wysokości terenu" +msgstr "Szum innego terenu" #: src/settings_translation_file.cpp msgid "Terrain base noise" @@ -6430,7 +6522,6 @@ msgid "Terrain persistence noise" msgstr "Stały szum terenu" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Texture size to render the shadow map on.\n" "This must be a power of two.\n" @@ -6441,7 +6532,6 @@ msgstr "" "Większe liczby tworzą lepsze cienie, ale jest to również kosztowniejsze." #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Textures on a node may be aligned either to the node or to the world.\n" "The former mode suits better things like machines, furniture, etc., while\n" @@ -6450,25 +6540,23 @@ msgid "" "this option allows enforcing it for certain node types. Note though that\n" "that is considered EXPERIMENTAL and may not work properly." msgstr "" -"Tekstury na węźle mogą być dopasowane albo do niego albo do świata.\n" +"Tekstury na bloku mogą być dopasowane albo do niego, albo do świata.\n" "Ten pierwszy tryb bardziej pasuje do rzeczy takich jak maszyny, meble, itp.\n" "ten drugi sprawia, że schody i mikrobloki lepiej komponują się z " "otoczeniem.\n" "Z uwagi na to, że ta możliwość jest nowa, nie może być wykorzystywana przez " "starsze serwery,\n" -"opcja ta pozwala na wymuszenie jej dla określonych typów węzłów. Zwróć " +"opcja ta pozwala na wymuszenie jej dla określonych typów bloków. Zwróć " "uwagę, że\n" "to opcja EKSPERYMENTALNA i może nie działać zbyt poprawnie." #: src/settings_translation_file.cpp -#, fuzzy msgid "The URL for the content repository" msgstr "Adres URL repozytorium zawartości" #: src/settings_translation_file.cpp -#, fuzzy msgid "The dead zone of the joystick" -msgstr "Identyfikator użycia joysticka" +msgstr "Zakres nieczułości joysticka" #: src/settings_translation_file.cpp msgid "" @@ -6479,13 +6567,15 @@ msgstr "" "gdy wpisujemy `/ profiler save [format]` bez określonego formatu." #: src/settings_translation_file.cpp +#, fuzzy msgid "" "The delay in milliseconds after which a touch interaction is considered a " "long tap." msgstr "" +"Opóźnienie w milisekundach, po którym dotknięcie jest uznawane za długie " +"stuknięcie." #: src/settings_translation_file.cpp -#, fuzzy msgid "" "The file path relative to your world path in which profiles will be saved to." msgstr "" @@ -6493,6 +6583,7 @@ msgstr "" "profile." #: src/settings_translation_file.cpp +#, fuzzy msgid "" "The gesture for punching players/entities.\n" "This can be overridden by games and mods.\n" @@ -6504,6 +6595,16 @@ msgid "" "Known from the classic Luanti mobile controls.\n" "Combat is more or less impossible." msgstr "" +"Gest uderzania graczy/jednostek.\n" +"Można to nadpisać przez mody oraz gry.\n" +"\n" +"* short_tap\n" +"Łatwe w użyciu i dobrze znane z innych gier, które nie powinny być tu " +"wymieniane.\n" +"\n" +"*long_tap\n" +"Znany ze sterowania mobilnego w klasycznym Luanti.\n" +"Walka jest mniej lub bardziej niemożliwa." #: src/settings_translation_file.cpp msgid "The identifier of the joystick to use" @@ -6513,11 +6614,9 @@ msgstr "Identyfikator użycia joysticka" #, fuzzy msgid "" "The length in pixels after which a touch interaction is considered movement." -msgstr "" -"Długość w pikselach wymagana do wejścia w interakcję z ekranem dotykowym." +msgstr "Długość w pikselach, po której dotknięcie jest uznawane za ruch." #: src/settings_translation_file.cpp -#, fuzzy msgid "" "The maximum height of the surface of waving liquids.\n" "4.0 = Wave height is two nodes.\n" @@ -6525,10 +6624,9 @@ msgid "" "Default is 1.0 (1/2 node)." msgstr "" "Maksymalna wysokość powierzchni falujących cieczy.\n" -"4,0 = wysokość fali wynosi dwa węzły.\n" +"4,0 = wysokość fali wynosi dwa bloki.\n" "0.0 = Fala w ogóle się nie porusza.\n" -"Wartość domyślna to 1.0 (1/2 węzła).\n" -"Wymaga włączenia falujących cieczy." +"Wartość domyślna to 1.0 (1/2 bloku)." #: src/settings_translation_file.cpp #, fuzzy @@ -6536,8 +6634,9 @@ msgid "" "The minimum time in seconds it takes between digging nodes when holding\n" "the dig button." msgstr "" -"Czas w sekundach między kolejnymi położeniem węzłów po przytrzymaniu\n" -"przycisku umieszczania.." +"Minimalny czas w sekundach, który upływa między wykopywaniem bloków po " +"przytrzymaniu\n" +"przycisku wykopywania." #: src/settings_translation_file.cpp msgid "The network interface that the server listens on." @@ -6552,6 +6651,7 @@ msgstr "" "Sprawdź /privs w celu wyświetlenia ich listy oraz ustawień modów na serwerze." #: src/settings_translation_file.cpp +#, fuzzy msgid "" "The radius of the volume of blocks around every player that is subject to " "the\n" @@ -6562,8 +6662,8 @@ msgid "" "This should be configured together with active_object_send_range_blocks." msgstr "" "Promień objętości bloków wokół każdego gracza, który podlega\n" -"aktywne bloki, określone w mapblocks (16 węzłów).\n" -"W aktywnych blokach ładowane są obiekty i uruchamiane ABM.\n" +"aktywnym blokom, określonym w mapblocks (16 bloków).\n" +"W aktywnych blokach ładowane są obiekty i uruchamiany jest ABM.\n" "Jest to również minimalny zakres, w którym utrzymywane są obiekty aktywne " "(moby).\n" "Należy to skonfigurować razem z active_object_send_range_blocks." @@ -6576,12 +6676,9 @@ msgid "" "OpenGL is the default for desktop, and OGLES2 for Android." msgstr "" "Zaplecze renderowania.\n" -"Po zmianie wymagane jest ponowne uruchomienie.\n" -"Uwaga: w Androidzie trzymaj się OGLES1, jeśli nie masz pewności! W " -"przeciwnym razie aplikacja może się nie uruchomić.\n" -"Na innych platformach zalecany jest OpenGL.\n" -"Shadery są obsługiwane przez OpenGL (tylko komputery stacjonarne) i OGLES2 " -"(eksperymentalne)" +"Uwaga: po zmianie wymagane jest ponowne uruchomienie!\n" +"OpenGL jest domyślnie dla komputerów stacjonarnych, a OGLES2 dla systemu " +"Android." #: src/settings_translation_file.cpp msgid "" @@ -6645,17 +6742,16 @@ msgid "The type of joystick" msgstr "Typ joysticka" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "The vertical distance over which heat drops by 20 if 'altitude_chill' is\n" "enabled. Also, the vertical distance over which humidity drops by 10 if\n" "'altitude_dry' is enabled." msgstr "" -"Odległość w pionie, powyżej której ciepło spada o 20, jeśli funkcja " +"Odległość w pionie, powyżej której ciepło spada o 20, jeśli opcja " "„altitude_chill” jest\n" -"włączona. Również odległość w pionie, na której wilgotność spada o 10, " +"włączona. Również odległość w pionie, powyżej której wilgotność spada o 10, " "jeśli\n" -"„altitude_dry” jest włączony." +"„altitude_dry” jest włączona." #: src/settings_translation_file.cpp msgid "Third of 4 2D noises that together define hill/mountain range height." @@ -6664,8 +6760,9 @@ msgstr "" "górskich." #: src/settings_translation_file.cpp +#, fuzzy msgid "Threshold for long taps" -msgstr "" +msgstr "Próg długich stuknięć" #: src/settings_translation_file.cpp msgid "" @@ -6679,10 +6776,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "Pora dnia, gdy stworzono nowy świat, w mili-godzinach (0-23999)." -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "Interwał czasu wysyłania" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "Szybkość upływu czasu" @@ -6705,10 +6798,13 @@ msgstr "" "Określa to jak długo są spowalniane po postawieniu lub usunięciu bloku." #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Tolerance of movement cheat detector.\n" "Increase the value if players experience stuttery movement." msgstr "" +"Tolerancja ruchu wykrywacza oszustw.\n" +"Zwiększ tę wartość, jeśli gracze doświadczają zacięć w poruszaniu." #: src/settings_translation_file.cpp msgid "Tooltip delay" @@ -6719,38 +6815,38 @@ msgid "Touchscreen" msgstr "Ekran dotykowy" #: src/settings_translation_file.cpp -#, fuzzy msgid "Touchscreen controls" -msgstr "Próg ekranu dotykowego" +msgstr "Sterowanie ekranu dotykowego" #: src/settings_translation_file.cpp -#, fuzzy msgid "Touchscreen sensitivity" -msgstr "Czułość myszy" +msgstr "Czułość ekranu dotykowego" #: src/settings_translation_file.cpp -#, fuzzy msgid "Touchscreen sensitivity multiplier." -msgstr "Mnożnik czułości myszy." +msgstr "Mnożnik czułości ekranu dotykowego." #: src/settings_translation_file.cpp msgid "Tradeoffs for performance" msgstr "Kompromisy dla wydajności" #: src/settings_translation_file.cpp -#, fuzzy msgid "Translucent foliage" -msgstr "Nieprzeźroczyste ciecze" +msgstr "Półprzezroczyste listowie" #: src/settings_translation_file.cpp -#, fuzzy msgid "Translucent liquids" -msgstr "Nieprzeźroczyste ciecze" +msgstr "Półprzezroczyste ciecze" #: src/settings_translation_file.cpp msgid "Transparency Sorting Distance" msgstr "Odległość sortowania przezroczystości" +#: src/settings_translation_file.cpp +#, fuzzy +msgid "Transparency Sorting Group by Buffers" +msgstr "Odległość sortowania przezroczystości" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "Szum drzew" @@ -6760,7 +6856,6 @@ msgid "Trilinear filtering" msgstr "Filtrowanie trójliniowe" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "True = 256\n" "False = 128\n" @@ -6775,6 +6870,7 @@ msgid "Trusted mods" msgstr "Zaufane mody" #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Type of occlusion_culler\n" "\n" @@ -6783,6 +6879,15 @@ msgid "" "\n" "This setting should only be changed if you have performance problems." msgstr "" +"Rodzaj occlusion_culler\n" +"\n" +"„loops” to przestarzały algorytm z zagnieżdżonymi pętlami i złożonością O " +"(n³)\n" +"„bfs” to nowy algorytm na podstawie przeszukiwania wszerz oraz bocznego " +"usuwania przysłoniętych bloków\n" +"\n" +"To ustawienie powinno być zmieniane tylko wtedy, gdy masz problemy z " +"wydajnością." #: src/settings_translation_file.cpp #, fuzzy @@ -6791,7 +6896,9 @@ msgid "" "release.\n" "If this is empty the engine will never check for updates." msgstr "" -"Link do pliku JSON zawierającego informacje o najnowszym wydaniu Minetest" +"Link do pliku JSON zawierającego informacje o najnowszym wydaniu Luanti.\n" +"Jeśli to pole jest puste, to silnik nigdy nie będzie sprawdzał aktualizacji " +"do pobrania." #: src/settings_translation_file.cpp msgid "URL to the server list displayed in the Multiplayer Tab." @@ -6808,12 +6915,16 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" -"Niedopróbkowanie jest podobne do użycia niższej rozdzielczości ekranu, ale " -"stosuje się tylko do świata gry, zachowując nietknięty GUI.\n" +"Niedopróbkowanie jest podobne do użycia niższej rozdzielczości ekranu, ale \n" +"ma to zastosowanie tylko do świata gry, zachowując nietknięte GUI.\n" "Daje to znaczne przyśpieszenie wydajności kosztem mniej szczegółowych " -"obrazów." +"obrazów.\n" +"Wyższe wartości powodują mniej szczegółowe obrazy." #: src/settings_translation_file.cpp msgid "Unlimited player transfer distance" @@ -6835,33 +6946,34 @@ msgstr "Górna granica Y lochów." msgid "Upper Y limit of floatlands." msgstr "Górna granica Y latających wysp." -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "Włącz chmury 3D zamiast płaskich." - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "Włącz animację chmur w tle menu głównego." #: src/settings_translation_file.cpp #, fuzzy -msgid "Use anisotropic filtering when looking at textures from an angle." -msgstr "Włącz filtrowanie anizotropowe dla oglądania tekstur pod kątem." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." +msgstr "Użyj filtrowania anizotropowego dla oglądania tekstur pod kątem." #: src/settings_translation_file.cpp -#, fuzzy msgid "Use bilinear filtering when scaling textures." -msgstr "Użyj filtrowania tri-linearnego podczas skalowania tekstur." +msgstr "Użyj filtrowania bilinearnego podczas skalowania tekstur." #: src/settings_translation_file.cpp msgid "Use crosshair for touch screen" msgstr "Użyj celownika do ekranu dotykowego" #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Use crosshair to select object instead of whole screen.\n" "If enabled, a crosshair will be shown and will be used for selecting object." msgstr "" +"Użyj celownika, by zaznaczyć obiekt zamiast całego ekranu.\n" +"Jeśli włączona, to celownik się pokaże i używany będzie do zaznaczania " +"obiektów." #: src/settings_translation_file.cpp #, fuzzy @@ -6872,19 +6984,26 @@ msgid "" msgstr "" "Użyj mip mappingu przy skalowaniu tekstur. Może nieznacznie zwiększyć " "wydajność,\n" -"zwłaszcza przy korzystaniu z tekstur wysokiej rozdzielczości.\n" -"Gamma correct dowscaling nie jest wspierany." +"zwłaszcza przy korzystaniu z paczek tekstur wysokiej rozdzielczości.\n" +"Zmniejszanie korekcji gamma nie jest wspierane." #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Use raytraced occlusion culling in the new culler.\n" "This flag enables use of raytraced occlusion culling test for\n" "client mesh sizes smaller than 4x4x4 map blocks." msgstr "" +"Użyj pomijania przesłoniętych bloków opartego na śledzeniu promieni w nowym " +"pomijaniu.\n" +"Ta flaga włącza użycie opartego na śledzeniu promieni testu pomijania " +"przysłoniętych bloków \n" +"siatek klienta w rozmiarach mniejszych niż bloki mapy 4x4x4." #: src/settings_translation_file.cpp +#, fuzzy msgid "Use smooth cloud shading." -msgstr "" +msgstr "Użyj gładkiego cieniowania chmur." #: src/settings_translation_file.cpp msgid "" @@ -6892,16 +7011,19 @@ msgid "" "If both bilinear and trilinear filtering are enabled, trilinear filtering\n" "is applied." msgstr "" +"Użyj filtrowania trójliniowego podczas skalowania tekstur.\n" +"Jeśli zarówno filtrowanie trójliniowe jak i filtrowanie dwuliniowe są " +"włączone, to filtrowanie trójliniowe\n" +"ma zastosowanie." #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Use virtual joystick to trigger \"Aux1\" button.\n" "If enabled, virtual joystick will also tap \"Aux1\" button when out of main " "circle." msgstr "" -"(Android) Użyj wirtualnego joysticka, aby aktywować przycisk \"Aux1\".\n" -"Gdy jest włączone to wirtualny joystick również naciśnie przycisk \"Aux1\", " +"(Android) Użyj wirtualnego joysticka, aby aktywować przycisk „Aux1”.\n" +"Gdy jest włączone, to wirtualny joystick również naciśnie przycisk „Aux1”, " "gdy znajduje się poza głównym okręgiem." #: src/settings_translation_file.cpp @@ -6965,15 +7087,17 @@ msgid "Varies steepness of cliffs." msgstr "Kontroluje stromość/wysokość gór." #: src/settings_translation_file.cpp -#, fuzzy msgid "Vertical climbing speed, in nodes per second." msgstr "Pionowa prędkość wchodzenia, w blokach na sekundę." #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Vertical screen synchronization. Your system may still force VSync on even " "if this is disabled." msgstr "" +"Pionowa synchronizacja ekranu. Twój system może wciąż ją wymuszać, nawet gdy " +"ta opcja jest wyłączona." #: src/settings_translation_file.cpp msgid "Video driver" @@ -6992,36 +7116,33 @@ msgid "Viewing range" msgstr "Zasięg widoczności" #: src/settings_translation_file.cpp -#, fuzzy msgid "Virtual joystick triggers Aux1 button" -msgstr "Joystick wirtualny aktywuje przycisk aux" +msgstr "Joystick wirtualny aktywuje przycisk Aux1" #: src/settings_translation_file.cpp msgid "Volume" msgstr "Głośność" #: src/settings_translation_file.cpp +#, fuzzy msgid "Volume multiplier when the window is unfocused." -msgstr "" +msgstr "Mnożnik głośności, gdy okno jest nieaktywne." #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Volume of all sounds.\n" "Requires the sound system to be enabled." msgstr "" -"Włącza mapowanie paralaksy.\n" -"Wymaga włączenia shaderów." +"Głośność wszystkich dźwięków.\n" +"Wymaga włączenia systemu dźwiękowego." #: src/settings_translation_file.cpp -#, fuzzy msgid "Volume when unfocused" -msgstr "Maksymalna ilość klatek na sekundę gdy gra zapauzowana bądź nieaktywna" +msgstr "Głośność, gdy okno jest nieaktywne" #: src/settings_translation_file.cpp -#, fuzzy msgid "Volumetric lighting" -msgstr "Płynne oświetlenie" +msgstr "Światło wolumetryczne" #: src/settings_translation_file.cpp msgid "" @@ -7038,7 +7159,6 @@ msgstr "" "Zasięg około -2 do 2." #: src/settings_translation_file.cpp -#, fuzzy msgid "Walking and flying speed, in nodes per second." msgstr "Prędkość chodzenia i latania, w blokach na sekundę." @@ -7047,7 +7167,6 @@ msgid "Walking speed" msgstr "Szybkość chodzenia" #: src/settings_translation_file.cpp -#, fuzzy msgid "Walking, flying and climbing speed in fast mode, in nodes per second." msgstr "" "Prędkość chodzenia, latania i wchodzenia w trybie szybkiego chodzenia, w " @@ -7070,43 +7189,42 @@ msgid "Waving leaves" msgstr "Falujące liście" #: src/settings_translation_file.cpp -#, fuzzy msgid "Waving liquids" -msgstr "Falujące bloki" +msgstr "Falujące ciecze" #: src/settings_translation_file.cpp -#, fuzzy msgid "Waving liquids wave height" -msgstr "Wysokość fal wodnych" +msgstr "Wysokość falujących cieczy" #: src/settings_translation_file.cpp -#, fuzzy msgid "Waving liquids wave speed" -msgstr "Szybkość fal wodnych" +msgstr "Szybkość falujących cieczy" #: src/settings_translation_file.cpp -#, fuzzy msgid "Waving liquids wavelength" -msgstr "Długość fal wodnych" +msgstr "Długość falujących cieczy" #: src/settings_translation_file.cpp msgid "Waving plants" msgstr "Falujące rośliny" #: src/settings_translation_file.cpp -#, fuzzy msgid "Weblink color" -msgstr "Kolor zaznaczenia" +msgstr "Kolor zaznaczenia linku" #: src/settings_translation_file.cpp msgid "When enabled, liquid reflections are simulated." -msgstr "" +msgstr "Gdy jest włączona, to odbicia cieczy są symulowane." #: src/settings_translation_file.cpp +#, fuzzy msgid "" "When enabled, the GUI is optimized to be more usable on touchscreens.\n" "Whether this is enabled by default depends on your hardware form-factor." msgstr "" +"Gdy włączona, to GUI jest optymalizowany, by być bardziej przydatnym na " +"ekranach dotykowych.\n" +"To czy jest włączona domyślnie, zależy od współczynnika kształtu sprzętu." #: src/settings_translation_file.cpp msgid "" @@ -7118,43 +7236,30 @@ msgstr "" "filtrowane w oprogramowaniu, ale niektóre są generowane bezpośrednio na\n" "sprzęt ( np. renderuj tekstury do bloków ekwipunku)." -#: src/settings_translation_file.cpp -msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" -"Gdy gui_scaling_filter_txr2img jest aktywny, to kopiuj obrazy z komputera \n" -"do Minetesta, żeby je przeskalować. Kiedy jest nieaktywny, użyj starej " -"metody \n" -"skalowania sterowników graficznych, które nieprawidłowo \n" -"wspierają pobieranie tekstur z komputera." - #: src/settings_translation_file.cpp #, fuzzy msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" -"Podczas używania filtrów bilinearnych/ tri-linearnych/ anizotropowych, " +"Podczas używania filtrów dwuliniowych/ trójliniowych/ anizotropowych, " "tekstury niskiej rozdzielczości \n" "mogą zostać rozmazane, więc automatycznie przeskaluj je z najbliższą " "interpolacją, \n" "aby zapobiec poszarpanym pikselom. Określa to minimalny rozmiar tekstur\n" "do przeskalowania; wyższe wartości wyglądają lepiej, ale wymagają\n" -"więcej pamięci. Zalecane użycie potęg liczby 2. Ustawienie wartości wyższej " -"niż 1\n" -"może nie dawać widocznych rezultatów chyba, że filtrowanie bilinearne/ tri-" -"linearne/ anizotropowe jest włączone.\n" +"więcej pamięci. Zalecane użycie potęg liczby 2. Ta opcja ma zastosowanie " +"tylko wtedy \n" +"gdy filtrowanie dwuliniowe/ trójliniowe/ anizotropowe jest włączone.\n" "Używa się tego również jako rozmiaru tekstur podstawowych bloków " -"przypisanych dla świata przy autoskalowaniu tekstur." +"przypisanych dla świata \n" +"przy automatycznym skalowaniu tekstur." #: src/settings_translation_file.cpp msgid "" @@ -7164,10 +7269,6 @@ msgstr "" "Czy tła tagów nazw mają być domyślnie pokazywane.\n" "Mody mogą nadal tworzyć tło." -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "Określ kiedy animacje tekstur na blok powinny być niesynchronizowane." - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -7178,7 +7279,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Whether the window is maximized." -msgstr "Kiedy okno jest zmaksymalizowane" +msgstr "Kiedy okno jest zmaksymalizowane." #: src/settings_translation_file.cpp msgid "" @@ -7193,9 +7294,9 @@ msgid "Whether to fog out the end of the visible area." msgstr "Określ brak widoczności mgły." #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -7212,12 +7313,10 @@ msgstr "" "Wyświetlanie efektów debugowania klienta(klawisz F5 ma tą samą funkcję)." #: src/settings_translation_file.cpp -#, fuzzy msgid "Width component of the initial window size." -msgstr "Rozdzielczość pionowa rozmiaru okna gry." +msgstr "Składnik szerokości początkowego rozmiaru okna gry." #: src/settings_translation_file.cpp -#, fuzzy msgid "Width of the selection box lines around nodes." msgstr "Szerokość linii zaznaczenia bloków." @@ -7226,13 +7325,12 @@ msgid "Window maximized" msgstr "Okno zmaksymalizowane" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Windows systems only: Start Luanti with the command line window in the " "background.\n" "Contains the same information as the file debug.txt (default name)." msgstr "" -"Tylko dla systemu Windows: uruchom Minetest z wierszem poleceń w tle.\n" +"Tylko dla systemu Windows: uruchom Luanti z wierszem poleceń w tle.\n" "Zawiera te same informacje co plik debug.txt (domyślna nazwa)." #: src/settings_translation_file.cpp @@ -7273,7 +7371,6 @@ msgid "Y of flat ground." msgstr "Y płaskiego podłoża." #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Y of mountain density gradient zero level. Used to shift mountains " "vertically." @@ -7332,9 +7429,8 @@ msgid "cURL file download timeout" msgstr "Limit czasu pobierania pliku cURL" #: src/settings_translation_file.cpp -#, fuzzy msgid "cURL interactive timeout" -msgstr "Limit czasu cURL" +msgstr "Interaktywny limit czasu oczekiwania cURL" #: src/settings_translation_file.cpp msgid "cURL parallel limit" @@ -7392,6 +7488,9 @@ msgstr "Limit żądań równoległych cURL" #~ "Pozostaw pusty aby utworzyć lokalny serwer.\n" #~ "Zauważ że pole adresu w głównym menu nadpisuje te ustawienie." +#~ msgid "Adds particles when digging a node." +#~ msgstr "Dodaje efekty cząstkowe podczas wykopywania bloków." + #~ msgid "" #~ "Adjust dpi configuration to your screen (non X11/Android only) e.g. for " #~ "4k screens." @@ -7556,6 +7655,9 @@ msgstr "Limit żądań równoległych cURL" #~ msgid "Clean transparent textures" #~ msgstr "Czyste przeźroczyste tekstury" +#~ msgid "Clouds are a client-side effect." +#~ msgstr "Chmury są efektem po stronie klienta." + #~ msgid "Command key" #~ msgstr "Klawisz komend" @@ -7649,9 +7751,15 @@ msgstr "Limit żądań równoległych cURL" #~ msgid "Darkness sharpness" #~ msgstr "Ostrość ciemności" +#~ msgid "Debug info and profiler graph hidden" +#~ msgstr "Informacje debugu oraz wykresy są ukryte" + #~ msgid "Debug info toggle key" #~ msgstr "Klawisz przełączania informacji debugowania" +#~ msgid "Debug info, profiler graph, and wireframe hidden" +#~ msgstr "Informacje debugu, wykresy oraz tryb siatki są ukryte" + #~ msgid "Dec. volume key" #~ msgstr "Klawisz zmniejszania głośności" @@ -7705,10 +7813,16 @@ msgstr "Limit żądań równoległych cURL" #~ msgid "Del. Favorite" #~ msgstr "Usuń ulubiony" +#~ msgid "Desynchronize block animation" +#~ msgstr "Odsynchronizuj animację bloków" + #, fuzzy #~ msgid "Dig key" #~ msgstr "Klawisz kopania" +#~ msgid "Digging particles" +#~ msgstr "Włącz efekty cząsteczkowe" + #~ msgid "Disable anticheat" #~ msgstr "Wyłącz anticheat" @@ -7733,6 +7847,9 @@ msgstr "Limit żądań równoległych cURL" #~ msgid "Dynamic shadows:" #~ msgstr "Cienie dynamiczne:" +#~ msgid "Enable" +#~ msgstr "Włącz" + #~ msgid "Enable VBO" #~ msgstr "Włącz VBO" @@ -7767,6 +7884,14 @@ msgstr "Limit żądań równoległych cURL" #~ "lub muszą być automatycznie wygenerowane.\n" #~ "Wymaga włączonych shaderów." +#, fuzzy +#~ msgid "" +#~ "Enables caching of facedir rotated meshes.\n" +#~ "This is only effective with shaders disabled." +#~ msgstr "" +#~ "Włącza cachowanie facedir obracanych meshów.\n" +#~ "Działa tylko z wyłączonymi shaderami." + #~ msgid "Enables filmic tone mapping" #~ msgstr "Włącz filmic tone mapping" @@ -7816,9 +7941,6 @@ msgstr "Limit żądań równoległych cURL" #~ "Eksperymentalna opcja, może powodować widoczne przestrzenie\n" #~ "pomiędzy blokami kiedy ustawiona powyżej 0." -#~ msgid "FPS in pause menu" -#~ msgstr "FPS podczas pauzy w menu" - #~ msgid "FSAA" #~ msgstr "FSAA" @@ -7902,8 +8024,8 @@ msgstr "Limit żądań równoległych cURL" #~ msgid "Full screen BPP" #~ msgstr "Głębia koloru w trybie pełnoekranowym" -#~ msgid "Game" -#~ msgstr "Gra" +#~ msgid "GUI scaling filter txr2img" +#~ msgstr "Filtr skalowania GUI txr2img" #~ msgid "Gamma" #~ msgstr "Gamma" @@ -8099,701 +8221,707 @@ msgstr "Limit żądań równoległych cURL" #~ msgid "Instrumentation" #~ msgstr "Instrukcja" +#~ msgid "Interval of sending time of day to clients, stated in seconds." +#~ msgstr "Interwał wysyłania czasu gry do klientów, w sekundach." + #~ msgid "Invalid gamespec." #~ msgstr "Nieprawidłowa specyfikacja trybu gry." #~ msgid "Inventory key" #~ msgstr "Ekwipunek" +#~ msgid "Irrlicht device:" +#~ msgstr "Urządzenie Irrlicht:" + #~ msgid "Jump key" #~ msgstr "Skok" #~ msgid "" #~ "Key for decreasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz zmniejszania zasięgu widzenia.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for decreasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz zmniejszania głośności.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for digging.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz skakania.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for dropping the currently selected item.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz wyrzucenia aktualnie wybranego przedmiotu.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz zwiększania zasięgu widzenia.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz zwiększania głośności.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for jumping.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz skakania.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving fast in fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz szybkiego poruszania się w trybie \"fast\"\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for moving the player backward.\n" #~ "Will also disable autoforward, when active.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz poruszania się wstecz.\n" #~ "Gdy jest aktywny to wyłącza również automatyczne chodzenie do przodu.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player forward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz poruszania się na przód,\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player left.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz poruszania się w lewo.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player right.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz poruszania się w prawo.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for muting the game.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz wyciszania gry.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz otwierania okna czatu aby wpisać komendę.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for opening the chat window to type local commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz otwierania okna czatu aby wpisać komendę.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz otwierania okna czatu.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the inventory.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz otwierania inwentarza.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for placing.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz skakania.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 11th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz wyboru następnej pozycji na pasku akcji.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 12th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz wyboru następnej pozycji na pasku akcji.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 13th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz wyboru następnej pozycji na pasku akcji.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 14th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz wyboru następnej pozycji na pasku akcji.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 15th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz wyboru następnej pozycji na pasku akcji.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 16th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz wyboru następnej pozycji na pasku akcji.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 17th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz wyboru następnej pozycji na pasku akcji.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 18th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz wyboru następnej pozycji na pasku akcji.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 19th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz wyboru następnej pozycji na pasku akcji.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 20th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz wyboru następnej pozycji na pasku akcji.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 21st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz wyboru następnej pozycji na pasku akcji.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 22nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz wyboru następnej pozycji na pasku akcji.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 23rd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz wyboru następnej pozycji na pasku akcji.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 24th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz wyboru następnej pozycji na pasku akcji.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 25th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz wyboru następnej pozycji na pasku akcji.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 26th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz wyboru następnej pozycji na pasku akcji.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 27th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz wyboru następnej pozycji na pasku akcji.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 28th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz wyboru następnej pozycji na pasku akcji.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 29th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz wyboru następnej pozycji na pasku akcji.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 30th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz wyboru następnej pozycji na pasku akcji.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 31st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz wyboru następnej pozycji na pasku akcji.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 32nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz wyboru następnej pozycji na pasku akcji.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the eighth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz wyboru następnej pozycji na pasku akcji.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the fifth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz wyboru następnej pozycji na pasku akcji.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the first hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz wyboru następnej pozycji na pasku akcji.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the fourth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz wyboru poprzedniej pozycji na pasku akcji.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the next item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz wyboru następnej pozycji na pasku akcji.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the ninth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz wyboru następnej pozycji na pasku akcji.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the previous item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz wyboru poprzedniej pozycji na pasku akcji.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the second hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz wyboru następnej pozycji na pasku akcji.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the seventh hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz wyboru następnej pozycji na pasku akcji.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the sixth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz wyboru następnej pozycji na pasku akcji.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the tenth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz wyboru następnej pozycji na pasku akcji.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the third hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz wyboru następnej pozycji na pasku akcji.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for sneaking.\n" #~ "Also used for climbing down and descending in water if aux1_descends is " #~ "disabled.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz skradania.\n" #~ "Także używany do schodzenia w dół i opadania w wodzie jeżeli " #~ "aux1_descends jest wyłączone.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for switching between first- and third-person camera.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz przełączania pomiedzy kamerą z pierwszej i trzeciej osoby.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for taking screenshots.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz do zrobienia zrzutu ekranu.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for toggling autoforward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz przełączania trybu szybkiego.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling cinematic mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz przełączania trybu cinematic.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling display of minimap.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz przełączania wyświetlania minimapy.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz przełączania trybu szybkiego.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling flying.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz przełączania latania.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling noclip mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz przełączania trybu noclip.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for toggling pitch move mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz przełączania trybu noclip.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the camera update. Only used for development\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz przełączania aktualizacji kamery. Przydatne tylko dla " #~ "deweloperów.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for toggling the display of chat.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz przełączania wyświetlania czatu.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of debug info.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz przełączania informacji debugowania.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for toggling the display of fog.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz przełączania wyświetlania mgły\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the HUD.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz przełączania wyświetlania HUD.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for toggling the display of the large chat console.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz przełączania wyświetlania czatu.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the profiler. Used for development.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz przełączania wyświetlania profilera. Przydatne dla deweloperów.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling unlimited view range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz przełączania nieograniczonego pola widzenia.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key to use view zoom when possible.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Klawisz wyświetlania zoom kiedy to możliwe.\n" -#~ "Zobacz http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Zobacz http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Keybindings. (If this menu screws up, remove stuff from minetest.conf)" @@ -8875,6 +9003,9 @@ msgstr "Limit żądań równoległych cURL" #~ msgid "Menus" #~ msgstr "Menu" +#~ msgid "Mesh cache" +#~ msgstr "Pamięć podręczna siatki" + #~ msgid "Minimap" #~ msgstr "Minimapa" @@ -9084,6 +9215,9 @@ msgstr "Limit żądań równoległych cURL" #~ msgid "Server / Singleplayer" #~ msgstr "Pojedynczy gracz" +#~ msgid "Shaders" +#~ msgstr "Shadery" + #~ msgid "Shaders (experimental)" #~ msgstr "Shadery (eksperymentalne)" @@ -9101,6 +9235,17 @@ msgstr "Limit żądań równoległych cURL" #~ "graficznych.\n" #~ "Działa tylko z zapleczem wideo OpenGL ." +#, fuzzy +#~ msgid "" +#~ "Shaders are a fundamental part of rendering and enable advanced visual " +#~ "effects." +#~ msgstr "" +#~ "Shadery są podstawową częścią renderowania i włączają zaawansowane efekty " +#~ "wizualne." + +#~ msgid "Shaders are disabled." +#~ msgstr "Shadery wyłączone." + #~ msgid "Shadow limit" #~ msgstr "Limit cieni" @@ -9131,6 +9276,9 @@ msgstr "Limit żądań równoległych cURL" #~ msgid "Smooths rotation of camera. 0 to disable." #~ msgstr "Wygładza obracanie widoku kamery. Wartość 0 wyłącza tą funkcję." +#~ msgid "Sound system is disabled" +#~ msgstr "System dźwiękowy jest wyłączony" + #~ msgid "Special" #~ msgstr "Specialne" @@ -9175,6 +9323,13 @@ msgstr "Limit żądań równoległych cURL" #~ msgid "This font will be used for certain languages." #~ msgstr "Ta czcionka zostanie użyta w niektórych językach." +#, fuzzy +#~ msgid "This is not a recommended configuration." +#~ msgstr "To nie jest zalecana konfiguracja." + +#~ msgid "Time send interval" +#~ msgstr "Interwał czasu wysyłania" + #~ msgid "To enable shaders the OpenGL driver needs to be used." #~ msgstr "Sterownik OpenGL jest wymagany aby włączyć shadery." @@ -9277,6 +9432,19 @@ msgstr "Limit żądań równoległych cURL" #~ msgid "Waving water" #~ msgstr "Falująca woda" +#~ msgid "" +#~ "When gui_scaling_filter_txr2img is true, copy those images\n" +#~ "from hardware to software for scaling. When false, fall back\n" +#~ "to the old scaling method, for video drivers that don't\n" +#~ "properly support downloading textures back from hardware." +#~ msgstr "" +#~ "Gdy gui_scaling_filter_txr2img jest aktywny, to kopiuj obrazy z " +#~ "komputera \n" +#~ "do Minetesta, żeby je przeskalować. Kiedy jest nieaktywny, użyj starej " +#~ "metody \n" +#~ "skalowania sterowników graficznych, które nieprawidłowo \n" +#~ "wspierają pobieranie tekstur z komputera." + #, fuzzy #~ msgid "" #~ "Whether FreeType fonts are used, requires FreeType support to be compiled " @@ -9289,6 +9457,11 @@ msgstr "Limit żądań równoległych cURL" #~ msgid "Whether dungeons occasionally project from the terrain." #~ msgstr "Określa czy lochy mają być czasem przez generowane teren." +#~ msgid "" +#~ "Whether node texture animations should be desynchronized per mapblock." +#~ msgstr "" +#~ "Określ kiedy animacje tekstur na blok powinny być niesynchronizowane." + #~ msgid "Whether to allow players to damage and kill each other." #~ msgstr "Określ możliwość atakowania oraz zabijania innych graczy." diff --git a/po/pt/luanti.po b/po/pt/luanti.po index f811c3697..0f0da75fa 100644 --- a/po/pt/luanti.po +++ b/po/pt/luanti.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Portuguese (Minetest)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" "PO-Revision-Date: 2024-09-08 12:09+0000\n" "Last-Translator: Davi Lopes \n" "Language-Team: Portuguese ] [-t]" msgstr "[all| ]" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "Navegar" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "Editar" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "Selecione o diretório" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "Selecione o ficheiro" + +#: builtin/common/settings/components.lua +msgid "Set" +msgstr "Selecionar" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(Não há descrição para esta configuração)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "Ruído 2D" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "Cancelar" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "Lacunaridade" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "Octavos" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "Deslocamento" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "Persistência" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "Guardar" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "Escala" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "Seed" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "amplitude X" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "amplitude Y" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "amplitude Z" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "valor absoluto" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "Padrões" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "amenizado" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "(The game will need to enable automatic exposure as well)" +msgstr "(O jogo precisará habilitar sombras também)" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "(The game will need to enable bloom as well)" +msgstr "(O jogo precisará habilitar sombras também)" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "(O jogo precisará habilitar sombras também)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "(Usar idioma do sistema)" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "Acessibilidade" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "Chat" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "Limpar" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "Controles" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "Desativado" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "Ativado" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "Em geral" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "Movimento" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "Sem resultados" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default" +msgstr "Restaurar valores padrão" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "Restaurar valores padrão ($1)" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "Procurar" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "Exibir configurações avançadas" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "Mostrar nomes técnicos" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Touchscreen layout" +msgstr "Tela sensível ao toque" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "pause_menu" +msgstr "FPS em menu de pausa" + +#: builtin/common/settings/settingtypes.lua +msgid "Client Mods" +msgstr "Mods de cliente" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "Conteúdo: Jogos" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "Conteúdo: Mods" + +#: builtin/common/settings/shadows_component.lua +#, fuzzy +msgid "(The game will need to enable shadows as well)" +msgstr "(O jogo precisará habilitar sombras também)" + +#: builtin/common/settings/shadows_component.lua +#, fuzzy +msgid "Custom" +msgstr "Personalizado" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "Sombras dinâmicas" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "Alto" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "Baixo" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "Médio" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "Muito Alto" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "Muito Baixo" + #: builtin/fstk/ui.lua msgid "" msgstr "" @@ -164,7 +409,6 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "Voltar" @@ -201,11 +445,6 @@ msgstr "Mods" msgid "No packages could be retrieved" msgstr "Nenhum pacote pode ser recuperado" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "Sem resultados" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "Sem atualizações" @@ -251,18 +490,6 @@ msgstr "Já instalado" msgid "Base Game:" msgstr "Jogo base:" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "Cancelar" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -391,6 +618,12 @@ msgstr "Não foi possível instalar $ 1 como $ 2" msgid "Unable to install a $1 as a texture pack" msgstr "Não foi possível instalar $1 como pacote de texturas" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "(Ativado, tem erro)" @@ -456,12 +689,6 @@ msgstr "Sem dependências opcionais" msgid "Optional dependencies:" msgstr "Dependências opcionais:" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "Guardar" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "Mundo:" @@ -612,11 +839,6 @@ msgstr "Rios" msgid "Sea level rivers" msgstr "Rios ao nível do mar" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "Seed" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "Transição suave entre biomas" @@ -762,6 +984,23 @@ msgstr "" "Esse modpack possui um nome explícito em seu modpack.conf que vai " "sobrescrever qualquer renomeio aqui." +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "Ativar tudo" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "Uma nova versão de $1 está disponível" @@ -790,7 +1029,7 @@ msgstr "Nunca" msgid "Visit website" msgstr "Visite o website" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "Definições" @@ -804,230 +1043,6 @@ msgstr "" "Tente reativar a lista de servidores públicos e verifique sua conexão com a " "Internet." -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "Navegar" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "Editar" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "Selecione o diretório" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "Selecione o ficheiro" - -#: builtin/mainmenu/settings/components.lua -msgid "Set" -msgstr "Selecionar" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(Não há descrição para esta configuração)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "Ruído 2D" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "Lacunaridade" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "Octavos" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "Deslocamento" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "Persistência" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "Escala" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "amplitude X" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "amplitude Y" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "amplitude Z" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "valor absoluto" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "Padrões" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "amenizado" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable automatic exposure as well)" -msgstr "(O jogo precisará habilitar sombras também)" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable bloom as well)" -msgstr "(O jogo precisará habilitar sombras também)" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "(O jogo precisará habilitar sombras também)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "(Usar idioma do sistema)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "Acessibilidade" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "Chat" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "Limpar" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "Controles" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "Desativado" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "Ativado" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "Em geral" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "Movimento" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default" -msgstr "Restaurar valores padrão" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "Restaurar valores padrão ($1)" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "Procurar" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "Exibir configurações avançadas" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "Mostrar nomes técnicos" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "Mods de cliente" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "Conteúdo: Jogos" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "Conteúdo: Mods" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "Ativado" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Shaders are disabled." -msgstr "Atualização da camera desativada" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -#, fuzzy -msgid "(The game will need to enable shadows as well)" -msgstr "(O jogo precisará habilitar sombras também)" - -#: builtin/mainmenu/settings/shadows_component.lua -#, fuzzy -msgid "Custom" -msgstr "Personalizado" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "Sombras dinâmicas" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "Alto" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "Baixo" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "Médio" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "Muito Alto" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "Muito Baixo" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "Sobre" @@ -1048,10 +1063,6 @@ msgstr "Desenvolvedores Principais" msgid "Core Team" msgstr "Equipe principal" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "Abrir o diretório de dados do utilizador" @@ -1203,10 +1214,22 @@ msgstr "Iniciar o jogo" msgid "You need to install a game before you can create a world." msgstr "Você precisa instalar um jogo antes de poder instalar um mod" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "Remover favorito" + #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "Endereço" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "Cliente" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "Modo Criativo" @@ -1220,6 +1243,11 @@ msgstr "Dano / PvP" msgid "Favorites" msgstr "Favoritos" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "Jogo" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "Servidores incompatíveis" @@ -1232,10 +1260,28 @@ msgstr "Juntar-se ao jogo" msgid "Login" msgstr "Login" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Number of mods: $1" +msgstr "Número de seguimentos de emersão" + +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Open server website" +msgstr "Intervalo de atualização do servidor" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "Ping" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Public Servers" msgstr "Servidores Públicos" @@ -1320,23 +1366,6 @@ msgstr "" "\n" "Consulte debug.txt para mais detalhes." -#: src/client/game.cpp -msgid "- Mode: " -msgstr "- Modo: " - -#: src/client/game.cpp -msgid "- Public: " -msgstr "- Público: " - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "- PvP: " - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "Nome do servidor: " - #: src/client/game.cpp msgid "A serialization error occurred:" msgstr "Ocorreu um erro:" @@ -1346,6 +1375,11 @@ msgstr "Ocorreu um erro:" msgid "Access denied. Reason: %s" msgstr "Acesso negado. Razão:%s" +#: src/client/game.cpp +#, fuzzy +msgid "All debug info hidden" +msgstr "Informação de debug mostrada" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "Avanço automático desativado" @@ -1366,6 +1400,10 @@ msgstr "Limites de bloco mostrados para o bloco atual" msgid "Block bounds shown for nearby blocks" msgstr "Limites de bloco mostrados para blocos próximos" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "Atualização da camera desativada" @@ -1378,10 +1416,6 @@ msgstr "Atualização da camera habilitada" msgid "Can't show block bounds (disabled by game or mod)" msgstr "Não é possível mostrar limites de bloco (desativado por mod ou jogo)" -#: src/client/game.cpp -msgid "Change Password" -msgstr "Mudar Senha" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "Modo cinemático desativado" @@ -1410,39 +1444,6 @@ msgstr "Erro de ligação (excedeu tempo?)" msgid "Connection failed for unknown reason" msgstr "A conexão falhou por motivo desconhecido" -#: src/client/game.cpp -msgid "Continue" -msgstr "Continuar" - -#: src/client/game.cpp -#, fuzzy -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" -"Controles por defeito:\n" -"Se não há nenhum menu visível:\n" -"- Um toque: ativa botão\n" -"- Duplo toque: colocar/usar\n" -"- Deslizar dedo: Olhar em redor\n" -"Se menu/inventário visível:\n" -"- Duplo toque: (fora do menu/inventário):\n" -" -->fechar\n" -"- Tocar Item e depois tocar num compartimento:\n" -" --> mover item\n" -"- Tocar e arrastar, e depois tocar com o 2º dedo\n" -" --> Coloca apenas um item no compartimento\n" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1456,31 +1457,15 @@ msgstr "A criar cliente..." msgid "Creating server..." msgstr "A criar servidor..." -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "Informação de debug e gráfico de perfil escondido" - #: src/client/game.cpp msgid "Debug info shown" msgstr "Informação de debug mostrada" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "Informação de debug, gráfico de perfil e wireframe escondidos" - #: src/client/game.cpp #, c-format msgid "Error creating client: %s" msgstr "A criar cliente: %s" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "Sair para o Menu" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "Sair para o S.O" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "Modo rápido desativado" @@ -1518,18 +1503,6 @@ msgstr "Névoa habilitada" msgid "Fog enabled by game or mod" msgstr "Zoom atualmente desativado por jogo ou mod" -#: src/client/game.cpp -msgid "Game info:" -msgstr "Info do jogo:" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "Jogo parado" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "Criando o servidor" - #: src/client/game.cpp msgid "Item definitions..." msgstr "Definições dos Itens..." @@ -1566,14 +1539,6 @@ msgstr "Modo atravessar paredes ativado (note: sem privilégio 'noclip')" msgid "Node definitions..." msgstr "A definir cubos..." -#: src/client/game.cpp -msgid "Off" -msgstr "Desligado" - -#: src/client/game.cpp -msgid "On" -msgstr "Ligado" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "Modo movimento pitch desativado" @@ -1586,38 +1551,22 @@ msgstr "Modo movimento pitch ativado" msgid "Profiler graph shown" msgstr "Gráfico de perfil mostrado" -#: src/client/game.cpp -msgid "Remote server" -msgstr "Servidor remoto" - #: src/client/game.cpp msgid "Resolving address..." msgstr "A resolver endereço..." -#: src/client/game.cpp -msgid "Respawn" -msgstr "Renascer" - #: src/client/game.cpp msgid "Shutting down..." msgstr "A desligar..." -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "Um Jogador" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "Volume do som" - #: src/client/game.cpp msgid "Sound muted" msgstr "Som mutado" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "Som do sistema está desativado" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "Som do sistema não é suportado nesta versão" @@ -1691,18 +1640,116 @@ msgstr "Distância de visualização alterado para %d" msgid "Volume changed to %d%%" msgstr "Som alterado para %d%%" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "Mostrar wireframe" -#: src/client/game.cpp -msgid "You died" -msgstr "Você morreu" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "Zoom atualmente desativado por jogo ou mod" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "- Modo: " + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "- Público: " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "- PvP: " + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "Nome do servidor: " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "Mudar Senha" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "Continuar" + +#: src/client/game_formspec.cpp +#, fuzzy +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" +"Controles por defeito:\n" +"Se não há nenhum menu visível:\n" +"- Um toque: ativa botão\n" +"- Duplo toque: colocar/usar\n" +"- Deslizar dedo: Olhar em redor\n" +"Se menu/inventário visível:\n" +"- Duplo toque: (fora do menu/inventário):\n" +" -->fechar\n" +"- Tocar Item e depois tocar num compartimento:\n" +" --> mover item\n" +"- Tocar e arrastar, e depois tocar com o 2º dedo\n" +" --> Coloca apenas um item no compartimento\n" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "Sair para o Menu" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "Sair para o S.O" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "Info do jogo:" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "Jogo parado" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "Criando o servidor" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "Desligado" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "Ligado" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "Servidor remoto" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "Renascer" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "Volume do som" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "Você morreu" + #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" msgstr "Conversa atualmente desativada por jogo ou mod" @@ -2042,8 +2089,9 @@ msgid "Failed to compile the \"%s\" shader." msgstr "Falha ao abrir página da web" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." -msgstr "" +#, fuzzy +msgid "GLSL is not supported by the driver" +msgstr "Som do sistema não é suportado nesta versão" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" #: src/content/mod_configuration.cpp @@ -2094,7 +2142,7 @@ msgstr "Avanço frontal automático" msgid "Automatic jumping" msgstr "Pulo automático" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "Especial" @@ -2106,7 +2154,7 @@ msgstr "Recuar" msgid "Block bounds" msgstr "Limites de bloco" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "Mudar camera" @@ -2130,7 +2178,7 @@ msgstr "Diminuir som" msgid "Double tap \"jump\" to toggle fly" msgstr "Carregue duas vezes em \"saltar\" para voar" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "Largar" @@ -2146,11 +2194,11 @@ msgstr "Alcance inc" msgid "Inc. volume" msgstr "Aumentar Volume" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "Inventário" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "Saltar" @@ -2182,7 +2230,7 @@ msgstr "Próximo item" msgid "Prev. item" msgstr "Item anterior" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "Seleccionar Distância" @@ -2194,7 +2242,7 @@ msgstr "Direita" msgid "Screenshot" msgstr "Captura de ecrã" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "Agachar" @@ -2202,15 +2250,15 @@ msgstr "Agachar" msgid "Toggle HUD" msgstr "Ativar interface" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "Ativar histórico de conversa" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "Ativar/Desativar correr" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "Ativar/Desativar vôo" @@ -2218,11 +2266,11 @@ msgstr "Ativar/Desativar vôo" msgid "Toggle fog" msgstr "Ativar névoa" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "Ativar minimapa" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "Ativar/Desativar noclip" @@ -2230,7 +2278,7 @@ msgstr "Ativar/Desativar noclip" msgid "Toggle pitchmove" msgstr "Alternar pitchmove" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "Zoom" @@ -2267,7 +2315,7 @@ msgstr "Palavra-passe antiga" msgid "Passwords do not match!" msgstr "As palavra-passes não correspondem!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "Sair" @@ -2280,16 +2328,47 @@ msgstr "Mutado" msgid "Sound Volume: %d%%" msgstr "Volume do som: %d%%" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Add button" +msgstr "Roda do Rato" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "Feito!" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Remove" +msgstr "Servidor remoto" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Joystick" msgstr "ID do Joystick" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Toggle debug" msgstr "Ativar névoa" @@ -2516,8 +2595,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" "Suporte de 3D.\n" "Modos atualmente suportados:\n" @@ -2586,10 +2664,6 @@ msgstr "Alcance de blocos ativos" msgid "Active object send range" msgstr "Distância de envio de objetos ativos" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "Adiciona partículas quando escava um node." - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2619,6 +2693,17 @@ msgstr "Nome do administrador" msgid "Advanced" msgstr "Avançado" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +#, fuzzy +msgid "Allow clouds to look 3D instead of flat." +msgstr "Usar nuvens 3D em vez de planas." + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "" @@ -3025,15 +3110,14 @@ msgstr "Raio das nuvens" msgid "Clouds" msgstr "Nuvens" -#: src/settings_translation_file.cpp -#, fuzzy -msgid "Clouds are a client-side effect." -msgstr "As nuvens são um efeito do lado do cliente." - #: src/settings_translation_file.cpp msgid "Clouds in menu" msgstr "Nuvens no menu" +#: src/settings_translation_file.cpp +msgid "Color depth for post-processing texture" +msgstr "" + #: src/settings_translation_file.cpp msgid "Colored fog" msgstr "Névoa colorida" @@ -3057,7 +3141,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" "Lista de flags separadas por vírgula para esconder no repositório de " "conteúdos.\n" @@ -3230,6 +3314,14 @@ msgstr "Nível de log de depuração" msgid "Debugging" msgstr "Debugging" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "Intervalo de atualização do servidor" @@ -3405,18 +3497,10 @@ msgstr "" "Os desertos ocorrem quando np_biome excede este valor.\n" "Quando a marcação 'snowbiomes' está ativada, isto é ignorado." -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "Dessincroniza animação de blocos" - #: src/settings_translation_file.cpp msgid "Developer Options" msgstr "Opções de desenvolvedor" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "Ativar Particulas" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "Não permitir palavra-passes vazias" @@ -3449,6 +3533,14 @@ msgstr "Carregue duas vezes em saltar para voar" msgid "Double-tapping the jump key toggles fly mode." msgstr "Carregar duas vezes em saltar ativa/desativa o vôo." +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "Mostrar informações de depuração do Gerador de mapa." @@ -3531,9 +3623,10 @@ msgid "" msgstr "" #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" "Ativa sombras coloridas.\n" "Quando em true, nodes translúcidos podem projetar sombras coloridas. Requer " @@ -3622,10 +3715,10 @@ msgstr "" "Por exemplo: 0 para não ver balançando; 1.0 para normal; 2.0 para duplo." #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" "Ativar/desativar a execução de um servidor IPv6.\n" "Ignorado se bind_address estiver definido.\n" @@ -3649,13 +3742,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "Ativa animação de itens no inventário." -#: src/settings_translation_file.cpp -#, fuzzy -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "Ativar armazenamento em cache para os meshes das faces." - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -4009,10 +4095,6 @@ msgstr "Escala do interface gráfico" msgid "GUI scaling filter" msgstr "Filtro de redimensionamento do interface gráfico" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "Filtro txr2img de redimensionamento do interface gráfico" - #: src/settings_translation_file.cpp msgid "Gamepads" msgstr "Gamepads" @@ -4278,16 +4360,6 @@ msgstr "" "Se ativado, a tecla \"especial\" em vez de \"esgueirar\" servirá para\n" "descer." -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" -"Se ativado, o registro da conta será separado do login na interface do " -"usuário.\n" -"Se desativadas, novas contas serão registradas automaticamente ao fazer " -"login." - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -4312,6 +4384,18 @@ msgstr "" "Se ativado, novos jogadores não podem entrar sem uma senha, ou uma senha " "vazia." +#: src/settings_translation_file.cpp +#, fuzzy +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" +"Se ativado, o registro da conta será separado do login na interface do " +"usuário.\n" +"Se desativadas, novas contas serão registradas automaticamente ao fazer " +"login." + #: src/settings_translation_file.cpp #, fuzzy msgid "" @@ -4444,11 +4528,6 @@ msgstr "" "Intervalo para cada salvamento de alterações importantes no mundo, indicado " "em segundos." -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "" -"Intervalo de envio de hora do dia para os clientes, indicados em segundos." - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "Animações dos itens do inventário" @@ -5174,10 +5253,6 @@ msgstr "" msgid "Maximum users" msgstr "Limite de utilizadores" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "Cache de malha" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "Mensagem do dia" @@ -5213,6 +5288,10 @@ msgid "Minimum limit of random number of small caves per mapchunk." msgstr "" "Limite mínimo da quantidade aleatória de cavernas pequenas por mapchunk." +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "Mapeamento MIP" @@ -5307,9 +5386,10 @@ msgstr "" "- As floatlands opcionais da v7 (desativadas por padrão)." #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" "Nome do jogador.\n" @@ -5833,17 +5913,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -6102,16 +6184,6 @@ msgstr "" msgid "Shader path" msgstr "Sombras" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "Sombras" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "Qualidade do filtro de sombras" @@ -6299,10 +6371,9 @@ msgstr "" #: src/settings_translation_file.cpp #, fuzzy msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" "Espalhe uma atualização completa do mapa de sombras em uma determinada " "quantidade de quadros.\n" @@ -6679,10 +6750,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "Hora do dia quando um novo mundo é iniciado, em milihoras (0-23999)." -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "Intervalo de tempo de envio" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "Velocidade de tempo" @@ -6751,6 +6818,11 @@ msgstr "Líquidos Opacos" msgid "Transparency Sorting Distance" msgstr "Distância de classificação de transparência" +#: src/settings_translation_file.cpp +#, fuzzy +msgid "Transparency Sorting Group by Buffers" +msgstr "Distância de classificação de transparência" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "Ruido de árvores" @@ -6802,12 +6874,16 @@ msgid "Undersampling" msgstr "Subamostragem" #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Undersampling is similar to using a lower screen resolution, but it applies\n" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" "A subamostragem é semelhante à utilização de uma resolução de ecrã mais " "baixa, mas aplica-se\n" @@ -6836,17 +6912,15 @@ msgstr "Limite topo Y de dungeons." msgid "Upper Y limit of floatlands." msgstr "Limite máximo Y para as ilhas flutuantes." -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "Usar nuvens 3D em vez de planas." - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "Usar uma animação de nuvem para o fundo do menu principal." #: src/settings_translation_file.cpp #, fuzzy -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "Usar filtragem anisotrópica quando visualizar texturas de um ângulo." #: src/settings_translation_file.cpp @@ -7112,25 +7186,14 @@ msgstr "" "directamente para o hardware (e.g. texturas de cubos no inventário)." #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" -"Quando gui_scaling_filter_txr2img é true, copie essas imagens\n" -"de hardware para software para dimensionamento. Quando false,\n" -"voltará para o velho método de dimensionamento, para drivers de\n" -"vídeo que não suportem propriedades baixas de texturas voltam do hardware." - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -7155,12 +7218,6 @@ msgstr "" "Se os planos de fundo da marca de nome devem ser mostrados por padrão.\n" "Os mods ainda podem definir um plano de fundo." -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" -"Determina se animações das texturas dos cubos devem ser dessincronizadas " -"entre mapblocks." - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -7189,9 +7246,9 @@ msgid "Whether to fog out the end of the visible area." msgstr "Se for usar névoa no fim da área visível." #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -7389,6 +7446,9 @@ msgstr "limite paralelo de cURL" #~ "Note que o campo de endereço no menu principal sobrescreve esta " #~ "configuração." +#~ msgid "Adds particles when digging a node." +#~ msgstr "Adiciona partículas quando escava um node." + #~ msgid "" #~ "Adjust dpi configuration to your screen (non X11/Android only) e.g. for " #~ "4k screens." @@ -7551,6 +7611,10 @@ msgstr "limite paralelo de cURL" #~ msgid "Clean transparent textures" #~ msgstr "Limpar texturas transparentes" +#, fuzzy +#~ msgid "Clouds are a client-side effect." +#~ msgstr "As nuvens são um efeito do lado do cliente." + #~ msgid "Command key" #~ msgstr "Tecla de comando" @@ -7643,9 +7707,15 @@ msgstr "limite paralelo de cURL" #~ msgid "Darkness sharpness" #~ msgstr "Nitidez da escuridão" +#~ msgid "Debug info and profiler graph hidden" +#~ msgstr "Informação de debug e gráfico de perfil escondido" + #~ msgid "Debug info toggle key" #~ msgstr "Tecla para alternar modo de depuração" +#~ msgid "Debug info, profiler graph, and wireframe hidden" +#~ msgstr "Informação de debug, gráfico de perfil e wireframe escondidos" + #~ msgid "Dec. volume key" #~ msgstr "Tecla de dimin. de som" @@ -7708,9 +7778,15 @@ msgstr "limite paralelo de cURL" #~ "biomas.\n" #~ "Y do limite superior de lava em grandes cavernas." +#~ msgid "Desynchronize block animation" +#~ msgstr "Dessincroniza animação de blocos" + #~ msgid "Dig key" #~ msgstr "Tecla para escavar" +#~ msgid "Digging particles" +#~ msgstr "Ativar Particulas" + #~ msgid "Disable anticheat" #~ msgstr "Desativar anti-batota" @@ -7735,6 +7811,10 @@ msgstr "limite paralelo de cURL" #~ msgid "Dynamic shadows:" #~ msgstr "Sombras dinâmicas:" +#, fuzzy +#~ msgid "Enable" +#~ msgstr "Ativado" + #~ msgid "Enable VBO" #~ msgstr "Ativar VBO" @@ -7769,6 +7849,12 @@ msgstr "limite paralelo de cURL" #~ "texturas ou gerado automaticamente.\n" #~ "Requer que as sombras sejam ativadas." +#, fuzzy +#~ msgid "" +#~ "Enables caching of facedir rotated meshes.\n" +#~ "This is only effective with shaders disabled." +#~ msgstr "Ativar armazenamento em cache para os meshes das faces." + #~ msgid "Enables filmic tone mapping" #~ msgstr "Ativa mapeamento de tons fílmico" @@ -7811,9 +7897,6 @@ msgstr "limite paralelo de cURL" #~ "Opção experimental, pode causar espaços visíveis entre blocos\n" #~ "quando definido com num úmero superior a 0." -#~ msgid "FPS in pause menu" -#~ msgstr "FPS em menu de pausa" - #~ msgid "FSAA" #~ msgstr "FSAA (Antialiasing de ecrã inteiro)" @@ -7900,8 +7983,8 @@ msgstr "limite paralelo de cURL" #~ msgid "Full screen BPP" #~ msgstr "BPP em ecrã inteiro" -#~ msgid "Game" -#~ msgstr "Jogo" +#~ msgid "GUI scaling filter txr2img" +#~ msgstr "Filtro txr2img de redimensionamento do interface gráfico" #~ msgid "Gamma" #~ msgstr "Gama" @@ -8065,6 +8148,10 @@ msgstr "limite paralelo de cURL" #~ msgid "Instrumentation" #~ msgstr "Monitorização" +#~ msgid "Interval of sending time of day to clients, stated in seconds." +#~ msgstr "" +#~ "Intervalo de envio de hora do dia para os clientes, indicados em segundos." + #~ msgid "Invalid gamespec." #~ msgstr "Especificação de jogo inválida." @@ -8076,649 +8163,649 @@ msgstr "limite paralelo de cURL" #~ msgid "" #~ "Key for decreasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para diminuir o alcance de visão.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for decreasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para mover o jogador para a esquerda.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for digging.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para escavar. \n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for dropping the currently selected item.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para deixar cair o item atualmente selecionado.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para aumentar o alcance de visão.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para mover o jogador para a esquerda.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for jumping.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para pular. \n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving fast in fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para mover-se rápido no modo rápido. \n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player backward.\n" #~ "Will also disable autoforward, when active.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para mover o jogador para trás.\n" #~ "Também ira desativar o andar para frente automático quando ativo.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player forward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para mover o jogador para a frente.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player left.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para mover o jogador para a esquerda.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player right.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para mover o jogador para a direita.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for muting the game.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para mover o jogador para a esquerda.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para abrir a janela de bate-papo para digitar comandos.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type local commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para mover o jogador para a frente.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para abrir a janela de bate-papo.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the inventory.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para abrir o inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for placing.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para pôr objetos. \n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 11th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o 11th slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 12th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o 12th slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 13th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o 13th slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 14th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o 14th slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 15th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o 15th slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 16th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o 16th slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 17th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o 17th slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 18th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o 18th slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 19th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o 19th slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 20th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o 20th slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 21st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o 21st slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 22nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o 22nd slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 23rd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o 23rd slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 24th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o 24th slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 25th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o 25th slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 26th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o 26th slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 27th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o 27th slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 28th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o 28th slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 29th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o 29th slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 30th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o 30th slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 31st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o 31st slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 32nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o 32nd slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the eighth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o oitavo slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the fifth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o quinto slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the first hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o primeiro slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the fourth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o quarto slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the next item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para mover o jogador para a esquerda.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the ninth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o nono slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the previous item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para mover o jogador para a esquerda.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the second hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o segundo slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the seventh hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o sétimo slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the sixth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o sexto slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the tenth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o décimo slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the third hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o terceiro slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for sneaking.\n" #~ "Also used for climbing down and descending in water if aux1_descends is " #~ "disabled.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla por esgueirar.\n" #~ "Também usado para descer e descendente na água se aux1_descends está " #~ "desativado.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for switching between first- and third-person camera.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para comutação entre câmara de primeira e terceira pessoa.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for taking screenshots.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para tirar fotos do ecrã.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling autoforward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para ativar o modo avanço automático.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling cinematic mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para ativar/desativar modo cinematográfico.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling display of minimap.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para ativar/desativar a exibição do mini-mapa.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para ativar/desativar o modo rápido.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling flying.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para alternar a voar.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling noclip mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para alternar modo noclip.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling pitch move mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para ativar o modo pitch.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the camera update. Only used for development\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para ativar a atualização da câmara. Usado para desenvolvimento.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of chat.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para ativar a exibição do bate-papo.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of debug info.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para ativar/desativar a exibição de informações de depuração.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of fog.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para ativar a exibição da névoa.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the HUD.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para ativar/desativar a a exibição do HUD.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the large chat console.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para ativar/desativar exibição do bate-papo.\n" -#~ "Ver http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ver http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the profiler. Used for development.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para ativar/desativar a exibição do profiler. Usado para o " #~ "desenvolvimento.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling unlimited view range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para alternar o alcance de visão ilimitado.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key to use view zoom when possible.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para mover o jogador para a esquerda.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Keybindings. (If this menu screws up, remove stuff from minetest.conf)" @@ -8794,6 +8881,9 @@ msgstr "limite paralelo de cURL" #~ msgid "Menus" #~ msgstr "Opções para menus" +#~ msgid "Mesh cache" +#~ msgstr "Cache de malha" + #~ msgid "Minimap" #~ msgstr "Mini-mapa" @@ -9001,6 +9091,9 @@ msgstr "limite paralelo de cURL" #~ msgid "Server / Singleplayer" #~ msgstr "Servidor / Um jogador" +#~ msgid "Shaders" +#~ msgstr "Sombras" + #~ msgid "Shaders (experimental)" #~ msgstr "Shaders (experimental)" @@ -9018,6 +9111,10 @@ msgstr "limite paralelo de cURL" #~ "vídeo.\n" #~ "Só funcionam com o modo de vídeo OpenGL." +#, fuzzy +#~ msgid "Shaders are disabled." +#~ msgstr "Atualização da camera desativada" + #~ msgid "Shadow limit" #~ msgstr "Limite de mapblock" @@ -9051,6 +9148,9 @@ msgstr "limite paralelo de cURL" #~ msgid "Smooths rotation of camera. 0 to disable." #~ msgstr "Suaviza a rotação da câmara. 0 para desativar." +#~ msgid "Sound system is disabled" +#~ msgstr "Som do sistema está desativado" + #~ msgid "Special" #~ msgstr "Especial" @@ -9095,6 +9195,9 @@ msgstr "limite paralelo de cURL" #~ msgid "This font will be used for certain languages." #~ msgstr "Esta fonte será usada para determinados idiomas." +#~ msgid "Time send interval" +#~ msgstr "Intervalo de tempo de envio" + #~ msgid "To enable shaders the OpenGL driver needs to be used." #~ msgstr "Para ativar as sombras é necessário usar o controlador OpenGL." @@ -9222,6 +9325,17 @@ msgstr "limite paralelo de cURL" #~ msgid "Waving water" #~ msgstr "Balançar das Ondas" +#~ msgid "" +#~ "When gui_scaling_filter_txr2img is true, copy those images\n" +#~ "from hardware to software for scaling. When false, fall back\n" +#~ "to the old scaling method, for video drivers that don't\n" +#~ "properly support downloading textures back from hardware." +#~ msgstr "" +#~ "Quando gui_scaling_filter_txr2img é true, copie essas imagens\n" +#~ "de hardware para software para dimensionamento. Quando false,\n" +#~ "voltará para o velho método de dimensionamento, para drivers de\n" +#~ "vídeo que não suportem propriedades baixas de texturas voltam do hardware." + #~ msgid "" #~ "Whether FreeType fonts are used, requires FreeType support to be compiled " #~ "in.\n" @@ -9234,6 +9348,12 @@ msgstr "limite paralelo de cURL" #~ msgid "Whether dungeons occasionally project from the terrain." #~ msgstr "Se dungeons ocasionalmente se projetam do terreno." +#~ msgid "" +#~ "Whether node texture animations should be desynchronized per mapblock." +#~ msgstr "" +#~ "Determina se animações das texturas dos cubos devem ser dessincronizadas " +#~ "entre mapblocks." + #~ msgid "Whether to allow players to damage and kill each other." #~ msgstr "" #~ "Se deseja permitir aos jogadores causar dano e matar uns aos outros." diff --git a/po/pt_BR/luanti.po b/po/pt_BR/luanti.po index 6d263c6e0..d973bb0ee 100644 --- a/po/pt_BR/luanti.po +++ b/po/pt_BR/luanti.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Portuguese (Brazil) (Minetest)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" "PO-Revision-Date: 2024-09-08 12:09+0000\n" "Last-Translator: Davi Lopes \n" "Language-Team: Portuguese (Brazil) ] [-t]" msgstr "[all| ]" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "Procurar" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "Editar" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "Selecione o diretório" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "Selecione o arquivo" + +#: builtin/common/settings/components.lua +#, fuzzy +msgid "Set" +msgstr "Tecla Select" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(Não há uma descrição para esta configuração)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "Ruído 2D" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "Cancelar" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "Lacunaridade" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "Octavos" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "Deslocamento" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "Persistência" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "Salvar" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "Escala" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "Semente (Seed)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "amplitude X" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "amplitude Y" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "amplitude Z" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "valor absoluto" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "padrão" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "amenizado" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "Bate-papo" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "Limpar" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "Controles" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "Desabilitado" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "Habilitado" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "Geral" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Movement" +msgstr "Modo rápido" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "Sem resultados" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Reset setting to default" +msgstr "Restaurar Padrão" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "Pesquisar" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "Mostrar nomes técnicos" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Touchscreen layout" +msgstr "Tela sensível ao toque" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "pause_menu" +msgstr "FPS no menu de pausa" + +#: builtin/common/settings/settingtypes.lua +msgid "Client Mods" +msgstr "Mods Locais" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "Conteúdo: Jogos" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "Conteúdo: Mods" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "Sombras dinâmicas" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "Alto" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "Baixo" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "Médio" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "Muito Alto" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "Muito Baixo" + #: builtin/fstk/ui.lua msgid "" msgstr "" @@ -166,7 +409,6 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "Backspace" @@ -203,11 +445,6 @@ msgstr "Mods" msgid "No packages could be retrieved" msgstr "Nenhum pacote pôde ser recuperado" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "Sem resultados" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "Sem atualizações" @@ -253,18 +490,6 @@ msgstr "Já instalado" msgid "Base Game:" msgstr "Jogo Base:" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "Cancelar" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -393,6 +618,12 @@ msgstr "Não foi possível instalar um $1 como um $2" msgid "Unable to install a $1 as a texture pack" msgstr "Não foi possível instalar $1 como pacote de texturas" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "(Habilitado, com erros)" @@ -458,12 +689,6 @@ msgstr "Sem dependências opcionais" msgid "Optional dependencies:" msgstr "Dependências opcionais:" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "Salvar" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "Mundo:" @@ -614,11 +839,6 @@ msgstr "Rios" msgid "Sea level rivers" msgstr "Rios ao nível do mar" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "Semente (Seed)" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "Transição suave entre biomas" @@ -759,6 +979,23 @@ msgstr "" "Esse modpack possui um nome explícito em seu modpack.conf que vai " "sobrescrever qualquer nome aqui." +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "Habilitar todos" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "Uma nova versão de $1 está disponível" @@ -787,7 +1024,7 @@ msgstr "Nunca" msgid "Visit website" msgstr "Visitar site" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "Configurações" @@ -801,228 +1038,6 @@ msgstr "" "Tente reativar a lista de servidores públicos e verifique sua conexão com a " "internet." -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "Procurar" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "Editar" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "Selecione o diretório" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "Selecione o arquivo" - -#: builtin/mainmenu/settings/components.lua -#, fuzzy -msgid "Set" -msgstr "Tecla Select" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(Não há uma descrição para esta configuração)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "Ruído 2D" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "Lacunaridade" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "Octavos" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "Deslocamento" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "Persistência" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "Escala" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "amplitude X" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "amplitude Y" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "amplitude Z" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "valor absoluto" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "padrão" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "amenizado" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "Bate-papo" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "Limpar" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "Controles" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "Desabilitado" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "Habilitado" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "Geral" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Movement" -msgstr "Modo rápido" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Reset setting to default" -msgstr "Restaurar Padrão" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "Pesquisar" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "Mostrar nomes técnicos" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "Mods Locais" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "Conteúdo: Jogos" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "Conteúdo: Mods" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "Habilitado" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Shaders are disabled." -msgstr "Atualização da camera desabilitada" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "Sombras dinâmicas" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "Alto" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "Baixo" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "Médio" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "Muito Alto" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "Muito Baixo" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "Sobre" @@ -1043,10 +1058,6 @@ msgstr "Desenvolvedores Principais" msgid "Core Team" msgstr "Equipe Principal" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "Abrir diretório de dados do usuário" @@ -1196,10 +1207,22 @@ msgstr "Iniciar Jogo" msgid "You need to install a game before you can create a world." msgstr "" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "Remover favorito" + #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "Endereço" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "Cliente" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "Modo criativo" @@ -1213,6 +1236,11 @@ msgstr "Dano / PvP" msgid "Favorites" msgstr "Favoritos" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "Jogo" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "Servidores incompatíveis" @@ -1225,10 +1253,28 @@ msgstr "Entrar em um Jogo" msgid "Login" msgstr "Entrar" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Number of mods: $1" +msgstr "Número de seguimentos de emersão" + +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Open server website" +msgstr "Passo do servidor dedicado" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "Ping" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Public Servers" msgstr "Servidores Públicos" @@ -1314,23 +1360,6 @@ msgstr "" "\n" "Verifique o debug.txt para mais detalhes." -#: src/client/game.cpp -msgid "- Mode: " -msgstr "- Modo: " - -#: src/client/game.cpp -msgid "- Public: " -msgstr "- Público: " - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "- PvP: " - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "Nome do servidor: " - #: src/client/game.cpp msgid "A serialization error occurred:" msgstr "Ocorreu um erro:" @@ -1340,6 +1369,11 @@ msgstr "Ocorreu um erro:" msgid "Access denied. Reason: %s" msgstr "Acesso negado. Razão:%s" +#: src/client/game.cpp +#, fuzzy +msgid "All debug info hidden" +msgstr "Informação de debug mostrada" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "Avanço automático para frente desabilitado" @@ -1360,6 +1394,10 @@ msgstr "Limites de bloco mostrados para o bloco atual" msgid "Block bounds shown for nearby blocks" msgstr "Limites de bloco mostrados para blocos próximos" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "Atualização da camera desabilitada" @@ -1375,10 +1413,6 @@ msgstr "" "Não é possível mostrar limites de bloco (está desabilitado por um mod ou " "jogo)" -#: src/client/game.cpp -msgid "Change Password" -msgstr "Alterar a senha" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "Modo cinemático desabilitado" @@ -1407,39 +1441,6 @@ msgstr "Erro de conexão (tempo excedido?)" msgid "Connection failed for unknown reason" msgstr "A conexão falhou por motivo desconhecido" -#: src/client/game.cpp -msgid "Continue" -msgstr "Continuar" - -#: src/client/game.cpp -#, fuzzy -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" -"Controles:\n" -"Se não há nenhum menu visível:\n" -"- Um toque: ativa botão\n" -"- Duplo toque: place/use\n" -"- Deslizar dedo: Olhar ao redor\n" -"Menu/Inventário visível:\n" -"- Duplo toque: (Fora do menu):\n" -" -->Fechar\n" -"- Tocar Item e depois tocar em um slot:\n" -" --> move item\n" -"- Tocar e arrastar, e depois tocar com o 2º dedo\n" -" --> Coloca apenas um item no slot\n" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1453,31 +1454,15 @@ msgstr "Criando o cliente..." msgid "Creating server..." msgstr "Criando o servidor..." -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "Informação de debug e gráfico de perfil escondido" - #: src/client/game.cpp msgid "Debug info shown" msgstr "Informação de debug mostrada" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "Informação de debug, gráfico de perfil e wireframe escondidos" - #: src/client/game.cpp #, c-format msgid "Error creating client: %s" msgstr "Erro ao iniciar cliente: %s" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "Sair para o menu" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "Sair do Minetest" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "Modo rápido desabilitado" @@ -1515,18 +1500,6 @@ msgstr "Névoa habilitada" msgid "Fog enabled by game or mod" msgstr "Zoom atualmente desabilitado por jogo ou mod" -#: src/client/game.cpp -msgid "Game info:" -msgstr "Informação do jogo:" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "Jogo parado" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "Criando o servidor" - #: src/client/game.cpp msgid "Item definitions..." msgstr "Carregando itens..." @@ -1563,14 +1536,6 @@ msgstr "Modo atravessar paredes habilitado(note: sem privilégio 'noclip')" msgid "Node definitions..." msgstr "Carregando blocos..." -#: src/client/game.cpp -msgid "Off" -msgstr "Desligado" - -#: src/client/game.cpp -msgid "On" -msgstr "Ligado" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "Modo movimento pitch desabilitado" @@ -1583,38 +1548,22 @@ msgstr "Modo movimento pitch habilitado" msgid "Profiler graph shown" msgstr "Gráfico de perfil mostrado" -#: src/client/game.cpp -msgid "Remote server" -msgstr "Servidor remoto" - #: src/client/game.cpp msgid "Resolving address..." msgstr "Resolvendo os endereços..." -#: src/client/game.cpp -msgid "Respawn" -msgstr "Reviver" - #: src/client/game.cpp msgid "Shutting down..." msgstr "Desligando tudo..." -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "Um jogador" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "Volume do som" - #: src/client/game.cpp msgid "Sound muted" msgstr "Som mutado" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "Sistema de som está desativado" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "Sistema de som não é suportado nesta versão" @@ -1688,18 +1637,116 @@ msgstr "Distancia de visualização alterado pra %d" msgid "Volume changed to %d%%" msgstr "Volume mudado para %d%%" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "Mostrar wireframe" -#: src/client/game.cpp -msgid "You died" -msgstr "Você morreu" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "Zoom atualmente desabilitado por jogo ou mod" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "- Modo: " + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "- Público: " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "- PvP: " + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "Nome do servidor: " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "Alterar a senha" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "Continuar" + +#: src/client/game_formspec.cpp +#, fuzzy +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" +"Controles:\n" +"Se não há nenhum menu visível:\n" +"- Um toque: ativa botão\n" +"- Duplo toque: place/use\n" +"- Deslizar dedo: Olhar ao redor\n" +"Menu/Inventário visível:\n" +"- Duplo toque: (Fora do menu):\n" +" -->Fechar\n" +"- Tocar Item e depois tocar em um slot:\n" +" --> move item\n" +"- Tocar e arrastar, e depois tocar com o 2º dedo\n" +" --> Coloca apenas um item no slot\n" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "Sair para o menu" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "Sair do Minetest" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "Informação do jogo:" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "Jogo parado" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "Criando o servidor" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "Desligado" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "Ligado" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "Servidor remoto" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "Reviver" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "Volume do som" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "Você morreu" + #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" msgstr "Bate-papo atualmente desativado por jogo ou mod" @@ -2039,8 +2086,9 @@ msgid "Failed to compile the \"%s\" shader." msgstr "Falha ao abrir página da web" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." -msgstr "" +#, fuzzy +msgid "GLSL is not supported by the driver" +msgstr "Sistema de som não é suportado nesta versão" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" #: src/content/mod_configuration.cpp @@ -2090,7 +2138,7 @@ msgstr "Avanço frontal automático" msgid "Automatic jumping" msgstr "Pulo automático" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "Especial" @@ -2102,7 +2150,7 @@ msgstr "Voltar" msgid "Block bounds" msgstr "Limites de bloco" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "Mudar camera" @@ -2126,7 +2174,7 @@ msgstr "Abaixar volume" msgid "Double tap \"jump\" to toggle fly" msgstr "\"Pular\" duas vezes para ativar o voo" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "Soltar" @@ -2142,11 +2190,11 @@ msgstr "Alcance inc" msgid "Inc. volume" msgstr "Aumentar Volume" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "Inventário" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "Pular" @@ -2178,7 +2226,7 @@ msgstr "Próximo item" msgid "Prev. item" msgstr "Item anterior" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "Selecionar distância" @@ -2190,7 +2238,7 @@ msgstr "Direita" msgid "Screenshot" msgstr "Captura de tela" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "Esgueirar" @@ -2198,15 +2246,15 @@ msgstr "Esgueirar" msgid "Toggle HUD" msgstr "Ativar interface" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "Ativar histórico de conversa" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "Alternar corrida" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "Alternar voo" @@ -2214,11 +2262,11 @@ msgstr "Alternar voo" msgid "Toggle fog" msgstr "Ativar névoa" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "Ativar minimapa" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "Alternar noclip" @@ -2226,7 +2274,7 @@ msgstr "Alternar noclip" msgid "Toggle pitchmove" msgstr "Ativar Voar seguindo a câmera" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "Zoom" @@ -2263,7 +2311,7 @@ msgstr "Senha antiga" msgid "Passwords do not match!" msgstr "As senhas não correspondem!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "Sair" @@ -2276,16 +2324,47 @@ msgstr "Mutado" msgid "Sound Volume: %d%%" msgstr "Volume do som: %d%%" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Add button" +msgstr "Roda do mouse" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "Pronto!" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Remove" +msgstr "Servidor remoto" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Joystick" msgstr "ID do Joystick" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Toggle debug" msgstr "Ativar névoa" @@ -2517,8 +2596,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" "Suporte 3D.\n" "Modos atualmente suportados:\n" @@ -2586,10 +2664,6 @@ msgstr "Limite para blocos ativos" msgid "Active object send range" msgstr "Alcance para envio de objetos ativos" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "Adiciona partículas quando cavando um node." - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2619,6 +2693,17 @@ msgstr "Nome do Admin" msgid "Advanced" msgstr "Avançado" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +#, fuzzy +msgid "Allow clouds to look 3D instead of flat." +msgstr "Usar nuvens 3D em vez de planas." + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "" @@ -3030,15 +3115,14 @@ msgstr "Raio das nuvens" msgid "Clouds" msgstr "Nuvens" -#: src/settings_translation_file.cpp -#, fuzzy -msgid "Clouds are a client-side effect." -msgstr "Conf. das nuvens apenas afetam seu jogo local." - #: src/settings_translation_file.cpp msgid "Clouds in menu" msgstr "Nuvens no menu" +#: src/settings_translation_file.cpp +msgid "Color depth for post-processing texture" +msgstr "" + #: src/settings_translation_file.cpp msgid "Colored fog" msgstr "Névoa colorida" @@ -3062,7 +3146,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" "Lista de flags separadas por vírgula para esconder no repositório de " "conteúdos.\n" @@ -3231,6 +3315,14 @@ msgstr "Nível de log do Debug" msgid "Debugging" msgstr "Depuração" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "Passo do servidor dedicado" @@ -3406,18 +3498,10 @@ msgstr "" "Os desertos ocorrem quando np_biome excede este valor.\n" "Quando a marcação 'snowbiomes' está ativada, isto é ignorado." -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "Dessincronizar animação do bloco" - #: src/settings_translation_file.cpp msgid "Developer Options" msgstr "Opções de Desenvolvedor" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "Partículas de Escavação" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "Não permitir logar sem senha" @@ -3449,6 +3533,14 @@ msgstr "\"Pular\" duas vezes ativa o vôo" msgid "Double-tapping the jump key toggles fly mode." msgstr "\"Pular\" duas vezes alterna o modo vôo." +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "Mostrar informações de depuração do Gerador de mapa." @@ -3535,9 +3627,10 @@ msgstr "" "simulando o comportamento do olho humano." #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" "Ativa sombras coloridas.\n" "Quando em true, nodes translúcidos podem projetar sombras coloridas. Requer " @@ -3626,10 +3719,10 @@ msgstr "" "Por exemplo: 0 para não ver balançando; 1.0 para normal; 2.0 para duplo." #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" "Habilitar/desabilitar a execução de um IPv6 do servidor. \n" "Ignorado se bind_address estiver definido.\n" @@ -3652,13 +3745,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "Habilita itens animados no inventário." -#: src/settings_translation_file.cpp -#, fuzzy -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "Ativar armazenamento em cache de direção de face girada das malhas." - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -4009,10 +4095,6 @@ msgstr "Escala da GUI" msgid "GUI scaling filter" msgstr "Filtro de escala da GUI" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "Filtro txr2img de escala da GUI" - #: src/settings_translation_file.cpp msgid "Gamepads" msgstr "Controles de Videogame" @@ -4280,15 +4362,6 @@ msgstr "" "Se habilitado, a tecla \"especial\" em vez de \"esgueirar\" servirá para\n" "descer." -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" -"Se habilitado, o registro de contas fica separado do login na UI.\n" -"Caso desabilitado, novas contas serão registradas automaticamente ao entrar " -"em um servidor novo." - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -4313,6 +4386,17 @@ msgstr "" "Se habilitado, novos jogadores não podem entrar sem senha ou mudá-la para " "uma senha vazia." +#: src/settings_translation_file.cpp +#, fuzzy +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" +"Se habilitado, o registro de contas fica separado do login na UI.\n" +"Caso desabilitado, novas contas serão registradas automaticamente ao entrar " +"em um servidor novo." + #: src/settings_translation_file.cpp #, fuzzy msgid "" @@ -4366,8 +4450,8 @@ msgid "" msgstr "" "Se o tamanho do arquivo debug.txt exceder o número de megabytes " "especificado\n" -"nesta configuração quando ele for aberto, o arquivo é movido para debug." -"txt.1,\n" +"nesta configuração quando ele for aberto, o arquivo é movido para " +"debug.txt.1,\n" "excluindo um debug.txt.1 mais antigo, se houver.\n" "debug.txt só é movido se esta configuração for positiva." @@ -4444,12 +4528,6 @@ msgstr "" "Intervalo para cada salvamento de alterações importantes no mundo, indicado " "em segundos." -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "" -"Intervalo de tempo para o envio das horas dentro do jogo aos clientes, em " -"segundos." - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "Animações nos itens do inventário" @@ -5174,10 +5252,6 @@ msgstr "" msgid "Maximum users" msgstr "Limite de usuários" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "Cache de malha" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "Mensagem do dia" @@ -5211,6 +5285,10 @@ msgstr "Limite mínimo do número aleatório de grandes cavernas por mapchunk." msgid "Minimum limit of random number of small caves per mapchunk." msgstr "Limite mínimo do número aleatório de cavernas pequenas por mapchunk." +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "Mipmapping (filtro)" @@ -5306,9 +5384,10 @@ msgstr "" "padrão)." #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" "Nome do jogador.\n" @@ -5837,17 +5916,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -6095,16 +6176,6 @@ msgstr "" msgid "Shader path" msgstr "Sombreadores" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "Sombreadores" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "Qualidade do filtro de sombras" @@ -6292,10 +6363,9 @@ msgstr "" #: src/settings_translation_file.cpp #, fuzzy msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" "Espalha uma atualização completa do mapeamento de sombras sobre uma dada " "quantidade de quadros.\n" @@ -6673,10 +6743,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "Hora do dia quando um novo mundo é iniciado, em milihoras (0-23999)." -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "Intervalo de tempo de envio" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "Velocidade de tempo" @@ -6746,6 +6812,11 @@ msgstr "Líquidos Opacos" msgid "Transparency Sorting Distance" msgstr "Distância para o Ordenamento de Transparência" +#: src/settings_translation_file.cpp +#, fuzzy +msgid "Transparency Sorting Group by Buffers" +msgstr "Distância para o Ordenamento de Transparência" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "Ruido de árvores" @@ -6797,12 +6868,16 @@ msgid "Undersampling" msgstr "Subamostragem" #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Undersampling is similar to using a lower screen resolution, but it applies\n" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" "A subamostragem é semelhante a usar uma resolução de tela inferior, mas se " "aplica\n" @@ -6831,17 +6906,15 @@ msgstr "Limite topo Y de dungeons." msgid "Upper Y limit of floatlands." msgstr "Limite máximo Y para as ilhas flutuantes." -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "Usar nuvens 3D em vez de planas." - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "Usar uma animação de nuvem para o fundo do menu principal." #: src/settings_translation_file.cpp #, fuzzy -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "Usar filtragem anisotrópica quando visualizar texturas de um ângulo." #: src/settings_translation_file.cpp @@ -7105,25 +7178,14 @@ msgstr "" "hardware (por exemplo render-to-texture para nodes no inventário)." #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" -"Quando gui_scaling_filter_txr2img for verdadeiro, copie essas imagens\n" -"do hardware ao software para dimensionamento. Quando falso, volte\n" -"ao antigo método de dimensionamento, para drivers de vídeo que não\n" -"suportam adequadamente o download de texturas do hardware." - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -7147,11 +7209,6 @@ msgstr "" "Se o fundo dos identificadores de nome devem ser mostradas por padrão.\n" "Mods ainda podem definir o fundo." -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" -"Se as animações de textura do nodes devem ser dessincronizadas por mapblock." - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -7180,9 +7237,9 @@ msgid "Whether to fog out the end of the visible area." msgstr "Se for usar névoa no fim da área visível." #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -7380,6 +7437,9 @@ msgstr "limite paralelo de cURL" #~ "Note que o campo de endereço no menu principal sobrescreve essa " #~ "configuração." +#~ msgid "Adds particles when digging a node." +#~ msgstr "Adiciona partículas quando cavando um node." + #~ msgid "" #~ "Adjust dpi configuration to your screen (non X11/Android only) e.g. for " #~ "4k screens." @@ -7527,6 +7587,10 @@ msgstr "limite paralelo de cURL" #~ msgid "Clean transparent textures" #~ msgstr "Limpe as texturas transparentes" +#, fuzzy +#~ msgid "Clouds are a client-side effect." +#~ msgstr "Conf. das nuvens apenas afetam seu jogo local." + #~ msgid "Command key" #~ msgstr "Tecla de Comando" @@ -7620,9 +7684,15 @@ msgstr "limite paralelo de cURL" #~ msgid "Darkness sharpness" #~ msgstr "Nitidez da escuridão" +#~ msgid "Debug info and profiler graph hidden" +#~ msgstr "Informação de debug e gráfico de perfil escondido" + #~ msgid "Debug info toggle key" #~ msgstr "Tecla para alternar modo de Depuração" +#~ msgid "Debug info, profiler graph, and wireframe hidden" +#~ msgstr "Informação de debug, gráfico de perfil e wireframe escondidos" + #~ msgid "Dec. volume key" #~ msgstr "Tecla de abaixar volume" @@ -7676,9 +7746,15 @@ msgstr "limite paralelo de cURL" #~ msgid "Del. Favorite" #~ msgstr "Rem. Favorito" +#~ msgid "Desynchronize block animation" +#~ msgstr "Dessincronizar animação do bloco" + #~ msgid "Dig key" #~ msgstr "Tecla para escavar" +#~ msgid "Digging particles" +#~ msgstr "Partículas de Escavação" + #~ msgid "Disable anticheat" #~ msgstr "Habilitar Anti-Hack" @@ -7703,6 +7779,10 @@ msgstr "limite paralelo de cURL" #~ msgid "Dynamic shadows:" #~ msgstr "Sombras dinâmicas:" +#, fuzzy +#~ msgid "Enable" +#~ msgstr "Habilitado" + #~ msgid "Enable VBO" #~ msgstr "Habilitar VBO" @@ -7737,6 +7817,12 @@ msgstr "limite paralelo de cURL" #~ "pacote de textura ou a necessidade de ser auto-gerada.\n" #~ "Requer shaders a serem ativados." +#, fuzzy +#~ msgid "" +#~ "Enables caching of facedir rotated meshes.\n" +#~ "This is only effective with shaders disabled." +#~ msgstr "Ativar armazenamento em cache de direção de face girada das malhas." + #~ msgid "Enables filmic tone mapping" #~ msgstr "Habilitar efeito \"filmic tone mapping\"" @@ -7780,9 +7866,6 @@ msgstr "limite paralelo de cURL" #~ "Opção experimental, pode causar espaços visíveis entre blocos\n" #~ "quando definido como número maior do que 0." -#~ msgid "FPS in pause menu" -#~ msgstr "FPS no menu de pausa" - #~ msgid "FSAA" #~ msgstr "Anti-Aliasing de Tela Cheia (FSAA)" @@ -7867,8 +7950,8 @@ msgstr "limite paralelo de cURL" #~ msgid "Full screen BPP" #~ msgstr "Tela cheia BPP" -#~ msgid "Game" -#~ msgstr "Jogo" +#~ msgid "GUI scaling filter txr2img" +#~ msgstr "Filtro txr2img de escala da GUI" #~ msgid "Gamma" #~ msgstr "Gama" @@ -8032,6 +8115,11 @@ msgstr "limite paralelo de cURL" #~ msgid "Instrumentation" #~ msgstr "Monitorização" +#~ msgid "Interval of sending time of day to clients, stated in seconds." +#~ msgstr "" +#~ "Intervalo de tempo para o envio das horas dentro do jogo aos clientes, em " +#~ "segundos." + #~ msgid "Invalid gamespec." #~ msgstr "Especificação do jogo inválida." @@ -8043,650 +8131,650 @@ msgstr "limite paralelo de cURL" #~ msgid "" #~ "Key for decreasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para diminuir o alcance de visão.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for decreasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para diminuir o volume.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for digging.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para escavar. \n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for dropping the currently selected item.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para deixar cair o item atualmente selecionado.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para aumentar o alcance de visão.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para aumentar o volume.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for jumping.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para pular. \n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving fast in fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para mover-se rápido no modo rápido. \n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player backward.\n" #~ "Will also disable autoforward, when active.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para mover o jogador para trás.\n" #~ "Também ira desabilitar o andar para frente automático quando ativo.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player forward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para mover o jogador para a frente.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player left.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para mover o jogador à esquerda.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player right.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para mover o jogador para a direita.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for muting the game.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para por o som em mudo. \n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para abrir a janela de bate-papo para digitar comandos.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type local commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para abrir a janela de bate-papo para digitar comandos.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para abrir a janela de bate-papo.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the inventory.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para abrir o inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for placing.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para colocar objetos. \n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 11th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o 11th slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 12th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o 12th slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 13th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o 13th slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 14th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o 14th slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 15th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o 15th slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 16th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o 16th slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 17th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o 17th slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 18th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o 18th slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 19th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o 19th slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 20th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o 20th slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 21st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o 21st slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 22nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o 22nd slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 23rd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o 23rd slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 24th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o 24th slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 25th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o 25th slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 26th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o 26th slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 27th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o 27th slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 28th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o 28th slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 29th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o 29th slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 30th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o 30th slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 31st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o 31st slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 32nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o 32nd slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the eighth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o oitavo slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the fifth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o quinto slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the first hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o primeiro slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the fourth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o quarto slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the next item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para abrir o inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the ninth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o nono slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the previous item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para abrir o inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the second hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o segundo slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the seventh hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o sétimo slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the sixth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o sexto slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the tenth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o décimo slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the third hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para selecionar o terceiro slot do inventário.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for sneaking.\n" #~ "Also used for climbing down and descending in water if aux1_descends is " #~ "disabled.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla por esgueirar.\n" #~ "Também usado para descer e descendente na água se aux1_descends está " #~ "desativado.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for switching between first- and third-person camera.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para comutação entre câmera de primeira e terceira pessoa.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for taking screenshots.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para tirar fotos da tela.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling autoforward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para ativar o modo avanço automático.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling cinematic mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para ativar/desativar modo cinematográfico.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling display of minimap.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Chave para ativar/desativar a exibição do minimapa.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para ativar/desativar o modo rápido.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling flying.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para alternar a voar.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling noclip mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para alternar modo noclip.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling pitch move mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para ativar o modo pitch.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the camera update. Only used for development\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para ativar/desativar a atualização da câmera. Usado somente para " #~ "desenvolvimento\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of chat.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para ativar a exibição do bate-papo.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of debug info.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para ativar/desativar a exibição de informações de depuração.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of fog.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para ativar a exibição da névoa.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the HUD.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para ativar/desativar a exibição do HUD.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the large chat console.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para ativar/desativar a exibição do bate-papo.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the profiler. Used for development.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para ativar/desativar a exibição do profiler. Usado para o " #~ "desenvolvimento.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling unlimited view range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para alternar o alcance de visão ilimitado.\n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key to use view zoom when possible.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tecla para pular. \n" -#~ "Consulte http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Consulte http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Keybindings. (If this menu screws up, remove stuff from minetest.conf)" @@ -8766,6 +8854,9 @@ msgstr "limite paralelo de cURL" #~ msgid "Menus" #~ msgstr "Opções para menus" +#~ msgid "Mesh cache" +#~ msgstr "Cache de malha" + #~ msgid "Minimap" #~ msgstr "Minimapa" @@ -8985,6 +9076,9 @@ msgstr "limite paralelo de cURL" #~ "mas consume mais recursos.\n" #~ "Valor mínimo 0.001 segundos e valor máximo 0.2 segundos" +#~ msgid "Shaders" +#~ msgstr "Sombreadores" + #~ msgid "Shaders (experimental)" #~ msgstr "Sombreadores (experimental)" @@ -9002,6 +9096,10 @@ msgstr "limite paralelo de cURL" #~ "placas de vídeo.\n" #~ "Só funcionam com o modo de vídeo OpenGL." +#, fuzzy +#~ msgid "Shaders are disabled." +#~ msgstr "Atualização da camera desabilitada" + #~ msgid "Shadow limit" #~ msgstr "Limite de mapblock" @@ -9035,6 +9133,9 @@ msgstr "limite paralelo de cURL" #~ msgid "Smooths rotation of camera. 0 to disable." #~ msgstr "Suaviza a rotação da câmera. 0 para desativar." +#~ msgid "Sound system is disabled" +#~ msgstr "Sistema de som está desativado" + #~ msgid "Special" #~ msgstr "Especial" @@ -9079,6 +9180,9 @@ msgstr "limite paralelo de cURL" #~ msgid "This font will be used for certain languages." #~ msgstr "Esta fonte será usada para determinados idiomas." +#~ msgid "Time send interval" +#~ msgstr "Intervalo de tempo de envio" + #~ msgid "To enable shaders the OpenGL driver needs to be used." #~ msgstr "Para habilitar os sombreadores é necessário usar o driver OpenGL." @@ -9205,6 +9309,17 @@ msgstr "limite paralelo de cURL" #~ msgid "Waving water" #~ msgstr "Balanço da água" +#~ msgid "" +#~ "When gui_scaling_filter_txr2img is true, copy those images\n" +#~ "from hardware to software for scaling. When false, fall back\n" +#~ "to the old scaling method, for video drivers that don't\n" +#~ "properly support downloading textures back from hardware." +#~ msgstr "" +#~ "Quando gui_scaling_filter_txr2img for verdadeiro, copie essas imagens\n" +#~ "do hardware ao software para dimensionamento. Quando falso, volte\n" +#~ "ao antigo método de dimensionamento, para drivers de vídeo que não\n" +#~ "suportam adequadamente o download de texturas do hardware." + #~ msgid "" #~ "Whether FreeType fonts are used, requires FreeType support to be compiled " #~ "in.\n" @@ -9217,6 +9332,12 @@ msgstr "limite paralelo de cURL" #~ msgid "Whether dungeons occasionally project from the terrain." #~ msgstr "Se dungeons ocasionalmente se projetam do terreno." +#~ msgid "" +#~ "Whether node texture animations should be desynchronized per mapblock." +#~ msgstr "" +#~ "Se as animações de textura do nodes devem ser dessincronizadas por " +#~ "mapblock." + #~ msgid "Whether to allow players to damage and kill each other." #~ msgstr "" #~ "Se deseja permitir aos jogadores causar dano e matar uns aos outros." diff --git a/po/ro/luanti.po b/po/ro/luanti.po index 11cf7ddcb..8fa89018f 100644 --- a/po/ro/luanti.po +++ b/po/ro/luanti.po @@ -2,9 +2,9 @@ msgid "" msgstr "" "Project-Id-Version: Romanian (Minetest)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" -"PO-Revision-Date: 2024-07-27 04:09+0000\n" -"Last-Translator: AlexTECPlayz \n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" +"PO-Revision-Date: 2025-01-27 15:28+0000\n" +"Last-Translator: Negoitescu \n" "Language-Team: Romanian \n" "Language: ro\n" @@ -13,7 +13,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2;\n" -"X-Generator: Weblate 5.7-dev\n" +"X-Generator: Weblate 5.10-dev\n" #: builtin/client/chatcommands.lua msgid "Clear the out chat queue" @@ -78,6 +78,245 @@ msgstr "" msgid "[all | ] [-t]" msgstr "[all | ] [-t]" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "Navighează" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "Editează" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "Selectează directorul" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "Selectează fila" + +#: builtin/common/settings/components.lua +msgid "Set" +msgstr "Selectați" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(Nicio descriere a setării date)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "2D Zgomot" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "Anulare" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "Lacunaritate" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "Octava" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "Decalaj" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "Persistență" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "Salvează" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "Scală" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "Seminţe" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "expansiunea X" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "Y răspândit" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "Z răspândit" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "valoareabs" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "implicite" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "uşura" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "(Jocul va trebui să activeze și expunerea automată)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "(Jocul va trebui să activeze și bloom)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "(Jocul va trebui să activeze și lumina volumetrică)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "(Folosește limba sistemului)" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "Accesibilitate" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "Automat" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "Chat" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "Șterge" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "Comenzi" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "Dezactivat" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "Activat" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "General" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "Mișscare" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "Fără rezultate" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default" +msgstr "Restabiliți la valorile implicite" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "Resetează setarea la valoarea prestabilită ($1)" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "Caută" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "Afișează setări avansate" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "Afișați numele tehnice" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Touchscreen layout" +msgstr "Ecran tactil" + +#: builtin/common/settings/dlg_settings.lua +msgid "pause_menu" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Client Mods" +msgstr "Modificări pentru client" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "Conținut: Jocuri" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "Conținut: Modificări" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "(Jocul va trebui să activeze și umbrele)" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "Personalizat" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "Umbre dinamice" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "Înalt" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "Redus" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "Mediu" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "Foarte înalt" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "Foarte redus" + #: builtin/fstk/ui.lua msgid "" msgstr "" @@ -158,18 +397,16 @@ msgstr "$1 se descarcă..." #: builtin/mainmenu/content/dlg_contentdb.lua msgid "All" -msgstr "" +msgstr "Tot" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "Înapoi" #: builtin/mainmenu/content/dlg_contentdb.lua -#, fuzzy msgid "ContentDB is not available when Luanti was compiled without cURL" -msgstr "ContentDB nu este disponibil când Minetest e compilat fără cURL" +msgstr "ContentDB nu este disponibil când Luanti este compilat fără cURL" #: builtin/mainmenu/content/dlg_contentdb.lua msgid "Downloading..." @@ -177,7 +414,7 @@ msgstr "Descărcare..." #: builtin/mainmenu/content/dlg_contentdb.lua msgid "Featured" -msgstr "" +msgstr "Recomandat" #: builtin/mainmenu/content/dlg_contentdb.lua msgid "Games" @@ -199,11 +436,6 @@ msgstr "Modificări" msgid "No packages could be retrieved" msgstr "Nu s-au putut prelua pachete" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "Fără rezultate" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "Nu există actualizări" @@ -249,27 +481,14 @@ msgstr "Deja instalată" msgid "Base Game:" msgstr "Jocul de bază:" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "Anulare" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" msgstr "Dependențe:" #: builtin/mainmenu/content/dlg_install.lua -#, fuzzy msgid "Error getting dependencies for package $1" -msgstr "Eroare la obținerea dependențelor pentru pachet" +msgstr "Eroare la obținerea dependențelor pentru pachet „$1”" #: builtin/mainmenu/content/dlg_install.lua msgid "Install" @@ -309,39 +528,37 @@ msgid "ContentDB page" msgstr "URL-ul ContentDB" #: builtin/mainmenu/content/dlg_package.lua -#, fuzzy msgid "Description" -msgstr "Descrierea serverului" +msgstr "Descriere" #: builtin/mainmenu/content/dlg_package.lua msgid "Donate" -msgstr "" +msgstr "Donează" #: builtin/mainmenu/content/dlg_package.lua msgid "Forum Topic" -msgstr "" +msgstr "Subiect forum" #: builtin/mainmenu/content/dlg_package.lua -#, fuzzy msgid "Information" -msgstr "Informații:" +msgstr "Informații" + +#: builtin/mainmenu/content/dlg_package.lua +msgid "Install [$1]" +msgstr "Instalează [$1]" #: builtin/mainmenu/content/dlg_package.lua #, fuzzy -msgid "Install [$1]" -msgstr "Instalează $1" - -#: builtin/mainmenu/content/dlg_package.lua msgid "Issue Tracker" -msgstr "" +msgstr "Tracker de probleme" #: builtin/mainmenu/content/dlg_package.lua msgid "Source" -msgstr "" +msgstr "Sursă" #: builtin/mainmenu/content/dlg_package.lua msgid "Translate" -msgstr "" +msgstr "Traduce" #: builtin/mainmenu/content/dlg_package.lua builtin/mainmenu/tab_content.lua msgid "Uninstall" @@ -357,8 +574,9 @@ msgid "Website" msgstr "Vizitează saitul" #: builtin/mainmenu/content/dlg_package.lua +#, fuzzy msgid "by $1 — $2 downloads — +$3 / $4 / -$5" -msgstr "" +msgstr "de $1 — $2 descărcări — +$3 / $4 / -$5" #: builtin/mainmenu/content/pkgmgr.lua msgid "$1 (Enabled)" @@ -388,6 +606,12 @@ msgstr "$1 nu se poate instala ca $2" msgid "Unable to install a $1 as a texture pack" msgstr "Imposibil de instalat un $1 ca pachet de textură" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "(Activat, cu erori)" @@ -452,12 +676,6 @@ msgstr "Nu există dependențe opționale" msgid "Optional dependencies:" msgstr "Dependențe opționale:" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "Salvează" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "Lume:" @@ -609,11 +827,6 @@ msgstr "Râuri" msgid "Sea level rivers" msgstr "Râuri la nivelul mării" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "Seminţe" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "Tranziție lină între biomi" @@ -718,13 +931,12 @@ msgid "Dismiss" msgstr "Respinge" #: builtin/mainmenu/dlg_reinstall_mtg.lua -#, fuzzy msgid "" "For a long time, Luanti shipped with a default game called \"Minetest " "Game\". Since version 5.8.0, Luanti ships without a default game." msgstr "" -"Pentru mult timp, motorul Minetest a venit cu un joc implicit pe nume " -"„Minetest Game”. Din Minetest 5.8.0, Minetest nu mai vine cu un joc implicit." +"Pentru mult timp, Luanti a venit cu un joc implicit pe nume „Minetest Game”. " +"Din versiunea 5.8.0, Luanti nu mai vine cu un joc implicit." #: builtin/mainmenu/dlg_reinstall_mtg.lua msgid "" @@ -758,6 +970,23 @@ msgstr "" "Acest modpack are un nume explicit dat în modpack.conf, care va înlocui " "orice redenumire aici." +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "Activează tot" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "O nouă versiune $1 este disponibilă" @@ -786,7 +1015,7 @@ msgstr "Niciodată" msgid "Visit website" msgstr "Vizitează saitul" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "Setări" @@ -800,228 +1029,6 @@ msgstr "" "Încercați să activați lista de servere publică și să vă verificați " "conexiunea la internet." -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "Navighează" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "Editează" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "Selectează directorul" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "Selectează fila" - -#: builtin/mainmenu/settings/components.lua -msgid "Set" -msgstr "Selectați" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(Nicio descriere a setării date)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "2D Zgomot" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "Lacunaritate" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "Octava" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "Decalaj" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "Persistență" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "Scală" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "expansiunea X" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "Y răspândit" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "Z răspândit" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "valoareabs" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "implicite" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "uşura" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable automatic exposure as well)" -msgstr "(Jocul va trebui să activeze și umbrele)" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable bloom as well)" -msgstr "(Jocul va trebui să activeze și umbrele)" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "(Jocul va trebui să activeze și umbrele)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "(Folosește limba sistemului)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "Accesibilitate" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "Chat" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "Șterge" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "Comenzi" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "Dezactivat" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "Activat" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "General" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "Mișscare" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default" -msgstr "Restabiliți la valorile implicite" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "Resetează setarea la valoarea prestabilită ($1)" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "Caută" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "Afișează setări avansate" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "Afișați numele tehnice" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "Modificări pentru client" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "Conținut: Jocuri" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "Conținut: Modificări" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "Activat" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Shaders are disabled." -msgstr "Actualizarea camerei este dezactivată" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "(Jocul va trebui să activeze și umbrele)" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "Personalizat" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "Umbre dinamice" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "Înalt" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "Redus" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "Mediu" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "Foarte înalt" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "Foarte redus" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "Despre" @@ -1042,10 +1049,6 @@ msgstr "Dezvoltatori de bază" msgid "Core Team" msgstr "Echipa principală" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "Dispozitiv Irrlicht:" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "Deschide directorul cu datele utilizatorului" @@ -1147,18 +1150,16 @@ msgid "Install games from ContentDB" msgstr "Instalarea jocurilor din ContentDB" #: builtin/mainmenu/tab_local.lua -#, fuzzy msgid "Luanti doesn't come with a game by default." -msgstr "Minetest nu vine cu un joc preinstalat." +msgstr "Luanti nu vine cu un joc preinstalat." #: builtin/mainmenu/tab_local.lua -#, fuzzy msgid "" "Luanti is a game-creation platform that allows you to play many different " "games." msgstr "" -"Minetest este o platformă de creare de jocuri care vă permite să jucați " -"multe jocuri diferite." +"Luanti este o platformă de creare de jocuri care vă permite să jucați multe " +"jocuri diferite." #: builtin/mainmenu/tab_local.lua msgid "New" @@ -1196,10 +1197,22 @@ msgstr "Începe Jocul" msgid "You need to install a game before you can create a world." msgstr "Trebuie să instalați un joc înainte să puteți crea o lume." +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "Șterge favorit" + #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "Adresă" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "Client" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "Modul Creativ" @@ -1213,6 +1226,11 @@ msgstr "Daune / PvP" msgid "Favorites" msgstr "Favorite" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "Joc" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "Servere incompatibile" @@ -1225,10 +1243,27 @@ msgstr "Alatură-te jocului" msgid "Login" msgstr "Conectare" +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Open server website" +msgstr "Pasul serverului dedicat" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "Ping" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Public Servers" msgstr "Servere publice" @@ -1313,23 +1348,6 @@ msgstr "" "\n" "Verifică deug.txt pentru detalii." -#: src/client/game.cpp -msgid "- Mode: " -msgstr "- Modul: " - -#: src/client/game.cpp -msgid "- Public: " -msgstr "- Public: " - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "- Jucător vs jucător: " - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "- Numele serverului: " - #: src/client/game.cpp msgid "A serialization error occurred:" msgstr "A apărut o eroare de serializare:" @@ -1339,6 +1357,11 @@ msgstr "A apărut o eroare de serializare:" msgid "Access denied. Reason: %s" msgstr "Acces refuzat. Motiv: %s" +#: src/client/game.cpp +#, fuzzy +msgid "All debug info hidden" +msgstr "Informații de depanare afișate" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "Redirecționare automată dezactivată" @@ -1359,6 +1382,10 @@ msgstr "Limite blocuri afișate pentru blocul curent" msgid "Block bounds shown for nearby blocks" msgstr "Limit blocuri afișate pentru blocurile învecinate" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "Actualizarea camerei este dezactivată" @@ -1371,10 +1398,6 @@ msgstr "Actualizarea camerei este activată" msgid "Can't show block bounds (disabled by game or mod)" msgstr "Nu se pot afișa limitele blocurilor (dezactivate de mod sau joc)" -#: src/client/game.cpp -msgid "Change Password" -msgstr "Schimbă Parola" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "Modul cinematografic este dezactivat" @@ -1403,38 +1426,6 @@ msgstr "Eroare de conexiune (timeout?)" msgid "Connection failed for unknown reason" msgstr "Conexiune eșuată din motiv necunoscut" -#: src/client/game.cpp -msgid "Continue" -msgstr "Continuă" - -#: src/client/game.cpp -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" -"Controale:\n" -"Niciun meniu deschis:\n" -"- glisați degetul: priviți în jur\n" -"- apăsați: plasați/perforați/utilizați (implicit)\n" -"- apăsați lung: săpați/utilizați (implicit)\n" -"Meniu/inventar deschis:\n" -"- dublă apăsare (în exterior):\n" -" --> închideți\n" -"- atingeți grămada, atingeți slotul:\n" -" --> mutați grămada\n" -"- atingeți și trageți, apăsați cu un al doilea deget\n" -" --> plasați un singur articol în slot\n" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1448,31 +1439,15 @@ msgstr "Se creează clientul..." msgid "Creating server..." msgstr "Se crează serverul..." -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "Informațiile de depanare și graficul profilului sunt ascunse" - #: src/client/game.cpp msgid "Debug info shown" msgstr "Informații de depanare afișate" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "Informații de depanare, grafic de profil și ascuns" - #: src/client/game.cpp #, c-format msgid "Error creating client: %s" msgstr "Eroare la crearea clientului: %s" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "Ieși în Meniu" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "Ieși din joc" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "Modul rapid este dezactivat" @@ -1509,18 +1484,6 @@ msgstr "Ceață activată" msgid "Fog enabled by game or mod" msgstr "Ceață activată de joc sau mod" -#: src/client/game.cpp -msgid "Game info:" -msgstr "Informatii despre joc:" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "Joc întrerupt" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "Găzduind un server" - #: src/client/game.cpp msgid "Item definitions..." msgstr "Definițiile obiectelor..." @@ -1557,14 +1520,6 @@ msgstr "Modul Noclip activat (notă: nu este privilegiat „noclip”)" msgid "Node definitions..." msgstr "Definițiile Blocurilor..." -#: src/client/game.cpp -msgid "Off" -msgstr "Oprit" - -#: src/client/game.cpp -msgid "On" -msgstr "Pornit" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "Mod mutare pitch dezactivat" @@ -1577,38 +1532,22 @@ msgstr "Mod de mutare pitch activat" msgid "Profiler graph shown" msgstr "Graficul profilului este afișat" -#: src/client/game.cpp -msgid "Remote server" -msgstr "Server de la distanță" - #: src/client/game.cpp msgid "Resolving address..." msgstr "Se rezolvă adresa..." -#: src/client/game.cpp -msgid "Respawn" -msgstr "Reînviere" - #: src/client/game.cpp msgid "Shutting down..." msgstr "Se închide..." -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "Jucător singur" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "Volum Sunet" - #: src/client/game.cpp msgid "Sound muted" msgstr "Sunet dezactivat" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "Sistem audio dezactivat" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "Sistemul audio nu e suportat în această construcție" @@ -1683,18 +1622,116 @@ msgstr "" msgid "Volume changed to %d%%" msgstr "Volum modificat la %d%%" +#: src/client/game.cpp +#, fuzzy +msgid "Wireframe not supported by video driver" +msgstr "Shaderele sunt activate dar GLSL nu este suportat de driver." + #: src/client/game.cpp msgid "Wireframe shown" msgstr "Cadru de sârmă afișat" -#: src/client/game.cpp -msgid "You died" -msgstr "Ai murit" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "Zoom dezactivat în prezent de joc sau mod" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "- Modul: " + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "- Public: " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "- Jucător vs jucător: " + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "- Numele serverului: " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "Schimbă Parola" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "Continuă" + +#: src/client/game_formspec.cpp +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" +"Controale:\n" +"Niciun meniu deschis:\n" +"- glisați degetul: priviți în jur\n" +"- apăsați: plasați/perforați/utilizați (implicit)\n" +"- apăsați lung: săpați/utilizați (implicit)\n" +"Meniu/inventar deschis:\n" +"- dublă apăsare (în exterior):\n" +" --> închideți\n" +"- atingeți grămada, atingeți slotul:\n" +" --> mutați grămada\n" +"- atingeți și trageți, apăsați cu un al doilea deget\n" +" --> plasați un singur articol în slot\n" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "Ieși în Meniu" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "Ieși din joc" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "Informatii despre joc:" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "Joc întrerupt" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "Găzduind un server" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "Oprit" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "Pornit" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "Server de la distanță" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "Reînviere" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "Volum Sunet" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "Ai murit" + #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" msgstr "Chatul este dezactivat de un joc sau o modificare" @@ -2021,7 +2058,8 @@ msgid "Failed to compile the \"%s\" shader." msgstr "Eroare la compilarea shaderului \"%s\"." #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." +#, fuzzy +msgid "GLSL is not supported by the driver" msgstr "Shaderele sunt activate dar GLSL nu este suportat de driver." #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" @@ -2073,7 +2111,7 @@ msgstr "Redirecționare înainte" msgid "Automatic jumping" msgstr "Salt automat" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "Aux1" @@ -2085,7 +2123,7 @@ msgstr "Înapoi" msgid "Block bounds" msgstr "Limite blocuri" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "Schimba camera" @@ -2109,7 +2147,7 @@ msgstr "Dec. volum" msgid "Double tap \"jump\" to toggle fly" msgstr "Apasă de 2 ori \"sari\" pentru a zbura" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "Aruncă" @@ -2125,11 +2163,11 @@ msgstr "Interval Inc" msgid "Inc. volume" msgstr "Volumul inc" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "Inventar" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "Sari" @@ -2161,7 +2199,7 @@ msgstr "Următorul element" msgid "Prev. item" msgstr "Elementul anterior" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "Selectare distanță" @@ -2173,7 +2211,7 @@ msgstr "Dreapta" msgid "Screenshot" msgstr "Captură de ecran" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "Furișează" @@ -2181,15 +2219,15 @@ msgstr "Furișează" msgid "Toggle HUD" msgstr "Comutați HUD" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "Comutați jurnalul de chat" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "Intră pe rapid" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "Intră pe zbor" @@ -2197,11 +2235,11 @@ msgstr "Intră pe zbor" msgid "Toggle fog" msgstr "Comutați ceața" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "Comutați minimap" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "Intră pe noclip" @@ -2209,7 +2247,7 @@ msgstr "Intră pe noclip" msgid "Toggle pitchmove" msgstr "Comutați pitchmove" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "Mărire" @@ -2245,7 +2283,7 @@ msgstr "Vechea parolă" msgid "Passwords do not match!" msgstr "Parolele nu se potrivesc!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "Ieșire" @@ -2258,37 +2296,69 @@ msgstr "Amuțit" msgid "Sound Volume: %d%%" msgstr "Volum sunet: %d%%" -#: src/gui/touchcontrols.cpp -msgid "Joystick" +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Add button" +msgstr "Rotiță" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "Terminat!" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Remove" +msgstr "Server de la distanță" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp +msgid "Joystick" +msgstr "Manetă" + +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp -#, fuzzy +#: src/gui/touchscreenlayout.cpp msgid "Toggle debug" -msgstr "Comutați ceața" +msgstr "Informații debug" #: src/network/clientpackethandler.cpp +#, fuzzy msgid "" "Another client is connected with this name. If your client closed " "unexpectedly, try again in a minute." msgstr "" +"Un alt client este conectat sub acest nume. Dacă clientul dvs. s-a oprit " +"neașteptat, reîncercați într-un minut." #: src/network/clientpackethandler.cpp msgid "Empty passwords are disallowed. Set a password and try again." -msgstr "" +msgstr "Parolele goale nu sunt permise. Setați o parolă și reîncercați." #: src/network/clientpackethandler.cpp msgid "Internal server error" -msgstr "" +msgstr "Eroare internă server" #: src/network/clientpackethandler.cpp -#, fuzzy msgid "Invalid password" -msgstr "Vechea parolă" +msgstr "Parolă invalidă" #. ~ DO NOT TRANSLATE THIS LITERALLY! #. This is a special string which needs to contain the translation's @@ -2311,46 +2381,48 @@ msgstr "Numele este folosit. Vă rugăm să alegeți altul" #: src/network/clientpackethandler.cpp msgid "Player name contains disallowed characters" -msgstr "" +msgstr "Numele jucătorului conține caractere neautorizate" #: src/network/clientpackethandler.cpp -#, fuzzy msgid "Player name not allowed" -msgstr "Numele jucătorului prea lung." +msgstr "Numele jucătorului prea lung" #: src/network/clientpackethandler.cpp -#, fuzzy msgid "Server shutting down" -msgstr "Se închide..." +msgstr "Serverul se închide" #: src/network/clientpackethandler.cpp msgid "" "The server has experienced an internal error. You will now be disconnected." -msgstr "" +msgstr "Serverul a avut o eroare internă. Veți fi deconectat." #: src/network/clientpackethandler.cpp msgid "The server is running in singleplayer mode. You cannot connect." -msgstr "" +msgstr "Serverul funcționează în modul solo. Nu vă puteți conecta." #: src/network/clientpackethandler.cpp msgid "Too many users" -msgstr "" +msgstr "Prea mulți jucători" #: src/network/clientpackethandler.cpp msgid "Unknown disconnect reason." -msgstr "" +msgstr "Motiv de deconectare necunoscut." #: src/network/clientpackethandler.cpp msgid "" "Your client sent something the server didn't expect. Try reconnecting or " "updating your client." msgstr "" +"Clientul dvs. a trimis ceva neașteptat serverului. Încercați să vă " +"reconectați sau să actualizați serverul." #: src/network/clientpackethandler.cpp msgid "" "Your client's version is not supported.\n" "Please contact the server administrator." msgstr "" +"Versiunea clientului dvs. nu este susținută.\n" +"Vă rugăm contactați administratorul serverului." #: src/server.cpp #, c-format @@ -2494,12 +2566,11 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" "Suport 3D.\n" "În prezent, suportate:\n" -"- Niciunul: nicio ieșire 3D.\n" +"- niciunul: nicio ieșire 3D.\n" "- anaglyph: culoare 3D turcoaz/magenta.\n" "- întrețesut: suport pentru polarizare pe linii impare/pare.\n" "- partea de sus: ecran împărțit sus/jos.\n" @@ -2563,10 +2634,6 @@ msgstr "Interval de bloc activ" msgid "Active object send range" msgstr "Interval de trimitere obiect e activ" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "Adăuga particule atunci când săpați un nod." - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2598,6 +2665,16 @@ msgstr "Nume administrator" msgid "Advanced" msgstr "Avansat" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Allow clouds to look 3D instead of flat." +msgstr "" + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "Permiteți lichidelor să fie transparente." @@ -2643,22 +2720,20 @@ msgid "Announce to this serverlist." msgstr "Anunțați pe această listă de servere." #: src/settings_translation_file.cpp -#, fuzzy msgid "Anti-aliasing scale" -msgstr "Antialiasing:" +msgstr "Antialiasing" #: src/settings_translation_file.cpp -#, fuzzy msgid "Antialiasing method" -msgstr "Antialiasing:" +msgstr "Metodă de antialiasing" #: src/settings_translation_file.cpp msgid "Anticheat flags" -msgstr "" +msgstr "Opțiuni anti-trișare" #: src/settings_translation_file.cpp msgid "Anticheat movement tolerance" -msgstr "" +msgstr "Toleranță mișcare anti-trișare" #: src/settings_translation_file.cpp msgid "Append item name" @@ -3008,15 +3083,14 @@ msgstr "Rază nori" msgid "Clouds" msgstr "Nori" -#: src/settings_translation_file.cpp -#, fuzzy -msgid "Clouds are a client-side effect." -msgstr "Norii sunt un efect pe client." - #: src/settings_translation_file.cpp msgid "Clouds in menu" msgstr "Nori in meniu" +#: src/settings_translation_file.cpp +msgid "Color depth for post-processing texture" +msgstr "" + #: src/settings_translation_file.cpp msgid "Colored fog" msgstr "Ceaţă colorată" @@ -3040,7 +3114,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" "Listă separată de virgule cu etichete de ascuns din depozitul de conținut.\n" "\"nonfree\" se poate folosi pentru ascunderea pachetelor care nu sunt " @@ -3210,6 +3284,14 @@ msgstr "Nivelul jurnalului de depanare" msgid "Debugging" msgstr "Depanare" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "Pasul serverului dedicat" @@ -3369,18 +3451,10 @@ msgid "" "When the 'snowbiomes' flag is enabled, this is ignored." msgstr "" -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "" - #: src/settings_translation_file.cpp msgid "Developer Options" msgstr "Opțiuni pentru dezvoltatori" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "Particule pentru săpare" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "" @@ -3408,6 +3482,14 @@ msgstr "Apasă de 2 ori \"sari\" pentru a zbura" msgid "Double-tapping the jump key toggles fly mode." msgstr "Apăsând de 2 ori tasta Salt pentru a comuta modul de zburat." +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "" @@ -3482,8 +3564,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" #: src/settings_translation_file.cpp @@ -3556,8 +3638,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" #: src/settings_translation_file.cpp @@ -3572,12 +3653,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "" - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -3885,10 +3960,6 @@ msgstr "" msgid "GUI scaling filter" msgstr "" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "" - #: src/settings_translation_file.cpp msgid "Gamepads" msgstr "Gamepad-uri" @@ -4112,12 +4183,6 @@ msgid "" "descending." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -4136,6 +4201,13 @@ msgid "" "empty password." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4230,10 +4302,6 @@ msgstr "" msgid "Interval of saving important changes in the world, stated in seconds." msgstr "" -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "" - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "" @@ -4850,10 +4918,6 @@ msgstr "" msgid "Maximum users" msgstr "" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "" @@ -4886,6 +4950,10 @@ msgstr "" msgid "Minimum limit of random number of small caves per mapchunk." msgstr "" +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "Cartografierea mip" @@ -4976,7 +5044,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" @@ -5419,17 +5487,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5623,16 +5693,6 @@ msgstr "" msgid "Shader path" msgstr "Calea shaderului" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "Shadere" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "Calitatea filtrului de umbre" @@ -5797,10 +5857,9 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" #: src/settings_translation_file.cpp @@ -6079,10 +6138,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "" -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "" @@ -6145,6 +6200,10 @@ msgstr "Fluturarea lichidelor" msgid "Transparency Sorting Distance" msgstr "" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "" @@ -6195,7 +6254,10 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" #: src/settings_translation_file.cpp @@ -6218,16 +6280,14 @@ msgstr "" msgid "Upper Y limit of floatlands." msgstr "" -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "" - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "" #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" #: src/settings_translation_file.cpp @@ -6469,20 +6529,12 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -6493,10 +6545,6 @@ msgid "" "Mods may still set a background." msgstr "" -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -6519,8 +6567,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -6685,6 +6732,9 @@ msgstr "" #~ "Rețineți că, câmpul de adresă din meniul principal suprascrie această " #~ "setare." +#~ msgid "Adds particles when digging a node." +#~ msgstr "Adăuga particule atunci când săpați un nod." + #~ msgid "" #~ "Adjust dpi configuration to your screen (non X11/Android only) e.g. for " #~ "4k screens." @@ -6803,6 +6853,10 @@ msgstr "" #~ msgid "Clean transparent textures" #~ msgstr "Texturi transparente curate" +#, fuzzy +#~ msgid "Clouds are a client-side effect." +#~ msgstr "Norii sunt un efect pe client." + #~ msgid "Command key" #~ msgstr "Tasta de comandă" @@ -6872,6 +6926,12 @@ msgstr "" #~ msgid "Darkness sharpness" #~ msgstr "Mapgen" +#~ msgid "Debug info and profiler graph hidden" +#~ msgstr "Informațiile de depanare și graficul profilului sunt ascunse" + +#~ msgid "Debug info, profiler graph, and wireframe hidden" +#~ msgstr "Informații de depanare, grafic de profil și ascuns" + #~ msgid "Default game" #~ msgstr "Jocul implicit" @@ -6885,6 +6945,9 @@ msgstr "" #~ msgid "Dig key" #~ msgstr "Tasta pentru săpat" +#~ msgid "Digging particles" +#~ msgstr "Particule pentru săpare" + #~ msgid "Disable anticheat" #~ msgstr "Dezactivează anticheatul" @@ -6906,6 +6969,9 @@ msgstr "" #~ msgid "Dynamic shadows:" #~ msgstr "Umbre dinamice:" +#~ msgid "Enable" +#~ msgstr "Activează" + #, fuzzy #~ msgid "Enable VBO" #~ msgstr "Activează MP" @@ -6933,9 +6999,6 @@ msgstr "" #~ msgid "Forward key" #~ msgstr "Tasta înainte" -#~ msgid "Game" -#~ msgstr "Joc" - #~ msgid "Generate Normal Maps" #~ msgstr "Generați Hărți Normale" @@ -6961,6 +7024,9 @@ msgstr "" #~ msgid "Inventory key" #~ msgstr "Tasta pentru inventar" +#~ msgid "Irrlicht device:" +#~ msgstr "Dispozitiv Irrlicht:" + #~ msgid "Jump key" #~ msgstr "Tasta de salt" @@ -7078,18 +7144,27 @@ msgstr "" #~ msgid "Server / Singleplayer" #~ msgstr "Server / Jucător singur" +#~ msgid "Shaders" +#~ msgstr "Shadere" + #~ msgid "Shaders (experimental)" #~ msgstr "Shadere (experimental)" #~ msgid "Shaders (unavailable)" #~ msgstr "Shaders (indisponibil)" +#~ msgid "Shaders are disabled." +#~ msgstr "Shaderele sunt dezactivate." + #~ msgid "Simple Leaves" #~ msgstr "Frunze simple" #~ msgid "Smooth Lighting" #~ msgstr "Lumină fină" +#~ msgid "Sound system is disabled" +#~ msgstr "Sistem audio dezactivat" + #~ msgid "Special" #~ msgstr "Special" @@ -7111,6 +7186,9 @@ msgstr "" #~ msgid "The value must not be larger than $1." #~ msgstr "Valoarea nu trebuie să fie mai mare de $1." +#~ msgid "This is not a recommended configuration." +#~ msgstr "Aceasta nu este o opțiune recomandată." + #~ msgid "To enable shaders the OpenGL driver needs to be used." #~ msgstr "Pentru a permite shadere OpenGL trebuie să fie folosite." diff --git a/po/ru/luanti.po b/po/ru/luanti.po index 4e55cc69b..9338ff11c 100644 --- a/po/ru/luanti.po +++ b/po/ru/luanti.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: Russian (Minetest)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" -"PO-Revision-Date: 2024-11-01 17:58+0000\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" +"PO-Revision-Date: 2025-02-12 12:18+0000\n" "Last-Translator: BlackImpostor \n" "Language-Team: Russian \n" @@ -13,7 +13,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\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" -"X-Generator: Weblate 5.8.2-dev\n" +"X-Generator: Weblate 5.10-dev\n" #: builtin/client/chatcommands.lua msgid "Clear the out chat queue" @@ -71,13 +71,251 @@ msgstr "Получить справку по командам (-t: вывод в msgid "" "Use '.help ' to get more information, or '.help all' to list everything." msgstr "" -"Используйте «.help » для получения дополнительной информации, или «." -"help all» для вывода всего списка." +"Используйте «.help » для получения дополнительной информации, или " +"«.help all» для вывода всего списка." #: builtin/common/chatcommands.lua msgid "[all | ] [-t]" msgstr "[all | <команда>] [-t]" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "Обзор" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "Править" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "Выбрать папку" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "Выбрать файл" + +#: builtin/common/settings/components.lua +msgid "Set" +msgstr "Назначить" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(Нет описания настройки)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "2D-шум" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "Отмена" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "Лакунарность" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "Октавы" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "Смещение" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "Настойчивость" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "Сохранить" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "Масштаб" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "Сид" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "Разброс по X" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "Разброс по Y" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "Разброс по Z" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "абсолютная величина" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "базовый" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "cглаженный" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "(В игре также необходимо будет включить автоматическую экспозицию)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "(В игре также нужно будет включить функцию размытия)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "(В игре также необходимо будет включить объемное освещение)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "(Системный язык)" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "Доступность" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "Авто" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "Чат" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "Очистить" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "Управление" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "Отключено" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "Включено" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "Основной" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "Перемещение" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "Нет результатов" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default" +msgstr "Вернуть значение по умолчанию" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "Вернуть значение по умолчанию ($1)" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "Найти" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "Показать продвинутые настройки" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "Показывать технические названия" + +#: builtin/common/settings/dlg_settings.lua +msgid "Touchscreen layout" +msgstr "Pазложение сенсорного экрана" + +#: builtin/common/settings/dlg_settings.lua +msgid "pause_menu" +msgstr "меню_паузы" + +#: builtin/common/settings/settingtypes.lua +msgid "Client Mods" +msgstr "Клиентские моды" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "Контент: Игры" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "Контент: Дополнения" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "(В игре также необходимо будет включить тени)" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "Пользовательские" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "Динамические тени" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "Высокие" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "Низкие" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "Средние" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "Очень высокие" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "Очень низкие" + #: builtin/fstk/ui.lua msgid "" msgstr "<недоступно>" @@ -164,7 +402,6 @@ msgstr "Всё" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "Назад" @@ -200,11 +437,6 @@ msgstr "Дополнения" msgid "No packages could be retrieved" msgstr "Дополнения не могут быть получены" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "Нет результатов" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "Нет обновлений" @@ -249,18 +481,6 @@ msgstr "Уже установленно" msgid "Base Game:" msgstr "Основная игра:" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "Отмена" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -382,6 +602,14 @@ msgstr "Не удаётся установить $1 как $2" msgid "Unable to install a $1 as a texture pack" msgstr "Не удаётся установить $1 как набор текстур" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" +"Это список подключённых клиентов к\n" +"$1" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "(Включено, есть ошибки)" @@ -446,12 +674,6 @@ msgstr "Нет необязательных зависимостей" msgid "Optional dependencies:" msgstr "Необязательные зависимости:" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "Сохранить" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "Мир:" @@ -605,11 +827,6 @@ msgstr "Реки" msgid "Sea level rivers" msgstr "Реки на уровне моря" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "Сид" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "Плавный переход между биомами" @@ -754,6 +971,23 @@ msgstr "" "Этот набор модов имеет явно указанное имя в modpack.conf, которое " "перезапишет указанное здесь значение." +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Expand all" +msgstr "Расширить всё" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "Сгруппировать по префиксу" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" +"На сервере $1 используется игра под названием $2 со следующими дополнениями:" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "Сервер $1 использует следующие дополнения:" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "Доступна новая версия $1" @@ -782,7 +1016,7 @@ msgstr "Никогда" msgid "Visit website" msgstr "Посетить вебсайт" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "Настройки" @@ -795,226 +1029,9 @@ msgid "Try reenabling public serverlist and check your internet connection." msgstr "" "Попробуйте обновить список публичных серверов и проверьте связь с Интернетом." -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "Обзор" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "Править" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "Выбрать папку" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "Выбрать файл" - -#: builtin/mainmenu/settings/components.lua -msgid "Set" -msgstr "Назначить" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(Нет описания настройки)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "2D-шум" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "Лакунарность" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "Октавы" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "Смещение" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "Настойчивость" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "Масштаб" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "Разброс по X" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "Разброс по Y" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "Разброс по Z" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "абсолютная величина" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "базовый" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "cглаженный" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "(В игре также необходимо будет включить автоматическую экспозицию)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "(В игре также нужно будет включить функцию размытия)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "(В игре также необходимо будет включить объемное освещение)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "(Системный язык)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "Доступность" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "Авто" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "Чат" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "Очистить" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "Управление" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "Отключено" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "Включено" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "Основной" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "Перемещение" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default" -msgstr "Вернуть значение по умолчанию" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "Вернуть значение по умолчанию ($1)" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "Найти" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "Показать продвинутые настройки" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "Показывать технические названия" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "Клиентские моды" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "Контент: Игры" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "Контент: Дополнения" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "Enable" -msgstr "Включить" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "Shaders are disabled." -msgstr "Шейдеры выключены." - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "Это конфигурация не рекомендуется." - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "(В игре также необходимо будет включить тени)" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "Пользовательские" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "Динамические тени" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "Высокие" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "Низкие" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "Средние" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "Очень высокие" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "Очень низкие" - #: builtin/mainmenu/tab_about.lua msgid "About" -msgstr "Подробней" +msgstr "Подробнее" #: builtin/mainmenu/tab_about.lua msgid "Active Contributors" @@ -1032,10 +1049,6 @@ msgstr "Основные разработчики" msgid "Core Team" msgstr "Основная команда" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "Устройство Irrlicht:" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "Папка данных пользователя" @@ -1184,10 +1197,22 @@ msgstr "Начать игру" msgid "You need to install a game before you can create a world." msgstr "Вам требуется установить игру, прежде чем вы сможете создать мир." +#: builtin/mainmenu/tab_online.lua +msgid "Add favorite" +msgstr "Добавить избранное" + #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "Адрес" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Clients:\n" +"$1" +msgstr "" +"Клиенты:\n" +"$1" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "Творческий режим" @@ -1201,6 +1226,10 @@ msgstr "Урон / PvP" msgid "Favorites" msgstr "Избранное" +#: builtin/mainmenu/tab_online.lua +msgid "Game: $1" +msgstr "Игра: $1" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "Несовместимые Сервера" @@ -1213,10 +1242,30 @@ msgstr "Подключиться к игре" msgid "Login" msgstr "Войти" +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "Количество модов: $1" + +#: builtin/mainmenu/tab_online.lua +msgid "Open server website" +msgstr "Открыть веб-сайт сервера" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "Задержка" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" +"Возможные фильтры\n" +"игра:<имя>\n" +"дополнение:<имя>\n" +"игрок:<имя>" + #: builtin/mainmenu/tab_online.lua msgid "Public Servers" msgstr "Публичные серверы" @@ -1301,23 +1350,6 @@ msgstr "" "\n" "Подробности в debug.txt." -#: src/client/game.cpp -msgid "- Mode: " -msgstr "- Режим: " - -#: src/client/game.cpp -msgid "- Public: " -msgstr "- Публичность: " - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "- РvP: " - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "- Имя сервера: " - #: src/client/game.cpp msgid "A serialization error occurred:" msgstr "Произошла ошибка сериализации:" @@ -1327,6 +1359,10 @@ msgstr "Произошла ошибка сериализации:" msgid "Access denied. Reason: %s" msgstr "Доступ запрещён. Причина: %s" +#: src/client/game.cpp +msgid "All debug info hidden" +msgstr "Все отладочные сведения скрыты" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "Автобег отключён" @@ -1347,6 +1383,10 @@ msgstr "Границы показаны для текущего мапблока msgid "Block bounds shown for nearby blocks" msgstr "Границы показаны для ближайших мапблоков" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "Показаны ограничивающие рамки" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "Обновление камеры выключено" @@ -1359,10 +1399,6 @@ msgstr "Обновление камеры включено" msgid "Can't show block bounds (disabled by game or mod)" msgstr "Нельзя показать границы мапблоков (отключено модом или игрой)" -#: src/client/game.cpp -msgid "Change Password" -msgstr "Изменить пароль" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "Кинематографичный режим отключён" @@ -1391,38 +1427,6 @@ msgstr "Ошибка соединения (время вышло?)" msgid "Connection failed for unknown reason" msgstr "Сбой соединения по неизвестной причине" -#: src/client/game.cpp -msgid "Continue" -msgstr "Продолжить" - -#: src/client/game.cpp -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" -"Управление:\n" -"Нет открытых меню:\n" -"- провести пальцем: осмотреться\n" -"- нажатие: разместить/применить\n" -"- долгое нажатие: копать/удар/применить\n" -"В открытом меню:\n" -"- двойное нажатие (вне меню)\n" -" --> закрыть меню\n" -"- нажать на стак, затем на слот:\n" -" --> передвинуть стак\n" -"- нажать и потащить стак, нажать вторым пальцем:\n" -" --> положить один предмет в слот\n" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1436,31 +1440,15 @@ msgstr "Создание клиента…" msgid "Creating server..." msgstr "Создание сервера…" -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "Отладочные сведения и график профилировщика скрыты" - #: src/client/game.cpp msgid "Debug info shown" msgstr "Отладочные сведения отображены" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "Отладочные сведения, график профилировщика и каркас скрыты" - #: src/client/game.cpp #, c-format msgid "Error creating client: %s" msgstr "Создание клиента: %s" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "Выйти в меню" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "Выйти из игры" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "Режим быстрого перемещения отключён" @@ -1497,18 +1485,6 @@ msgstr "Туман включён" msgid "Fog enabled by game or mod" msgstr "Туман включён игрой или модом" -#: src/client/game.cpp -msgid "Game info:" -msgstr "Сведения об игре:" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "Игра приостановлена" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "Локальный сервер" - #: src/client/game.cpp msgid "Item definitions..." msgstr "Описания предметов…" @@ -1545,14 +1521,6 @@ msgstr "Режим прохождения сквозь стены включён msgid "Node definitions..." msgstr "Описания нод…" -#: src/client/game.cpp -msgid "Off" -msgstr "отключено" - -#: src/client/game.cpp -msgid "On" -msgstr "включено" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "Режим движения по направлению взгляда отключён" @@ -1565,38 +1533,22 @@ msgstr "Режим движения по направлению взгляда msgid "Profiler graph shown" msgstr "График профилировщика отображён" -#: src/client/game.cpp -msgid "Remote server" -msgstr "Удалённый сервер" - #: src/client/game.cpp msgid "Resolving address..." msgstr "Получение адреса…" -#: src/client/game.cpp -msgid "Respawn" -msgstr "Возродиться" - #: src/client/game.cpp msgid "Shutting down..." msgstr "Завершение…" -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "Одиночная игра" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "Громкость звука" - #: src/client/game.cpp msgid "Sound muted" msgstr "Звук заглушен" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "Звуковая система отключена" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "Звуковая система не поддерживается в этой сборке" @@ -1670,18 +1622,115 @@ msgstr "Видимость установлена на %d, но ограниче msgid "Volume changed to %d%%" msgstr "Громкость установлена на %d%%" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "Полигоны не доступны этим видео драйвером" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "Отображение каркаса включено" -#: src/client/game.cpp -msgid "You died" -msgstr "Вы умерли" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "Приближение на данный момент отключено игрой или модом" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "- Режим: " + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "- Публичность: " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "- РvP: " + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "- Имя сервера: " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "Изменить пароль" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "Продолжить" + +#: src/client/game_formspec.cpp +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" +"Управление:\n" +"Нет открытых меню:\n" +"- провести пальцем: осмотреться\n" +"- нажатие: разместить/применить\n" +"- долгое нажатие: копать/удар/применить\n" +"В открытом меню:\n" +"- двойное нажатие (вне меню)\n" +" --> закрыть меню\n" +"- нажать на стак, затем на слот:\n" +" --> передвинуть стак\n" +"- нажать и потащить стак, нажать вторым пальцем:\n" +" --> положить один предмет в слот\n" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "Выйти в меню" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "Выйти из игры" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "Сведения об игре:" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "Игра приостановлена" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "Локальный сервер" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "отключено" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "включено" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "Удалённый сервер" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "Возродиться" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "Громкость звука" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "Вы умерли" + #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" msgstr "Чат на данный момент отключён игрой или модом" @@ -2008,8 +2057,8 @@ msgid "Failed to compile the \"%s\" shader." msgstr "Не удалось скомпилировать шейдер «%s»." #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." -msgstr "Шейдеры включены, но GLSL не поддерживается драйвером." +msgid "GLSL is not supported by the driver" +msgstr "GLSL не поддерживается драйвером" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" #: src/content/mod_configuration.cpp @@ -2059,7 +2108,7 @@ msgstr "Автобег" msgid "Automatic jumping" msgstr "Автопрыжок" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "Aux1" @@ -2071,7 +2120,7 @@ msgstr "Назад" msgid "Block bounds" msgstr "Границы мапблока" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "Сменить камеру" @@ -2095,7 +2144,7 @@ msgstr "Уменьшить громкость" msgid "Double tap \"jump\" to toggle fly" msgstr "Двойной прыжок = полёт" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "Бросить" @@ -2111,11 +2160,11 @@ msgstr "Увеличить дальность" msgid "Inc. volume" msgstr "Увеличить громкость" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "Инвентарь" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "Прыжок" @@ -2147,7 +2196,7 @@ msgstr "След. предмет" msgid "Prev. item" msgstr "Пред. предмет" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "Лимит видимости" @@ -2159,7 +2208,7 @@ msgstr "Вправо" msgid "Screenshot" msgstr "Снимок экрана" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "Красться" @@ -2167,15 +2216,15 @@ msgstr "Красться" msgid "Toggle HUD" msgstr "Вкл/откл интерфейс" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "Вкл/откл журнал чата" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "Быстрый режим" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "Режим полёта" @@ -2183,11 +2232,11 @@ msgstr "Режим полёта" msgid "Toggle fog" msgstr "Вкл/откл туман" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "Вкл/откл миникарту" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "Режим сквозь стены" @@ -2195,7 +2244,7 @@ msgstr "Режим сквозь стены" msgid "Toggle pitchmove" msgstr "По наклону взгляда" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "Приближение" @@ -2231,7 +2280,7 @@ msgstr "Старый пароль" msgid "Passwords do not match!" msgstr "Пароли не совпадают!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "Закрыть" @@ -2244,15 +2293,46 @@ msgstr "Заглушено" msgid "Sound Volume: %d%%" msgstr "Громкость звука: %d%%" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +msgid "Add button" +msgstr "Добавить кнопку" + +#: src/gui/touchscreeneditor.cpp +msgid "Done" +msgstr "Готово" + +#: src/gui/touchscreeneditor.cpp +msgid "Remove" +msgstr "Убрать" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "Сбросить" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" +"Начните перетаскивать кнопку, чтобы добавить. Нажмите \"За пределами\", " +"чтобы отменить." + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" +"Нажмите на кнопку, чтобы выбрать её. Перетащите кнопку, чтобы перемещать её." + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "Нажмите \"Снаружи\", чтобы отменить выбор." + +#: src/gui/touchscreenlayout.cpp msgid "Joystick" msgstr "Джойстик" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "Переполненное меню" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Toggle debug" msgstr "Переключать отладку" @@ -2481,18 +2561,16 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" -"3D-анаглиф.\n" +"Поддержка 3D.\n" "Сейчас поддерживаются:\n" -"- none: без 3D.\n" +"- none: без 3d выхода.\n" "- anaglyph: для красно/синих очков.\n" "- interlaced: поляризация с чётными/нечётными линиями.\n" "- topbottom: горизонтальное разделение экрана.\n" "- sidebyside: вертикальное разделение экрана.\n" -"- crossview: перекрёстная стереопара.\n" -"Примечание: для режима «interlaced» должны быть включены шейдеры." +"- crossview: перекрёстная стереопара 3d" #: src/settings_translation_file.cpp msgid "" @@ -2546,10 +2624,6 @@ msgstr "Дальность активных блоков" msgid "Active object send range" msgstr "Дальность отправляемого активного объекта" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "Добавляет частицы при копании ноды." - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2580,6 +2654,18 @@ msgstr "Имя админа" msgid "Advanced" msgstr "Дополнительно" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" +"Все буферы мешей с меньшим количеством вершин будут объединены\n" +"во время рендера карты. Это повышает производительность рендеринга." + +#: src/settings_translation_file.cpp +msgid "Allow clouds to look 3D instead of flat." +msgstr "Позволяет облакам выглядеть больше 3D, чем плоскими." + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "Позволяет жидкостям быть прозрачными." @@ -2985,14 +3071,14 @@ msgstr "Радиус облаков" msgid "Clouds" msgstr "Облака" -#: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." -msgstr "Облака это эффекты со стороны клиента." - #: src/settings_translation_file.cpp msgid "Clouds in menu" msgstr "Облака в меню" +#: src/settings_translation_file.cpp +msgid "Color depth for post-processing texture" +msgstr "Глубина цвета для постобработки текстуры" + #: src/settings_translation_file.cpp msgid "Colored fog" msgstr "Цветной туман" @@ -3008,8 +3094,8 @@ msgid "" msgstr "" "Список разделенных запятыми расширений AL и ALC, которые не следует " "использовать.\n" -"Полезно для тестирования. Подробности смотрите в разделе al_extensions.[h," -"cpp]." +"Полезно для тестирования. Подробности смотрите в разделе al_extensions." +"[h,cpp]." #: src/settings_translation_file.cpp msgid "" @@ -3019,15 +3105,15 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" "Список разделенных запятыми флажков для скрытия в хранилище контента.\n" -"\"nonfree\" может использоваться для скрытия пакетов,\n" -"которые не подпадают под категорию Free Software Foundation,\n" -"как это определено Фондом свободного программного обеспечения.\n" -"Вы также можете указать рейтинг контента. Эти флаги не зависят от версий " -"Luanti,\n" -"поэтому смотрите полный список по адресу https://content.minetest.net/help/" +"«несвободный» может использоваться для скрытия пакетов, которые не подпадают " +"под категорию «свободного программного обеспечения»,\n" +"как это определено Фондом Свободного Программного Обеспечения.\n" +"Вы также можете указать рейтинг контента.\n" +"Эти флаги не зависят от версий Luanti,\n" +"поэтому смотрите полный список по адресу https://content.luanti.org/help/" "content_flags/" #: src/settings_translation_file.cpp @@ -3190,6 +3276,19 @@ msgstr "Отладочный уровень" msgid "Debugging" msgstr "Отладка" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" +"Определить глубину цвета текстуры, используемой для конвейера постобработки." +"\n" +"Уменьшение этого параметра может повысить производительность, но для работы " +"некоторых эффектов (например, для удаления пятен)\n" +"требуется более 8 бит." + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "Шаг выделенного сервера" @@ -3366,18 +3465,10 @@ msgstr "" "Пустыни появляются, когда np_biome превышает это значение.\n" "Не учитывается, когда включён флаг «snowbiomes»." -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "Рассинхронизация анимации нод" - #: src/settings_translation_file.cpp msgid "Developer Options" msgstr "Для разработчиков" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "Частицы при копании" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "Запретить пустой пароль" @@ -3392,8 +3483,8 @@ msgid "" "Use this to limit the performance impact of transparency depth sorting.\n" "Set to 0 to disable it entirely." msgstr "" -"Расстояние в блоках, на котором включена сортировка по глубине прозрачности." -"\n" +"Расстояние в блоках, на котором включена сортировка по глубине " +"прозрачности.\n" "Используйте это значение, чтобы ограничить влияние сортировки по глубине " "прозрачности на производительность.\n" "Задайте значение 0, чтобы полностью отключить ее." @@ -3410,6 +3501,19 @@ msgstr "Двойной прыжок для полёта" msgid "Double-tapping the jump key toggles fly mode." msgstr "Двойное нажатие на прыжок включает режим полёта." +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" +"Рисовать треугольники, отсортированные по прозрачности, сгруппированные по " +"их меш буферам.\n" +"Это нарушает сортировку по прозрачности между меш буферами, но позволяет " +"избежать ситуаций,\n" +"когда в противном случае сортировка по прозрачности была бы очень медленной." + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "Записывать отладочные данные мапгена." @@ -3494,12 +3598,11 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" -"Включить цветные тени.\n" -"Когда включено, прозрачные ноды отбрасывают цветные тени. Это " -"ресурсозатратно." +"Включите цветные тени для трансгенных блоков.\n" +"Это дорого." #: src/settings_translation_file.cpp msgid "Enable console window" @@ -3584,12 +3687,10 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" -"Включить/отключить запуск IPv6-сервера.\n" -"Игнорируется, если задан «bind_address».\n" -"Для включения необходим «enable_ipv6»." +"Включить/отключить запуск сервера IPv6.\n" +"Игнорируется, если задан параметр bind_address." #: src/settings_translation_file.cpp msgid "" @@ -3607,14 +3708,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "Включить анимацию предметов в инвентаре." -#: src/settings_translation_file.cpp -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "" -"Включает кэширование повернутых сеток facedir.\n" -"Это работает только при отключенных шейдерах." - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "Включает отладку и проверку ошибок в драйвере OpenGL." @@ -3958,10 +4051,6 @@ msgstr "Масштабирование интерфейса" msgid "GUI scaling filter" msgstr "Фильтр масштабирования интерфейса" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "Фильтр txr2img для масштабирования интерфейса" - #: src/settings_translation_file.cpp msgid "Gamepads" msgstr "Контроллеры" @@ -4222,16 +4311,6 @@ msgstr "" "Если включено, для подъёма и спуска будет использоваться\n" "клавиша «Aux1» вместо клавиши «Красться»." -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" -"Если включено, регистрация аккаунта выполняется в интерфейсе отдельно от " -"входа.\n" -"Если отключено, новые учётные записи будут регистрироваться автоматически " -"при входе." - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -4255,6 +4334,17 @@ msgid "" msgstr "" "Если включено, то новые игроки не смогут подключаться с пустым паролем." +#: src/settings_translation_file.cpp +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" +"Если этот параметр включен, регистрация учетной записи сервера выполняется " +"отдельно от входа в пользовательский интерфейс.\n" +"Если он отключен, при подключении к серверу автоматически регистрируется " +"новая учетная запись." + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4370,10 +4460,6 @@ msgstr "Замерять методы сущностей при регистра msgid "Interval of saving important changes in the world, stated in seconds." msgstr "Интервал сохранения важных изменений в мире, в секундах." -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "Интервал отправки клиентам сведений о времени дня, в секундах." - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "Анимация предметов в инвентаре" @@ -5093,10 +5179,6 @@ msgstr "" msgid "Maximum users" msgstr "Максимум пользователей" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "Кэш мешей" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "Сообщение дня" @@ -5129,6 +5211,10 @@ msgstr "Минимум случайных больших пещер на мап msgid "Minimum limit of random number of small caves per mapchunk." msgstr "Минимум малых пещер на мапчанк." +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "Минимальное количество вершин для меш буферов" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "MIP-текстурирование" @@ -5224,12 +5310,13 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" "Имя игрока.\n" -"При запуске сервера клиенты с этим именем будут администраторами.\n" -"Будет переопределено при запуске из главного меню." +"При запуске сервера клиент, подключающийся под этим именем, является " +"администратором.\n" +"При запуске из главного меню это значение переопределяется." #: src/settings_translation_file.cpp msgid "" @@ -5744,41 +5831,45 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" "Выберите метод сглаживания, который необходимо применить.\n" "\n" -"* * Нет - сглаживание отсутствует (по умолчанию).\n" +"* None - Нет сглаживания (по умолчанию)\n" "\n" -"* FSAA - Аппаратное полноэкранное сглаживание\n" -"(несовместимое с постобработкой и недостаточной дискретизацией)\n" -", аналогичное сглаживанию с несколькими выборками (MSAA)\n" +"* FSAA - Аппаратное полноэкранное сглаживание,\n" +"аналогичное сглаживанию с несколькими выборками (MSAA).\n" "Сглаживает края блоков, но не влияет на внутреннюю часть текстур.\n" -"Для изменения этого параметра требуется перезагрузка.\n" "\n" -"* FXAA - Быстрое приблизительное сглаживание (требуется использование " -"шейдеров)\n" -"Применяется фильтр последующей обработки для обнаружения и сглаживания " +"Если постобработка отключена, для изменения FSAA требуется перезапуск.\n" +"Кроме того, если постобработка отключена, FSAA не будет работать в сочетании " +"с\n" +"недостаточной дискретизацией или настройкой \"3d_mode\", не используемой по " +"умолчанию.\n" +"\n" +"* FXAA - Быстрое приблизительное сглаживание\n" +"Применяет фильтр последующей обработки для обнаружения и сглаживания " "высококонтрастных краев.\n" "Обеспечивает баланс между скоростью и качеством изображения.\n" "\n" -"* SSAA - сглаживание с использованием суперсэмплирования (требуются " -"шейдеры)\n" -"Визуализирует изображение сцены с более высоким разрешением, затем уменьшает " -"масштаб, чтобы уменьшить\n" -"эффекты наложения. Это самый медленный и точный метод." +"* SSAA - Сглаживание с использованием суперсэмплирования\n" +"Позволяет получить изображение сцены с более высоким разрешением, а затем " +"уменьшить масштаб, чтобы уменьшить\n" +"эффекты сглаживания. Это самый медленный и точный метод." #: src/settings_translation_file.cpp msgid "Selection box border color (R,G,B)." @@ -6020,18 +6111,6 @@ msgstr "" msgid "Shader path" msgstr "Путь к шейдерам" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "Шейдеры" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" -"Шейдеры являются фундаментальной частью рендеринга и обеспечивают " -"расширенные визуальные эффекты." - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "Качество фильтрации теней" @@ -6224,16 +6303,13 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" -"Распространяет полное обновление карты теней на заданное количество кадров.\n" -"Более высокие значения могут сделать тени нестабильными, более низкие " -"значения\n" -"будут потреблять больше ресурсов.\n" -"Минимум: 1; максимум: 16" +"Распространить полное обновление карты теней на заданное количество кадров.\n" +"Более высокие значения могут привести к запаздыванию теней,\n" +"более низкие значения потребляют больше ресурсов." #: src/settings_translation_file.cpp msgid "" @@ -6610,10 +6686,6 @@ msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "" "Время суток во вновь созданном мире, в милличасах (значение от 0 до 23999)." -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "Промежуток отправки времени" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "Скорость хода времени" @@ -6679,6 +6751,10 @@ msgstr "Полупрозрачные жидкости" msgid "Transparency Sorting Distance" msgstr "Дальность сортировки по прозрачности" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "Прозрачность Сортировки Групп по Буферам" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "Шум деревьев" @@ -6743,14 +6819,20 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" -"Субдискретизация аналогична использованию низкого разрешения экрана,\n" -"но она применяется только к игровому миру, графический интерфейс не " -"затрагивается.\n" -"Значительно увеличивает производительность за счёт вывода менее подробного " -"изображения.\n" -"Высокие значения приводят к менее проработанному изображению." +"Недостаточная дискретизация аналогична использованию более низкого " +"разрешения экрана, но применяется\n" +"только к игровому миру, сохраняя графический интерфейс без изменений.\n" +"Это должно значительно повысить производительность за счет снижения " +"детализации изображения.\n" +"Более высокие значения приводят к снижению детализации изображения.\n" +"Примечание: В настоящее время недостаточная дискретизация не поддерживается, " +"если для параметра \"3d_mode\" установлено\n" +"значение, отличное от значения по умолчанию." #: src/settings_translation_file.cpp msgid "Unlimited player transfer distance" @@ -6772,18 +6854,18 @@ msgstr "Верхний предел Y для подземелий." msgid "Upper Y limit of floatlands." msgstr "Верхний предел Y для парящих островов." -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "Объёмные облака вместо плоских." - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "Анимированные облака в главном меню." #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" -"Использовать анизотропную фильтрацию при взгляде на текстуры под углом." +"Использовать анизотропную фильтрацию при просмотре текстур под углом.\n" +"Это обеспечивает значительное улучшение при использовании в сочетании с " +"мип-картированием." #: src/settings_translation_file.cpp msgid "Use bilinear filtering when scaling textures." @@ -7058,38 +7140,26 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" -"Когда gui_scaling_filter_txr2img включён, изображения копируются\n" -"от аппаратного обеспечения до программного для масштабирования.\n" -"Когда выключен, возвращается к старому масштабированию для видеодрайверов,\n" -"которые неправильно поддерживают загрузку текстур с аппаратного обеспечения." - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" -"Когда используются билинейный/трилинейный/анизотропный фильтры, то текстуры " -"низкого разрешения\n" -"могут быть размытыми, поэтому они автоматически увеличиваются ближайшей\n" -"интерполяцией для сохранения четкости пикселей. Это устанавливает " -"минимальный размер текстуры\n" -"для увеличенных текстур; большие значения выглядят чётче, но требуют больше\n" -"памяти. Рекомендуются степени числа 2. Эта настройки применяется ТОЛЬКО " -"если\n" -"билинейный/трилинейный/анизотропный фильтр включен.\n" -"Это также используется для автомасштабирования как основной размер для\n" -"повёрнутых по сторонам света текстур блока." +"При использовании билинейной/трилинейной фильтрации текстуры с низким " +"разрешением\n" +"могут быть размыты, поэтому этот параметр автоматически увеличивает их " +"масштаб, чтобы сохранить\n" +"четкие пиксели. Это определяет минимальный размер текстуры для текстур в " +"увеличенном масштабе;\n" +"более высокие значения выглядят четче, но требуют больше памяти.\n" +"Этот параметр применяется ТОЛЬКО в том случае, если включен любой из " +"упомянутых фильтров.\n" +"Он также используется в качестве базового размера текстуры узла для\n" +"автоматического масштабирования текстуры, выровненной по окружности." #: src/settings_translation_file.cpp msgid "" @@ -7099,12 +7169,6 @@ msgstr "" "Отображает фон для плашки с именем по умолчанию.\n" "Моды в любом случае могут задать задний фон." -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" -"Определяет необходимость рассинхронизации анимации текстур нод между " -"мапблоками." - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -7131,15 +7195,14 @@ msgstr "Затуманивает конец видимой области." #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" -"Заглушает звуки. Вы можете включить звуки в любое время, если\n" -"звуковая система не отключена (enable_sound=false).\n" -"Внутри игры, вы можете включить переключать звуки, нажав на клавишу\n" -"заглушения звука или используя меню паузы." +"Следует ли отключать звук. Вы можете включить звук в любое время.\n" +"В игре вы можете переключать режим отключения звука с помощью клавиши " +"отключения звука\n" +"или с помощью меню паузы." #: src/settings_translation_file.cpp msgid "" @@ -7323,6 +7386,9 @@ msgstr "Лимит одновременных соединений cURL" #~ "Оставьте это поле пустым, чтобы запустить локальный сервер.\n" #~ "Заметьте, что поле адреса в главном меню перезапишет эту настройку." +#~ msgid "Adds particles when digging a node." +#~ msgstr "Добавляет частицы при копании ноды." + #~ msgid "" #~ "Adjust dpi configuration to your screen (non X11/Android only) e.g. for " #~ "4k screens." @@ -7481,6 +7547,9 @@ msgstr "Лимит одновременных соединений cURL" #~ msgid "Clean transparent textures" #~ msgstr "Очистить прозрачные текстуры" +#~ msgid "Clouds are a client-side effect." +#~ msgstr "Облака это эффекты со стороны клиента." + #~ msgid "Command key" #~ msgstr "Команда" @@ -7577,9 +7646,15 @@ msgstr "Лимит одновременных соединений cURL" #~ msgid "Darkness sharpness" #~ msgstr "Резкость темноты" +#~ msgid "Debug info and profiler graph hidden" +#~ msgstr "Отладочные сведения и график профилировщика скрыты" + #~ msgid "Debug info toggle key" #~ msgstr "Клавиша переключения показа отладочной информации" +#~ msgid "Debug info, profiler graph, and wireframe hidden" +#~ msgstr "Отладочные сведения, график профилировщика и каркас скрыты" + #~ msgid "Dec. volume key" #~ msgstr "Клавиша уменьшения громкости" @@ -7642,9 +7717,15 @@ msgstr "Лимит одновременных соединений cURL" #~ "определений биома.\n" #~ "Y верхней границы лавы в больших пещерах." +#~ msgid "Desynchronize block animation" +#~ msgstr "Рассинхронизация анимации нод" + #~ msgid "Dig key" #~ msgstr "Кнопка копать" +#~ msgid "Digging particles" +#~ msgstr "Частицы при копании" + #~ msgid "Disable anticheat" #~ msgstr "Отключить анти-чит" @@ -7674,6 +7755,9 @@ msgstr "Лимит одновременных соединений cURL" #~ msgid "Dynamic shadows:" #~ msgstr "Динамические тени:" +#~ msgid "Enable" +#~ msgstr "Включить" + #~ msgid "Enable VBO" #~ msgstr "Включить объекты буфера вершин (VBO)" @@ -7707,6 +7791,13 @@ msgstr "Лимит одновременных соединений cURL" #~ "пакетом текстур или сгенерированы автоматически.\n" #~ "Требует, чтобы шейдеры были включены." +#~ msgid "" +#~ "Enables caching of facedir rotated meshes.\n" +#~ "This is only effective with shaders disabled." +#~ msgstr "" +#~ "Включает кэширование повернутых сеток facedir.\n" +#~ "Это работает только при отключенных шейдерах." + #~ msgid "Enables filmic tone mapping" #~ msgstr "Включить кинематографическое тональное отображение" @@ -7756,9 +7847,6 @@ msgstr "Лимит одновременных соединений cURL" #~ "Экспериментальная опция, может привести к видимым зазорам\n" #~ "между блоками, когда значение больше, чем 0." -#~ msgid "FPS in pause menu" -#~ msgstr "Кадровая частота во время паузы" - #~ msgid "FSAA" #~ msgstr "Полноэкранное сглаживание (FSAA)" @@ -7844,8 +7932,8 @@ msgstr "Лимит одновременных соединений cURL" #~ msgid "Full screen BPP" #~ msgstr "Глубина цвета в полноэкранном режиме" -#~ msgid "Game" -#~ msgstr "Игра" +#~ msgid "GUI scaling filter txr2img" +#~ msgstr "Фильтр txr2img для масштабирования интерфейса" #~ msgid "Gamma" #~ msgstr "Гамма" @@ -8014,666 +8102,672 @@ msgstr "Лимит одновременных соединений cURL" #~ msgid "Instrumentation" #~ msgstr "Замеры" +#~ msgid "Interval of sending time of day to clients, stated in seconds." +#~ msgstr "Интервал отправки клиентам сведений о времени дня, в секундах." + #~ msgid "Invalid gamespec." #~ msgstr "Неправильная конфигурация игры." #~ msgid "Inventory key" #~ msgstr "Кнопка открытия инвентаря" +#~ msgid "Irrlicht device:" +#~ msgstr "Устройство Irrlicht:" + #~ msgid "Jump key" #~ msgstr "Кнопка прыжка" #~ msgid "" #~ "Key for decreasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша уменьшения зоны видимости.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for decreasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша уменьшения громкости.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for digging.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша копания.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for dropping the currently selected item.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша, чтобы выбросить выбранный предмет.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша увеличения зоны видимости.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша увеличения громкости.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for jumping.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша прыжка.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving fast in fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша, включающая режим быстрого перемещения.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player backward.\n" #~ "Will also disable autoforward, when active.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша движения назад.\n" #~ "При активации также отключает автобег.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player forward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша движения вперёд.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player left.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша движения влево.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player right.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша движения вправо.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for muting the game.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша отключения звука в игре.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша открытия окна чата для ввода команды.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type local commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша открытия окна чата для ввода локальных команд.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша открытия окна чата.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the inventory.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша открытия инвентаря.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for placing.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша размещения.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 11th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша выбора предмета 11 на горячей панели.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 12th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша выбора предмета 12 на горячей панели.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 13th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша выбора предмета 13 на горячей панели.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 14th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша выбора предмета 14 на горячей панели.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 15th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша выбора предмета 15 на горячей панели.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 16th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша выбора предмета 16 на горячей панели.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 17th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша выбора предмета 17 на горячей панели.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 18th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша выбора предмета 18 на горячей панели.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 19th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша выбора предмета 19 на горячей панели.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 20th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша выбора предмета 20 на горячей панели.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 21st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша выбора предмета 21 на горячей панели.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 22nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша выбора предмета 22 на горячей панели.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 23rd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша выбора предмета 23 на горячей панели.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 24th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша выбора предмета 24 на горячей панели.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 25th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша выбора предмета 25 на горячей панели.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 26th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша выбора предмета 26 на горячей панели.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 27th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша выбора предмета 27 на горячей панели.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 28th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша выбора предмета 28 на горячей панели.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 29th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша выбора предмета 29 на горячей панели.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 30th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша выбора предмета 30 на горячей панели.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 31st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша выбора предмета 31 на горячей панели.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 32nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша выбора предмета 32 на горячей панели.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the eighth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша выбора предмета 8 на горячей панели.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the fifth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша выбора предмета 5 на горячей панели.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the first hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша выбора предмета 1 на горячей панели.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the fourth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша выбора предмета 4 на горячей панели.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the next item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша выбора следующего предмета на горячей панели.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the ninth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша выбора предмета 9 на горячей панели.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the previous item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша выбора предыдущего предмета на горячей панели.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the second hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша выбора предмета 2 на горячей панели.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the seventh hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша выбора предмета 7 на горячей панели.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the sixth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша выбора предмета 6 на горячей панели.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the tenth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша выбора предмета 10 на горячей панели.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the third hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша выбора предмета 3 на горячей панели.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for sneaking.\n" #~ "Also used for climbing down and descending in water if aux1_descends is " #~ "disabled.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша, чтобы красться.\n" #~ "Также используется для спуска и погружения под воду, если параметр " #~ "aux1_descends отключён.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for switching between first- and third-person camera.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша переключения вида от первого или от третьего лица.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for taking screenshots.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша для создания снимка экрана .\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling autoforward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша переключения автобега.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling cinematic mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша переключения кинематографического режима.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling display of minimap.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша переключения отображения миникарты.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша переключения режима быстрого перемещения.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling flying.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша переключения режима полёта.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling noclip mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша переключения режима прохождения сквозь стены.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling pitch move mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша переключения режима движение вниз/вверх по направлению взгляда.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the camera update. Only used for development\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша выключения обновлений камеры. Используется только для разработки\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of chat.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша переключения отображения чата.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of debug info.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша переключения отображения отладочной информации.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of fog.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша переключения отображения тумана.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the HUD.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша переключения отображения игрового интерфейса.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the large chat console.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша переключения отображения большого чата.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the profiler. Used for development.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша для переключения отображения профилировщика. Используется для " #~ "разработки.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling unlimited view range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша отключения ограничения зоны видимости.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key to use view zoom when possible.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавиша режима увеличения.\n" -#~ "См. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "См. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Keybindings. (If this menu screws up, remove stuff from minetest.conf)" #~ msgstr "" -#~ "Привязки клавиш. (Если это меню сломается, удалите настройки из minetest." -#~ "conf)" +#~ "Привязки клавиш. (Если это меню сломается, удалите настройки из " +#~ "minetest.conf)" #~ msgid "Large chat console key" #~ msgstr "Кнопка вызова консоли" @@ -8744,6 +8838,9 @@ msgstr "Лимит одновременных соединений cURL" #~ msgid "Menus" #~ msgstr "Меню" +#~ msgid "Mesh cache" +#~ msgstr "Кэш мешей" + #~ msgid "Minimap" #~ msgstr "Миникарта" @@ -8959,6 +9056,9 @@ msgstr "Лимит одновременных соединений cURL" #~ "потребляет больше ресурсов.\n" #~ "Минимальное значение 0,001 секунды, максимальное 0,2 секунды" +#~ msgid "Shaders" +#~ msgstr "Шейдеры" + #~ msgid "Shaders (experimental)" #~ msgstr "Шейдеры (экспериментально)" @@ -8974,6 +9074,16 @@ msgstr "Лимит одновременных соединений cURL" #~ "повысить производительность некоторых\n" #~ "видеокарт." +#~ msgid "" +#~ "Shaders are a fundamental part of rendering and enable advanced visual " +#~ "effects." +#~ msgstr "" +#~ "Шейдеры являются фундаментальной частью рендеринга и обеспечивают " +#~ "расширенные визуальные эффекты." + +#~ msgid "Shaders are disabled." +#~ msgstr "Шейдеры выключены." + #~ msgid "Shadow limit" #~ msgstr "Лимит теней" @@ -9006,6 +9116,9 @@ msgstr "Лимит одновременных соединений cURL" #~ msgid "Smooths rotation of camera. 0 to disable." #~ msgstr "Плавное вращение камеры. 0 для отключения." +#~ msgid "Sound system is disabled" +#~ msgstr "Звуковая система отключена" + #~ msgid "Special" #~ msgstr "Особенный" @@ -9054,6 +9167,12 @@ msgstr "Лимит одновременных соединений cURL" #~ msgid "This font will be used for certain languages." #~ msgstr "Этот шрифт будет использован для некоторых языков." +#~ msgid "This is not a recommended configuration." +#~ msgstr "Это конфигурация не рекомендуется." + +#~ msgid "Time send interval" +#~ msgstr "Промежуток отправки времени" + #~ msgid "To enable shaders the OpenGL driver needs to be used." #~ msgstr "Для включения шейдеров необходим драйвер OpenGL." @@ -9180,6 +9299,19 @@ msgstr "Лимит одновременных соединений cURL" #~ msgid "Waving water" #~ msgstr "Волны на воде" +#~ msgid "" +#~ "When gui_scaling_filter_txr2img is true, copy those images\n" +#~ "from hardware to software for scaling. When false, fall back\n" +#~ "to the old scaling method, for video drivers that don't\n" +#~ "properly support downloading textures back from hardware." +#~ msgstr "" +#~ "Когда gui_scaling_filter_txr2img включён, изображения копируются\n" +#~ "от аппаратного обеспечения до программного для масштабирования.\n" +#~ "Когда выключен, возвращается к старому масштабированию для " +#~ "видеодрайверов,\n" +#~ "которые неправильно поддерживают загрузку текстур с аппаратного " +#~ "обеспечения." + #~ msgid "" #~ "Whether FreeType fonts are used, requires FreeType support to be compiled " #~ "in.\n" @@ -9189,6 +9321,12 @@ msgstr "Лимит одновременных соединений cURL" #~ "при сборке.\n" #~ "Если отключено, используются растровые и XML-векторные изображения." +#~ msgid "" +#~ "Whether node texture animations should be desynchronized per mapblock." +#~ msgstr "" +#~ "Определяет необходимость рассинхронизации анимации текстур нод между " +#~ "мапблоками." + #~ msgid "Whether to allow players to damage and kill each other." #~ msgstr "Разрешает игрокам наносить урон и убивать друг друга." diff --git a/po/sk/luanti.po b/po/sk/luanti.po index 58837ce4f..5c4c19601 100644 --- a/po/sk/luanti.po +++ b/po/sk/luanti.po @@ -2,9 +2,9 @@ msgid "" msgstr "" "Project-Id-Version: minetest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" -"PO-Revision-Date: 2024-10-06 05:16+0000\n" -"Last-Translator: Pexauteau Santander \n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" +"PO-Revision-Date: 2025-01-03 17:19+0000\n" +"Last-Translator: Lukáš Lizák \n" "Language-Team: Slovak \n" "Language: sk\n" @@ -12,7 +12,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=((n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2);\n" -"X-Generator: Weblate 5.8-dev\n" +"X-Generator: Weblate 5.10-dev\n" #: builtin/client/chatcommands.lua msgid "Clear the out chat queue" @@ -77,6 +77,249 @@ msgstr "" msgid "[all | ] [-t]" msgstr "[all | ] [-t]" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "Prehliadaj" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "Upraviť" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "Zvoľ adresár" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "Zvoľ súbor" + +#: builtin/common/settings/components.lua +msgid "Set" +msgstr "Nastav" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(Nie je zadaný popis nastavenia)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "2D šum" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "Zrušiť" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "Lakunarita" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "Oktávy" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "Ofset" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "Vytrvalosť" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "Uložiť" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "Mierka" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "Semienko" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "Rozptyl X" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "Rozptyl Y" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "Rozptyl Z" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "Absolútna hodnota (absvalue)" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "štandardné hodnoty (defaults)" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "zjemnené (eased)" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "(The game will need to enable automatic exposure as well)" +msgstr "(V hre bude potrebné povoliť aj tiene)" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "(The game will need to enable bloom as well)" +msgstr "(V hre bude potrebné povoliť aj tiene)" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "(V hre bude potrebné povoliť aj tiene)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "(Použiť systémový jazyk)" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "Dostupnosť" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "Auto" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "Komunikácia" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "Zmaž" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "Ovládanie" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "Vypnuté" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "Aktivované" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "Všeobecné" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "Pohyb" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "Bez výsledkov" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default" +msgstr "Obnov štand. nastavenia" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "Obnoviť predvolené nastavenie ($1)" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "Hľadaj" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "Zobraziť rozšírené nastavenia" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "Zobraz technické názvy" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Touchscreen layout" +msgstr "Dotyková obrazovka" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "pause_menu" +msgstr "FPS v menu pozastavenia hry" + +#: builtin/common/settings/settingtypes.lua +msgid "Client Mods" +msgstr "Užívateľské módy" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "Doplnky: Hry" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "Doplnky: Rozšírenia (módy)" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "(V hre bude potrebné povoliť aj tiene)" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "Vlastné" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "Dynamické tiene" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "Vysoké" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "Nízke" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "Stredné" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "Veľmi vysoké" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "Veľmi nízke" + #: builtin/fstk/ui.lua msgid "" msgstr "" @@ -159,11 +402,10 @@ msgstr "$1 sťahujem..." #: builtin/mainmenu/content/dlg_contentdb.lua msgid "All" -msgstr "" +msgstr "Všetky" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "Späť" @@ -178,7 +420,7 @@ msgstr "Sťahujem..." #: builtin/mainmenu/content/dlg_contentdb.lua msgid "Featured" -msgstr "" +msgstr "Odporúčané" #: builtin/mainmenu/content/dlg_contentdb.lua msgid "Games" @@ -200,11 +442,6 @@ msgstr "Rozšírenia" msgid "No packages could be retrieved" msgstr "Nepodarilo sa stiahnuť žiadne balíčky" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "Bez výsledkov" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "Bez aktualizácií" @@ -250,18 +487,6 @@ msgstr "Už nainštalované" msgid "Base Game:" msgstr "Základná hra:" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "Zrušiť" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -316,11 +541,11 @@ msgstr "Popis servera" #: builtin/mainmenu/content/dlg_package.lua msgid "Donate" -msgstr "" +msgstr "Prispieť" #: builtin/mainmenu/content/dlg_package.lua msgid "Forum Topic" -msgstr "" +msgstr "Téma Fóra" #: builtin/mainmenu/content/dlg_package.lua #, fuzzy @@ -334,15 +559,15 @@ msgstr "Nainštalovať $1" #: builtin/mainmenu/content/dlg_package.lua msgid "Issue Tracker" -msgstr "" +msgstr "Sledovač Problémov" #: builtin/mainmenu/content/dlg_package.lua msgid "Source" -msgstr "" +msgstr "Zdroj" #: builtin/mainmenu/content/dlg_package.lua msgid "Translate" -msgstr "" +msgstr "Preložiť" #: builtin/mainmenu/content/dlg_package.lua builtin/mainmenu/tab_content.lua msgid "Uninstall" @@ -389,6 +614,12 @@ msgstr "Nie je možné nainštalovať $1 ako aj $2" msgid "Unable to install a $1 as a texture pack" msgstr "Nie je možné nainštalovať $1 ako balíček textúr" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "(Povolené, s chybou)" @@ -453,12 +684,6 @@ msgstr "Bez voliteľných nevuhnutných doplnkov" msgid "Optional dependencies:" msgstr "Voliteľné nevyhnutné doplnky:" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "Uložiť" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "Svet:" @@ -520,6 +745,8 @@ msgid "" "Different dungeon variant generated in desert biomes (only if dungeons " "enabled)" msgstr "" +"Odlišné varianty kobiek vygenerované v púštnych biómoch (len ak sú kobky " +"zapnuté)" #: builtin/mainmenu/dlg_create_world.lua msgid "Dungeons" @@ -611,11 +838,6 @@ msgstr "Rieky" msgid "Sea level rivers" msgstr "Rieky na úrovni hladiny mora" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "Semienko" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "Plynulý prechod medzi ekosystémami" @@ -761,6 +983,23 @@ msgstr "" "Tento balíček rozšírení má vo svojom modpack.conf explicitne zadané meno, " "ktoré prepíše akékoľvek tunajšie premenovanie." +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "Povoliť všetko" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "K dispozícií je nová verzia $1" @@ -789,7 +1028,7 @@ msgstr "Nikdy" msgid "Visit website" msgstr "Navštív webovú stránku" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "Nastavenia" @@ -803,228 +1042,6 @@ msgstr "" "Skús znova povoliť verejný zoznam serverov a skontroluj internetové " "pripojenie." -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "Prehliadaj" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "Upraviť" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "Zvoľ adresár" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "Zvoľ súbor" - -#: builtin/mainmenu/settings/components.lua -msgid "Set" -msgstr "Nastav" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(Nie je zadaný popis nastavenia)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "2D šum" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "Lakunarita" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "Oktávy" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "Ofset" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "Vytrvalosť" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "Mierka" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "Rozptyl X" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "Rozptyl Y" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "Rozptyl Z" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "Absolútna hodnota (absvalue)" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "štandardné hodnoty (defaults)" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "zjemnené (eased)" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable automatic exposure as well)" -msgstr "(V hre bude potrebné povoliť aj tiene)" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable bloom as well)" -msgstr "(V hre bude potrebné povoliť aj tiene)" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "(V hre bude potrebné povoliť aj tiene)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "(Použiť systémový jazyk)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "Dostupnosť" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "Komunikácia" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "Zmaž" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "Ovládanie" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "Vypnuté" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "Aktivované" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "Všeobecné" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "Pohyb" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default" -msgstr "Obnov štand. nastavenia" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "Obnoviť predvolené nastavenie ($1)" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "Hľadaj" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "Zobraziť rozšírené nastavenia" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "Zobraz technické názvy" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "Užívateľské módy" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "Doplnky: Hry" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "Doplnky: Rozšírenia (módy)" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "Aktivované" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Shaders are disabled." -msgstr "Aktualizácia kamery je zakázaná" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "(V hre bude potrebné povoliť aj tiene)" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "Vlastné" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "Dynamické tiene" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "Vysoké" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "Nízke" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "Stredné" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "Veľmi vysoké" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "Veľmi nízke" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "O hre" @@ -1045,10 +1062,6 @@ msgstr "Hlavný vývojari" msgid "Core Team" msgstr "Jadro tímu" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "Zariadenie Irrlicht:" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "Otvor adresár užívateľa" @@ -1199,10 +1212,22 @@ msgstr "Spusti hru" msgid "You need to install a game before you can create a world." msgstr "Pred vytvorením sveta musíš nainštalovať hru." +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "Odstráň z obľúbených" + #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "Adresa" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "Klient" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "Kreatívny mód" @@ -1216,6 +1241,11 @@ msgstr "Zranenie / PvP" msgid "Favorites" msgstr "Obľúbené" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "Hra" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "Nekompatibilné servery" @@ -1228,10 +1258,28 @@ msgstr "Pripoj sa do hry" msgid "Login" msgstr "Prihlásenie" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Number of mods: $1" +msgstr "Počet použitých vlákien" + +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Open server website" +msgstr "Určený krok servera" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "Ping" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Public Servers" msgstr "Verejné servery" @@ -1316,23 +1364,6 @@ msgstr "" "\n" "Pozri detaily v debug.txt." -#: src/client/game.cpp -msgid "- Mode: " -msgstr "- Mode: " - -#: src/client/game.cpp -msgid "- Public: " -msgstr "- Verejný: " - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "- PvP: " - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "- Meno servera: " - #: src/client/game.cpp msgid "A serialization error occurred:" msgstr "Chyba pri serializácií:" @@ -1342,6 +1373,11 @@ msgstr "Chyba pri serializácií:" msgid "Access denied. Reason: %s" msgstr "Prístup zamietnutý. Dôvod: %s" +#: src/client/game.cpp +#, fuzzy +msgid "All debug info hidden" +msgstr "Ladiace informácie zobrazené" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "Automatický pohyb vpred je zakázaný" @@ -1362,6 +1398,10 @@ msgstr "Hranice bloku sú zobrazené pre aktuálny blok" msgid "Block bounds shown for nearby blocks" msgstr "Hranice bloku sú zobrazené pre blízke bloky" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "Aktualizácia kamery je zakázaná" @@ -1374,10 +1414,6 @@ msgstr "Aktualizácia kamery je aktivovaná" msgid "Can't show block bounds (disabled by game or mod)" msgstr "Hranice bloku nie je možné zobraziť (zakázané hrou, alebo rozšírením)" -#: src/client/game.cpp -msgid "Change Password" -msgstr "Zmeniť heslo" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "Filmový režim je zakázaný" @@ -1406,39 +1442,6 @@ msgstr "Chyba spojenia (časový limit?)" msgid "Connection failed for unknown reason" msgstr "Spojenie sa z neznámeho dôvodu nepodarilo" -#: src/client/game.cpp -msgid "Continue" -msgstr "Pokračuj" - -#: src/client/game.cpp -#, fuzzy -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" -"Štandardné ovládanie:\n" -"Menu nie je zobrazené:\n" -"- jeden klik: tlačidlo aktivuj\n" -"- dvojklik: polož/použi\n" -"- posun prstom: pozeraj sa dookola\n" -"Menu/Inventár je zobrazené/ý:\n" -"- dvojklik (mimo):\n" -" -->zatvor\n" -"- klik na kôpku, klik na miesto:\n" -" --> presuň kôpku \n" -"- chyť a prenes, klik druhým prstom\n" -" --> polož jednu vec na miesto\n" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1452,31 +1455,15 @@ msgstr "Vytváram klienta..." msgid "Creating server..." msgstr "Vytváram server..." -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "Ladiace informácie a Profilový graf sú skryté" - #: src/client/game.cpp msgid "Debug info shown" msgstr "Ladiace informácie zobrazené" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "Ladiace informácie, Profilový graf a Obrysy sú skryté" - #: src/client/game.cpp #, c-format msgid "Error creating client: %s" msgstr "Chyba pri vytváraní klienta: %s" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "Návrat do menu" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "Ukončiť hru" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "Rýchly režim je zakázaný" @@ -1514,18 +1501,6 @@ msgstr "Hmla je aktivovaná" msgid "Fog enabled by game or mod" msgstr "Zväčšenie je zakázané hrou, alebo rozšírením" -#: src/client/game.cpp -msgid "Game info:" -msgstr "Informácie o hre:" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "Hra je pozastavená" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "Beží server" - #: src/client/game.cpp msgid "Item definitions..." msgstr "Definície vecí..." @@ -1563,14 +1538,6 @@ msgstr "" msgid "Node definitions..." msgstr "Definície kocky..." -#: src/client/game.cpp -msgid "Off" -msgstr "Vypnutý" - -#: src/client/game.cpp -msgid "On" -msgstr "Aktívny" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "Režim pohybu podľa sklonu je zakázaný" @@ -1583,38 +1550,22 @@ msgstr "Režim pohybu podľa sklonu je aktívny" msgid "Profiler graph shown" msgstr "Profilový graf je zobrazený" -#: src/client/game.cpp -msgid "Remote server" -msgstr "Vzdialený server" - #: src/client/game.cpp msgid "Resolving address..." msgstr "Prekladám adresu..." -#: src/client/game.cpp -msgid "Respawn" -msgstr "Oživiť" - #: src/client/game.cpp msgid "Shutting down..." msgstr "Vypínam..." -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "Hra pre jedného hráča" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "Hlasitosť" - #: src/client/game.cpp msgid "Sound muted" msgstr "Zvuk je stlmený" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "Zvukový systém je zakázaný" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "Zvukový systém nie je podporovaný v tomto zostavení" @@ -1691,18 +1642,117 @@ msgstr "" msgid "Volume changed to %d%%" msgstr "Hlasitosť zmenená na %d%%" +#: src/client/game.cpp +#, fuzzy +msgid "Wireframe not supported by video driver" +msgstr "Tieňovanie (Shaders) je zapnuté ale GLSL nie je podporené drajverom." + #: src/client/game.cpp msgid "Wireframe shown" msgstr "Obrysy zobrazené" -#: src/client/game.cpp -msgid "You died" -msgstr "Zomrel si" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "Zväčšenie je zakázané hrou, alebo rozšírením" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "- Mode: " + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "- Verejný: " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "- PvP: " + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "- Meno servera: " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "Zmeniť heslo" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "Pokračuj" + +#: src/client/game_formspec.cpp +#, fuzzy +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" +"Štandardné ovládanie:\n" +"Menu nie je zobrazené:\n" +"- jeden klik: tlačidlo aktivuj\n" +"- dvojklik: polož/použi\n" +"- posun prstom: pozeraj sa dookola\n" +"Menu/Inventár je zobrazené/ý:\n" +"- dvojklik (mimo):\n" +" -->zatvor\n" +"- klik na kôpku, klik na miesto:\n" +" --> presuň kôpku \n" +"- chyť a prenes, klik druhým prstom\n" +" --> polož jednu vec na miesto\n" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "Návrat do menu" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "Ukončiť hru" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "Informácie o hre:" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "Hra je pozastavená" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "Beží server" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "Vypnutý" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "Aktívny" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "Vzdialený server" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "Oživiť" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "Hlasitosť" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "Zomrel si" + #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" msgstr "Chat je zakázaný hrou, alebo rozšírením" @@ -2029,8 +2079,9 @@ msgid "Failed to compile the \"%s\" shader." msgstr "Nepodarilo sa vytvoriť \"%s\" tieňovač." #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." -msgstr "" +#, fuzzy +msgid "GLSL is not supported by the driver" +msgstr "Tieňovanie (Shaders) je zapnuté ale GLSL nie je podporené drajverom." #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" #: src/content/mod_configuration.cpp @@ -2081,7 +2132,7 @@ msgstr "Automaticky pohyb vpred" msgid "Automatic jumping" msgstr "Automatické skákanie" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "Aux1" @@ -2093,7 +2144,7 @@ msgstr "Vzad" msgid "Block bounds" msgstr "Hranice bloku" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "Zmeň pohľad" @@ -2117,7 +2168,7 @@ msgstr "Zníž hlasitosť" msgid "Double tap \"jump\" to toggle fly" msgstr "2x stlač \"skok\" pre prepnutie lietania" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "Zahodiť" @@ -2133,11 +2184,11 @@ msgstr "Zvýš dohľad" msgid "Inc. volume" msgstr "Zvýš hlasitosť" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "Inventár" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "Skok" @@ -2169,7 +2220,7 @@ msgstr "Ďalšia vec" msgid "Prev. item" msgstr "Pred. vec" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "Zmena dohľadu" @@ -2181,7 +2232,7 @@ msgstr "Vpravo" msgid "Screenshot" msgstr "Fotka obrazovky" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "Zakrádať sa" @@ -2189,15 +2240,15 @@ msgstr "Zakrádať sa" msgid "Toggle HUD" msgstr "Prepni HUD" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "Prepni logovanie komunikácie" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "Prepni rýchly režim" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "Prepni lietanie" @@ -2205,11 +2256,11 @@ msgstr "Prepni lietanie" msgid "Toggle fog" msgstr "Prepni hmlu" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "Prepni minimapu" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "Prepni režim prechádzania stenami" @@ -2217,7 +2268,7 @@ msgstr "Prepni režim prechádzania stenami" msgid "Toggle pitchmove" msgstr "Prepni režim pohybu podľa sklonu" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "Priblíž" @@ -2227,11 +2278,11 @@ msgstr "stlač klávesu" #: src/gui/guiOpenURL.cpp msgid "Open" -msgstr "" +msgstr "Otvorené" #: src/gui/guiOpenURL.cpp msgid "Open URL?" -msgstr "" +msgstr "Otvorené URL?" #: src/gui/guiOpenURL.cpp #, fuzzy @@ -2254,7 +2305,7 @@ msgstr "Staré heslo" msgid "Passwords do not match!" msgstr "Hesla sa nezhodujú!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "Odísť" @@ -2267,16 +2318,47 @@ msgstr "Zvuk stlmený" msgid "Sound Volume: %d%%" msgstr "Hlasitosť: %d%%" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Add button" +msgstr "Stredné tlačítko" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "Hotovo!" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Remove" +msgstr "Vzdialený server" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Joystick" msgstr "ID joysticku" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Toggle debug" msgstr "Prepni hmlu" @@ -2491,6 +2573,7 @@ msgid "3D noise that determines number of dungeons per mapchunk." msgstr "3D šum definujúci počet kobiek na časť mapy (mapchunk)." #: src/settings_translation_file.cpp +#, fuzzy msgid "" "3D support.\n" "Currently supported:\n" @@ -2499,8 +2582,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" "Podpora 3D.\n" "Aktuálne sú podporované:\n" @@ -2565,10 +2647,6 @@ msgstr "Rozsah aktívnych blokov" msgid "Active object send range" msgstr "Zasielaný rozsah aktívnych objektov" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "Pridá časticové efekty pri vykopávaní kocky." - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2599,6 +2677,17 @@ msgstr "Meno správcu" msgid "Advanced" msgstr "Pokročilé" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +#, fuzzy +msgid "Allow clouds to look 3D instead of flat." +msgstr "Použi 3D mraky namiesto plochých." + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "" @@ -2992,14 +3081,14 @@ msgstr "Polomer mrakov" msgid "Clouds" msgstr "Mraky" -#: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." -msgstr "Mraky sú efektom na strane klienta." - #: src/settings_translation_file.cpp msgid "Clouds in menu" msgstr "Mraky v menu" +#: src/settings_translation_file.cpp +msgid "Color depth for post-processing texture" +msgstr "" + #: src/settings_translation_file.cpp msgid "Colored fog" msgstr "Farebná hmla" @@ -3023,7 +3112,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" "Čiarkou oddelený zoznam príznakov, ktoré sa skryjú v zozname doplnkov.\n" "\"nonfree\" môže byť využité na skrytie doplnkov, ktoré nie je možné " @@ -3190,6 +3279,14 @@ msgstr "Úroveň ladiacich info" msgid "Debugging" msgstr "Ladenie" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "Určený krok servera" @@ -3360,18 +3457,10 @@ msgstr "" "Púšte sa objavia keď np_biome presiahne túto hodnotu.\n" "Ak je aktívny príznak 'snowbiomes', tak toto je ignorované." -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "Nesynchronizuj animáciu blokov" - #: src/settings_translation_file.cpp msgid "Developer Options" msgstr "Nastavenia pre vývojárov" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "Časticové efekty pri kopaní" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "Zakáž prázdne heslá" @@ -3402,6 +3491,14 @@ msgstr "Dvakrát skok pre lietanie" msgid "Double-tapping the jump key toggles fly mode." msgstr "Dvojnásobné stlačenie klávesy pre skok prepne režim lietania." +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "Získaj ladiace informácie generátora máp." @@ -3488,9 +3585,10 @@ msgstr "" "simulujúc správanie sa ľudského oka." #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" "Aktivuje farebné tiene.\n" "Ak je aktivovaný, tak priesvitné kocky dávajú farebné tiene. Toto je náročné." @@ -3576,10 +3674,10 @@ msgstr "" "Napr.: 0 pre žiadne pohupovanie; 1.0 pre normálne; 2.0 pre dvojnásobné." #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" "Aktivuj/vypni IPv6 server.\n" "Ignorované, ak je nastavená bind_address .\n" @@ -3601,13 +3699,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "Aktivuje animáciu vecí v inventári." -#: src/settings_translation_file.cpp -#, fuzzy -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "Aktivuje ukladanie tvárou rotovaných Mesh objektov do medzipamäti." - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -3950,10 +4041,6 @@ msgstr "Mierka GUI" msgid "GUI scaling filter" msgstr "Filter mierky GUI" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "Filter mierky GUI txr2img" - #: src/settings_translation_file.cpp msgid "Gamepads" msgstr "Gamepady" @@ -4215,14 +4302,6 @@ msgstr "" "klávesu\n" "pre klesanie a šplhanie dole." -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" -"Ak je aktivované, tak registrácia účtu je oddelená od prihlásenia v UI.\n" -"Ak je zakázané, nové konto sa zaregistruje automaticky pri prihlásení." - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -4247,6 +4326,16 @@ msgstr "" "Ak je aktivované, nový hráči sa nemôžu prihlásiť bez zadaného hesla, ani si " "nemôžu heslo vymazať." +#: src/settings_translation_file.cpp +#, fuzzy +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" +"Ak je aktivované, tak registrácia účtu je oddelená od prihlásenia v UI.\n" +"Ak je zakázané, nové konto sa zaregistruje automaticky pri prihlásení." + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4362,10 +4451,6 @@ msgstr "Inštrumentuj metódy bytostí pri registrácií." msgid "Interval of saving important changes in the world, stated in seconds." msgstr "Interval ukladania dôležitých zmien vo svete, uvádzaný v sekundách." -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "Interval v akom sa posiela denný čas klientom, v sekundách." - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "Animácia vecí v inventári" @@ -5085,10 +5170,6 @@ msgstr "" msgid "Maximum users" msgstr "Maximálny počet hráčov" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "Medzipamäť Mesh" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "Správa dňa" @@ -5124,6 +5205,10 @@ msgid "Minimum limit of random number of small caves per mapchunk." msgstr "" "Minimálny limit náhodného počtu malých jaskýň v danej časti mapy (mapchunk)." +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "Mip-mapovanie" @@ -5218,9 +5303,10 @@ msgstr "" "- Voliteľné lietajúce pevniny (floatlands) vo v7 (štandardne vypnuté)." #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" "Meno hráča.\n" @@ -5742,17 +5828,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -6008,16 +6096,6 @@ msgstr "" msgid "Shader path" msgstr "Cesta k shaderom" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "Tieňovanie" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "Kvalita filtra pre tiene" @@ -6210,11 +6288,11 @@ msgstr "" "určité (alebo všetky) typy." #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" "Rozptýľ celkovú aktualizáciu mapy tieňov cez zadané množstvo snímok.\n" "Vyššie hodnoty môžu spôsobiť trhanie tieňov, nižšie hodnoty\n" @@ -6578,10 +6656,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "Čas pri spustení nového sveta, v milihodinách (0-23999)." -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "Interval posielania času" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "Rýchlosť času" @@ -6647,6 +6721,11 @@ msgstr "Nepriehľadné tekutiny" msgid "Transparency Sorting Distance" msgstr "Vzdialenosť spracovania priehľadnosti" +#: src/settings_translation_file.cpp +#, fuzzy +msgid "Transparency Sorting Group by Buffers" +msgstr "Vzdialenosť spracovania priehľadnosti" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "Šum stromov" @@ -6706,12 +6785,16 @@ msgid "Undersampling" msgstr "Podvzorkovanie" #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Undersampling is similar to using a lower screen resolution, but it applies\n" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" "Podvzorkovanie je podobné ako použiť obrazovku s nižším rozlíšením, ale\n" "aplikuje sa len na samotný svet, pričom GUI ostáva nezmenené.\n" @@ -6738,16 +6821,15 @@ msgstr "Horný Y limit kobiek." msgid "Upper Y limit of floatlands." msgstr "Horný Y limit lietajúcich pevnín." -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "Použi 3D mraky namiesto plochých." - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "Použi animáciu mrakov pre pozadie hlavného menu." #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +#, fuzzy +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "Použi anisotropné filtrovanie pri pohľade na textúry zo strany." #: src/settings_translation_file.cpp @@ -7017,25 +7099,14 @@ msgstr "" "pre hardvér (napr. render-to-texture pre kocky v inventári)." #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" -"Ake je gui_scaling_filter_txr2img povolený, nakopíruj tieto obrázky\n" -"z hardvéru do softvéru pre zmenu mierky. Ak za vypnutý, vráť sa\n" -"k starej metóde zmeny mierky, pre grafické ovládače, ktoré dostatočne\n" -"nepodporujú sťahovanie textúr z hardvéru." - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -7058,10 +7129,6 @@ msgstr "" "Či sa má štandardne zobraziť menovka pozadia.\n" "Rozšírenia stále môžu pozadie nastaviť." -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "Či sa nemá animácia textúry kocky synchronizovať." - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -7087,9 +7154,9 @@ msgid "Whether to fog out the end of the visible area." msgstr "Či zamlžiť okraj viditeľnej oblasti." #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -7279,6 +7346,9 @@ msgstr "Paralelný limit cURL" #~ "Ponechaj prázdne pre spustenie lokálneho servera.\n" #~ "Adresné políčko v hlavnom menu prepíše toto nastavenie." +#~ msgid "Adds particles when digging a node." +#~ msgstr "Pridá časticové efekty pri vykopávaní kocky." + #~ msgid "" #~ "Adjust dpi configuration to your screen (non X11/Android only) e.g. for " #~ "4k screens." @@ -7423,6 +7493,9 @@ msgstr "Paralelný limit cURL" #~ msgid "Clean transparent textures" #~ msgstr "Vyčisti priehľadné textúry" +#~ msgid "Clouds are a client-side effect." +#~ msgstr "Mraky sú efektom na strane klienta." + #~ msgid "Command key" #~ msgstr "Tlačidlo Príkaz" @@ -7503,9 +7576,15 @@ msgstr "Paralelný limit cURL" #~ msgid "Damage enabled" #~ msgstr "Poškodenie je aktivované" +#~ msgid "Debug info and profiler graph hidden" +#~ msgstr "Ladiace informácie a Profilový graf sú skryté" + #~ msgid "Debug info toggle key" #~ msgstr "Tlačidlo Ladiace informácie" +#~ msgid "Debug info, profiler graph, and wireframe hidden" +#~ msgstr "Ladiace informácie, Profilový graf a Obrysy sú skryté" + #~ msgid "Dec. volume key" #~ msgstr "Tlačidlo Zníž hlasitosť" @@ -7552,9 +7631,15 @@ msgstr "Paralelný limit cURL" #~ msgid "Del. Favorite" #~ msgstr "Zmaž obľúbené" +#~ msgid "Desynchronize block animation" +#~ msgstr "Nesynchronizuj animáciu blokov" + #~ msgid "Dig key" #~ msgstr "Tlačidlo Kopanie" +#~ msgid "Digging particles" +#~ msgstr "Časticové efekty pri kopaní" + #~ msgid "Disable anticheat" #~ msgstr "Zakáž anticheat" @@ -7576,6 +7661,10 @@ msgstr "Paralelný limit cURL" #~ msgid "Dynamic shadows:" #~ msgstr "Dynamické tiene:" +#, fuzzy +#~ msgid "Enable" +#~ msgstr "Aktivované" + #~ msgid "Enable creative mode for all players" #~ msgstr "Aktivuj kreatívny režim pre všetkých hráčov" @@ -7607,6 +7696,12 @@ msgstr "Paralelný limit cURL" #~ "alebo musia byť automaticky generované.\n" #~ "Vyžaduje aby boli shadery aktivované." +#, fuzzy +#~ msgid "" +#~ "Enables caching of facedir rotated meshes.\n" +#~ "This is only effective with shaders disabled." +#~ msgstr "Aktivuje ukladanie tvárou rotovaných Mesh objektov do medzipamäti." + #~ msgid "Enables minimap." #~ msgstr "Aktivuje minimapu." @@ -7646,9 +7741,6 @@ msgstr "Paralelný limit cURL" #~ "Experimentálne nastavenie, môže spôsobiť viditeľné medzery\n" #~ "medzi blokmi, ak je nastavené väčšie než 0." -#~ msgid "FPS in pause menu" -#~ msgstr "FPS v menu pozastavenia hry" - #~ msgid "FSAA" #~ msgstr "FSAA" @@ -7728,8 +7820,8 @@ msgstr "Paralelný limit cURL" #~ msgid "Full screen BPP" #~ msgstr "BPP v režime celej obrazovky" -#~ msgid "Game" -#~ msgstr "Hra" +#~ msgid "GUI scaling filter txr2img" +#~ msgstr "Filter mierky GUI txr2img" #~ msgid "Generate Normal Maps" #~ msgstr "Normal Maps (nerovnosti)" @@ -7888,667 +7980,673 @@ msgstr "Paralelný limit cURL" #~ msgid "Instrumentation" #~ msgstr "Výstroj" +#~ msgid "Interval of sending time of day to clients, stated in seconds." +#~ msgstr "Interval v akom sa posiela denný čas klientom, v sekundách." + #~ msgid "Invalid gamespec." #~ msgstr "Chybná špec. hry." #~ msgid "Inventory key" #~ msgstr "Tlačidlo Inventár" +#~ msgid "Irrlicht device:" +#~ msgstr "Zariadenie Irrlicht:" + #~ msgid "Jump key" #~ msgstr "Tlačidlo Skok" #~ msgid "" #~ "Key for decreasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre zníženie dohľadu.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for decreasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre zníženie hlasitosti.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for digging.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre kopanie.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for dropping the currently selected item.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre zahodenie aktuálne vybranej veci.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre zvýšenie dohľadu.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre zvýšenie hlasitosti.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for jumping.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre skákanie.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving fast in fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre rýchly pohyb hráča v rýchlom móde.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player backward.\n" #~ "Will also disable autoforward, when active.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre pohyb hráča vzad.\n" #~ "Zároveň vypne automatický pohyb hráča dopredu, ak je aktívny.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player forward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre pohyb hráča vpred.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player left.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre pohyb hráča vľavo.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player right.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre pohyb hráča vpravo.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for muting the game.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre vypnutie hlasitosti v hre.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre otvorenie komunikačného okna pre zadávanie príkazov.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type local commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre otvorenie komunikačného okna pre zadávanie lokálnych " #~ "príkazov.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre otvorenie komunikačného okna.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the inventory.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre otvorenie inventára.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for placing.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre pokladanie.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 11th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre výber jedenástej pozície na opasku.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 12th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre výber dvanástej pozície na opasku.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 13th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre výber trinástej pozície na opasku.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 14th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre výber štrnástej pozície na opasku.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 15th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre výber pätnástej pozície na opasku.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 16th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre výber šestnástej pozície na opasku.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 17th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre výber sedemnástej pozície na opasku.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 18th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre výber osemnástej pozície na opasku.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 19th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre výber devätnástej pozície na opasku.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 20th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre výber 20. pozície na opasku.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 21st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre výber 21. pozície na opasku.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 22nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre výber 22. pozície na opasku.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 23rd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre výber 23. pozície na opasku.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 24th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre výber 24. pozície na opasku.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 25th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre výber 25. pozície na opasku.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 26th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre výber 26. pozície na opasku.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 27th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre výber 27. pozície na opasku.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 28th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre výber 28. pozície na opasku.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 29th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre výber 29. pozície na opasku.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 30th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre výber 30. pozície na opasku.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 31st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre výber 31. pozície na opasku.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 32nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre výber 32. pozície na opasku.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the eighth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre výber ôsmej pozície na opasku.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the fifth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre výber piatej pozície na opasku.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the first hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre výber prvej pozície na opasku.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the fourth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre výber štvrtej pozície na opasku.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the next item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre výber ďalšej veci na opasku.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the ninth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre výber deviatej pozície na opasku.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the previous item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre výber predchádzajúcej veci na opasku.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the second hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre výber druhej pozície na opasku.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the seventh hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre výber siedmej pozície na opasku.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the sixth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre výber šiestej pozície na opasku.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the tenth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre výber desiatej pozície na opasku.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the third hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre výber tretej pozície na opasku.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for sneaking.\n" #~ "Also used for climbing down and descending in water if aux1_descends is " #~ "disabled.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre utajený pohyb (zakrádanie) hráča.\n" #~ "Tiež sa používa pre zliezanie a ponáranie vo vode ak aux1_descends je " #~ "vypnutý.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for switching between first- and third-person camera.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre prepínanie medzi pohľadom z prvej a tretej osoby.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for taking screenshots.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre snímanie obrazovky.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling autoforward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre prepnutie režimu automatického pohybu vpred.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling cinematic mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre prepnutie filmového režimu.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling display of minimap.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre prepnutie zobrazenia minimapy.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre prepnutie režimu rýchlosť.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling flying.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre prepnutie lietania.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling noclip mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre prepnutie režimu prechádzania stenami.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling pitch move mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre prepnutie režimu pohyb podľa sklonu.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the camera update. Only used for development\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre prepnutie aktualizácie pohľadu. Používa sa len pre vývoj.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of chat.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre prepnutie zobrazenia komunikácie.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of debug info.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre prepnutie zobrazenia ladiacich informácií.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of fog.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre prepnutie zobrazenia hmly.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the HUD.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre prepnutie zobrazenia HUD (Head-Up Display - výhľadový " #~ "displej).\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the large chat console.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre prepnutie zobrazenia veľkej konzoly na komunikáciu.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the profiler. Used for development.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre prepnutie zobrazenia profileru. Používa sa pri vývoji.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling unlimited view range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre prepnutie neobmedzeného dohľadu.\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key to use view zoom when possible.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Tlačidlo pre použitie priblíženia pokiaľ je to možné .\n" -#~ "Viď. http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Viď. http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Keybindings. (If this menu screws up, remove stuff from minetest.conf)" #~ msgstr "" -#~ "Priradenie kláves. (ak je toto menu rozbité, zmaž zbytočnosti z minetest." -#~ "conf)" +#~ "Priradenie kláves. (ak je toto menu rozbité, zmaž zbytočnosti z " +#~ "minetest.conf)" #~ msgid "Large chat console key" #~ msgstr "Tlačidlo Veľká komunikačná konzola" @@ -8607,6 +8705,9 @@ msgstr "Paralelný limit cURL" #~ msgid "Menus" #~ msgstr "Menu" +#~ msgid "Mesh cache" +#~ msgstr "Medzipamäť Mesh" + #~ msgid "Minimap" #~ msgstr "Minimapa" @@ -8803,6 +8904,9 @@ msgstr "Paralelný limit cURL" #~ "spotrebuje sa viac zdrojov.\n" #~ "Minimálna hodnota je 0.001 sekúnd max. hodnota je 0.2 sekundy" +#~ msgid "Shaders" +#~ msgstr "Tieňovanie" + #~ msgid "Shaders (experimental)" #~ msgstr "Shadery (experimentálne)" @@ -8820,6 +8924,10 @@ msgstr "Paralelný limit cURL" #~ "môžu zvýšiť výkon.\n" #~ "Toto funguje len s OpenGL." +#, fuzzy +#~ msgid "Shaders are disabled." +#~ msgstr "Aktualizácia kamery je zakázaná" + #~ msgid "" #~ "Shadow offset (in pixels) of the fallback font. If 0, then shadow will " #~ "not be drawn." @@ -8849,6 +8957,9 @@ msgstr "Paralelný limit cURL" #~ msgid "Smooths rotation of camera. 0 to disable." #~ msgstr "Zjemní rotáciu kamery. 0 je pre vypnuté." +#~ msgid "Sound system is disabled" +#~ msgstr "Zvukový systém je zakázaný" + #~ msgid "Special" #~ msgstr "Špeciál" @@ -8886,6 +8997,12 @@ msgstr "Paralelný limit cURL" #~ "pohľady, alebo pohybu myši.\n" #~ "Užitočné pri nahrávaní videí." +#~ msgid "This is not a recommended configuration." +#~ msgstr "Toto nie je odporúčaná konfigurácia." + +#~ msgid "Time send interval" +#~ msgstr "Interval posielania času" + #~ msgid "To enable shaders the OpenGL driver needs to be used." #~ msgstr "Aby mohli byť aktivované shadery, musí sa použiť OpenGL." @@ -8989,6 +9106,17 @@ msgstr "Paralelný limit cURL" #~ msgid "Waving Plants" #~ msgstr "Vlniace sa rastliny" +#~ msgid "" +#~ "When gui_scaling_filter_txr2img is true, copy those images\n" +#~ "from hardware to software for scaling. When false, fall back\n" +#~ "to the old scaling method, for video drivers that don't\n" +#~ "properly support downloading textures back from hardware." +#~ msgstr "" +#~ "Ake je gui_scaling_filter_txr2img povolený, nakopíruj tieto obrázky\n" +#~ "z hardvéru do softvéru pre zmenu mierky. Ak za vypnutý, vráť sa\n" +#~ "k starej metóde zmeny mierky, pre grafické ovládače, ktoré dostatočne\n" +#~ "nepodporujú sťahovanie textúr z hardvéru." + #~ msgid "" #~ "Whether FreeType fonts are used, requires FreeType support to be compiled " #~ "in.\n" @@ -8998,6 +9126,10 @@ msgstr "Paralelný limit cURL" #~ "zakompilovaná.\n" #~ "Ak je zakázané, budú použité bitmapové a XML vektorové písma." +#~ msgid "" +#~ "Whether node texture animations should be desynchronized per mapblock." +#~ msgstr "Či sa nemá animácia textúry kocky synchronizovať." + #~ msgid "Whether to allow players to damage and kill each other." #~ msgstr "Či sa môžu hráči navzájom poškodzovať a zabiť." diff --git a/po/sl/luanti.po b/po/sl/luanti.po index 6422bb2af..73c49afbf 100644 --- a/po/sl/luanti.po +++ b/po/sl/luanti.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Slovenian (Minetest)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" "PO-Revision-Date: 2020-09-30 19:41+0000\n" "Last-Translator: Iztok Bajcar \n" "Language-Team: Slovenian ] [-t]" msgstr "" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "Prebrskaj" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "Uredi" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "Izberi mapo" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "Izberi datoteko" + +#: builtin/common/settings/components.lua +#, fuzzy +msgid "Set" +msgstr "Izberi" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(ni podanega opisa nastavitve)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "2D šum" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "Prekliči" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#, fuzzy +msgid "Lacunarity" +msgstr "lacunarnost" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "Oktave" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "Odmik" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#, fuzzy +msgid "Persistence" +msgstr "Trajanje" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "Shrani" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "Skala" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "Seme" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "X širjenje" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "Y širjenje" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "Z širjenje" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "Absolutna vrednost" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "Privzeta/standardna vrednost (defaults)" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#, fuzzy +msgid "eased" +msgstr "sproščeno" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "Klepet" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "Počisti" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +#, fuzzy +msgid "Controls" +msgstr "Kontrole" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "Onemogočeno" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "Omogočeno" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Movement" +msgstr "Hitro premikanje" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "Ni rezultatov" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Reset setting to default" +msgstr "Obnovi privzeto" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "Poišči" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "Prikaži tehnična imena" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Touchscreen layout" +msgstr "Celozaslonski način" + +#: builtin/common/settings/dlg_settings.lua +msgid "pause_menu" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Client Mods" +msgstr "Izbor sveta:" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Content: Games" +msgstr "Vsebina" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Content: Mods" +msgstr "Vsebina" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +#, fuzzy +msgid "Dynamic shadows" +msgstr "Senca pisave" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "" + #: builtin/fstk/ui.lua msgid "" msgstr "" @@ -167,7 +417,6 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "Nazaj" @@ -205,11 +454,6 @@ msgstr "Prilagoditve (mods)" msgid "No packages could be retrieved" msgstr "Ni mogoče pridobiti nobenega paketa" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "Ni rezultatov" - #: builtin/mainmenu/content/dlg_contentdb.lua #, fuzzy msgid "No updates" @@ -258,18 +502,6 @@ msgstr "Tipka je že v uporabi" msgid "Base Game:" msgstr "Gosti igro" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "Prekliči" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -402,6 +634,12 @@ msgstr "Ni mogoče namestiti prilagoditve kot $1" msgid "Unable to install a $1 as a texture pack" msgstr "Ni mogoče namestiti $1 kot paket tekstur" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "" @@ -469,12 +707,6 @@ msgstr "Ni izbirnih odvisnosti" msgid "Optional dependencies:" msgstr "Izbirne možnosti:" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "Shrani" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "Svet:" @@ -636,11 +868,6 @@ msgstr "Reke" msgid "Sea level rivers" msgstr "Reke na višini morja" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "Seme" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "Gladek prehod med biomi" @@ -785,6 +1012,23 @@ msgstr "" "Ta paket prilagoditev ima jasno ime, določeno v svojem modpack.conf, ki bo " "preprečilo kakršnakoli preimenovanja tukaj." +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "Omogoči vse" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "" @@ -809,7 +1053,7 @@ msgstr "" msgid "Visit website" msgstr "" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "Nastavitve" @@ -824,236 +1068,6 @@ msgstr "" "Morda je treba ponovno omogočiti javni seznam strežnikov oziroma preveriti " "internetno povezavo." -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "Prebrskaj" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "Uredi" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "Izberi mapo" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "Izberi datoteko" - -#: builtin/mainmenu/settings/components.lua -#, fuzzy -msgid "Set" -msgstr "Izberi" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(ni podanega opisa nastavitve)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "2D šum" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#, fuzzy -msgid "Lacunarity" -msgstr "lacunarnost" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "Oktave" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "Odmik" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#, fuzzy -msgid "Persistence" -msgstr "Trajanje" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "Skala" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "X širjenje" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "Y širjenje" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "Z širjenje" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "Absolutna vrednost" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "Privzeta/standardna vrednost (defaults)" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#, fuzzy -msgid "eased" -msgstr "sproščeno" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "Klepet" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "Počisti" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -#, fuzzy -msgid "Controls" -msgstr "Kontrole" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "Onemogočeno" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "Omogočeno" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Movement" -msgstr "Hitro premikanje" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Reset setting to default" -msgstr "Obnovi privzeto" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "Poišči" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "Prikaži tehnična imena" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Client Mods" -msgstr "Izbor sveta:" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Content: Games" -msgstr "Vsebina" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Content: Mods" -msgstr "Vsebina" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "Omogočeno" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Shaders are disabled." -msgstr "Posodabljanje kamere je onemogočeno" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -#, fuzzy -msgid "Dynamic shadows" -msgstr "Senca pisave" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "" @@ -1074,10 +1088,6 @@ msgstr "Glavni razvijalci" msgid "Core Team" msgstr "" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "" - #: builtin/mainmenu/tab_about.lua #, fuzzy msgid "Open User Data Directory" @@ -1228,11 +1238,23 @@ msgstr "Začni igro" msgid "You need to install a game before you can create a world." msgstr "" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "Izbriši priljubljeno" + #: builtin/mainmenu/tab_online.lua #, fuzzy msgid "Address" msgstr "– Naslov: " +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "Odjemalec" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "Ustvarjalni način" @@ -1248,6 +1270,11 @@ msgstr "Poškodbe" msgid "Favorites" msgstr "Priljubljeno" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "Igra" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "" @@ -1260,10 +1287,26 @@ msgstr "Prijavi se v igro" msgid "Login" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +msgid "Open server website" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "Ping" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua #, fuzzy msgid "Public Servers" @@ -1355,23 +1398,6 @@ msgstr "" "\n" "Več podrobnosti je zapisanih v datoteki debug.txt." -#: src/client/game.cpp -msgid "- Mode: " -msgstr "– Način: " - -#: src/client/game.cpp -msgid "- Public: " -msgstr "– Javno: " - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "– Igra PvP: " - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "– Ime strežnika: " - #: src/client/game.cpp #, fuzzy msgid "A serialization error occurred:" @@ -1382,6 +1408,11 @@ msgstr "Prišlo je do napake:" msgid "Access denied. Reason: %s" msgstr "" +#: src/client/game.cpp +#, fuzzy +msgid "All debug info hidden" +msgstr "Prikazani so podatki o odpravljanju napak" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "Samodejno premikanje naprej je onemogočeno" @@ -1402,6 +1433,10 @@ msgstr "" msgid "Block bounds shown for nearby blocks" msgstr "" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "Posodabljanje kamere je onemogočeno" @@ -1415,10 +1450,6 @@ msgstr "Posodabljanje kamere je omogočeno" msgid "Can't show block bounds (disabled by game or mod)" msgstr "Približanje (zoom) je trenutno onemogočen zaradi igre ali prilagoditve" -#: src/client/game.cpp -msgid "Change Password" -msgstr "Spremeni geslo" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "Filmski način(Cinematic mode) je onemogočen" @@ -1447,39 +1478,6 @@ msgstr "Napaka povezave (ali je dejanje časovno preteklo?)" msgid "Connection failed for unknown reason" msgstr "" -#: src/client/game.cpp -msgid "Continue" -msgstr "Nadaljuj" - -#: src/client/game.cpp -#, fuzzy -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" -"Privzete tipkovne bližnjice:\n" -"S skritim menijem:\n" -"- enojni klik: postavi gumb v žarišče\n" -"- dvojni klik: postavi / uporabi\n" -"- drsanje: pogled naokoli\n" -"S prikazanim menijem / zalogo:\n" -"- dvojni klik (izven polja):\n" -" -->Zapre\n" -"- izbira polja:\n" -" --> premakne zalogo\n" -"- klik in poteg, tap z dvema prstoma\n" -" --> postavi predmet v polje\n" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1493,33 +1491,15 @@ msgstr "Ustvarjanje odjemalca ..." msgid "Creating server..." msgstr "Poteka zagon strežnika ..." -#: src/client/game.cpp -#, fuzzy -msgid "Debug info and profiler graph hidden" -msgstr "Podatki za razhroščevanje in graf skriti" - #: src/client/game.cpp msgid "Debug info shown" msgstr "Prikazani so podatki o odpravljanju napak" -#: src/client/game.cpp -#, fuzzy -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "Podatki za razhroščevanje, graf, in žičnati prikaz skriti" - #: src/client/game.cpp #, fuzzy, c-format msgid "Error creating client: %s" msgstr "Ustvarjanje odjemalca ..." -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "Izhod na meni" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "Zapri minetest" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "Hitri način je onemogočen" @@ -1557,18 +1537,6 @@ msgstr "Megla omogočena" msgid "Fog enabled by game or mod" msgstr "Približanje (zoom) je trenutno onemogočen zaradi igre ali prilagoditve" -#: src/client/game.cpp -msgid "Game info:" -msgstr "Podrobnosti o igri:" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "Igra je začasno ustavljena" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "Gostiteljski strežnik" - #: src/client/game.cpp msgid "Item definitions..." msgstr "Določila predmetov ..." @@ -1609,14 +1577,6 @@ msgstr "" msgid "Node definitions..." msgstr "Določila vozlišč ..." -#: src/client/game.cpp -msgid "Off" -msgstr "Izklopljeno" - -#: src/client/game.cpp -msgid "On" -msgstr "Vklopljeno" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "Prostorsko premikanje (pitch mode) je onemogočeno" @@ -1630,38 +1590,22 @@ msgstr "Prostorsko premikanje (pitch mode) je omogočeno" msgid "Profiler graph shown" msgstr "Profiler prikazan" -#: src/client/game.cpp -msgid "Remote server" -msgstr "Oddaljeni strežnik" - #: src/client/game.cpp msgid "Resolving address..." msgstr "Poteka razreševanje naslova ..." -#: src/client/game.cpp -msgid "Respawn" -msgstr "Ponovno oživi" - #: src/client/game.cpp msgid "Shutting down..." msgstr "Poteka zaustavljanje ..." -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "samostojna igra" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "Glasnost zvoka" - #: src/client/game.cpp msgid "Sound muted" msgstr "Zvok je utišan" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "Zvočni sistem je onemogočen" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "Zvočni sistem v tej izdaji Minetesta ni podprt" @@ -1735,19 +1679,117 @@ msgstr "Doseg pogleda je nastavljena na %d %%" msgid "Volume changed to %d%%" msgstr "Glasnost zvoka je nastavljena na %d %%" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "" + #: src/client/game.cpp #, fuzzy msgid "Wireframe shown" msgstr "Žičnati prikaz omogočen" -#: src/client/game.cpp -msgid "You died" -msgstr "Umrl si" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "Približanje (zoom) je trenutno onemogočen zaradi igre ali prilagoditve" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "– Način: " + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "– Javno: " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "– Igra PvP: " + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "– Ime strežnika: " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "Spremeni geslo" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "Nadaljuj" + +#: src/client/game_formspec.cpp +#, fuzzy +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" +"Privzete tipkovne bližnjice:\n" +"S skritim menijem:\n" +"- enojni klik: postavi gumb v žarišče\n" +"- dvojni klik: postavi / uporabi\n" +"- drsanje: pogled naokoli\n" +"S prikazanim menijem / zalogo:\n" +"- dvojni klik (izven polja):\n" +" -->Zapre\n" +"- izbira polja:\n" +" --> premakne zalogo\n" +"- klik in poteg, tap z dvema prstoma\n" +" --> postavi predmet v polje\n" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "Izhod na meni" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "Zapri minetest" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "Podrobnosti o igri:" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "Igra je začasno ustavljena" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "Gostiteljski strežnik" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "Izklopljeno" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "Vklopljeno" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "Oddaljeni strežnik" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "Ponovno oživi" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "Glasnost zvoka" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "Umrl si" + #: src/client/gameui.cpp #, fuzzy msgid "Chat currently disabled by game or mod" @@ -2095,8 +2137,9 @@ msgid "Failed to compile the \"%s\" shader." msgstr "Prenos $1 je spodletel" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." -msgstr "" +#, fuzzy +msgid "GLSL is not supported by the driver" +msgstr "Zvočni sistem v tej izdaji Minetesta ni podprt" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" #: src/content/mod_configuration.cpp @@ -2146,7 +2189,7 @@ msgstr "Samodejno premikanje naprej" msgid "Automatic jumping" msgstr "Samodejno skakanje" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "" @@ -2158,7 +2201,7 @@ msgstr "Nazaj" msgid "Block bounds" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "Sprememba kamere" @@ -2182,7 +2225,7 @@ msgstr "Zmanjšaj glasnost" msgid "Double tap \"jump\" to toggle fly" msgstr "Dvojni klik »skoka« omogoči letenje" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "Izvrzi" @@ -2198,11 +2241,11 @@ msgstr "Povečaj doseg pogleda" msgid "Inc. volume" msgstr "Povečaj glasnonst" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "Zaloga" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "Skoči" @@ -2234,7 +2277,7 @@ msgstr "Naslednji predmet" msgid "Prev. item" msgstr "Predhodni predmet" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "Izberi obseg" @@ -2246,7 +2289,7 @@ msgstr "Desno" msgid "Screenshot" msgstr "Posnetek zaslona" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "Plaziti se" @@ -2254,15 +2297,15 @@ msgstr "Plaziti se" msgid "Toggle HUD" msgstr "Preklopi HUD" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "Preklopi beleženje pogovora" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "Preklopi hitro premikanje" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "Preklopi letenje" @@ -2270,11 +2313,11 @@ msgstr "Preklopi letenje" msgid "Toggle fog" msgstr "Preklopi meglo" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "Preklopi zemljevid (minimap)" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "Preklopi premikanje skozi kocke" @@ -2283,7 +2326,7 @@ msgstr "Preklopi premikanje skozi kocke" msgid "Toggle pitchmove" msgstr "Preklopi beleženje pogovora" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "Približanje" @@ -2320,7 +2363,7 @@ msgstr "Staro geslo" msgid "Passwords do not match!" msgstr "Gesli se ne ujemata!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "Izhod" @@ -2333,15 +2376,46 @@ msgstr "Utišano" msgid "Sound Volume: %d%%" msgstr "Glasnost zvoka: " -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Add button" +msgstr "Srednji gumb" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "Končano!" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Remove" +msgstr "Oddaljeni strežnik" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp msgid "Joystick" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Toggle debug" msgstr "Preklopi meglo" @@ -2566,8 +2640,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" #: src/settings_translation_file.cpp @@ -2626,11 +2699,6 @@ msgstr "Doseg aktivnih blokov" msgid "Active object send range" msgstr "" -#: src/settings_translation_file.cpp -#, fuzzy -msgid "Adds particles when digging a node." -msgstr "Doda partikle pri kopanju kocke." - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2654,6 +2722,16 @@ msgstr "Dodaj ime elementa" msgid "Advanced" msgstr "Naprednejše" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Allow clouds to look 3D instead of flat." +msgstr "" + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "" @@ -3067,14 +3145,14 @@ msgstr "Polmer oblaka" msgid "Clouds" msgstr "Oblaki" -#: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." -msgstr "" - #: src/settings_translation_file.cpp msgid "Clouds in menu" msgstr "Oblaki v meniju" +#: src/settings_translation_file.cpp +msgid "Color depth for post-processing texture" +msgstr "" + #: src/settings_translation_file.cpp msgid "Colored fog" msgstr "Barvna megla" @@ -3098,7 +3176,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" #: src/settings_translation_file.cpp @@ -3235,6 +3313,14 @@ msgstr "" msgid "Debugging" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "" @@ -3390,19 +3476,11 @@ msgid "" "When the 'snowbiomes' flag is enabled, this is ignored." msgstr "" -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Developer Options" msgstr "Dekoracije" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "Kopanje delcev" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "Ne dovoli praznih gesel" @@ -3430,6 +3508,14 @@ msgstr "Dvojni klik tipke »skoči« za letenje" msgid "Double-tapping the jump key toggles fly mode." msgstr "Dvoklik tipke za skok preklopi način letenja." +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "" @@ -3507,8 +3593,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" #: src/settings_translation_file.cpp @@ -3581,8 +3667,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" #: src/settings_translation_file.cpp @@ -3597,12 +3682,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "" - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -3917,10 +3996,6 @@ msgstr "" msgid "GUI scaling filter" msgstr "" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Gamepads" @@ -4152,12 +4227,6 @@ msgstr "" "Izbrana možnost omogoči delovanje \"posebne\" tipke namesto tipke \"plaziti " "se\" za spuščanja in plezanje navzdol." -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -4180,6 +4249,13 @@ msgid "" "empty password." msgstr "Če je omogočeno, se novi igralci ne morejo prijaviti s praznim geslom." +#: src/settings_translation_file.cpp +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4280,10 +4356,6 @@ msgstr "" msgid "Interval of saving important changes in the world, stated in seconds." msgstr "" -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "" - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "" @@ -4902,10 +4974,6 @@ msgstr "" msgid "Maximum users" msgstr "" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "" @@ -4938,6 +5006,10 @@ msgstr "" msgid "Minimum limit of random number of small caves per mapchunk." msgstr "" +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "" @@ -5028,7 +5100,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" @@ -5476,17 +5548,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5684,16 +5758,6 @@ msgstr "" msgid "Shader path" msgstr "" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "Senčenje" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "" @@ -5864,10 +5928,9 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" #: src/settings_translation_file.cpp @@ -6146,10 +6209,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "" -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "" @@ -6214,6 +6273,10 @@ msgstr "Valovanje tekočin" msgid "Transparency Sorting Distance" msgstr "" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "" @@ -6264,7 +6327,10 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" #: src/settings_translation_file.cpp @@ -6287,16 +6353,14 @@ msgstr "" msgid "Upper Y limit of floatlands." msgstr "" -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "" - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "" #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" #: src/settings_translation_file.cpp @@ -6542,20 +6606,12 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -6566,10 +6622,6 @@ msgid "" "Mods may still set a background." msgstr "" -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -6592,8 +6644,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -6755,6 +6806,10 @@ msgstr "" #~ "Pustite prazno za zagon lokalnega strežnika.\n" #~ "Polje za vpis naslova v glavnem meniju povozi to nastavitev." +#, fuzzy +#~ msgid "Adds particles when digging a node." +#~ msgstr "Doda partikle pri kopanju kocke." + #~ msgid "" #~ "Adjust dpi configuration to your screen (non X11/Android only) e.g. for " #~ "4k screens." @@ -6920,6 +6975,14 @@ msgstr "" #~ msgid "Darkness sharpness" #~ msgstr "Ostrina teme" +#, fuzzy +#~ msgid "Debug info and profiler graph hidden" +#~ msgstr "Podatki za razhroščevanje in graf skriti" + +#, fuzzy +#~ msgid "Debug info, profiler graph, and wireframe hidden" +#~ msgstr "Podatki za razhroščevanje, graf, in žičnati prikaz skriti" + #~ msgid "Dec. volume key" #~ msgstr "Tipka za zmanjševanje glasnosti" @@ -6944,6 +7007,9 @@ msgstr "" #~ msgid "Dig key" #~ msgstr "Tipka za met predmeta" +#~ msgid "Digging particles" +#~ msgstr "Kopanje delcev" + #~ msgid "Disable anticheat" #~ msgstr "Onemogoči preprečevanje goljufanja" @@ -6969,6 +7035,10 @@ msgstr "" #~ msgid "Dynamic shadows:" #~ msgstr "Senca pisave" +#, fuzzy +#~ msgid "Enable" +#~ msgstr "Omogočeno" + #, fuzzy #~ msgid "Enable VBO" #~ msgstr "Omogoči VBO" @@ -7036,9 +7106,6 @@ msgstr "" #~ msgid "Forward key" #~ msgstr "Tipka naprej" -#~ msgid "Game" -#~ msgstr "Igra" - #~ msgid "Generate Normal Maps" #~ msgstr "Generiranje normalnih svetov" @@ -7284,10 +7351,17 @@ msgstr "" #~ msgid "Select Package File:" #~ msgstr "Izberi datoteko paketa:" +#~ msgid "Shaders" +#~ msgstr "Senčenje" + #, fuzzy #~ msgid "Shaders (experimental)" #~ msgstr "Senčenje (ni na voljo)" +#, fuzzy +#~ msgid "Shaders are disabled." +#~ msgstr "Posodabljanje kamere je onemogočeno" + #~ msgid "Simple Leaves" #~ msgstr "Preprosti listi" @@ -7296,6 +7370,9 @@ msgstr "" #~ "Možnost omogoča glajenje pogleda kamere med obračanjem. Vrednost 0 " #~ "možnost onemogoči." +#~ msgid "Sound system is disabled" +#~ msgstr "Zvočni sistem je onemogočen" + #~ msgid "Special" #~ msgstr "Specialen" diff --git a/po/sr_Cyrl/luanti.po b/po/sr_Cyrl/luanti.po index 624427c3a..77c82f23e 100644 --- a/po/sr_Cyrl/luanti.po +++ b/po/sr_Cyrl/luanti.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Serbian (cyrillic) (Minetest)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" "PO-Revision-Date: 2022-07-12 16:18+0000\n" "Last-Translator: OrbitalPetrol \n" "Language-Team: Serbian (cyrillic) ] [-t]" msgstr "[all | <команда>]" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "Прегледај" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "Промени" + +#: builtin/common/settings/components.lua +#, fuzzy +msgid "Select directory" +msgstr "Изаберите фајл мода:" + +#: builtin/common/settings/components.lua +#, fuzzy +msgid "Select file" +msgstr "Изаберите фајл мода:" + +#: builtin/common/settings/components.lua +#, fuzzy +msgid "Set" +msgstr "Одабери" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(Није дат опис поставке)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#, fuzzy +msgid "2D Noise" +msgstr "2D бука" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "Прекини" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "Лакунарност" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "Октаве" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "Помак" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#, fuzzy +msgid "Persistence" +msgstr "Упорност" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "Сачувај" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "Скала" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "Семе" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#, fuzzy +msgid "defaults" +msgstr "Уобичајена игра" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "Чет" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "Очисти" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "Контроле" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "Онемогућено" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "Омогућено" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Movement" +msgstr "Брзо кретање" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "Нема резултата" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Reset setting to default" +msgstr "Поврати подразумевано" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "Тражи" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "Прикажи техничка имена" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Touchscreen layout" +msgstr "Граница семена за плаже" + +#: builtin/common/settings/dlg_settings.lua +msgid "pause_menu" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Client Mods" +msgstr "Одабери свет:" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Content: Games" +msgstr "Настави" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Content: Mods" +msgstr "Настави" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "" + #: builtin/fstk/ui.lua msgid "" msgstr "<ни једна није доступна>" @@ -166,7 +416,6 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "Назад" @@ -204,11 +453,6 @@ msgstr "Модови" msgid "No packages could be retrieved" msgstr "Ниједан пакет није било могуће преузети" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "Нема резултата" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "Нема ажурирања" @@ -254,18 +498,6 @@ msgstr "Већ инсталирано" msgid "Base Game:" msgstr "Основна игра:" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "Прекини" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -401,6 +633,12 @@ msgstr "Неуспела инсталација $1 у $2" msgid "Unable to install a $1 as a texture pack" msgstr "Неуспела инсталација $1 у $2" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "" @@ -465,12 +703,6 @@ msgstr "Нема необавезних зависности" msgid "Optional dependencies:" msgstr "Необавезне зависности:" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "Сачувај" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "Свет:" @@ -622,11 +854,6 @@ msgstr "Реке" msgid "Sea level rivers" msgstr "Реке на нивоу мора" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "Семе" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "Глатка транзиција између биома" @@ -768,6 +995,23 @@ msgstr "" "Ова група модова има специфично име дато у свом modpack.conf које ће " "преписати било које име дато овде." +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "Укључи све" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "" @@ -792,7 +1036,7 @@ msgstr "" msgid "Visit website" msgstr "" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "Поставке" @@ -806,236 +1050,6 @@ msgstr "" "Покушајте да поновно укључите листу сервера и проверите вашу интернет " "конекцију." -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "Прегледај" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "Промени" - -#: builtin/mainmenu/settings/components.lua -#, fuzzy -msgid "Select directory" -msgstr "Изаберите фајл мода:" - -#: builtin/mainmenu/settings/components.lua -#, fuzzy -msgid "Select file" -msgstr "Изаберите фајл мода:" - -#: builtin/mainmenu/settings/components.lua -#, fuzzy -msgid "Set" -msgstr "Одабери" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(Није дат опис поставке)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#, fuzzy -msgid "2D Noise" -msgstr "2D бука" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "Лакунарност" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "Октаве" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "Помак" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#, fuzzy -msgid "Persistence" -msgstr "Упорност" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "Скала" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#, fuzzy -msgid "defaults" -msgstr "Уобичајена игра" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "Чет" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "Очисти" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "Контроле" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "Онемогућено" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "Омогућено" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Movement" -msgstr "Брзо кретање" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Reset setting to default" -msgstr "Поврати подразумевано" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "Тражи" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "Прикажи техничка имена" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Client Mods" -msgstr "Одабери свет:" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Content: Games" -msgstr "Настави" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Content: Mods" -msgstr "Настави" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "Омогућено" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Shaders are disabled." -msgstr "Кључ за укључивање/искључивање освежавања камере" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "" @@ -1057,10 +1071,6 @@ msgstr "Главни развијачи" msgid "Core Team" msgstr "" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "" - #: builtin/mainmenu/tab_about.lua #, fuzzy msgid "Open User Data Directory" @@ -1217,11 +1227,23 @@ msgstr "Направи игру" msgid "You need to install a game before you can create a world." msgstr "" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "Обриши Омиљени" + #: builtin/mainmenu/tab_online.lua #, fuzzy msgid "Address" msgstr "- Адреса: " +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "Клијент" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "Слободни мод" @@ -1237,6 +1259,11 @@ msgstr "Штета" msgid "Favorites" msgstr "Омиљени" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "Игра" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "" @@ -1250,10 +1277,27 @@ msgstr "Направи игру" msgid "Login" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Open server website" +msgstr "Корак на посвећеном серверу" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "Одзив" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua #, fuzzy msgid "Public Servers" @@ -1344,23 +1388,6 @@ msgstr "" "\n" "Проверите debug.txt за више детаља." -#: src/client/game.cpp -msgid "- Mode: " -msgstr "- Мод: " - -#: src/client/game.cpp -msgid "- Public: " -msgstr "- Јавни: " - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "- Играч против играча: " - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "- Име сервера: " - #: src/client/game.cpp #, fuzzy msgid "A serialization error occurred:" @@ -1371,6 +1398,11 @@ msgstr "Догодила се грешка:" msgid "Access denied. Reason: %s" msgstr "" +#: src/client/game.cpp +#, fuzzy +msgid "All debug info hidden" +msgstr "Кључ за укључивање debug информација" + #: src/client/game.cpp #, fuzzy msgid "Automatic forward disabled" @@ -1393,6 +1425,10 @@ msgstr "" msgid "Block bounds shown for nearby blocks" msgstr "" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp #, fuzzy msgid "Camera update disabled" @@ -1407,10 +1443,6 @@ msgstr "Кључ за укључивање/искључивање освежав msgid "Can't show block bounds (disabled by game or mod)" msgstr "" -#: src/client/game.cpp -msgid "Change Password" -msgstr "Промени шифру" - #: src/client/game.cpp #, fuzzy msgid "Cinematic mode disabled" @@ -1442,39 +1474,6 @@ msgstr "Грешка у конекцији (истекло време?)" msgid "Connection failed for unknown reason" msgstr "" -#: src/client/game.cpp -msgid "Continue" -msgstr "Настави" - -#: src/client/game.cpp -#, fuzzy -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" -"Подразумеване контроле:\n" -"Ни један приказан мени:\n" -"- један тап: копај\n" -"- дупли тап: постави блок/користи\n" -"- превуци прстом: гледај около\n" -"Мени/Инвертар приказан:\n" -"- дупли тап (изван):\n" -" -->Искључи\n" -"- додирни ствари, додирни празно место:\n" -" --> помери ствари\n" -"- држи и превлачи, тапни другим прстом:\n" -" --> пребаци само једну ствар из групе\n" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1488,32 +1487,16 @@ msgstr "Правим клијента..." msgid "Creating server..." msgstr "Правим сервер..." -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "" - #: src/client/game.cpp #, fuzzy msgid "Debug info shown" msgstr "Кључ за укључивање debug информација" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "" - #: src/client/game.cpp #, fuzzy, c-format msgid "Error creating client: %s" msgstr "Правим клијента..." -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "Изађи у мени" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "Изађи из програма" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "" @@ -1554,18 +1537,6 @@ msgstr "укључено" msgid "Fog enabled by game or mod" msgstr "" -#: src/client/game.cpp -msgid "Game info:" -msgstr "Информације о игри:" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "Игра паузирана" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "Локални сервер" - #: src/client/game.cpp msgid "Item definitions..." msgstr "Дефиниције предмета..." @@ -1604,14 +1575,6 @@ msgstr "" msgid "Node definitions..." msgstr "Дефиниције блокова..." -#: src/client/game.cpp -msgid "Off" -msgstr "Искључено" - -#: src/client/game.cpp -msgid "On" -msgstr "Укључено" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "" @@ -1624,39 +1587,23 @@ msgstr "" msgid "Profiler graph shown" msgstr "" -#: src/client/game.cpp -msgid "Remote server" -msgstr "Удаљен сервер" - #: src/client/game.cpp msgid "Resolving address..." msgstr "Разлучујем адресу..." -#: src/client/game.cpp -msgid "Respawn" -msgstr "Врати се у живот" - #: src/client/game.cpp msgid "Shutting down..." msgstr "Искључивање..." -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "Један играч" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "Јачина звука" - #: src/client/game.cpp #, fuzzy msgid "Sound muted" msgstr "Јачина звука" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "" @@ -1729,18 +1676,116 @@ msgstr "Јачина звука промењена на %d%%" msgid "Volume changed to %d%%" msgstr "Јачина звука промењена на %d%%" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "" -#: src/client/game.cpp -msgid "You died" -msgstr "Умро си" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "- Мод: " + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "- Јавни: " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "- Играч против играча: " + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "- Име сервера: " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "Промени шифру" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "Настави" + +#: src/client/game_formspec.cpp +#, fuzzy +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" +"Подразумеване контроле:\n" +"Ни један приказан мени:\n" +"- један тап: копај\n" +"- дупли тап: постави блок/користи\n" +"- превуци прстом: гледај около\n" +"Мени/Инвертар приказан:\n" +"- дупли тап (изван):\n" +" -->Искључи\n" +"- додирни ствари, додирни празно место:\n" +" --> помери ствари\n" +"- држи и превлачи, тапни другим прстом:\n" +" --> пребаци само једну ствар из групе\n" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "Изађи у мени" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "Изађи из програма" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "Информације о игри:" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "Игра паузирана" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "Локални сервер" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "Искључено" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "Укључено" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "Удаљен сервер" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "Врати се у живот" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "Јачина звука" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "Умро си" + #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" msgstr "" @@ -2081,7 +2126,7 @@ msgid "Failed to compile the \"%s\" shader." msgstr "Неуспело преузимање $1" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." +msgid "GLSL is not supported by the driver" msgstr "" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" @@ -2133,7 +2178,7 @@ msgstr "Напред" msgid "Automatic jumping" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "" @@ -2145,7 +2190,7 @@ msgstr "Назад" msgid "Block bounds" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp #, fuzzy msgid "Change camera" msgstr "Промени дугмад" @@ -2170,7 +2215,7 @@ msgstr "Смањи звук" msgid "Double tap \"jump\" to toggle fly" msgstr "Дупли скок за летење" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "Бацање" @@ -2186,11 +2231,11 @@ msgstr "" msgid "Inc. volume" msgstr "Појачај звук" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "Инвентар" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "Скакање" @@ -2223,7 +2268,7 @@ msgstr "Следеће" msgid "Prev. item" msgstr "Претходно" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "Одабир домета" @@ -2235,7 +2280,7 @@ msgstr "Десно" msgid "Screenshot" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "Шуњање" @@ -2244,16 +2289,16 @@ msgstr "Шуњање" msgid "Toggle HUD" msgstr "Укључи/Искључи летење" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp #, fuzzy msgid "Toggle chat log" msgstr "Укључи/Искључи трчање" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "Укључи/Искључи трчање" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "Укључи/Искључи летење" @@ -2262,12 +2307,12 @@ msgstr "Укључи/Искључи летење" msgid "Toggle fog" msgstr "Укључи/Искључи летење" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp #, fuzzy msgid "Toggle minimap" msgstr "Укључи/искључи пролажење кроз препреке" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "Укључи/искључи пролажење кроз препреке" @@ -2276,7 +2321,7 @@ msgstr "Укључи/искључи пролажење кроз препреке msgid "Toggle pitchmove" msgstr "Укључи/Искључи трчање" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "Зумирај" @@ -2313,7 +2358,7 @@ msgstr "Стара шифра" msgid "Passwords do not match!" msgstr "Шифре се не поклапају!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "Изађи" @@ -2327,15 +2372,46 @@ msgstr "Изкључи звук" msgid "Sound Volume: %d%%" msgstr "Јачина звука: " -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Add button" +msgstr "Средње дугме" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "Готово!" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Remove" +msgstr "Удаљен сервер" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp msgid "Joystick" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Toggle debug" msgstr "Укључи/Искључи летење" @@ -2543,8 +2619,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" "3D подршка.\n" "Тренутно подржано:\n" @@ -2609,10 +2684,6 @@ msgstr "Даљина активног блока" msgid "Active object send range" msgstr "Даљина слања активног блока" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "Додаје честице када се блок ископа." - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2636,6 +2707,16 @@ msgstr "Име света" msgid "Advanced" msgstr "Напредно" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Allow clouds to look 3D instead of flat." +msgstr "" + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "" @@ -3042,15 +3123,14 @@ msgstr "Величина облака" msgid "Clouds" msgstr "Облаци" -#: src/settings_translation_file.cpp -#, fuzzy -msgid "Clouds are a client-side effect." -msgstr "Облаци су ефекат од стране клијента." - #: src/settings_translation_file.cpp msgid "Clouds in menu" msgstr "Облаци у менију" +#: src/settings_translation_file.cpp +msgid "Color depth for post-processing texture" +msgstr "" + #: src/settings_translation_file.cpp msgid "Colored fog" msgstr "Обојена магла" @@ -3074,7 +3154,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" #: src/settings_translation_file.cpp @@ -3223,6 +3303,14 @@ msgstr "Ниво записивања у debug" msgid "Debugging" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "Корак на посвећеном серверу" @@ -3375,20 +3463,11 @@ msgid "" "When the 'snowbiomes' flag is enabled, this is ignored." msgstr "" -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Developer Options" msgstr "Украси" -#: src/settings_translation_file.cpp -#, fuzzy -msgid "Digging particles" -msgstr "Честице" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "" @@ -3416,6 +3495,14 @@ msgstr "" msgid "Double-tapping the jump key toggles fly mode." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "" @@ -3492,8 +3579,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" #: src/settings_translation_file.cpp @@ -3566,8 +3653,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" #: src/settings_translation_file.cpp @@ -3582,12 +3668,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "" - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -3892,10 +3972,6 @@ msgstr "" msgid "GUI scaling filter" msgstr "" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Gamepads" @@ -4122,12 +4198,6 @@ msgid "" "descending." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -4146,6 +4216,13 @@ msgid "" "empty password." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4243,10 +4320,6 @@ msgstr "" msgid "Interval of saving important changes in the world, stated in seconds." msgstr "" -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "" - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "" @@ -4870,10 +4943,6 @@ msgstr "" msgid "Maximum users" msgstr "" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "" @@ -4906,6 +4975,10 @@ msgstr "" msgid "Minimum limit of random number of small caves per mapchunk." msgstr "" +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "" @@ -4996,7 +5069,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" @@ -5443,17 +5516,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5672,16 +5747,6 @@ msgstr "" msgid "Shader path" msgstr "Шејдери" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "Шејдери" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "" @@ -5847,10 +5912,9 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" #: src/settings_translation_file.cpp @@ -6129,10 +6193,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "" -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "" @@ -6196,6 +6256,10 @@ msgstr "Лепршајуће лишће" msgid "Transparency Sorting Distance" msgstr "" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "" @@ -6246,7 +6310,10 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" #: src/settings_translation_file.cpp @@ -6270,16 +6337,14 @@ msgstr "" msgid "Upper Y limit of floatlands." msgstr "Абсолутни лимит emerge токова." -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "" - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "" #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" #: src/settings_translation_file.cpp @@ -6521,20 +6586,12 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -6545,10 +6602,6 @@ msgid "" "Mods may still set a background." msgstr "" -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -6571,8 +6624,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -6735,6 +6787,9 @@ msgstr "" #~ "Оставите ово празно за локални сервер.\n" #~ "Пазите да поље за адресу у менију преписује ово подешавање." +#~ msgid "Adds particles when digging a node." +#~ msgstr "Додаје честице када се блок ископа." + #~ msgid "" #~ "Adjust dpi configuration to your screen (non X11/Android only) e.g. for " #~ "4k screens." @@ -6822,6 +6877,10 @@ msgstr "" #~ msgid "Clean transparent textures" #~ msgstr "Очисти провидне трекстуре" +#, fuzzy +#~ msgid "Clouds are a client-side effect." +#~ msgstr "Облаци су ефекат од стране клијента." + #~ msgid "Command key" #~ msgstr "Кључ за команду" @@ -6914,6 +6973,10 @@ msgstr "" #~ "Уобичајена игра при стварању новог света.\n" #~ "Ово се може премостити при стварању новог света из главног менија." +#, fuzzy +#~ msgid "Digging particles" +#~ msgstr "Честице" + #~ msgid "Download a game, such as Minetest Game, from minetest.net" #~ msgstr "Преузми подигру, као што је minetest_game, са minetest.net" @@ -6924,6 +6987,10 @@ msgstr "" #~ msgid "Downloading and installing $1, please wait..." #~ msgstr "Преузима се $1, молим вас сачекајте..." +#, fuzzy +#~ msgid "Enable" +#~ msgstr "Омогућено" + #~ msgid "Enter " #~ msgstr "Уреду " @@ -6941,9 +7008,6 @@ msgstr "" #~ msgid "Flying" #~ msgstr "Летење" -#~ msgid "Game" -#~ msgstr "Игра" - #, fuzzy #~ msgid "Hide: Temporary Settings" #~ msgstr "Поставке" @@ -7052,6 +7116,13 @@ msgstr "" #~ msgid "Select Package File:" #~ msgstr "Изаберите фајл мода:" +#~ msgid "Shaders" +#~ msgstr "Шејдери" + +#, fuzzy +#~ msgid "Shaders are disabled." +#~ msgstr "Кључ за укључивање/искључивање освежавања камере" + #~ msgid "Simple Leaves" #~ msgstr "Једноставно лишће" diff --git a/po/sr_Latn/luanti.po b/po/sr_Latn/luanti.po index 0764450b9..6a68a201a 100644 --- a/po/sr_Latn/luanti.po +++ b/po/sr_Latn/luanti.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: minetest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" "PO-Revision-Date: 2023-05-06 20:50+0000\n" "Last-Translator: Sava Kujundžić \n" "Language-Team: Serbian (latin) ] [-t]" msgstr "[all | ]" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Set" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "Ponisti" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "Sacuvaj" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Enabled" +msgstr "Omoguceno" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "Bez rezultata" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "Trazi" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Touchscreen layout" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "pause_menu" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Client Mods" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "" + #: builtin/fstk/ui.lua msgid "" msgstr "" @@ -165,7 +404,6 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "" @@ -202,11 +440,6 @@ msgstr "Modovi" msgid "No packages could be retrieved" msgstr "Nema paketa za preuzeti" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "Bez rezultata" - #: builtin/mainmenu/content/dlg_contentdb.lua #, fuzzy msgid "No updates" @@ -253,18 +486,6 @@ msgstr "" msgid "Base Game:" msgstr "" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "Ponisti" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -391,6 +612,12 @@ msgstr "" msgid "Unable to install a $1 as a texture pack" msgstr "" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "(Uključeno,ima grešaka)" @@ -455,12 +682,6 @@ msgstr "Bez neobaveznih zavisnosti" msgid "Optional dependencies:" msgstr "Neobavezne zavisnosti:" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "Sacuvaj" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "Svet:" @@ -611,11 +832,6 @@ msgstr "Reke" msgid "Sea level rivers" msgstr "Reke na nivou mora" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "Glatki prelaz izmedju bioma" @@ -753,6 +969,23 @@ msgid "" "override any renaming here." msgstr "" +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "Omoguci sve" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "" @@ -777,7 +1010,7 @@ msgstr "" msgid "Visit website" msgstr "" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "" @@ -791,225 +1024,6 @@ msgstr "" "Pokusajte ponovo omoguciti javnu listu servera i proverite vasu internet " "vezu." -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Set" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Enabled" -msgstr "Omoguceno" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "Trazi" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "Omoguceno" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "Shaders are disabled." -msgstr "" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "" @@ -1030,10 +1044,6 @@ msgstr "" msgid "Core Team" msgstr "" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "" @@ -1180,10 +1190,20 @@ msgstr "" msgid "You need to install a game before you can create a world." msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "Add favorite" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Clients:\n" +"$1" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "" @@ -1197,6 +1217,11 @@ msgstr "" msgid "Favorites" msgstr "" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "Igre" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "" @@ -1209,10 +1234,26 @@ msgstr "" msgid "Login" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +msgid "Open server website" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua #, fuzzy msgid "Public Servers" @@ -1296,23 +1337,6 @@ msgid "" "Check debug.txt for details." msgstr "" -#: src/client/game.cpp -msgid "- Mode: " -msgstr "" - -#: src/client/game.cpp -msgid "- Public: " -msgstr "" - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "" - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "" - #: src/client/game.cpp #, fuzzy msgid "A serialization error occurred:" @@ -1323,6 +1347,10 @@ msgstr "Doslo je do greske:" msgid "Access denied. Reason: %s" msgstr "" +#: src/client/game.cpp +msgid "All debug info hidden" +msgstr "" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "" @@ -1343,6 +1371,10 @@ msgstr "" msgid "Block bounds shown for nearby blocks" msgstr "" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "" @@ -1355,10 +1387,6 @@ msgstr "" msgid "Can't show block bounds (disabled by game or mod)" msgstr "" -#: src/client/game.cpp -msgid "Change Password" -msgstr "" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "" @@ -1387,26 +1415,6 @@ msgstr "" msgid "Connection failed for unknown reason" msgstr "" -#: src/client/game.cpp -msgid "Continue" -msgstr "" - -#: src/client/game.cpp -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1420,31 +1428,15 @@ msgstr "" msgid "Creating server..." msgstr "" -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "" - #: src/client/game.cpp msgid "Debug info shown" msgstr "" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "" - #: src/client/game.cpp #, c-format msgid "Error creating client: %s" msgstr "" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "" @@ -1481,18 +1473,6 @@ msgstr "" msgid "Fog enabled by game or mod" msgstr "" -#: src/client/game.cpp -msgid "Game info:" -msgstr "" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "" - #: src/client/game.cpp msgid "Item definitions..." msgstr "" @@ -1529,14 +1509,6 @@ msgstr "" msgid "Node definitions..." msgstr "" -#: src/client/game.cpp -msgid "Off" -msgstr "" - -#: src/client/game.cpp -msgid "On" -msgstr "" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "" @@ -1549,38 +1521,22 @@ msgstr "" msgid "Profiler graph shown" msgstr "" -#: src/client/game.cpp -msgid "Remote server" -msgstr "" - #: src/client/game.cpp msgid "Resolving address..." msgstr "" -#: src/client/game.cpp -msgid "Respawn" -msgstr "Vrati se u zivot" - #: src/client/game.cpp msgid "Shutting down..." msgstr "" -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "" - #: src/client/game.cpp msgid "Sound muted" msgstr "" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "" @@ -1652,18 +1608,103 @@ msgstr "" msgid "Volume changed to %d%%" msgstr "" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "" -#: src/client/game.cpp -msgid "You died" -msgstr "Umro/la si." - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "" + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "Vrati se u zivot" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "Umro/la si." + #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" msgstr "" @@ -1990,7 +2031,7 @@ msgid "Failed to compile the \"%s\" shader." msgstr "Neuspelo preuzimanje $1" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." +msgid "GLSL is not supported by the driver" msgstr "" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" @@ -2040,7 +2081,7 @@ msgstr "" msgid "Automatic jumping" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "" @@ -2052,7 +2093,7 @@ msgstr "" msgid "Block bounds" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "" @@ -2076,7 +2117,7 @@ msgstr "" msgid "Double tap \"jump\" to toggle fly" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "" @@ -2092,11 +2133,11 @@ msgstr "" msgid "Inc. volume" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "" @@ -2128,7 +2169,7 @@ msgstr "" msgid "Prev. item" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "" @@ -2140,7 +2181,7 @@ msgstr "" msgid "Screenshot" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "" @@ -2148,15 +2189,15 @@ msgstr "" msgid "Toggle HUD" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "" @@ -2164,11 +2205,11 @@ msgstr "" msgid "Toggle fog" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "" @@ -2176,7 +2217,7 @@ msgstr "" msgid "Toggle pitchmove" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "" @@ -2213,7 +2254,7 @@ msgstr "" msgid "Passwords do not match!" msgstr "" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "" @@ -2226,15 +2267,43 @@ msgstr "" msgid "Sound Volume: %d%%" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +msgid "Add button" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Done" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Remove" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp msgid "Joystick" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Toggle debug" msgstr "" @@ -2430,8 +2499,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" #: src/settings_translation_file.cpp @@ -2484,10 +2552,6 @@ msgstr "" msgid "Active object send range" msgstr "" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "" - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2510,6 +2574,16 @@ msgstr "" msgid "Advanced" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Allow clouds to look 3D instead of flat." +msgstr "" + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "" @@ -2878,11 +2952,11 @@ msgid "Clouds" msgstr "" #: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." +msgid "Clouds in menu" msgstr "" #: src/settings_translation_file.cpp -msgid "Clouds in menu" +msgid "Color depth for post-processing texture" msgstr "" #: src/settings_translation_file.cpp @@ -2907,7 +2981,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" #: src/settings_translation_file.cpp @@ -3042,6 +3116,14 @@ msgstr "" msgid "Debugging" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "" @@ -3193,19 +3275,11 @@ msgid "" "When the 'snowbiomes' flag is enabled, this is ignored." msgstr "" -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Developer Options" msgstr "Dekoracije" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "" @@ -3233,6 +3307,14 @@ msgstr "" msgid "Double-tapping the jump key toggles fly mode." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "" @@ -3308,8 +3390,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" #: src/settings_translation_file.cpp @@ -3382,8 +3464,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" #: src/settings_translation_file.cpp @@ -3398,12 +3479,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "" - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -3705,10 +3780,6 @@ msgstr "" msgid "GUI scaling filter" msgstr "" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Gamepads" @@ -3933,12 +4004,6 @@ msgid "" "descending." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -3957,6 +4022,13 @@ msgid "" "empty password." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4051,10 +4123,6 @@ msgstr "" msgid "Interval of saving important changes in the world, stated in seconds." msgstr "" -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "" - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "" @@ -4670,10 +4738,6 @@ msgstr "" msgid "Maximum users" msgstr "" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "" @@ -4706,6 +4770,10 @@ msgstr "" msgid "Minimum limit of random number of small caves per mapchunk." msgstr "" +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "" @@ -4795,7 +4863,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" @@ -5235,17 +5303,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5439,16 +5509,6 @@ msgstr "" msgid "Shader path" msgstr "" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "" @@ -5609,10 +5669,9 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" #: src/settings_translation_file.cpp @@ -5891,10 +5950,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "" -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "" @@ -5953,6 +6008,10 @@ msgstr "" msgid "Transparency Sorting Distance" msgstr "" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "" @@ -6003,7 +6062,10 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" #: src/settings_translation_file.cpp @@ -6026,16 +6088,14 @@ msgstr "" msgid "Upper Y limit of floatlands." msgstr "" -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "" - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "" #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" #: src/settings_translation_file.cpp @@ -6272,20 +6332,12 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -6296,10 +6348,6 @@ msgid "" "Mods may still set a background." msgstr "" -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -6322,8 +6370,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -6447,6 +6494,10 @@ msgstr "" #~ msgid "Download one from minetest.net" #~ msgstr "Preuzmi jednu sa minetest.net" +#, fuzzy +#~ msgid "Enable" +#~ msgstr "Omoguceno" + #, fuzzy #~ msgid "Shaders (experimental)" #~ msgstr "Lebdece zemlje (eksperimentalno)" diff --git a/po/sv/luanti.po b/po/sv/luanti.po index ed90c814d..46dda07ad 100644 --- a/po/sv/luanti.po +++ b/po/sv/luanti.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: Swedish (Minetest)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" -"PO-Revision-Date: 2024-06-08 08:09+0000\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" +"PO-Revision-Date: 2024-11-20 03:05+0000\n" "Last-Translator: ROllerozxa \n" "Language-Team: Swedish \n" @@ -12,7 +12,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.6-dev\n" +"X-Generator: Weblate 5.9-dev\n" #: builtin/client/chatcommands.lua msgid "Clear the out chat queue" @@ -63,9 +63,8 @@ msgid "Command not available: " msgstr "Kommando inte tillgängligt: " #: builtin/common/chatcommands.lua -#, fuzzy msgid "Get help for commands (-t: output in chat)" -msgstr "Få hjälp med kommandon" +msgstr "Få hjälp med kommandon (-t: Skriv ut till chatten)" #: builtin/common/chatcommands.lua msgid "" @@ -75,9 +74,247 @@ msgstr "" "visa allt." #: builtin/common/chatcommands.lua -#, fuzzy msgid "[all | ] [-t]" -msgstr "[all | ]" +msgstr "[all | ] [-t]" + +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "Bläddra" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "Redigera" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "Välj katalog" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "Välj fil" + +#: builtin/common/settings/components.lua +msgid "Set" +msgstr "Sätt" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(Ingen beskrivning av inställning angiven)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "2D-Brus" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "Avbryt" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "Lacunaritet" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "Oktaver" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "Förskjutning" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "Persistens" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "Spara" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "Skala" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "Frö" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "X-spridning" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "Y-spridning" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "Z-spridning" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "absolutvärde" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "standarder" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "lättad" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "(Spelet behöver även aktivera automatisk exponering för att visas)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "(Spelet behöver även aktivera bloom för att visas)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "(Spelet behöver även aktivera volumetriskt ljus för att visas)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "(Använd systemspråk)" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "Tillgänglighet" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "Automatisk" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "Chatta" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "Rensa" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "Kontrollerar" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "Inaktiverad" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "Aktiverad" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "Generellt" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "Rörelse" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "Inga resultat" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default" +msgstr "Återställ inställning till ursprungsvärden" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "Återställ inställning till standardvärde ($1)" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "Sök" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "Visa avancerade inställningar" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "Visa tekniska namn" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Touchscreen layout" +msgstr "Pekskärm" + +#: builtin/common/settings/dlg_settings.lua +msgid "pause_menu" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Client Mods" +msgstr "Klientmoddar" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "Innehåll: Spel" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "Innehåll: Moddar" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "(Spelet behöver även aktivera skuggor för att visas)" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "Anpassad" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "Dynamiska skuggor" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "Hög" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "Låg" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "Medium" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "Extremt hög" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "Väldigt Låg" #: builtin/fstk/ui.lua msgid "" @@ -140,13 +377,12 @@ msgid "Failed to download $1" msgstr "Misslyckades ladda ner $1" #: builtin/mainmenu/content/contentdb.lua -#, fuzzy msgid "" "Failed to extract \"$1\" (insufficient disk space, unsupported file type or " "broken archive)" msgstr "" -"Misslyckades med att extrahera \"$1\" (filtyp som inte stöds eller trasigt " -"arkiv)" +"Misslyckades med att extrahera \"$1\" (inte tillräckligt med diskutrymme, " +"filtyp som inte stöds eller trasigt arkiv)" #: builtin/mainmenu/content/dlg_contentdb.lua msgid "" @@ -162,18 +398,16 @@ msgstr "$1 laddas ner..." #: builtin/mainmenu/content/dlg_contentdb.lua msgid "All" -msgstr "" +msgstr "Alla" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "Tillbaka" #: builtin/mainmenu/content/dlg_contentdb.lua -#, fuzzy msgid "ContentDB is not available when Luanti was compiled without cURL" -msgstr "ContentDB är inte tillgänglig när Minetest är kompilerad utan cURL" +msgstr "ContentDB är inte tillgänglig när Luanti är kompilerad utan cURL" #: builtin/mainmenu/content/dlg_contentdb.lua msgid "Downloading..." @@ -181,7 +415,7 @@ msgstr "Laddar ner..." #: builtin/mainmenu/content/dlg_contentdb.lua msgid "Featured" -msgstr "" +msgstr "Presenterad" #: builtin/mainmenu/content/dlg_contentdb.lua msgid "Games" @@ -203,11 +437,6 @@ msgstr "Moddar" msgid "No packages could be retrieved" msgstr "Inga paket kunde hämtas" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "Inga resultat" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "Inga uppdateringar" @@ -217,14 +446,12 @@ msgid "Queued" msgstr "Köad" #: builtin/mainmenu/content/dlg_contentdb.lua -#, fuzzy msgid "Texture Packs" msgstr "Texturpaket" #: builtin/mainmenu/content/dlg_contentdb.lua -#, fuzzy msgid "The package $1 was not found." -msgstr "Paketet $1/$2 kunde inte hittas." +msgstr "Paketet $1 kunde inte hittas." #: builtin/mainmenu/content/dlg_contentdb.lua msgid "Update All [$1]" @@ -254,18 +481,6 @@ msgstr "Redan installerad" msgid "Base Game:" msgstr "Basspel:" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "Avbryt" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -273,7 +488,7 @@ msgstr "Beroenden:" #: builtin/mainmenu/content/dlg_install.lua msgid "Error getting dependencies for package $1" -msgstr "" +msgstr "Fel inträffade när beroenden för paketet $1 skulle hittas" #: builtin/mainmenu/content/dlg_install.lua msgid "Install" @@ -308,44 +523,40 @@ msgid "Overwrite" msgstr "Skriv över" #: builtin/mainmenu/content/dlg_package.lua -#, fuzzy msgid "ContentDB page" -msgstr "ContentDB URL" +msgstr "ContentDB-sida" #: builtin/mainmenu/content/dlg_package.lua -#, fuzzy msgid "Description" -msgstr "Serverbeskrivning" +msgstr "Beskrivning" #: builtin/mainmenu/content/dlg_package.lua msgid "Donate" -msgstr "" +msgstr "Donera" #: builtin/mainmenu/content/dlg_package.lua msgid "Forum Topic" -msgstr "" +msgstr "Forumtråd" #: builtin/mainmenu/content/dlg_package.lua -#, fuzzy msgid "Information" -msgstr "Information:" +msgstr "Information" #: builtin/mainmenu/content/dlg_package.lua -#, fuzzy msgid "Install [$1]" -msgstr "Installera $1" +msgstr "Installera [$1]" #: builtin/mainmenu/content/dlg_package.lua msgid "Issue Tracker" -msgstr "" +msgstr "Feltracker" #: builtin/mainmenu/content/dlg_package.lua msgid "Source" -msgstr "" +msgstr "Källkod" #: builtin/mainmenu/content/dlg_package.lua msgid "Translate" -msgstr "" +msgstr "Översätt" #: builtin/mainmenu/content/dlg_package.lua builtin/mainmenu/tab_content.lua msgid "Uninstall" @@ -356,13 +567,12 @@ msgid "Update" msgstr "Uppdatera" #: builtin/mainmenu/content/dlg_package.lua -#, fuzzy msgid "Website" -msgstr "Besök hemsida" +msgstr "Hemsida" #: builtin/mainmenu/content/dlg_package.lua msgid "by $1 — $2 downloads — +$3 / $4 / -$5" -msgstr "" +msgstr "av $1 — $2 nerladdningar — +$3 / $4 / -$5" #: builtin/mainmenu/content/pkgmgr.lua msgid "$1 (Enabled)" @@ -392,6 +602,12 @@ msgstr "Kunde inte installera en $1 som en $2" msgid "Unable to install a $1 as a texture pack" msgstr "Misslyckades att installera $1 som ett texturpaket" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "(Aktiverad, har fel)" @@ -456,12 +672,6 @@ msgstr "Inga valfria beroenden" msgid "Optional dependencies:" msgstr "Valfria beroenden:" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "Spara" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "Värld:" @@ -512,7 +722,7 @@ msgstr "Dekorationer" #: builtin/mainmenu/dlg_create_world.lua msgid "Desert temples" -msgstr "" +msgstr "Ökentempel" #: builtin/mainmenu/dlg_create_world.lua msgid "Development Test is meant for developers." @@ -523,6 +733,8 @@ msgid "" "Different dungeon variant generated in desert biomes (only if dungeons " "enabled)" msgstr "" +"Olika fängelsehålevarianter som genereras i ökenbiomer (endast om " +"fängelsehålor aktiveras)" #: builtin/mainmenu/dlg_create_world.lua msgid "Dungeons" @@ -612,11 +824,6 @@ msgstr "Floder" msgid "Sea level rivers" msgstr "Havsnivåfloder" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "Frö" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "Smidig övergång mellan biotoper" @@ -721,14 +928,12 @@ msgid "Dismiss" msgstr "Nej tack" #: builtin/mainmenu/dlg_reinstall_mtg.lua -#, fuzzy msgid "" "For a long time, Luanti shipped with a default game called \"Minetest " "Game\". Since version 5.8.0, Luanti ships without a default game." msgstr "" -"Under en lång period kom Minetest med det förinstallerat spelet \"Minetest " -"Game\". Sedan Minetest 5.8.0 kommer Minetest utan ett standardspel " -"inkluderat." +"Under en lång period kom Luanti med det förinstallerat spelet \"Minetest " +"Game\". Sedan 5.8.0 kommer Luanti utan ett standardspel inkluderat." #: builtin/mainmenu/dlg_reinstall_mtg.lua msgid "" @@ -762,6 +967,23 @@ msgstr "" "Detta moddpaket har ett uttryckligt namn angett i modpack.conf vilket går " "före namnändring här." +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "Aktivera allt" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "En ny $1version är tillgänglig" @@ -790,7 +1012,7 @@ msgstr "Aldrig" msgid "Visit website" msgstr "Besök hemsida" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "Inställningar" @@ -803,229 +1025,6 @@ msgid "Try reenabling public serverlist and check your internet connection." msgstr "" "Försök återaktivera allmän serverlista och kolla din internetanslutning." -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "Bläddra" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "Redigera" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "Välj katalog" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "Välj fil" - -#: builtin/mainmenu/settings/components.lua -msgid "Set" -msgstr "Sätt" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(Ingen beskrivning av inställning angiven)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "2D-Brus" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "Lacunaritet" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "Oktaver" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "Förskjutning" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "Persistens" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "Skala" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "X-spridning" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "Y-spridning" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "Z-spridning" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "absolutvärde" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "standarder" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "lättad" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable automatic exposure as well)" -msgstr "(Spelet behöver även aktivera skuggor för att visas)" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable bloom as well)" -msgstr "(Spelet behöver även aktivera skuggor för att visas)" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "(Spelet behöver även aktivera skuggor för att visas)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "(Använd systemspråk)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "Chatta" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "Rensa" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "Kontrollerar" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "Inaktiverad" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "Aktiverad" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "Generellt" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Movement" -msgstr "Snabb rörelse" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default" -msgstr "Återställ inställning till ursprungsvärden" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "Återställ inställning till standardvärde ($1)" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "Sök" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "Visa avancerade inställningar" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "Visa tekniska namn" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "Klientmoddar" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "Innehåll: Spel" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "Innehåll: Moddar" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "Aktiverad" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Shaders are disabled." -msgstr "Kamerauppdatering inaktiverad" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "(Spelet behöver även aktivera skuggor för att visas)" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "Anpassad" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "Dynamiska skuggor" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "Hög" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "Låg" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "Medium" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "Extremt hög" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "Väldigt Låg" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "Om" @@ -1046,10 +1045,6 @@ msgstr "Huvudutvecklare" msgid "Core Team" msgstr "Huvudlaget" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "Irrlicht-device:" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "Öppna Användardatamappen" @@ -1079,18 +1074,16 @@ msgid "Browse online content" msgstr "Bläddra bland onlineinnehåll" #: builtin/mainmenu/tab_content.lua -#, fuzzy msgid "Browse online content [$1]" -msgstr "Bläddra bland onlineinnehåll" +msgstr "Bläddra bland onlineinnehåll [$1]" #: builtin/mainmenu/tab_content.lua msgid "Content" msgstr "Innehåll" #: builtin/mainmenu/tab_content.lua -#, fuzzy msgid "Content [$1]" -msgstr "Innehåll" +msgstr "Innehåll [$1]" #: builtin/mainmenu/tab_content.lua msgid "Disable Texture Pack" @@ -1113,9 +1106,8 @@ msgid "Rename" msgstr "Byt namn" #: builtin/mainmenu/tab_content.lua -#, fuzzy msgid "Update available?" -msgstr "" +msgstr "Uppdatering tillgänglig?" #: builtin/mainmenu/tab_content.lua msgid "Use Texture Pack" @@ -1154,15 +1146,14 @@ msgid "Install games from ContentDB" msgstr "Installera spel från ContentDB" #: builtin/mainmenu/tab_local.lua -#, fuzzy msgid "Luanti doesn't come with a game by default." -msgstr "Minetest Game är inte längre installerat som standard" +msgstr "Luanti kommer inte med ett spel längre." #: builtin/mainmenu/tab_local.lua msgid "" "Luanti is a game-creation platform that allows you to play many different " "games." -msgstr "" +msgstr "Luanti är en spelplatform som låter dig spela många olika spel." #: builtin/mainmenu/tab_local.lua msgid "New" @@ -1197,14 +1188,25 @@ msgid "Start Game" msgstr "Starta spel" #: builtin/mainmenu/tab_local.lua -#, fuzzy msgid "You need to install a game before you can create a world." -msgstr "Du behöver installera ett spel innan du kan installera en modd" +msgstr "Du behöver installera ett spel innan du kan skapa en värld." + +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "Radera favorit" #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "Adress" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "Klient" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "Kreativt läge" @@ -1218,6 +1220,11 @@ msgstr "Skada / PvP" msgid "Favorites" msgstr "Favoriter" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "Spel" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "Inkompatibla servrar" @@ -1230,10 +1237,27 @@ msgstr "Anslut till spel" msgid "Login" msgstr "Logga in" +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Open server website" +msgstr "Steg för dedikerad server" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "Ping" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Public Servers" msgstr "Offentliga servrar" @@ -1318,23 +1342,6 @@ msgstr "" "\n" "Se debug.txt för detaljer." -#: src/client/game.cpp -msgid "- Mode: " -msgstr "- Läge: " - -#: src/client/game.cpp -msgid "- Public: " -msgstr "Offentlig " - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "- PvP: " - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "- Servernamn: " - #: src/client/game.cpp msgid "A serialization error occurred:" msgstr "Ett serialiseringsfel uppstod:" @@ -1344,6 +1351,11 @@ msgstr "Ett serialiseringsfel uppstod:" msgid "Access denied. Reason: %s" msgstr "Åtkomst nekad. Anledning: %s" +#: src/client/game.cpp +#, fuzzy +msgid "All debug info hidden" +msgstr "Felsökningsinfo visas" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "Automatiskt framåt inaktiverad" @@ -1364,6 +1376,10 @@ msgstr "Blockgränser visas för det aktuella blocket" msgid "Block bounds shown for nearby blocks" msgstr "Blockgränser visas för närliggande block" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "Kamerauppdatering inaktiverad" @@ -1376,10 +1392,6 @@ msgstr "Kamerauppdatering aktiverat" msgid "Can't show block bounds (disabled by game or mod)" msgstr "Kan inte visa blockgränser (avaktiverad av spel eller modd)" -#: src/client/game.cpp -msgid "Change Password" -msgstr "Ändra lösenord" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "Filmiskt länge inaktiverad" @@ -1408,39 +1420,6 @@ msgstr "Anslutningsfel (tidsgräns nådd?)" msgid "Connection failed for unknown reason" msgstr "Anslutningen misslyckades av okänd anledning" -#: src/client/game.cpp -msgid "Continue" -msgstr "Fortsätt" - -#: src/client/game.cpp -#, fuzzy -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" -"Standardkontroller:\n" -"Ingen meny syns:\n" -"- dra finger: titta omkring\n" -"- tryck en gång: placera/använd\n" -"- tryck två gånger: gräv/slå/använd\n" -"Meny/Förråd syns:\n" -"- tryck två gånger (utanför):\n" -" -->stäng\n" -"- rör stapel, rör låda:\n" -" --> flytta stapel\n" -"- tryck&dra, tryck med andra fingret\n" -" --> placera ett föremål i låda\n" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1454,31 +1433,15 @@ msgstr "Skapar klient..." msgid "Creating server..." msgstr "Skapar server..." -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "Felsökningsinfo och profileringsgraf gömd" - #: src/client/game.cpp msgid "Debug info shown" msgstr "Felsökningsinfo visas" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "Felsökningsinfo, profileringsgraf och wireframe gömd" - #: src/client/game.cpp #, c-format msgid "Error creating client: %s" msgstr "Fel vid skapande av klient: %s" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "Avsluta till Meny" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "Avsluta till OS" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "Snabbt läge inaktiverat" @@ -1512,21 +1475,8 @@ msgid "Fog enabled" msgstr "Dimma aktiverat" #: src/client/game.cpp -#, fuzzy msgid "Fog enabled by game or mod" -msgstr "Zoom är för närvarande inaktiverad av spel eller modd" - -#: src/client/game.cpp -msgid "Game info:" -msgstr "Spelinformation:" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "Spel pausat" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "Arrangerar server" +msgstr "Dimma aktiverat av spel eller modd" #: src/client/game.cpp msgid "Item definitions..." @@ -1564,14 +1514,6 @@ msgstr "Noclipläge aktiverat (notera: inget 'noclip'-tillstånd)" msgid "Node definitions..." msgstr "Noddefinitioner..." -#: src/client/game.cpp -msgid "Off" -msgstr "Av" - -#: src/client/game.cpp -msgid "On" -msgstr "På" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "Höjdförändringsläge avaktiverad" @@ -1584,38 +1526,22 @@ msgstr "Höjdförändringsläge aktiverad" msgid "Profiler graph shown" msgstr "Profileringsgraf visas" -#: src/client/game.cpp -msgid "Remote server" -msgstr "Avlägsen server" - #: src/client/game.cpp msgid "Resolving address..." msgstr "Kollar upp address...." -#: src/client/game.cpp -msgid "Respawn" -msgstr "Återuppstå" - #: src/client/game.cpp msgid "Shutting down..." msgstr "Stänger av..." -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "Enspelarläge" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "Ljudvolym" - #: src/client/game.cpp msgid "Sound muted" msgstr "Ljudvolym avstängd" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "Ljudsystem är inaktiverad" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "Ljudsystem stöds inte i detta bygge" @@ -1693,18 +1619,116 @@ msgstr "" msgid "Volume changed to %d%%" msgstr "Volym ändrad till to %d%%" +#: src/client/game.cpp +#, fuzzy +msgid "Wireframe not supported by video driver" +msgstr "Shaders är aktiverat men GLSL stöds inte av drivrutinen." + #: src/client/game.cpp msgid "Wireframe shown" msgstr "Wireframe visas" -#: src/client/game.cpp -msgid "You died" -msgstr "Du dog" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "Zoom är för närvarande inaktiverad av spel eller modd" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "- Läge: " + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "Offentlig " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "- PvP: " + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "- Servernamn: " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "Ändra lösenord" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "Fortsätt" + +#: src/client/game_formspec.cpp +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" +"Kontroller:\n" +"Ingen meny öppen:\n" +"- dra finger: Titta runt\n" +"- tryck en gång: placera/slå/använd (standard)\n" +"- håll inne: gräv/använd (standard)\n" +"Meny/förråd öppen:\n" +"- Dubbelknapp (utanför):\n" +" --> stäng\n" +"- rör stapel, rör låda:\n" +" --> flytta stapel\n" +"- tryck&dra, tryck med andra fingret\n" +" --> placera ett föremål i låda\n" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "Avsluta till Meny" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "Avsluta till OS" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "Spelinformation:" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "Spel pausat" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "Arrangerar server" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "Av" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "På" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "Avlägsen server" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "Återuppstå" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "Ljudvolym" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "Du dog" + #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" msgstr "Chatt är för närvarande inaktiverad av spel eller modd" @@ -1752,23 +1776,20 @@ msgid "Caps Lock" msgstr "Caps Lock" #: src/client/keycode.cpp -#, fuzzy msgid "Clear Key" -msgstr "Rensa" +msgstr "Rensa tagent" #: src/client/keycode.cpp -#, fuzzy msgid "Control Key" -msgstr "Kontroll" +msgstr "Kontrollknapp" #: src/client/keycode.cpp -#, fuzzy msgid "Delete Key" -msgstr "Ta bort" +msgstr "Ta bort knapp" #: src/client/keycode.cpp msgid "Down Arrow" -msgstr "" +msgstr "Nedåt pil" #: src/client/keycode.cpp msgid "End" @@ -1815,9 +1836,8 @@ msgid "Insert" msgstr "Insert" #: src/client/keycode.cpp -#, fuzzy msgid "Left Arrow" -msgstr "Vänster Control" +msgstr "Vänster pil" #: src/client/keycode.cpp msgid "Left Button" @@ -1841,9 +1861,8 @@ msgstr "Vänster Windowstangent" #. ~ Key name, common on Windows keyboards #: src/client/keycode.cpp -#, fuzzy msgid "Menu Key" -msgstr "Meny" +msgstr "Menyknapp" #: src/client/keycode.cpp msgid "Middle Button" @@ -1918,20 +1937,17 @@ msgid "OEM Clear" msgstr "Rensa OEM" #: src/client/keycode.cpp -#, fuzzy msgid "Page Down" -msgstr "Sida ner" +msgstr "Page Down" #: src/client/keycode.cpp -#, fuzzy msgid "Page Up" -msgstr "Sida upp" +msgstr "Page Up" #. ~ Usually paired with the Break key #: src/client/keycode.cpp -#, fuzzy msgid "Pause Key" -msgstr "Paus" +msgstr "Paustagent" #: src/client/keycode.cpp msgid "Play" @@ -1943,14 +1959,12 @@ msgid "Print" msgstr "Skriv ut" #: src/client/keycode.cpp -#, fuzzy msgid "Return Key" -msgstr "Retur" +msgstr "Returtagent" #: src/client/keycode.cpp -#, fuzzy msgid "Right Arrow" -msgstr "Höger Control" +msgstr "Höger pil" #: src/client/keycode.cpp msgid "Right Button" @@ -1982,9 +1996,8 @@ msgid "Select" msgstr "Välj" #: src/client/keycode.cpp -#, fuzzy msgid "Shift Key" -msgstr "Shift" +msgstr "Skifttagent" #: src/client/keycode.cpp msgid "Sleep" @@ -2004,7 +2017,7 @@ msgstr "Tab" #: src/client/keycode.cpp msgid "Up Arrow" -msgstr "" +msgstr "Uppåt pil" #: src/client/keycode.cpp msgid "X Button 1" @@ -2015,9 +2028,8 @@ msgid "X Button 2" msgstr "X Knapp 2" #: src/client/keycode.cpp -#, fuzzy msgid "Zoom Key" -msgstr "Zoom" +msgstr "Zoomknapp" #: src/client/minimap.cpp msgid "Minimap hidden" @@ -2038,13 +2050,14 @@ msgid "Minimap in texture mode" msgstr "Minimapp i texturläge" #: src/client/shader.cpp -#, fuzzy, c-format +#, c-format msgid "Failed to compile the \"%s\" shader." -msgstr "Misslyckades att öppna hemsida" +msgstr "Misslyckades att kompilera \"%s\"-shadern." #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." -msgstr "" +#, fuzzy +msgid "GLSL is not supported by the driver" +msgstr "Shaders är aktiverat men GLSL stöds inte av drivrutinen." #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" #: src/content/mod_configuration.cpp @@ -2095,7 +2108,7 @@ msgstr "Autoframåt" msgid "Automatic jumping" msgstr "Automatiskt hopp" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "Aux1" @@ -2107,7 +2120,7 @@ msgstr "Bakåt" msgid "Block bounds" msgstr "Blockgränser" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "Ändra kamera" @@ -2131,7 +2144,7 @@ msgstr "Sänk volym" msgid "Double tap \"jump\" to toggle fly" msgstr "Dubbeltr. \"hoppa\" för att växla flygläge" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "Släpp" @@ -2147,11 +2160,11 @@ msgstr "Höj räckvidd" msgid "Inc. volume" msgstr "Öka volym" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "Lagring" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "Hoppa" @@ -2183,7 +2196,7 @@ msgstr "Nästa föremål" msgid "Prev. item" msgstr "Tidigare föremål" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "Välj räckvidd" @@ -2195,7 +2208,7 @@ msgstr "Höger" msgid "Screenshot" msgstr "Skärmdump" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "Smyg" @@ -2203,15 +2216,15 @@ msgstr "Smyg" msgid "Toggle HUD" msgstr "Växla HUD" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "Växla chattlog" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "Växla snabbläge" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "Växla flygläge" @@ -2219,11 +2232,11 @@ msgstr "Växla flygläge" msgid "Toggle fog" msgstr "Växla dimma" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "Växla minimapp" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "Växla noclip" @@ -2231,7 +2244,7 @@ msgstr "Växla noclip" msgid "Toggle pitchmove" msgstr "Växla höjdförändr." -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "Zoom" @@ -2241,16 +2254,15 @@ msgstr "tryck på knapp" #: src/gui/guiOpenURL.cpp msgid "Open" -msgstr "" +msgstr "Öppna" #: src/gui/guiOpenURL.cpp msgid "Open URL?" -msgstr "" +msgstr "Öppna URL?" #: src/gui/guiOpenURL.cpp -#, fuzzy msgid "Unable to open URL" -msgstr "Misslyckades att öppna hemsida" +msgstr "Misslyckades att öppna URL:en" #: src/gui/guiPasswordChange.cpp msgid "Change" @@ -2268,7 +2280,7 @@ msgstr "Gammalt Lösenord" msgid "Passwords do not match!" msgstr "Lösenorden matchar inte!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "Avsluta" @@ -2281,24 +2293,56 @@ msgstr "Tyst" msgid "Sound Volume: %d%%" msgstr "Ljudvolym: %d%%" -#: src/gui/touchcontrols.cpp -msgid "Joystick" -msgstr "" - -#: src/gui/touchcontrols.cpp -msgid "Overflow menu" -msgstr "" - -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp #, fuzzy +msgid "Add button" +msgstr "Mittknappen" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "Klart!" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Remove" +msgstr "Avlägsen server" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp +msgid "Joystick" +msgstr "Joystick" + +#: src/gui/touchscreenlayout.cpp +msgid "Overflow menu" +msgstr "Överflödsmeny" + +#: src/gui/touchscreenlayout.cpp msgid "Toggle debug" -msgstr "Växla dimma" +msgstr "Växla avlusning" #: src/network/clientpackethandler.cpp msgid "" "Another client is connected with this name. If your client closed " "unexpectedly, try again in a minute." msgstr "" +"En annan användare är ansluten med detta namn. Om din klient stängdes " +"oväntat, försök igen om en minut." #: src/network/clientpackethandler.cpp msgid "Empty passwords are disallowed. Set a password and try again." @@ -2306,12 +2350,11 @@ msgstr "" #: src/network/clientpackethandler.cpp msgid "Internal server error" -msgstr "" +msgstr "Internt serverfel" #: src/network/clientpackethandler.cpp -#, fuzzy msgid "Invalid password" -msgstr "Gammalt Lösenord" +msgstr "Ogiltigt lösenord" #. ~ DO NOT TRANSLATE THIS LITERALLY! #. This is a special string which needs to contain the translation's @@ -2334,46 +2377,48 @@ msgstr "Namnet är redan taget. Var snäll välj ett annat namn" #: src/network/clientpackethandler.cpp msgid "Player name contains disallowed characters" -msgstr "" +msgstr "Spelarnamn innehåller otillåtna tecken" #: src/network/clientpackethandler.cpp -#, fuzzy msgid "Player name not allowed" -msgstr "Spelarnamn för långt." +msgstr "Spelarnamn är inte tillåtet" #: src/network/clientpackethandler.cpp -#, fuzzy msgid "Server shutting down" -msgstr "Stänger av..." +msgstr "Server stängs av" #: src/network/clientpackethandler.cpp msgid "" "The server has experienced an internal error. You will now be disconnected." -msgstr "" +msgstr "Servern har upplevt ett internt fel. Du kommer nu att kopplas bort." #: src/network/clientpackethandler.cpp msgid "The server is running in singleplayer mode. You cannot connect." -msgstr "" +msgstr "Servern körs i singleplayerläge. Du kan inte ansluta." #: src/network/clientpackethandler.cpp msgid "Too many users" -msgstr "" +msgstr "För många spelare" #: src/network/clientpackethandler.cpp msgid "Unknown disconnect reason." -msgstr "" +msgstr "Okänd bortkopplingsorsak." #: src/network/clientpackethandler.cpp msgid "" "Your client sent something the server didn't expect. Try reconnecting or " "updating your client." msgstr "" +"Din klient skickade något som servern inte förväntade. Försök att " +"återansluta eller uppdatera din klient." #: src/network/clientpackethandler.cpp msgid "" "Your client's version is not supported.\n" "Please contact the server administrator." msgstr "" +"Din klientversion stöds inte.\n" +"Vänligen kontakta serveradministratören." #: src/server.cpp #, c-format @@ -2448,7 +2493,7 @@ msgstr "2D-brus som lokaliserar floddalar och kanaler." #: src/settings_translation_file.cpp msgid "3D" -msgstr "" +msgstr "3D" #: src/settings_translation_file.cpp msgid "3D clouds" @@ -2514,8 +2559,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" "3D stöd.\n" "Stöds för tillfället:\n" @@ -2579,10 +2623,6 @@ msgstr "Aktiv blockräckvidd" msgid "Active object send range" msgstr "Aktivt avstånd för objektsändning" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "Lägger till partiklar när en nod grävs." - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2613,9 +2653,19 @@ msgid "Advanced" msgstr "Avancerat" #: src/settings_translation_file.cpp -msgid "Allows liquids to be translucent." +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." msgstr "" +#: src/settings_translation_file.cpp +msgid "Allow clouds to look 3D instead of flat." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Allows liquids to be translucent." +msgstr "Tillåter vätskor att vara genomskinliga." + #: src/settings_translation_file.cpp msgid "" "Alters the light curve by applying 'gamma correction' to it.\n" @@ -2665,11 +2715,11 @@ msgstr "Kantutjämningsmetod" #: src/settings_translation_file.cpp msgid "Anticheat flags" -msgstr "" +msgstr "Anticheat-flaggor" #: src/settings_translation_file.cpp msgid "Anticheat movement tolerance" -msgstr "" +msgstr "Anticheat-rörelsetolerans" #: src/settings_translation_file.cpp msgid "Append item name" @@ -2696,7 +2746,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Apply specular shading to nodes." -msgstr "" +msgstr "Applicera spekulär skuggning till noder." #: src/settings_translation_file.cpp msgid "Arm inertia" @@ -3020,15 +3070,14 @@ msgstr "Molnradie" msgid "Clouds" msgstr "Moln" -#: src/settings_translation_file.cpp -#, fuzzy -msgid "Clouds are a client-side effect." -msgstr "Moln är en effekt på klientsidan." - #: src/settings_translation_file.cpp msgid "Clouds in menu" msgstr "Moln i meny" +#: src/settings_translation_file.cpp +msgid "Color depth for post-processing texture" +msgstr "" + #: src/settings_translation_file.cpp msgid "Colored fog" msgstr "Färgad dimma" @@ -3052,7 +3101,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" "Kommaseparerad lista av flaggar som ska döljas i innehållsdatabasen.\n" "\"nonfree\" kan användas för att gömma paket som inte kvalifieras som 'fri " @@ -3222,6 +3271,14 @@ msgstr "Nivå av debuglogg" msgid "Debugging" msgstr "Felsökning" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "Steg för dedikerad server" @@ -3393,18 +3450,10 @@ msgstr "" "Öknar förekommer när np_biome överskrider detta värde.\n" "Detta ignoreras när 'snowbiomes' flaggen är aktiverad." -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "Desynkronisera blockanimation" - #: src/settings_translation_file.cpp msgid "Developer Options" msgstr "Utvecklarinställningar" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "Grävpartiklar" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "Tillåt inte tomma lösenord" @@ -3436,6 +3485,14 @@ msgstr "Dubbeltryck på hoppknapp för att flyga" msgid "Double-tapping the jump key toggles fly mode." msgstr "Om du trycker på hoppknappen aktiveras flygläge." +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "Dumpa felsökningsinformation för kartgeneratorn." @@ -3518,9 +3575,10 @@ msgid "" msgstr "" #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" "Aktivera färgade skuggor.\n" "När aktiverad kastar genomskinliga noder färgade skuggor. Detta är intensivt." @@ -3550,9 +3608,9 @@ msgid "Enable mouse wheel (scroll) for item selection in hotbar." msgstr "" #: src/settings_translation_file.cpp -#, fuzzy msgid "Enable random mod loading (mainly used for testing)." -msgstr "Aktivera slumpmässig användarinmatning (används endast för testning)." +msgstr "" +"Aktivera slumpmässig moddladdningsordning (används främst för testning)." #: src/settings_translation_file.cpp msgid "Enable random user input (only used for testing)." @@ -3607,10 +3665,10 @@ msgstr "" "Till exempel: 0 för inget guppande, 1.0 för normalt, 2.0 för dubbla." #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" "Aktivera/avaktivera en IPv6-server.\n" "Ignoreras om bind_address är angedd.\n" @@ -3632,13 +3690,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "Aktiverar animering av lagerföremål." -#: src/settings_translation_file.cpp -#, fuzzy -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "Aktiverar cachning av facedirroterade mesher." - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -3967,10 +4018,6 @@ msgstr "Gränssnittsskalning" msgid "GUI scaling filter" msgstr "Filter för Gränssnittsskalning" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "Filter för Gränssnittsskalning txr2img" - #: src/settings_translation_file.cpp msgid "Gamepads" msgstr "Gamepads" @@ -4220,14 +4267,6 @@ msgid "" "descending." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" -"När aktiverad är kontoregistrering separat från login i gränsnittet.\n" -"När inaktiverad registreras ett nytt konto automatiskt." - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -4246,6 +4285,16 @@ msgid "" "empty password." msgstr "" +#: src/settings_translation_file.cpp +#, fuzzy +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" +"När aktiverad är kontoregistrering separat från login i gränsnittet.\n" +"När inaktiverad registreras ett nytt konto automatiskt." + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4340,17 +4389,13 @@ msgstr "" msgid "Interval of saving important changes in the world, stated in seconds." msgstr "" -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "Intervall för att skicka tiden på dagen för klienter, i sekunder." - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "" #: src/settings_translation_file.cpp msgid "Invert mouse" -msgstr "" +msgstr "Invertera mus" #: src/settings_translation_file.cpp msgid "Invert mouse wheel (scroll) direction for item selection in hotbar." @@ -4358,15 +4403,15 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Invert vertical mouse movement." -msgstr "" +msgstr "Invertera vertikal musrörelse." #: src/settings_translation_file.cpp msgid "Italic font path" -msgstr "" +msgstr "Kursiv typsnittssökväg" #: src/settings_translation_file.cpp msgid "Italic monospace font path" -msgstr "" +msgstr "Kursiv typsnittssökväg (monospace)" #: src/settings_translation_file.cpp msgid "Item entity TTL" @@ -4374,7 +4419,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Iterations" -msgstr "" +msgstr "Iterationer" #: src/settings_translation_file.cpp msgid "" @@ -4386,15 +4431,15 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Joystick ID" -msgstr "" +msgstr "Joystick-ID" #: src/settings_translation_file.cpp msgid "Joystick button repetition interval" -msgstr "" +msgstr "Repeteringsintervall för joystick" #: src/settings_translation_file.cpp msgid "Joystick dead zone" -msgstr "" +msgstr "Deadzone för joystick" #: src/settings_translation_file.cpp msgid "Joystick frustum sensitivity" @@ -4402,7 +4447,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Joystick type" -msgstr "" +msgstr "Joysticktyp" #: src/settings_translation_file.cpp msgid "" @@ -4959,10 +5004,6 @@ msgstr "" msgid "Maximum users" msgstr "" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "" @@ -4995,6 +5036,10 @@ msgstr "" msgid "Minimum limit of random number of small caves per mapchunk." msgstr "" +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "" @@ -5085,7 +5130,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" @@ -5187,11 +5232,11 @@ msgstr "" #: src/settings_translation_file.cpp msgid "OpenGL debug" -msgstr "" +msgstr "OpenGL-felsökning" #: src/settings_translation_file.cpp msgid "Optimize GUI for touchscreens" -msgstr "" +msgstr "Optimera GUI för pekskärmar" #: src/settings_translation_file.cpp msgid "Optional override for chat weblink color." @@ -5308,9 +5353,8 @@ msgid "Proportion of large caves that contain liquid." msgstr "" #: src/settings_translation_file.cpp -#, fuzzy msgid "Protocol version minimum" -msgstr "Protokollversionen matchar inte. " +msgstr "Minsta protokollversion" #: src/settings_translation_file.cpp msgid "Punch gesture" @@ -5527,17 +5571,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5750,16 +5796,6 @@ msgstr "" msgid "Shader path" msgstr "Shader-sökväg" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "Shaders" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "" @@ -5924,10 +5960,9 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" #: src/settings_translation_file.cpp @@ -6206,10 +6241,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "" -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "" @@ -6271,6 +6302,10 @@ msgstr "Vajande vätskor" msgid "Transparency Sorting Distance" msgstr "" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "" @@ -6321,7 +6356,10 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" #: src/settings_translation_file.cpp @@ -6344,16 +6382,14 @@ msgstr "" msgid "Upper Y limit of floatlands." msgstr "Övre Y-gräns för floatlands." -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "" - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "" #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" #: src/settings_translation_file.cpp @@ -6506,14 +6542,12 @@ msgid "" msgstr "" #: src/settings_translation_file.cpp -#, fuzzy msgid "Volume when unfocused" -msgstr "FPS när ofokuserad eller pausad" +msgstr "Volym när ofokuserad" #: src/settings_translation_file.cpp -#, fuzzy msgid "Volumetric lighting" -msgstr "Nodmarkering" +msgstr "Volumetriskt ljus" #: src/settings_translation_file.cpp msgid "" @@ -6595,20 +6629,12 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -6619,10 +6645,6 @@ msgid "" "Mods may still set a background." msgstr "" -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -6645,8 +6667,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -6814,6 +6835,9 @@ msgstr "cURL parallellgräns" #~ "Notera att adressen i fältet på huvudmenyn gör att denna inställning " #~ "ignoreras." +#~ msgid "Adds particles when digging a node." +#~ msgstr "Lägger till partiklar när en nod grävs." + #~ msgid "" #~ "Adjust dpi configuration to your screen (non X11/Android only) e.g. for " #~ "4k screens." @@ -6933,6 +6957,10 @@ msgstr "cURL parallellgräns" #~ msgid "Clean transparent textures" #~ msgstr "Rena transparenta texturer" +#, fuzzy +#~ msgid "Clouds are a client-side effect." +#~ msgstr "Moln är en effekt på klientsidan." + #~ msgid "Command key" #~ msgstr "Kommandotangent" @@ -7028,9 +7056,15 @@ msgstr "cURL parallellgräns" #~ msgid "Damage enabled" #~ msgstr "Skada aktiverat" +#~ msgid "Debug info and profiler graph hidden" +#~ msgstr "Felsökningsinfo och profileringsgraf gömd" + #~ msgid "Debug info toggle key" #~ msgstr "Av/På tangent för debuginformation" +#~ msgid "Debug info, profiler graph, and wireframe hidden" +#~ msgstr "Felsökningsinfo, profileringsgraf och wireframe gömd" + #~ msgid "Dec. volume key" #~ msgstr "Tangent för volymsänkning" @@ -7081,9 +7115,15 @@ msgstr "cURL parallellgräns" #~ "Definierar storleken på överexponeringen av bloomningen.\n" #~ "Intervall: från 0,1 till 10,0, standard: 1,0" +#~ msgid "Desynchronize block animation" +#~ msgstr "Desynkronisera blockanimation" + #~ msgid "Dig key" #~ msgstr "Gräv-knapp" +#~ msgid "Digging particles" +#~ msgstr "Grävpartiklar" + #~ msgid "Disable anticheat" #~ msgstr "Inaktivera antifusk" @@ -7108,6 +7148,9 @@ msgstr "cURL parallellgräns" #~ msgid "Dynamic shadows:" #~ msgstr "Dynamiska skuggor:" +#~ msgid "Enable" +#~ msgstr "Aktivera" + #~ msgid "Enable creative mode for all players" #~ msgstr "Aktivera kreativt läge för alla spelare" @@ -7128,6 +7171,12 @@ msgstr "cURL parallellgräns" #~ "Aktivera vertexbuffertobjekt.\n" #~ "Detta bör avsevärt förbättra grafikprestandan." +#, fuzzy +#~ msgid "" +#~ "Enables caching of facedir rotated meshes.\n" +#~ "This is only effective with shaders disabled." +#~ msgstr "Aktiverar cachning av facedirroterade mesher." + #~ msgid "Enables minimap." #~ msgstr "Aktiverar minimap." @@ -7208,8 +7257,8 @@ msgstr "cURL parallellgräns" #~ msgid "FreeType fonts" #~ msgstr "FreeType-typsnitt" -#~ msgid "Game" -#~ msgstr "Spel" +#~ msgid "GUI scaling filter txr2img" +#~ msgstr "Filter för Gränssnittsskalning txr2img" #~ msgid "HUD scale factor" #~ msgstr "HUD-skalningsfaktor" @@ -7238,14 +7287,20 @@ msgstr "cURL parallellgräns" #~ msgid "Install: file: \"$1\"" #~ msgstr "Installera: fil: \"$1\"" +#~ msgid "Interval of sending time of day to clients, stated in seconds." +#~ msgstr "Intervall för att skicka tiden på dagen för klienter, i sekunder." + #~ msgid "Invalid gamespec." #~ msgstr "Ogiltig spelspecifikation." +#~ msgid "Irrlicht device:" +#~ msgstr "Irrlicht-device:" + #~ msgid "" #~ "Keybindings. (If this menu screws up, remove stuff from minetest.conf)" #~ msgstr "" -#~ "Tangentbindningar. (Om den här menyn strular, radera saker från minetest." -#~ "conf)" +#~ "Tangentbindningar. (Om den här menyn strular, radera saker från " +#~ "minetest.conf)" #~ msgid "Main" #~ msgstr "Huvudsaklig" @@ -7322,15 +7377,24 @@ msgstr "cURL parallellgräns" #~ msgid "Select Package File:" #~ msgstr "Välj modfil:" +#~ msgid "Shaders" +#~ msgstr "Shaders" + #~ msgid "Shaders (experimental)" #~ msgstr "Shaders (experimentella)" #~ msgid "Shaders (unavailable)" #~ msgstr "Shaders (otillgängliga)" +#~ msgid "Shaders are disabled." +#~ msgstr "Shaders är inaktiverat." + #~ msgid "Simple Leaves" #~ msgstr "Enkla löv" +#~ msgid "Sound system is disabled" +#~ msgstr "Ljudsystem är inaktiverad" + #, fuzzy #~ msgid "Special key" #~ msgstr "tryck på tangent" @@ -7347,6 +7411,9 @@ msgstr "cURL parallellgräns" #~ msgid "The value must not be larger than $1." #~ msgstr "Värdet får vara högst $1." +#~ msgid "This is not a recommended configuration." +#~ msgstr "Detta är inte en rekommenderad konfiguration." + #~ msgid "To enable shaders the OpenGL driver needs to be used." #~ msgstr "För att aktivera shaders behöver OpenGL-drivern användas." diff --git a/po/sw/luanti.po b/po/sw/luanti.po index 0fca34f94..f38ae2249 100644 --- a/po/sw/luanti.po +++ b/po/sw/luanti.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Swahili (Minetest)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: Swahili ] [-t]" msgstr "" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "Vinjari" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "Hariri" + +#: builtin/common/settings/components.lua +#, fuzzy +msgid "Select directory" +msgstr "Orodha ya ramani" + +#: builtin/common/settings/components.lua +#, fuzzy +msgid "Select file" +msgstr "Teua faili ya Moduli:" + +#: builtin/common/settings/components.lua +#, fuzzy +msgid "Set" +msgstr "Teua" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(Hakuna maelezo ya kuweka kupewa)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#, fuzzy +msgid "2D Noise" +msgstr "Kila" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "Katisha" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#, fuzzy +msgid "Lacunarity" +msgstr "Usalama" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#, fuzzy +msgid "Persistence" +msgstr "Umbali wa uhamisho wa mchezaji" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "Hifadhi" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "Mbegu" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#, fuzzy +msgid "defaults" +msgstr "Chaguo-msingi mchezo" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "Kuzungumza" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "Wazi" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "Vidhibiti" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "Walemavu" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "Kuwezeshwa" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Movement" +msgstr "Kutembea haraka" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Reset setting to default" +msgstr "Rejesha chaguo-msingi" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "Utafutaji" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "Onyesha majina ya kiufundi" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Touchscreen layout" +msgstr "Touchthreshold (px)" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "pause_menu" +msgstr "Ramprogrammen katika Menyu ya mapumziko" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Client Mods" +msgstr "Teua ulimwengu:" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Content: Games" +msgstr "Kuendelea" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Content: Mods" +msgstr "Kuendelea" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +#, fuzzy +msgid "Dynamic shadows" +msgstr "Kivuli cha fonti" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "" + #: builtin/fstk/ui.lua msgid "" msgstr "" @@ -172,7 +425,6 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "Nyuma" @@ -209,11 +461,6 @@ msgstr "Mods" msgid "No packages could be retrieved" msgstr "" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "" @@ -261,18 +508,6 @@ msgstr "Muhimu tayari katika matumizi" msgid "Base Game:" msgstr "Ficha mchezo" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "Katisha" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -409,6 +644,12 @@ msgstr "Imeshindwa kusakinisha $1 hadi $2" msgid "Unable to install a $1 as a texture pack" msgstr "Imeshindwa kusakinisha $1 hadi $2" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "" @@ -478,12 +719,6 @@ msgstr "" msgid "Optional dependencies:" msgstr "" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "Hifadhi" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "Ulimwengu:" @@ -649,11 +884,6 @@ msgstr "Ukubwa wa mto" msgid "Sea level rivers" msgstr "" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "Mbegu" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "" @@ -796,6 +1026,23 @@ msgid "" "override any renaming here." msgstr "" +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "Wezesha yote" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "" @@ -820,7 +1067,7 @@ msgstr "" msgid "Visit website" msgstr "" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "Vipimo vya" @@ -832,238 +1079,6 @@ msgstr "" msgid "Try reenabling public serverlist and check your internet connection." msgstr "Jaribu reenabling serverlist umma na Kagua muunganisho wako wa tovuti." -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "Vinjari" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "Hariri" - -#: builtin/mainmenu/settings/components.lua -#, fuzzy -msgid "Select directory" -msgstr "Orodha ya ramani" - -#: builtin/mainmenu/settings/components.lua -#, fuzzy -msgid "Select file" -msgstr "Teua faili ya Moduli:" - -#: builtin/mainmenu/settings/components.lua -#, fuzzy -msgid "Set" -msgstr "Teua" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(Hakuna maelezo ya kuweka kupewa)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#, fuzzy -msgid "2D Noise" -msgstr "Kila" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#, fuzzy -msgid "Lacunarity" -msgstr "Usalama" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#, fuzzy -msgid "Persistence" -msgstr "Umbali wa uhamisho wa mchezaji" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#, fuzzy -msgid "defaults" -msgstr "Chaguo-msingi mchezo" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "Kuzungumza" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "Wazi" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "Vidhibiti" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "Walemavu" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "Kuwezeshwa" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Movement" -msgstr "Kutembea haraka" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Reset setting to default" -msgstr "Rejesha chaguo-msingi" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "Utafutaji" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "Onyesha majina ya kiufundi" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Client Mods" -msgstr "Teua ulimwengu:" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Content: Games" -msgstr "Kuendelea" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Content: Mods" -msgstr "Kuendelea" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "Kuwezeshwa" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Shaders are disabled." -msgstr "Kibonye guro Usasishaji wa kamera" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -#, fuzzy -msgid "Dynamic shadows" -msgstr "Kivuli cha fonti" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "" @@ -1085,10 +1100,6 @@ msgstr "Watengenezaji wa msingi" msgid "Core Team" msgstr "" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "" - #: builtin/mainmenu/tab_about.lua #, fuzzy msgid "Open User Data Directory" @@ -1248,11 +1259,23 @@ msgstr "Ficha mchezo" msgid "You need to install a game before you can create a world." msgstr "" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "Bandari ya mbali" + #: builtin/mainmenu/tab_online.lua #, fuzzy msgid "Address" msgstr "Kumfunga anwani" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "Mteja" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "Hali ya ubunifu" @@ -1268,6 +1291,11 @@ msgstr "Uharibifu" msgid "Favorites" msgstr "Kipendwa" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "Mchezo" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "" @@ -1281,10 +1309,28 @@ msgstr "Ficha mchezo" msgid "Login" msgstr "" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Number of mods: $1" +msgstr "Idadi ya nyuzi emerge" + +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Open server website" +msgstr "Hatua ya seva ya kujitolea" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua #, fuzzy msgid "Public Servers" @@ -1375,25 +1421,6 @@ msgstr "" "\n" "Angalia debug.txt kwa maelezo." -#: src/client/game.cpp -msgid "- Mode: " -msgstr "" - -#: src/client/game.cpp -#, fuzzy -msgid "- Public: " -msgstr "Umma" - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "" - -#: src/client/game.cpp -#, fuzzy -msgid "- Server Name: " -msgstr "Jina la seva" - #: src/client/game.cpp #, fuzzy msgid "A serialization error occurred:" @@ -1404,6 +1431,11 @@ msgstr "Kosa limetokea:" msgid "Access denied. Reason: %s" msgstr "" +#: src/client/game.cpp +#, fuzzy +msgid "All debug info hidden" +msgstr "Rekebisha taarifa kibonye" + #: src/client/game.cpp #, fuzzy msgid "Automatic forward disabled" @@ -1426,6 +1458,10 @@ msgstr "" msgid "Block bounds shown for nearby blocks" msgstr "" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp #, fuzzy msgid "Camera update disabled" @@ -1440,10 +1476,6 @@ msgstr "Kibonye guro Usasishaji wa kamera" msgid "Can't show block bounds (disabled by game or mod)" msgstr "" -#: src/client/game.cpp -msgid "Change Password" -msgstr "Badilisha nywila" - #: src/client/game.cpp #, fuzzy msgid "Cinematic mode disabled" @@ -1475,37 +1507,6 @@ msgstr "Kosa la muunganisho (wakati muafaka?)" msgid "Connection failed for unknown reason" msgstr "" -#: src/client/game.cpp -msgid "Continue" -msgstr "Kuendelea" - -#: src/client/game.cpp -#, fuzzy -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" -"Vidhibiti vya chaguo-msingi:\n" -"Hakuna Menyu kuonekana:\n" -"- bomba moja: kitufe kuamilisha\n" -"- mara mbili bomba: mahali/matumizi\n" -"- slaidi kidole: kuangalia kote\n" -"Menyu/hesabu dhahiri:\n" -"- mara mbili bomba (nje):--> Funga - kugusa \n" -"mpororo, kugusa mpenyo:--> hoja mpororo\n" -"- kugusa & buruta, bomba kidole 2--> \n" -"kipengee kimoja mahali kwa yanayopangwa\n" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1519,32 +1520,16 @@ msgstr "Inaunda mteja..." msgid "Creating server..." msgstr "Inaunda seva..." -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "" - #: src/client/game.cpp #, fuzzy msgid "Debug info shown" msgstr "Rekebisha taarifa kibonye" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "" - #: src/client/game.cpp #, fuzzy, c-format msgid "Error creating client: %s" msgstr "Inaunda mteja..." -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "Toka kwenye menyu" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "Toka kwa OS" - #: src/client/game.cpp #, fuzzy msgid "Fast mode disabled" @@ -1587,20 +1572,6 @@ msgstr "kuwezeshwa" msgid "Fog enabled by game or mod" msgstr "" -#: src/client/game.cpp -msgid "Game info:" -msgstr "" - -#: src/client/game.cpp -#, fuzzy -msgid "Game paused" -msgstr "Michezo" - -#: src/client/game.cpp -#, fuzzy -msgid "Hosting server" -msgstr "Inaunda seva..." - #: src/client/game.cpp msgid "Item definitions..." msgstr "Fasili ya kipengele..." @@ -1639,14 +1610,6 @@ msgstr "" msgid "Node definitions..." msgstr "Fundo Fasili..." -#: src/client/game.cpp -msgid "Off" -msgstr "" - -#: src/client/game.cpp -msgid "On" -msgstr "" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "" @@ -1659,40 +1622,23 @@ msgstr "" msgid "Profiler graph shown" msgstr "" -#: src/client/game.cpp -#, fuzzy -msgid "Remote server" -msgstr "Bandari ya mbali" - #: src/client/game.cpp msgid "Resolving address..." msgstr "Kusuluhisha anwani..." -#: src/client/game.cpp -msgid "Respawn" -msgstr "Respawn" - #: src/client/game.cpp msgid "Shutting down..." msgstr "Inazima..." -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "Singleplayer" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "Kiwango cha sauti" - #: src/client/game.cpp #, fuzzy msgid "Sound muted" msgstr "Kiwango cha sauti" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "" @@ -1766,18 +1712,119 @@ msgstr "Kuonyesha masafa" msgid "Volume changed to %d%%" msgstr "" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "" -#: src/client/game.cpp -msgid "You died" -msgstr "Umekufa." - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "" + +#: src/client/game_formspec.cpp +#, fuzzy +msgid "- Public: " +msgstr "Umma" + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "" + +#: src/client/game_formspec.cpp +#, fuzzy +msgid "- Server Name: " +msgstr "Jina la seva" + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "Badilisha nywila" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "Kuendelea" + +#: src/client/game_formspec.cpp +#, fuzzy +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" +"Vidhibiti vya chaguo-msingi:\n" +"Hakuna Menyu kuonekana:\n" +"- bomba moja: kitufe kuamilisha\n" +"- mara mbili bomba: mahali/matumizi\n" +"- slaidi kidole: kuangalia kote\n" +"Menyu/hesabu dhahiri:\n" +"- mara mbili bomba (nje):--> Funga - kugusa \n" +"mpororo, kugusa mpenyo:--> hoja mpororo\n" +"- kugusa & buruta, bomba kidole 2--> \n" +"kipengee kimoja mahali kwa yanayopangwa\n" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "Toka kwenye menyu" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "Toka kwa OS" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "" + +#: src/client/game_formspec.cpp +#, fuzzy +msgid "Game paused" +msgstr "Michezo" + +#: src/client/game_formspec.cpp +#, fuzzy +msgid "Hosting server" +msgstr "Inaunda seva..." + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "" + +#: src/client/game_formspec.cpp +#, fuzzy +msgid "Remote server" +msgstr "Bandari ya mbali" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "Respawn" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "Kiwango cha sauti" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "Umekufa." + #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" msgstr "" @@ -2128,7 +2175,7 @@ msgid "Failed to compile the \"%s\" shader." msgstr "Imeshindwa kusakinisha $1 hadi $2" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." +msgid "GLSL is not supported by the driver" msgstr "" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" @@ -2180,7 +2227,7 @@ msgstr "Mbele" msgid "Automatic jumping" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "" @@ -2192,7 +2239,7 @@ msgstr "Nyuma" msgid "Block bounds" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp #, fuzzy msgid "Change camera" msgstr "Badilisha funguo" @@ -2218,7 +2265,7 @@ msgstr "" msgid "Double tap \"jump\" to toggle fly" msgstr "Mara mbili bomba \"Ruka\" hadi Togo kuruka" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "Achia" @@ -2236,11 +2283,11 @@ msgstr "Kuonyesha masafa" msgid "Inc. volume" msgstr "Kiwango cha sauti" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "Hesabu" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "Kuruka" @@ -2274,7 +2321,7 @@ msgstr "Ijayo" msgid "Prev. item" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "Teua masafa" @@ -2286,7 +2333,7 @@ msgstr "Kulia" msgid "Screenshot" msgstr "Screenshot" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "Taarifa" @@ -2295,16 +2342,16 @@ msgstr "Taarifa" msgid "Toggle HUD" msgstr "Togoa kuruka" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp #, fuzzy msgid "Toggle chat log" msgstr "Togoa haraka" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "Togoa haraka" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "Togoa kuruka" @@ -2313,12 +2360,12 @@ msgstr "Togoa kuruka" msgid "Toggle fog" msgstr "Togoa kuruka" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp #, fuzzy msgid "Toggle minimap" msgstr "Togoa noclip" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "Togoa noclip" @@ -2327,7 +2374,7 @@ msgstr "Togoa noclip" msgid "Toggle pitchmove" msgstr "Togoa haraka" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "Kuza" @@ -2364,7 +2411,7 @@ msgstr "Nywila ya zamani" msgid "Passwords do not match!" msgstr "MaNenotambulishi hayaoani!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "Toka" @@ -2378,15 +2425,46 @@ msgstr "Ufunguo wa matumizi" msgid "Sound Volume: %d%%" msgstr "Kiwango sauti:" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Add button" +msgstr "Kitufe kati" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "Kufanyika!" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Remove" +msgstr "Bandari ya mbali" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp msgid "Joystick" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Toggle debug" msgstr "Togoa kuruka" @@ -2595,8 +2673,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" "Msaada ya 3D.\n" "Tegemeza kwa sasa:-Hakuna: Hakuna towe 3d.\n" @@ -2662,10 +2739,6 @@ msgstr "Masafa ya fungu amilifu" msgid "Active object send range" msgstr "Kiolwa amilifu Tuma masafa" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "" - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2689,6 +2762,17 @@ msgstr "Jina la ulimwengu" msgid "Advanced" msgstr "Pevu" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +#, fuzzy +msgid "Allow clouds to look 3D instead of flat." +msgstr "Matumizi wingu 3D kuangalia badala ya gorofa." + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "" @@ -3093,15 +3177,14 @@ msgstr "Wingu eneo" msgid "Clouds" msgstr "Mawingu" -#: src/settings_translation_file.cpp -#, fuzzy -msgid "Clouds are a client-side effect." -msgstr "Mawingu ni mteja upande athari." - #: src/settings_translation_file.cpp msgid "Clouds in menu" msgstr "Mawingu katika Menyu" +#: src/settings_translation_file.cpp +msgid "Color depth for post-processing texture" +msgstr "" + #: src/settings_translation_file.cpp msgid "Colored fog" msgstr "Ukungu wa rangi" @@ -3125,7 +3208,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" #: src/settings_translation_file.cpp @@ -3273,6 +3356,14 @@ msgstr "Rekebisha kiwango cha logi" msgid "Debugging" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "Hatua ya seva ya kujitolea" @@ -3435,20 +3526,11 @@ msgid "" "When the 'snowbiomes' flag is enabled, this is ignored." msgstr "" -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "Desynchronize umbo la uhuishaji" - #: src/settings_translation_file.cpp #, fuzzy msgid "Developer Options" msgstr "Instrumentation" -#: src/settings_translation_file.cpp -#, fuzzy -msgid "Digging particles" -msgstr "Chembe" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "Usiruhusu nywila tupu" @@ -3476,6 +3558,14 @@ msgstr "Mara mbili ya bomba kuruka kwa kuruka" msgid "Double-tapping the jump key toggles fly mode." msgstr "Mbili-tapping ufunguo wa kuruka Inatogoa hali ya kuruka." +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp #, fuzzy msgid "Dump the mapgen debug information." @@ -3555,8 +3645,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" #: src/settings_translation_file.cpp @@ -3646,8 +3736,7 @@ msgstr "" #, fuzzy msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" "Wezesha/Lemaza kuendesha seva ya IPv6. Seva ya IPv6 unaweza kuzuiliwa kwa " "wateja IPv6, kutegemea usanidi mfumo.\n" @@ -3665,13 +3754,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "Huwezesha uhuishaji wa vitu inventering." -#: src/settings_translation_file.cpp -#, fuzzy -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "Huwezesha uwekaji kache kwa facedir Iliyozungushwa meshes." - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -3998,10 +4080,6 @@ msgstr "GUI kurekebisha" msgid "GUI scaling filter" msgstr "GUI kipimo Kichujio" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "GUI kipimo Kichujio txr2img" - #: src/settings_translation_file.cpp #, fuzzy msgid "Gamepads" @@ -4274,12 +4352,6 @@ msgstr "" "Ikiwa imewezeshwa, ufunguo wa \"kutumia\" badala ya \"sneak\" ufunguo ni " "kutumika kwa ajili ya kupanda na kushuka." -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -4303,6 +4375,13 @@ msgid "" "empty password." msgstr "Ikiwa imewezeshwa, wachezaji wapya haiwezi kujiunga na nywila wazi." +#: src/settings_translation_file.cpp +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4413,11 +4492,6 @@ msgid "Interval of saving important changes in the world, stated in seconds." msgstr "" "Muda wa kuhifadhi mabadiliko muhimu katika ulimwengu, alisema katika sekunde." -#: src/settings_translation_file.cpp -#, fuzzy -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "Muda wa kutuma wakati wa siku kwa wateja." - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "Hesabu vitu uhuishaji" @@ -5137,10 +5211,6 @@ msgstr "" msgid "Maximum users" msgstr "Watumiaji wa kiwango cha juu" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "Kirudufu cha matundu" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "Ujumbe wa siku ya" @@ -5174,6 +5244,10 @@ msgstr "" msgid "Minimum limit of random number of small caves per mapchunk." msgstr "" +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "Mipmapping" @@ -5271,9 +5345,10 @@ msgid "" msgstr "" #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" "Jina la mchezaji.\n" @@ -5760,17 +5835,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -6005,16 +6082,6 @@ msgstr "" msgid "Shader path" msgstr "Shaders" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "Shaders" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Shadow filter quality" @@ -6193,10 +6260,9 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" #: src/settings_translation_file.cpp @@ -6515,10 +6581,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "" -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "Wakati kutuma nafasi" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "Kasi ya muda" @@ -6589,6 +6651,10 @@ msgstr "Waving fundo" msgid "Transparency Sorting Distance" msgstr "" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "" @@ -6643,7 +6709,10 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" #: src/settings_translation_file.cpp @@ -6667,17 +6736,15 @@ msgstr "" msgid "Upper Y limit of floatlands." msgstr "Y ya upper kikomo ya kubwa pseudorandom cellars." -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "Matumizi wingu 3D kuangalia badala ya gorofa." - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "Tumia uhuishaji wa wingu ya mandharinyuma ya Menyu kuu." #: src/settings_translation_file.cpp #, fuzzy -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "Tumia uchujaji anisotropic wakati unatazama katika unamu kutoka pembe." #: src/settings_translation_file.cpp @@ -6941,27 +7008,15 @@ msgstr "" "programu, lakini taswira zingine hutolewa moja kwa moja kwa maunzi (k.m " "kutoa-kwa-unamu kwa fundo katika hesabu)." -#: src/settings_translation_file.cpp -msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" -"Wakati gui_scaling_filter_txr2img ni kweli, kunakili picha hizo kutoka " -"maunzi na programu kwa ajili ya kurekebisha. Wakati uongo, kuanguka nyuma " -"kwa mbinu ya zamani ya kipimo, kwa madereva video vizuri siungi mkono unamu " -"Inapakua nyuma kutoka maunzi." - #: src/settings_translation_file.cpp #, fuzzy msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -6979,10 +7034,6 @@ msgid "" "Mods may still set a background." msgstr "" -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "Kama fundo unamu uhuishaji lazima desynchronized kwa mapblock." - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -7009,8 +7060,7 @@ msgstr "Kama ukungu nje mwisho wa eneo hili dhahiri." #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -7267,6 +7317,10 @@ msgstr "cURL kikomo sambamba" #~ msgid "Clean transparent textures" #~ msgstr "Unamu angavu safi" +#, fuzzy +#~ msgid "Clouds are a client-side effect." +#~ msgstr "Mawingu ni mteja upande athari." + #~ msgid "Command key" #~ msgstr "Ufunguo wa amri" @@ -7376,10 +7430,17 @@ msgstr "cURL kikomo sambamba" #~ msgid "Del. Favorite" #~ msgstr "Del. kipendwa" +#~ msgid "Desynchronize block animation" +#~ msgstr "Desynchronize umbo la uhuishaji" + #, fuzzy #~ msgid "Dig key" #~ msgstr "Ufunguo sahihi" +#, fuzzy +#~ msgid "Digging particles" +#~ msgstr "Chembe" + #~ msgid "Disable anticheat" #~ msgstr "Lemaza anticheat" @@ -7401,6 +7462,10 @@ msgstr "cURL kikomo sambamba" #~ msgid "Dynamic shadows:" #~ msgstr "Kivuli cha fonti" +#, fuzzy +#~ msgid "Enable" +#~ msgstr "Kuwezeshwa" + #~ msgid "Enable VBO" #~ msgstr "Wezesha VBO" @@ -7421,6 +7486,12 @@ msgstr "cURL kikomo sambamba" #~ "pakiti ya unamu au haja ya kuwa yaliyozalishwa na otomatiki.\n" #~ "Inahitaji shaders kwa kuwezeshwa." +#, fuzzy +#~ msgid "" +#~ "Enables caching of facedir rotated meshes.\n" +#~ "This is only effective with shaders disabled." +#~ msgstr "Huwezesha uwekaji kache kwa facedir Iliyozungushwa meshes." + #~ msgid "Enables filmic tone mapping" #~ msgstr "Huwezesha toni filmic ramani" @@ -7451,9 +7522,6 @@ msgstr "cURL kikomo sambamba" #~ "Chaguo majaribio, inaweza kusababisha nafasi inayoonekana kati ya vitalu " #~ "wakati kuweka namba ya juu zaidi kuliko 0." -#~ msgid "FPS in pause menu" -#~ msgstr "Ramprogrammen katika Menyu ya mapumziko" - #~ msgid "FSAA" #~ msgstr "FSAA" @@ -7528,8 +7596,8 @@ msgstr "cURL kikomo sambamba" #~ msgid "Full screen BPP" #~ msgstr "Skrini BPP" -#~ msgid "Game" -#~ msgstr "Mchezo" +#~ msgid "GUI scaling filter txr2img" +#~ msgstr "GUI kipimo Kichujio txr2img" #~ msgid "Gamma" #~ msgstr "Gamma" @@ -7584,6 +7652,10 @@ msgstr "cURL kikomo sambamba" #~ msgid "Instrumentation" #~ msgstr "Instrumentation" +#, fuzzy +#~ msgid "Interval of sending time of day to clients, stated in seconds." +#~ msgstr "Muda wa kutuma wakati wa siku kwa wateja." + #~ msgid "Invalid gamespec." #~ msgstr "Gamespec batili." @@ -7595,695 +7667,695 @@ msgstr "cURL kikomo sambamba" #~ msgid "" #~ "Key for decreasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kupunguza kiwango cha kuonyesha.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for decreasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kupunguza kiwango cha kuonyesha.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for digging.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kuruka.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for dropping the currently selected item.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kuacha kipengee kilichoteuliwa kwa sasa.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kuongeza kiwango cha kuonyesha.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for increasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kuongeza kiwango cha kuonyesha.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for jumping.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kuruka.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving fast in fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kusonga haraka katika hali ya haraka.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for moving the player backward.\n" #~ "Will also disable autoforward, when active.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kuhamia mchezaji nyuma.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player forward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kuhamia mchezaji mbele.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player left.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kuhamia mchezaji kushoto.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player right.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kusonga mchezaji haki.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for muting the game.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kuruka.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kufungua dirisha la soga kuchapa amri.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for opening the chat window to type local commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kufungua dirisha la soga kuchapa amri.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kufungua dirisha la soga.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the inventory.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kufungua hesabu.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for placing.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kuruka.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 11th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kufungua hesabu.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 12th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kufungua hesabu.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 13th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kufungua hesabu.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 14th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kufungua hesabu.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 15th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kufungua hesabu.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 16th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kufungua hesabu.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 17th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kufungua hesabu.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 18th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kufungua hesabu.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 19th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kufungua hesabu.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 20th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kufungua hesabu.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 21st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kufungua hesabu.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 22nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kufungua hesabu.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 23rd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kufungua hesabu.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 24th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kufungua hesabu.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 25th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kufungua hesabu.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 26th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kufungua hesabu.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 27th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kufungua hesabu.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 28th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kufungua hesabu.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 29th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kufungua hesabu.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 30th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kufungua hesabu.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 31st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kufungua hesabu.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the 32nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kufungua hesabu.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the eighth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kufungua hesabu.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the fifth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kufungua hesabu.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the first hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kufungua hesabu.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the fourth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kufungua hesabu.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the next item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kufungua hesabu.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the ninth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kufungua hesabu.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the previous item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kufungua hesabu.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the second hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kufungua hesabu.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the seventh hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kufungua hesabu.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the sixth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kufungua hesabu.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the tenth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kufungua hesabu.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for selecting the third hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kufungua hesabu.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for sneaking.\n" #~ "Also used for climbing down and descending in water if aux1_descends is " #~ "disabled.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya sneaking.\n" #~ "Pia kutumika kwa ajili ya kupanda na kushuka katika maji kama " #~ "aux1_descends imelemazwa.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for switching between first- and third-person camera.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kubadili kati ya kamera ya kwanza - na -mtu wa tatu.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for taking screenshots.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kuchukua viwambo.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for toggling autoforward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya toggling autorun.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling cinematic mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya toggling hali ya cinematic.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling display of minimap.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya toggling onyesho la minimap.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya toggling hali ya haraka.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling flying.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya toggling kuruka.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling noclip mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya toggling hali ya noclip.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for toggling pitch move mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya toggling hali ya noclip.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the camera update. Only used for development\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya toggling sasaishi ya kamera. Tu kutumika kwa ajili ya " -#~ "maendeleo ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "maendeleo ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for toggling the display of chat.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya toggling onyesho la kuzungumza.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of debug info.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya toggling onyesho la maelezo kuhusu marekebisho.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for toggling the display of fog.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya toggling onyesho la ukungu.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the HUD.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya toggling onyesho la ya HUD.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for toggling the display of the large chat console.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya toggling onyesho la kuzungumza.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the profiler. Used for development.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya toggling onyesho la profiler ya. Kutumika kwa ajili " #~ "ya maendeleo.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling unlimited view range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya toggling masafa ya Mwoneko ukomo.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key to use view zoom when possible.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Muhimu kwa ajili ya kuruka.\n" -#~ "Ona http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Ona http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Keybindings. (If this menu screws up, remove stuff from minetest.conf)" @@ -8344,6 +8416,9 @@ msgstr "cURL kikomo sambamba" #~ msgid "Menus" #~ msgstr "Menyu" +#~ msgid "Mesh cache" +#~ msgstr "Kirudufu cha matundu" + #~ msgid "Minimap" #~ msgstr "Ramani" @@ -8524,6 +8599,9 @@ msgstr "cURL kikomo sambamba" #~ msgid "Server / Singleplayer" #~ msgstr "Seva / Singleplayer" +#~ msgid "Shaders" +#~ msgstr "Shaders" + #, fuzzy #~ msgid "Shaders (experimental)" #~ msgstr "Kiwango cha maji" @@ -8538,6 +8616,10 @@ msgstr "cURL kikomo sambamba" #~ "baadhi ya kadi ya video.\n" #~ "Kazi yako tu na OpenGL video backend." +#, fuzzy +#~ msgid "Shaders are disabled." +#~ msgstr "Kibonye guro Usasishaji wa kamera" + #, fuzzy #~ msgid "Shadow limit" #~ msgstr "Kikomo cha Mapblock" @@ -8601,6 +8683,9 @@ msgstr "cURL kikomo sambamba" #~ msgid "This font will be used for certain languages." #~ msgstr "Fonti hii itatumika kwa lugha fulani." +#~ msgid "Time send interval" +#~ msgstr "Wakati kutuma nafasi" + #~ msgid "To enable shaders the OpenGL driver needs to be used." #~ msgstr "Ili kuwezesha shaders OpenGL ya kiendeshaji inahitaji kutumiwa." @@ -8667,6 +8752,17 @@ msgstr "cURL kikomo sambamba" #~ msgid "Waving water" #~ msgstr "Waving maji" +#~ msgid "" +#~ "When gui_scaling_filter_txr2img is true, copy those images\n" +#~ "from hardware to software for scaling. When false, fall back\n" +#~ "to the old scaling method, for video drivers that don't\n" +#~ "properly support downloading textures back from hardware." +#~ msgstr "" +#~ "Wakati gui_scaling_filter_txr2img ni kweli, kunakili picha hizo kutoka " +#~ "maunzi na programu kwa ajili ya kurekebisha. Wakati uongo, kuanguka " +#~ "nyuma kwa mbinu ya zamani ya kipimo, kwa madereva video vizuri siungi " +#~ "mkono unamu Inapakua nyuma kutoka maunzi." + #, fuzzy #~ msgid "" #~ "Whether FreeType fonts are used, requires FreeType support to be compiled " @@ -8676,6 +8772,10 @@ msgstr "cURL kikomo sambamba" #~ "Kama freetype fonti hutumiwa, inahitaji msaada wa freetype kuwa " #~ "alikusanya katika." +#~ msgid "" +#~ "Whether node texture animations should be desynchronized per mapblock." +#~ msgstr "Kama fundo unamu uhuishaji lazima desynchronized kwa mapblock." + #~ msgid "Whether to allow players to damage and kill each other." #~ msgstr "Kama kuruhusu wachezaji kuharibu na kuua kila mmoja." diff --git a/po/ta/luanti.po b/po/ta/luanti.po new file mode 100644 index 000000000..869440ad2 --- /dev/null +++ b/po/ta/luanti.po @@ -0,0 +1,7384 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the luanti package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: luanti\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" +"PO-Revision-Date: 2025-01-19 19:01+0000\n" +"Last-Translator: தமிழ்நேரம் \n" +"Language-Team: Tamil \n" +"Language: ta\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.10-dev\n" + +#: builtin/client/chatcommands.lua +msgid "Clear the out chat queue" +msgstr "அவுட் அரட்டை வரிசையை அழிக்கவும்" + +#: builtin/client/chatcommands.lua +msgid "Empty command." +msgstr "வெற்று கட்டளை." + +#: builtin/client/chatcommands.lua +msgid "Exit to main menu" +msgstr "முதன்மையான மெனுவுக்கு வெளியேறவும்" + +#: builtin/client/chatcommands.lua +msgid "Invalid command: " +msgstr "தவறான கட்டளை: " + +#: builtin/client/chatcommands.lua +msgid "Issued command: " +msgstr "வழங்கப்பட்ட கட்டளை: " + +#: builtin/client/chatcommands.lua +msgid "List online players" +msgstr "நிகழ்நிலை பிளேயர்களை பட்டியலிடுங்கள்" + +#: builtin/client/chatcommands.lua +msgid "Online players: " +msgstr "நிகழ்நிலை வீரர்கள்: " + +#: builtin/client/chatcommands.lua +msgid "The out chat queue is now empty." +msgstr "அவுட் அரட்டை வரிசை இப்போது காலியாக உள்ளது." + +#: builtin/client/chatcommands.lua +msgid "This command is disabled by server." +msgstr "இந்த கட்டளை சேவையகத்தால் முடக்கப்பட்டுள்ளது." + +#: builtin/common/chatcommands.lua +msgid "Available commands:" +msgstr "கிடைக்கும் கட்டளைகள்:" + +#: builtin/common/chatcommands.lua +msgid "Available commands: " +msgstr "கிடைக்கும் கட்டளைகள்: " + +#: builtin/common/chatcommands.lua +msgid "Command not available: " +msgstr "கட்டளை கிடைக்கவில்லை: " + +#: builtin/common/chatcommands.lua +msgid "Get help for commands (-t: output in chat)" +msgstr "கட்டளைகளுக்கான உதவியைப் பெறுங்கள் (-t: அரட்டையில் வெளியீடு)" + +#: builtin/common/chatcommands.lua +msgid "" +"Use '.help ' to get more information, or '.help all' to list everything." +msgstr "" +"மேலும் தகவல்களைப் பெற '. எல்ப் ' ஐப் பயன்படுத்தவும், அல்லது எல்லாவற்றையும் பட்டியலிட " +"'." + +#: builtin/common/chatcommands.lua +msgid "[all | ] [-t]" +msgstr "[அனைத்தும் | ] [-t]" + +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "உலாவு" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "தொகு" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "கோப்பகத்தைத் தேர்ந்தெடு" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "கோப்பைத் தேர்ந்தெடு" + +#: builtin/common/settings/components.lua +msgid "Set" +msgstr "கணம்" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(கொடுக்கப்பட்ட அமைப்பின் விளக்கம் இல்லை)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "2 டி ஒலி" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "ரத்துசெய்" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "லாகுனாரிட்டி" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "ஆக்டேவ்ச்" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "ஈடுசெய்யும்" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "விடாமுயற்சி" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "சேமி" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "அளவு" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "விதை" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "ஃச் பரவல்" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "ஒய் பரவல்" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "சட் பரவல்" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "புறக்கணிப்பு" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "இயல்புநிலை" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "தளர்த்தப்பட்டது" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "(விளையாட்டு தானியங்கி வெளிப்பாட்டையும் செயல்படுத்த வேண்டும்)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "(விளையாட்டு பூக்கத்தையும் செயல்படுத்த வேண்டும்)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "(விளையாட்டு அளவீட்டு விளக்குகளையும் இயக்க வேண்டும்)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "(கணினி மொழியைப் பயன்படுத்துங்கள்)" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "அணுகல்" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "தானி" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "அரட்டை" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "தெளிவான" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "கட்டுப்பாடுகள்" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "முடக்கப்பட்டது" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "இயக்கப்பட்டது" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "பொது" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "இயக்கம்" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "முடிவுகள் இல்லை" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default" +msgstr "அமைப்பை இயல்புநிலைக்கு மீட்டமைக்கவும்" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "அமைப்பை இயல்புநிலைக்கு மீட்டமை ($ 1)" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "தேடல்" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "மேம்பட்ட அமைப்புகளைக் காட்டு" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "தொழில்நுட்ப பெயர்களைக் காட்டு" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Touchscreen layout" +msgstr "தொடுதிரை" + +#: builtin/common/settings/dlg_settings.lua +msgid "pause_menu" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Client Mods" +msgstr "வாங்கி மோட்ச்" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "உள்ளடக்கம்: விளையாட்டுகள்" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "உள்ளடக்கம்: மோட்ச்" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "(விளையாட்டு நிழல்களையும் இயக்க வேண்டும்)" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "தனிப்பயன்" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "மாறும் நிழல்கள்" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "உயர்ந்த" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "குறைந்த" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "சராசரி" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "மிக உயர்ந்த" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "மிகக் குறைவு" + +#: builtin/fstk/ui.lua +msgid "" +msgstr "<எதுவும் கிடைக்கவில்லை>" + +#: builtin/fstk/ui.lua +msgid "An error occurred in a Lua script:" +msgstr "லுவா ச்கிரிப்டில் பிழை ஏற்பட்டது:" + +#: builtin/fstk/ui.lua +msgid "An error occurred:" +msgstr "பிழை ஏற்பட்டது:" + +#: builtin/fstk/ui.lua +msgid "Main menu" +msgstr "பட்டியல் விளையாடுங்கள்" + +#: builtin/fstk/ui.lua +msgid "OK" +msgstr "சரி" + +#: builtin/fstk/ui.lua +msgid "Reconnect" +msgstr "மீண்டும் இணைக்கவும்" + +#: builtin/fstk/ui.lua +msgid "The server has requested a reconnect:" +msgstr "சேவையகம் மீண்டும் இணைக்கக் கோரியுள்ளது:" + +#: builtin/mainmenu/common.lua +msgid "Protocol version mismatch. " +msgstr "நெறிமுறை பதிப்பு பொருந்தாதது. " + +#: builtin/mainmenu/common.lua +msgid "Server enforces protocol version $1. " +msgstr "சேவையகம் நெறிமுறை பதிப்பு $ 1 ஐ செயல்படுத்துகிறது. " + +#: builtin/mainmenu/common.lua +msgid "Server supports protocol versions between $1 and $2. " +msgstr "சேவையகம் $ 1 முதல் $ 2 வரை நெறிமுறை பதிப்புகளை ஆதரிக்கிறது. " + +#: builtin/mainmenu/common.lua +msgid "We only support protocol version $1." +msgstr "நெறிமுறை பதிப்பு $ 1 ஐ மட்டுமே நாங்கள் ஆதரிக்கிறோம்." + +#: builtin/mainmenu/common.lua +msgid "We support protocol versions between version $1 and $2." +msgstr "பதிப்பு $ 1 மற்றும் $ 2 க்கு இடையிலான நெறிமுறை பதிப்புகளை நாங்கள் ஆதரிக்கிறோம்." + +#: builtin/mainmenu/content/contentdb.lua +msgid "Error installing \"$1\": $2" +msgstr "\"$ 1\" ஐ நிறுவுவதில் பிழை: $ 2" + +#: builtin/mainmenu/content/contentdb.lua +msgid "Failed to download \"$1\"" +msgstr "\"$ 1\" ஐ பதிவிறக்கம் செய்யத் தவறிவிட்டது" + +#: builtin/mainmenu/content/contentdb.lua +msgid "Failed to download $1" +msgstr "$ 1 பதிவிறக்கத் தவறிவிட்டது" + +#: builtin/mainmenu/content/contentdb.lua +msgid "" +"Failed to extract \"$1\" (insufficient disk space, unsupported file type or " +"broken archive)" +msgstr "" +"\"$ 1\" (போதிய வட்டு இடம், ஆதரிக்கப்படாத கோப்பு வகை அல்லது உடைந்த காப்பகம்) " +"பிரித்தெடுப்பதில் தோல்வி)" + +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "" +"$1 downloading,\n" +"$2 queued" +msgstr "" +"$ 1 பதிவிறக்கம்,\n" +" $ 2 வரிசையில்" + +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "$1 downloading..." +msgstr "$ 1 பதிவிறக்கம் ..." + +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "All" +msgstr "அனைத்தும்" + +#: builtin/mainmenu/content/dlg_contentdb.lua +#: builtin/mainmenu/content/dlg_package.lua +msgid "Back" +msgstr "பின்" + +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "ContentDB is not available when Luanti was compiled without cURL" +msgstr "லுவாண்டி சுருட்டை இல்லாமல் தொகுக்கப்பட்டபோது ContentDB கிடைக்காது" + +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "Downloading..." +msgstr "பதிவிறக்கம் ..." + +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "Featured" +msgstr "இடம்பெற்றது" + +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "Games" +msgstr "விளையாட்டுகள்" + +#: builtin/mainmenu/content/dlg_contentdb.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_package.lua builtin/mainmenu/serverlistmgr.lua +#: src/client/game.cpp +msgid "Loading..." +msgstr "ஏற்றுகிறது ..." + +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "Mods" +msgstr "மோட்ச்" + +#: builtin/mainmenu/content/dlg_contentdb.lua +#: builtin/mainmenu/content/dlg_package.lua +msgid "No packages could be retrieved" +msgstr "எந்த தொகுப்புகளையும் மீட்டெடுக்க முடியவில்லை" + +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No updates" +msgstr "புதுப்பிப்புகள் இல்லை" + +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "Queued" +msgstr "வரிசையில்" + +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "Texture Packs" +msgstr "அமைப்பு பொதிகள்" + +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "The package $1 was not found." +msgstr "தொகுப்பு $ 1 காணப்படவில்லை." + +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "Update All [$1]" +msgstr "அனைத்தையும் புதுப்பிக்கவும் [$ 1]" + +#: builtin/mainmenu/content/dlg_install.lua +msgid "$1 and $2 dependencies will be installed." +msgstr "$ 1 மற்றும் $ 2 சார்புநிலைகள் நிறுவப்படும்." + +#: builtin/mainmenu/content/dlg_install.lua +msgid "$1 by $2" +msgstr "$ 1 ஆல் $ 2" + +#: builtin/mainmenu/content/dlg_install.lua +msgid "$1 required dependencies could not be found." +msgstr "$ 1 தேவையான சார்புகளை கண்டுபிடிக்க முடியவில்லை." + +#: builtin/mainmenu/content/dlg_install.lua +msgid "$1 will be installed, and $2 dependencies will be skipped." +msgstr "$ 1 நிறுவப்படும், மேலும் $ 2 சார்புநிலைகள் தவிர்க்கப்படும்." + +#: builtin/mainmenu/content/dlg_install.lua +msgid "Already installed" +msgstr "ஏற்கனவே நிறுவப்பட்டுள்ளது" + +#: builtin/mainmenu/content/dlg_install.lua +msgid "Base Game:" +msgstr "தள விளையாட்டு:" + +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua +msgid "Dependencies:" +msgstr "சார்புநிலைகள்:" + +#: builtin/mainmenu/content/dlg_install.lua +msgid "Error getting dependencies for package $1" +msgstr "தொகுப்பு $ 1 க்கான சார்புகளைப் பெறுவது பிழை" + +#: builtin/mainmenu/content/dlg_install.lua +msgid "Install" +msgstr "நிறுவவும்" + +#: builtin/mainmenu/content/dlg_install.lua +msgid "Install $1" +msgstr "நிறுவவும் $ 1" + +#: builtin/mainmenu/content/dlg_install.lua +msgid "Install missing dependencies" +msgstr "காணாமல் போன சார்புகளை நிறுவவும்" + +#: builtin/mainmenu/content/dlg_install.lua +msgid "Not found" +msgstr "கண்டுபிடிக்கப்படவில்லை" + +#: builtin/mainmenu/content/dlg_install.lua +msgid "Please check that the base game is correct." +msgstr "அடிப்படை விளையாட்டு சரியானதா என்பதை சரிபார்க்கவும்." + +#: builtin/mainmenu/content/dlg_install.lua +msgid "You need to install a game before you can install a mod" +msgstr "நீங்கள் ஒரு மோட் நிறுவுவதற்கு முன் ஒரு விளையாட்டை நிறுவ வேண்டும்" + +#: builtin/mainmenu/content/dlg_overwrite.lua +msgid "\"$1\" already exists. Would you like to overwrite it?" +msgstr "\"$ 1\" ஏற்கனவே உள்ளது. அதை மேலெழுத விரும்புகிறீர்களா?" + +#: builtin/mainmenu/content/dlg_overwrite.lua +msgid "Overwrite" +msgstr "மேலெழுதும்" + +#: builtin/mainmenu/content/dlg_package.lua +msgid "ContentDB page" +msgstr "ContentDB பக்கம்" + +#: builtin/mainmenu/content/dlg_package.lua +msgid "Description" +msgstr "விவரம்" + +#: builtin/mainmenu/content/dlg_package.lua +msgid "Donate" +msgstr "நன்கொடை" + +#: builtin/mainmenu/content/dlg_package.lua +msgid "Forum Topic" +msgstr "மன்ற தலைப்பு" + +#: builtin/mainmenu/content/dlg_package.lua +msgid "Information" +msgstr "தகவல்" + +#: builtin/mainmenu/content/dlg_package.lua +msgid "Install [$1]" +msgstr "நிறுவவும் [$ 1]" + +#: builtin/mainmenu/content/dlg_package.lua +msgid "Issue Tracker" +msgstr "வெளியீடு டிராக்கர்" + +#: builtin/mainmenu/content/dlg_package.lua +msgid "Source" +msgstr "மூலம்" + +#: builtin/mainmenu/content/dlg_package.lua +msgid "Translate" +msgstr "மொழிபெயர்த்திடு" + +#: builtin/mainmenu/content/dlg_package.lua builtin/mainmenu/tab_content.lua +msgid "Uninstall" +msgstr "நிறுவல் நீக்க" + +#: builtin/mainmenu/content/dlg_package.lua builtin/mainmenu/tab_content.lua +msgid "Update" +msgstr "புதுப்பிப்பு" + +#: builtin/mainmenu/content/dlg_package.lua +msgid "Website" +msgstr "வலைத்தளம்" + +#: builtin/mainmenu/content/dlg_package.lua +msgid "by $1 — $2 downloads — +$3 / $4 / -$5" +msgstr "$ 1 -$ 2 பதிவிறக்கங்கள் - +$ 3 / $ 4 / -$ 5" + +#: builtin/mainmenu/content/pkgmgr.lua +msgid "$1 (Enabled)" +msgstr "$ 1 (இயக்கப்பட்டது)" + +#: builtin/mainmenu/content/pkgmgr.lua +msgid "$1 mods" +msgstr "$ 1 மோட்ச்" + +#: builtin/mainmenu/content/pkgmgr.lua +msgid "Failed to install $1 to $2" +msgstr "$ 1 முதல் $ 2 வரை நிறுவத் தவறிவிட்டது" + +#: builtin/mainmenu/content/pkgmgr.lua +msgid "Install: Unable to find suitable folder name for $1" +msgstr "நிறுவு: $ 1 க்கு பொருத்தமான கோப்புறை பெயரைக் கண்டுபிடிக்க முடியவில்லை" + +#: builtin/mainmenu/content/pkgmgr.lua +msgid "Unable to find a valid mod, modpack, or game" +msgstr "செல்லுபடியாகும் மோட், மோட்பேக் அல்லது விளையாட்டைக் கண்டுபிடிக்க முடியவில்லை" + +#: builtin/mainmenu/content/pkgmgr.lua +msgid "Unable to install a $1 as a $2" +msgstr "$ 1 ஐ $ 2 ஆக நிறுவ முடியவில்லை" + +#: builtin/mainmenu/content/pkgmgr.lua +msgid "Unable to install a $1 as a texture pack" +msgstr "ஒரு அமைப்பு பொதியாக $ 1 ஐ நிறுவ முடியவில்லை" + +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + +#: builtin/mainmenu/dlg_config_world.lua +msgid "(Enabled, has error)" +msgstr "(இயக்கப்பட்டது, பிழை உள்ளது)" + +#: builtin/mainmenu/dlg_config_world.lua +msgid "(Unsatisfied)" +msgstr "(திருப்தியற்ற)" + +#: builtin/mainmenu/dlg_config_world.lua +msgid "Disable all" +msgstr "அனைத்தையும் முடக்கு" + +#: builtin/mainmenu/dlg_config_world.lua +msgid "Disable modpack" +msgstr "மோட்பேக்கை முடக்கு" + +#: builtin/mainmenu/dlg_config_world.lua +msgid "Enable all" +msgstr "அனைத்தையும் இயக்கு" + +#: builtin/mainmenu/dlg_config_world.lua +msgid "Enable modpack" +msgstr "மோட்பேக்கை இயக்கவும்" + +#: builtin/mainmenu/dlg_config_world.lua +msgid "" +"Failed to enable mod \"$1\" as it contains disallowed characters. Only " +"characters [a-z0-9_] are allowed." +msgstr "" +"மோட் \"$ 1\" ஐ அனுமதிக்காத எழுத்துக்களைக் கொண்டிருப்பதால் இயக்கத் தவறிவிட்டது. [A-" +"Z0-9_] எழுத்துக்கள் மட்டுமே அனுமதிக்கப்படுகின்றன." + +#: builtin/mainmenu/dlg_config_world.lua +msgid "Find More Mods" +msgstr "மேலும் மோட்சைக் கண்டறியவும்" + +#: builtin/mainmenu/dlg_config_world.lua +msgid "Mod:" +msgstr "மோட்:" + +#: builtin/mainmenu/dlg_config_world.lua +msgid "No (optional) dependencies" +msgstr "இல்லை (விரும்பினால்) சார்புகள்" + +#: builtin/mainmenu/dlg_config_world.lua +msgid "No game description provided." +msgstr "விளையாட்டு விளக்கம் எதுவும் வழங்கப்படவில்லை." + +#: builtin/mainmenu/dlg_config_world.lua +msgid "No hard dependencies" +msgstr "கடினமான சார்புநிலைகள் இல்லை" + +#: builtin/mainmenu/dlg_config_world.lua +msgid "No modpack description provided." +msgstr "மோட்பேக் விளக்கம் எதுவும் வழங்கப்படவில்லை." + +#: builtin/mainmenu/dlg_config_world.lua +msgid "No optional dependencies" +msgstr "விருப்ப சார்புநிலைகள் இல்லை" + +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua +msgid "Optional dependencies:" +msgstr "விருப்ப சார்புநிலைகள்:" + +#: builtin/mainmenu/dlg_config_world.lua +msgid "World:" +msgstr "உலகம்:" + +#: builtin/mainmenu/dlg_config_world.lua +msgid "enabled" +msgstr "இயக்கப்பட்டது" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "A world named \"$1\" already exists" +msgstr "\"$ 1\" என்று பெயரிடப்பட்ட ஒரு உலகம் ஏற்கனவே உள்ளது" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Additional terrain" +msgstr "கூடுதல் நிலப்பரப்பு" + +#: builtin/mainmenu/dlg_create_world.lua src/settings_translation_file.cpp +msgid "Altitude chill" +msgstr "உயர குளிர்ச்சியானது" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Altitude dry" +msgstr "உயரம் உலர்ந்த" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Biome blending" +msgstr "பயோம் கலத்தல்" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Biomes" +msgstr "பயோம்கள்" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Caverns" +msgstr "குகைகள்" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Caves" +msgstr "குகைகள்" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Create" +msgstr "உருவாக்கு" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Decorations" +msgstr "அலங்காரங்கள்" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Desert temples" +msgstr "பாலைவன கோயில்கள்" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Development Test is meant for developers." +msgstr "வளர்ச்சி சோதனை என்பது டெவலப்பர்களுக்கானது." + +#: builtin/mainmenu/dlg_create_world.lua +msgid "" +"Different dungeon variant generated in desert biomes (only if dungeons " +"enabled)" +msgstr "" +"பாலைவன பயோம்களில் உருவாக்கப்படும் வெவ்வேறு நிலவறை மாறுபாடு (நிலவறைகள் இயக்கப்பட்டால் " +"மட்டுமே)" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Dungeons" +msgstr "நிலவறைகள்" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Flat terrain" +msgstr "தட்டையான நிலப்பரப்பு" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Floating landmasses in the sky" +msgstr "வானத்தில் மிதக்கும் நிலப்பரப்புகள்" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Floatlands (experimental)" +msgstr "ஃப்ளோட்லேண்ட்ச் (சோதனை)" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Generate non-fractal terrain: Oceans and underground" +msgstr "ஃப்ராக்டல் அல்லாத நிலப்பரப்பை உருவாக்குங்கள்: பெருங்கடல்கள் மற்றும் நிலத்தடி" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Hills" +msgstr "மலைகள்" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Humid rivers" +msgstr "ஈரப்பதமான ஆறுகள்" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Increases humidity around rivers" +msgstr "ஆறுகளைச் சுற்றியுள்ள ஈரப்பதத்தை அதிகரிக்கிறது" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Install another game" +msgstr "மற்றொரு விளையாட்டை நிறுவவும்" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Lakes" +msgstr "ஏரிகள்" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Low humidity and high heat causes shallow or dry rivers" +msgstr "குறைந்த ஈரப்பதம் மற்றும் அதிக வெப்பம் ஆழமற்ற அல்லது வறண்ட ஆறுகளை ஏற்படுத்துகிறது" + +#: builtin/mainmenu/dlg_create_world.lua src/settings_translation_file.cpp +msgid "Mapgen" +msgstr "மேப்சென்" + +#: builtin/mainmenu/dlg_create_world.lua src/settings_translation_file.cpp +msgid "Mapgen flags" +msgstr "மேப்சென் கொடிகள்" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Mapgen-specific flags" +msgstr "மேப்சென்-குறிப்பிட்ட கொடிகள்" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Mountains" +msgstr "மலைகள்" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Mud flow" +msgstr "மண் ஓட்டம்" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Network of tunnels and caves" +msgstr "சுரங்கங்கள் மற்றும் குகைகளின் பிணையம்" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "No game selected" +msgstr "எந்த விளையாட்டும் தேர்ந்தெடுக்கப்படவில்லை" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Reduces heat with altitude" +msgstr "உயரத்துடன் வெப்பத்தை குறைக்கிறது" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Reduces humidity with altitude" +msgstr "உயரத்துடன் ஈரப்பதத்தை குறைக்கிறது" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Rivers" +msgstr "நதிகள்" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Sea level rivers" +msgstr "கடல் மட்ட நதிகள்" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Smooth transition between biomes" +msgstr "பயோம்களுக்கு இடையில் மென்மையான மாற்றம்" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "" +"Structures appearing on the terrain (no effect on trees and jungle grass " +"created by v6)" +msgstr "" +"நிலப்பரப்பில் தோன்றும் கட்டமைப்புகள் (வி 6 ஆல் உருவாக்கப்பட்ட மரங்கள் மற்றும் காட்டில் புல் மீது " +"எந்த விளைவும் இல்லை)" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Structures appearing on the terrain, typically trees and plants" +msgstr "நிலப்பரப்பில் தோன்றும் கட்டமைப்புகள், பொதுவாக மரங்கள் மற்றும் தாவரங்கள்" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Temperate, Desert" +msgstr "மிதமான, பாலைவனம்" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Temperate, Desert, Jungle" +msgstr "மிதமான, பாலைவனம், காடு" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Temperate, Desert, Jungle, Tundra, Taiga" +msgstr "மிதமான, பாலைவனம், காட்டில், டன்ட்ரா, டைகா" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Terrain surface erosion" +msgstr "நிலப்பரப்பு மேற்பரப்பு அரிப்பு" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Trees and jungle grass" +msgstr "மரங்கள் மற்றும் காட்டில் புல்" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Vary river depth" +msgstr "நதி ஆழம் மாறுபடும்" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "Very large caverns deep in the underground" +msgstr "நிலத்தடியில் ஆழமான மிகப் பெரிய குகைகள்" + +#: builtin/mainmenu/dlg_create_world.lua +msgid "World name" +msgstr "உலக பெயர்" + +#: builtin/mainmenu/dlg_delete_content.lua +msgid "Are you sure you want to delete \"$1\"?" +msgstr "\"$ 1\" ஐ நீக்க விரும்புகிறீர்களா?" + +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/tab_local.lua +msgid "Delete" +msgstr "நீக்கு" + +#: builtin/mainmenu/dlg_delete_content.lua +msgid "pkgmgr: failed to delete \"$1\"" +msgstr "பி.கே.சி.எம்.சி.ஆர்: \"$ 1\" ஐ நீக்குவதில் தோல்வி" + +#: builtin/mainmenu/dlg_delete_content.lua +msgid "pkgmgr: invalid path \"$1\"" +msgstr "pkgmgr: தவறான பாதை \"$ 1\"" + +#: builtin/mainmenu/dlg_delete_world.lua +msgid "Delete World \"$1\"?" +msgstr "உலக \"$ 1\" ஐ நீக்கவா?" + +#: builtin/mainmenu/dlg_register.lua src/gui/guiPasswordChange.cpp +msgid "Confirm Password" +msgstr "கடவுச்சொல்லை உறுதிப்படுத்தவும்" + +#: builtin/mainmenu/dlg_register.lua +msgid "Joining $1" +msgstr "இணைகிறது $ 1" + +#: builtin/mainmenu/dlg_register.lua +msgid "Missing name" +msgstr "பெயர் இல்லை" + +#: builtin/mainmenu/dlg_register.lua builtin/mainmenu/tab_local.lua +#: builtin/mainmenu/tab_online.lua +msgid "Name" +msgstr "பெயர்" + +#: builtin/mainmenu/dlg_register.lua builtin/mainmenu/tab_local.lua +#: builtin/mainmenu/tab_online.lua +msgid "Password" +msgstr "கடவுச்சொல்" + +#: builtin/mainmenu/dlg_register.lua +msgid "Passwords do not match" +msgstr "கடவுச்சொற்கள் பொருந்தவில்லை" + +#: builtin/mainmenu/dlg_register.lua builtin/mainmenu/tab_online.lua +msgid "Register" +msgstr "பதிவு செய்யுங்கள்" + +#: builtin/mainmenu/dlg_reinstall_mtg.lua +msgid "Dismiss" +msgstr "தள்ளுபடி" + +#: builtin/mainmenu/dlg_reinstall_mtg.lua +msgid "" +"For a long time, Luanti shipped with a default game called \"Minetest " +"Game\". Since version 5.8.0, Luanti ships without a default game." +msgstr "" +"நீண்ட காலமாக, லுவாண்டி \"மின்டெச்ட் கேம்\" என்று அழைக்கப்படும் இயல்புநிலை விளையாட்டை " +"அனுப்பினார். பதிப்பு 5.8.0 முதல், இயல்புநிலை விளையாட்டு இல்லாமல் லுவாண்டி அனுப்புகிறார்." + +#: builtin/mainmenu/dlg_reinstall_mtg.lua +msgid "" +"If you want to continue playing in your Minetest Game worlds, you need to " +"reinstall Minetest Game." +msgstr "" +"உங்கள் மின்தேச்ட் கேம் வேர்ல்ட்சில் நீங்கள் தொடர்ந்து விளையாட விரும்பினால், நீங்கள் மினிட்டெச்ட் " +"விளையாட்டை மீண்டும் நிறுவ வேண்டும்." + +#: builtin/mainmenu/dlg_reinstall_mtg.lua +msgid "Minetest Game is no longer installed by default" +msgstr "மின்டெச்ட் விளையாட்டு இனி இயல்புநிலையாக நிறுவப்படவில்லை" + +#: builtin/mainmenu/dlg_reinstall_mtg.lua +msgid "Reinstall Minetest Game" +msgstr "மின்டெச்ட் விளையாட்டை மீண்டும் நிறுவவும்" + +#: builtin/mainmenu/dlg_rename_modpack.lua +msgid "Accept" +msgstr "ஏற்றுக்கொள்" + +#: builtin/mainmenu/dlg_rename_modpack.lua +msgid "Rename Modpack:" +msgstr "மோட்பேக் மறுபெயரிடுதல்:" + +#: builtin/mainmenu/dlg_rename_modpack.lua +msgid "" +"This modpack has an explicit name given in its modpack.conf which will " +"override any renaming here." +msgstr "" +"இந்த மோட்பேக்கில் அதன் modpack.conf இல் கொடுக்கப்பட்ட வெளிப்படையான பெயரைக் கொண்டுள்ளது, " +"இது இங்கே எந்த மறுபெயரிடலையும் மீறும்." + +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "அனைத்தையும் இயக்கு" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_version_info.lua +msgid "A new $1 version is available" +msgstr "புதிய $ 1 பதிப்பு கிடைக்கிறது" + +#: builtin/mainmenu/dlg_version_info.lua +msgid "" +"Installed version: $1\n" +"New version: $2\n" +"Visit $3 to find out how to get the newest version and stay up to date with " +"features and bugfixes." +msgstr "" +"நிறுவப்பட்ட பதிப்பு: $ 1\n" +" புதிய பதிப்பு: $ 2\n" +" புதிய பதிப்பை எவ்வாறு பெறுவது என்பதை அறிய $ 3 ஐப் பார்வையிடவும், நற்பொருத்தங்கள் " +"மற்றும் பிழைத்திருத்தங்களுடன் புதுப்பித்த நிலையில் இருக்கவும்." + +#: builtin/mainmenu/dlg_version_info.lua +msgid "Later" +msgstr "பின்னர்" + +#: builtin/mainmenu/dlg_version_info.lua +msgid "Never" +msgstr "ஒருபோதும்" + +#: builtin/mainmenu/dlg_version_info.lua +msgid "Visit website" +msgstr "வலைத்தளத்தைப் பார்வையிடவும்" + +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp +msgid "Settings" +msgstr "அமைப்புகள்" + +#: builtin/mainmenu/serverlistmgr.lua +msgid "Public server list is disabled" +msgstr "பொது சேவையக பட்டியல் முடக்கப்பட்டுள்ளது" + +#: builtin/mainmenu/serverlistmgr.lua +msgid "Try reenabling public serverlist and check your internet connection." +msgstr "" +"பொது சேவையக பட்டியலை மீண்டும் இயக்க முயற்சிக்கவும், உங்கள் இணைய இணைப்பை சரிபார்க்கவும்." + +#: builtin/mainmenu/tab_about.lua +msgid "About" +msgstr "பற்றி" + +#: builtin/mainmenu/tab_about.lua +msgid "Active Contributors" +msgstr "செயலில் பங்களிப்பாளர்கள்" + +#: builtin/mainmenu/tab_about.lua +msgid "Active renderer:" +msgstr "ஆக்டிவ் ரெண்டரர்:" + +#: builtin/mainmenu/tab_about.lua +msgid "Core Developers" +msgstr "கோர் உருவாக்குபவர்கள்" + +#: builtin/mainmenu/tab_about.lua +msgid "Core Team" +msgstr "மைய அணி" + +#: builtin/mainmenu/tab_about.lua +msgid "Open User Data Directory" +msgstr "பயனர் தரவு கோப்பகத்தைத் திறக்கவும்" + +#: builtin/mainmenu/tab_about.lua +msgid "" +"Opens the directory that contains user-provided worlds, games, mods,\n" +"and texture packs in a file manager / explorer." +msgstr "" +"பயனர் வழங்கிய உலகங்கள், விளையாட்டுகள், மோட்ச், ஆகியவற்றைக் கொண்ட கோப்பகத்தைத் திறக்கிறது\n" +" மற்றும் ஒரு கோப்பு மேலாளர் / எக்ச்ப்ளோரரில் அமைப்பு பொதிகள்." + +#: builtin/mainmenu/tab_about.lua +msgid "Previous Contributors" +msgstr "முந்தைய பங்களிப்பாளர்கள்" + +#: builtin/mainmenu/tab_about.lua +msgid "Previous Core Developers" +msgstr "முந்தைய கோர் உருவாக்குபவர்கள்" + +#: builtin/mainmenu/tab_about.lua +msgid "Share debug log" +msgstr "பிழைத்திருத்த பதிவைப் பகிரவும்" + +#: builtin/mainmenu/tab_content.lua +msgid "Browse online content" +msgstr "நிகழ்நிலை உள்ளடக்கத்தை உலாவுக" + +#: builtin/mainmenu/tab_content.lua +msgid "Browse online content [$1]" +msgstr "நிகழ்நிலை உள்ளடக்கத்தை உலாவுக [$ 1]" + +#: builtin/mainmenu/tab_content.lua +msgid "Content" +msgstr "உள்ளடக்கம்" + +#: builtin/mainmenu/tab_content.lua +msgid "Content [$1]" +msgstr "உள்ளடக்கம் [$ 1]" + +#: builtin/mainmenu/tab_content.lua +msgid "Disable Texture Pack" +msgstr "அமைப்பு பேக்கை முடக்கு" + +#: builtin/mainmenu/tab_content.lua +msgid "Installed Packages:" +msgstr "நிறுவப்பட்ட தொகுப்புகள்:" + +#: builtin/mainmenu/tab_content.lua +msgid "No dependencies." +msgstr "சார்பு இல்லை." + +#: builtin/mainmenu/tab_content.lua +msgid "No package description available" +msgstr "தொகுப்பு விளக்கம் எதுவும் கிடைக்கவில்லை" + +#: builtin/mainmenu/tab_content.lua +msgid "Rename" +msgstr "மறுபெயரிடுங்கள்" + +#: builtin/mainmenu/tab_content.lua +msgid "Update available?" +msgstr "புதுப்பிப்பு கிடைக்குமா?" + +#: builtin/mainmenu/tab_content.lua +msgid "Use Texture Pack" +msgstr "அமைப்பு பேக் பயன்படுத்தவும்" + +#: builtin/mainmenu/tab_local.lua +msgid "Announce Server" +msgstr "சேவையகத்தை அறிவிக்கவும்" + +#: builtin/mainmenu/tab_local.lua +msgid "Bind Address" +msgstr "முகவரியை பிணைக்கவும்" + +#: builtin/mainmenu/tab_local.lua +msgid "Creative Mode" +msgstr "படைப்பு முறை" + +#: builtin/mainmenu/tab_local.lua +msgid "Enable Damage" +msgstr "சேதத்தை இயக்கவும்" + +#: builtin/mainmenu/tab_local.lua +msgid "Host Game" +msgstr "புரவலன் விளையாட்டு" + +#: builtin/mainmenu/tab_local.lua +msgid "Host Server" +msgstr "புரவலன் சேவையகம்" + +#: builtin/mainmenu/tab_local.lua +msgid "Install a game" +msgstr "ஒரு விளையாட்டை நிறுவவும்" + +#: builtin/mainmenu/tab_local.lua +msgid "Install games from ContentDB" +msgstr "ContentDB இலிருந்து கேம்களை நிறுவவும்" + +#: builtin/mainmenu/tab_local.lua +msgid "Luanti doesn't come with a game by default." +msgstr "முன்னிருப்பாக லுவாண்டி ஒரு விளையாட்டுடன் வரவில்லை." + +#: builtin/mainmenu/tab_local.lua +msgid "" +"Luanti is a game-creation platform that allows you to play many different " +"games." +msgstr "" +"லுவாண்டி என்பது ஒரு விளையாட்டு உருவாக்கும் தளமாகும், இது பல வித்தியாசமான " +"விளையாட்டுகளை விளையாட உங்களை அனுமதிக்கிறது." + +#: builtin/mainmenu/tab_local.lua +msgid "New" +msgstr "புதிய" + +#: builtin/mainmenu/tab_local.lua +msgid "No world created or selected!" +msgstr "எந்த உலகமும் உருவாக்கப்படவில்லை அல்லது தேர்ந்தெடுக்கப்படவில்லை!" + +#: builtin/mainmenu/tab_local.lua +msgid "Play Game" +msgstr "விளையாட்டு விளையாடுங்கள்" + +#: builtin/mainmenu/tab_local.lua builtin/mainmenu/tab_online.lua +msgid "Port" +msgstr "துறைமுகம்" + +#: builtin/mainmenu/tab_local.lua +msgid "Select Mods" +msgstr "மோட்சைத் தேர்ந்தெடுக்கவும்" + +#: builtin/mainmenu/tab_local.lua +msgid "Select World:" +msgstr "உலகத்தைத் தேர்ந்தெடுக்கவும்:" + +#: builtin/mainmenu/tab_local.lua +msgid "Server Port" +msgstr "சேவையக துறைமுகம்" + +#: builtin/mainmenu/tab_local.lua +msgid "Start Game" +msgstr "விளையாட்டைத் தொடங்கவும்" + +#: builtin/mainmenu/tab_local.lua +msgid "You need to install a game before you can create a world." +msgstr "நீங்கள் ஒரு உலகத்தை உருவாக்குவதற்கு முன்பு ஒரு விளையாட்டை நிறுவ வேண்டும்." + +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "பிடித்ததை அகற்று" + +#: builtin/mainmenu/tab_online.lua +msgid "Address" +msgstr "முகவரி" + +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "கிளீன்" + +#: builtin/mainmenu/tab_online.lua +msgid "Creative mode" +msgstr "படைப்பு முறை" + +#. ~ PvP = Player versus Player +#: builtin/mainmenu/tab_online.lua +msgid "Damage / PvP" +msgstr "சேதம் / பி.வி.பி." + +#: builtin/mainmenu/tab_online.lua +msgid "Favorites" +msgstr "பிடித்தவை" + +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "விளையாட்டுகள்" + +#: builtin/mainmenu/tab_online.lua +msgid "Incompatible Servers" +msgstr "பொருந்தாத சேவையகங்கள்" + +#: builtin/mainmenu/tab_online.lua +msgid "Join Game" +msgstr "விளையாட்டில் சேரவும்" + +#: builtin/mainmenu/tab_online.lua +msgid "Login" +msgstr "புகுபதிவு" + +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Number of mods: $1" +msgstr "வெளிப்படும் நூல்களின் எண்ணிக்கை" + +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Open server website" +msgstr "அர்ப்பணிக்கப்பட்ட சேவையக படி" + +#: builtin/mainmenu/tab_online.lua +msgid "Ping" +msgstr "பிங்" + +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +msgid "Public Servers" +msgstr "பொது சேவையகங்கள்" + +#: builtin/mainmenu/tab_online.lua +msgid "Refresh" +msgstr "புதுப்பிப்பு" + +#: builtin/mainmenu/tab_online.lua +msgid "Remove favorite" +msgstr "பிடித்ததை அகற்று" + +#: builtin/mainmenu/tab_online.lua +msgid "Server Description" +msgstr "சேவையக விளக்கம்" + +#: src/client/client.cpp +msgid "Connection aborted (protocol error?)." +msgstr "இணைப்பு கைவிடப்பட்டது (நெறிமுறை பிழை?)." + +#: src/client/client.cpp src/client/game.cpp +msgid "Connection timed out." +msgstr "இணைப்பு நேரம் முடிந்தது." + +#: src/client/client.cpp +msgid "Done!" +msgstr "முடிந்தது!" + +#: src/client/client.cpp +msgid "Initializing nodes" +msgstr "முனைகளைத் தொடங்குதல்" + +#: src/client/client.cpp +msgid "Initializing nodes..." +msgstr "முனைகளைத் தொடங்குதல் ..." + +#: src/client/client.cpp +msgid "Loading textures..." +msgstr "அமைப்புகளை ஏற்றுகிறது ..." + +#: src/client/client.cpp +msgid "Rebuilding shaders..." +msgstr "சேடர்களை மீண்டும் உருவாக்குதல் ..." + +#: src/client/clientlauncher.cpp +msgid "Could not find or load game: " +msgstr "விளையாட்டைக் கண்டுபிடிக்கவோ ஏற்றவோ முடியவில்லை: " + +#: src/client/clientlauncher.cpp +msgid "Main Menu" +msgstr "பட்டியல் விளையாடுங்கள்" + +#: src/client/clientlauncher.cpp +msgid "No world selected and no address provided. Nothing to do." +msgstr "" +"எந்த உலகமும் தேர்ந்தெடுக்கப்படவில்லை, முகவரி எதுவும் வழங்கப்படவில்லை. செய்ய எதுவும் இல்லை." + +#: src/client/clientlauncher.cpp +msgid "Player name too long." +msgstr "வீரர் பெயர் மிக நீளமானது." + +#: src/client/clientlauncher.cpp +msgid "Please choose a name!" +msgstr "தயவுசெய்து ஒரு பெயரைத் தேர்வுசெய்க!" + +#: src/client/clientlauncher.cpp +msgid "Provided password file failed to open: " +msgstr "வழங்கப்பட்ட கடவுச்சொல் கோப்பு திறக்கத் தவறிவிட்டது: " + +#: src/client/clientlauncher.cpp +msgid "Provided world path doesn't exist: " +msgstr "வழங்கப்பட்ட உலக பாதை இல்லை: " + +#: src/client/clientmedia.cpp src/client/game.cpp +msgid "Media..." +msgstr "ஊடகங்கள் ..." + +#: src/client/game.cpp src/client/shader.cpp src/server.cpp +msgid "" +"\n" +"Check debug.txt for details." +msgstr "" +"\n" +"விவரங்களுக்கு பிழைத்திருத்தத்தை சரிபார்க்கவும்." + +#: src/client/game.cpp +msgid "A serialization error occurred:" +msgstr "ஒரு சீரியலைசேசன் பிழை ஏற்பட்டது:" + +#: src/client/game.cpp +#, c-format +msgid "Access denied. Reason: %s" +msgstr "அணுகல் மறுக்கப்பட்டது. காரணம்: %s" + +#: src/client/game.cpp +#, fuzzy +msgid "All debug info hidden" +msgstr "பிழைத்திருத்த செய்தி காட்டப்பட்டுள்ளது" + +#: src/client/game.cpp +msgid "Automatic forward disabled" +msgstr "தானியங்கி முன்னோக்கி முடக்கப்பட்டது" + +#: src/client/game.cpp +msgid "Automatic forward enabled" +msgstr "தானியங்கி முன்னோக்கி இயக்கப்பட்டது" + +#: src/client/game.cpp +msgid "Block bounds hidden" +msgstr "தொகுதி வரம்புகள் மறைக்கப்பட்டுள்ளன" + +#: src/client/game.cpp +msgid "Block bounds shown for current block" +msgstr "தற்போதைய தொகுதிக்கு காட்டப்பட்டுள்ள தொகுதி வரம்புகள்" + +#: src/client/game.cpp +msgid "Block bounds shown for nearby blocks" +msgstr "அருகிலுள்ள தொகுதிகளுக்கு காட்டப்பட்டுள்ள தொகுதி வரம்புகள்" + +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + +#: src/client/game.cpp +msgid "Camera update disabled" +msgstr "கேமரா புதுப்பிப்பு முடக்கப்பட்டுள்ளது" + +#: src/client/game.cpp +msgid "Camera update enabled" +msgstr "கேமரா புதுப்பிப்பு இயக்கப்பட்டது" + +#: src/client/game.cpp +msgid "Can't show block bounds (disabled by game or mod)" +msgstr "" +"தொகுதி வரம்புகளைக் காட்ட முடியாது (விளையாட்டு அல்லது மோட் மூலம் முடக்கப்பட்டுள்ளது)" + +#: src/client/game.cpp +msgid "Cinematic mode disabled" +msgstr "சினிமா பயன்முறை முடக்கப்பட்டுள்ளது" + +#: src/client/game.cpp +msgid "Cinematic mode enabled" +msgstr "சினிமா பயன்முறை இயக்கப்பட்டது" + +#: src/client/game.cpp +msgid "Client disconnected" +msgstr "வாங்கி துண்டிக்கப்பட்டது" + +#: src/client/game.cpp +msgid "Client side scripting is disabled" +msgstr "கிளையன்ட் பக்க ச்கிரிப்டிங் முடக்கப்பட்டுள்ளது" + +#: src/client/game.cpp +msgid "Connecting to server..." +msgstr "சேவையகத்துடன் இணைக்கிறது ..." + +#: src/client/game.cpp +msgid "Connection error (timed out?)" +msgstr "இணைப்பு பிழை (நேரம் முடிந்தது?)" + +#: src/client/game.cpp +msgid "Connection failed for unknown reason" +msgstr "அறியப்படாத காரணத்திற்காக இணைப்பு தோல்வியடைந்தது" + +#: src/client/game.cpp +#, c-format +msgid "Couldn't resolve address: %s" +msgstr "முகவரியைத் தீர்க்க முடியவில்லை: %s" + +#: src/client/game.cpp +msgid "Creating client..." +msgstr "கிளையண்டை உருவாக்குதல் ..." + +#: src/client/game.cpp +msgid "Creating server..." +msgstr "சேவையகத்தை உருவாக்குதல் ..." + +#: src/client/game.cpp +msgid "Debug info shown" +msgstr "பிழைத்திருத்த செய்தி காட்டப்பட்டுள்ளது" + +#: src/client/game.cpp +#, c-format +msgid "Error creating client: %s" +msgstr "கிளையண்டை உருவாக்கும் பிழை: %s" + +#: src/client/game.cpp +msgid "Fast mode disabled" +msgstr "வேகமான பயன்முறை முடக்கப்பட்டுள்ளது" + +#: src/client/game.cpp +msgid "Fast mode enabled" +msgstr "வேகமான பயன்முறை இயக்கப்பட்டது" + +#: src/client/game.cpp +msgid "Fast mode enabled (note: no 'fast' privilege)" +msgstr "வேகமான பயன்முறை இயக்கப்பட்டது (குறிப்பு: 'வேகமான' சலுகை இல்லை)" + +#: src/client/game.cpp +msgid "Fly mode disabled" +msgstr "பறக்க பயன்முறை முடக்கப்பட்டது" + +#: src/client/game.cpp +msgid "Fly mode enabled" +msgstr "பறக்க பயன்முறை இயக்கப்பட்டது" + +#: src/client/game.cpp +msgid "Fly mode enabled (note: no 'fly' privilege)" +msgstr "பறக்க பயன்முறை இயக்கப்பட்டது (குறிப்பு: 'பறக்க' சலுகை இல்லை)" + +#: src/client/game.cpp +msgid "Fog disabled" +msgstr "மூடுபனி முடக்கப்பட்டது" + +#: src/client/game.cpp +msgid "Fog enabled" +msgstr "மூடுபனி இயக்கப்பட்டது" + +#: src/client/game.cpp +msgid "Fog enabled by game or mod" +msgstr "விளையாட்டு அல்லது மோட் மூலம் மூடுபனி இயக்கப்பட்டது" + +#: src/client/game.cpp +msgid "Item definitions..." +msgstr "உருப்படி வரையறைகள் ..." + +#: src/client/game.cpp +msgid "KiB/s" +msgstr "கிப் / கள்" + +#: src/client/game.cpp +msgid "MiB/s" +msgstr "Mib/s" + +#: src/client/game.cpp +msgid "Minimap currently disabled by game or mod" +msgstr "மினிமாப் தற்போது விளையாட்டு அல்லது மோட் மூலம் முடக்கப்பட்டுள்ளது" + +#: src/client/game.cpp +msgid "Multiplayer" +msgstr "மல்டிபிளேயர்" + +#: src/client/game.cpp +msgid "Noclip mode disabled" +msgstr "NOCLIP பயன்முறை முடக்கப்பட்டுள்ளது" + +#: src/client/game.cpp +msgid "Noclip mode enabled" +msgstr "NOCLIP பயன்முறை இயக்கப்பட்டது" + +#: src/client/game.cpp +msgid "Noclip mode enabled (note: no 'noclip' privilege)" +msgstr "NOCLIP பயன்முறை இயக்கப்பட்டது (குறிப்பு: 'noclip' சலுகை இல்லை)" + +#: src/client/game.cpp +msgid "Node definitions..." +msgstr "முனை வரையறைகள் ..." + +#: src/client/game.cpp +msgid "Pitch move mode disabled" +msgstr "சுருதி நகர்வு பயன்முறை முடக்கப்பட்டுள்ளது" + +#: src/client/game.cpp +msgid "Pitch move mode enabled" +msgstr "சுருதி நகர்வு பயன்முறை இயக்கப்பட்டது" + +#: src/client/game.cpp +msgid "Profiler graph shown" +msgstr "சுயவிவர வரைபடம் காட்டப்பட்டுள்ளது" + +#: src/client/game.cpp +msgid "Resolving address..." +msgstr "முகவரி தீர்க்கும் ..." + +#: src/client/game.cpp +msgid "Shutting down..." +msgstr "மூடுவது ..." + +#: src/client/game.cpp src/client/game_formspec.cpp +msgid "Singleplayer" +msgstr "ஒற்றை வீரர்" + +#: src/client/game.cpp +msgid "Sound muted" +msgstr "ஒலி முடக்கியது" + +#: src/client/game.cpp +msgid "Sound system is not supported on this build" +msgstr "இந்த கட்டமைப்பில் ஒலி அமைப்பு ஆதரிக்கப்படவில்லை" + +#: src/client/game.cpp +msgid "Sound unmuted" +msgstr "ஒலிக்காத ஒலி" + +#: src/client/game.cpp +#, c-format +msgid "The server is probably running a different version of %s." +msgstr "சேவையகம் %s இன் வேறுபட்ட பதிப்பை இயக்குகிறது." + +#: src/client/game.cpp +#, c-format +msgid "Unable to connect to %s because IPv6 is disabled" +msgstr "IPv6 முடக்கப்பட்டுள்ளதால் %s உடன் இணைக்க முடியவில்லை" + +#: src/client/game.cpp +#, c-format +msgid "Unable to listen on %s because IPv6 is disabled" +msgstr "ஐபிவி 6 முடக்கப்பட்டுள்ளதால் %s கேட்க முடியவில்லை" + +#: src/client/game.cpp +msgid "Unlimited viewing range disabled" +msgstr "வரம்பற்ற பார்வை வரம்பு முடக்கப்பட்டது" + +#: src/client/game.cpp +msgid "Unlimited viewing range enabled" +msgstr "வரம்பற்ற பார்வை வரம்பு இயக்கப்பட்டது" + +#: src/client/game.cpp +msgid "Unlimited viewing range enabled, but forbidden by game or mod" +msgstr "" +"வரம்பற்ற பார்வை வரம்பு இயக்கப்பட்டது, ஆனால் விளையாட்டு அல்லது மோட் மூலம் தடைசெய்யப்பட்டுள்ளது" + +#: src/client/game.cpp +#, c-format +msgid "Viewing changed to %d (the minimum)" +msgstr "பார்வை %d ஆக மாற்றப்பட்டது (குறைந்தபட்சம்)" + +#: src/client/game.cpp +#, c-format +msgid "Viewing changed to %d (the minimum), but limited to %d by game or mod" +msgstr "" +"பார்ப்பது %d (குறைந்தபட்சம்) ஆக மாற்றப்பட்டது, ஆனால் விளையாட்டு அல்லது மோட் மூலம் %d க்கு " +"மட்டுப்படுத்தப்பட்டது" + +#: src/client/game.cpp +#, c-format +msgid "Viewing range changed to %d" +msgstr "பார்க்கும் வரம்பு %d ஆக மாற்றப்பட்டது" + +#: src/client/game.cpp +#, c-format +msgid "Viewing range changed to %d (the maximum)" +msgstr "பார்க்கும் வரம்பு %d ஆக மாற்றப்பட்டது (அதிகபட்சம்)" + +#: src/client/game.cpp +#, c-format +msgid "" +"Viewing range changed to %d (the maximum), but limited to %d by game or mod" +msgstr "" +"பார்க்கும் வரம்பு %d (அதிகபட்சம்) ஆக மாற்றப்பட்டது, ஆனால் விளையாட்டு அல்லது மோட் மூலம் %d " +"க்கு மட்டுப்படுத்தப்பட்டது" + +#: src/client/game.cpp +#, c-format +msgid "Viewing range changed to %d, but limited to %d by game or mod" +msgstr "" +"பார்க்கும் வரம்பு %d ஆக மாற்றப்பட்டது, ஆனால் விளையாட்டு அல்லது மோட் மூலம் %d க்கு மட்டுமே" + +#: src/client/game.cpp +#, c-format +msgid "Volume changed to %d%%" +msgstr "தொகுதி%d %% ஆக மாற்றப்பட்டது" + +#: src/client/game.cpp +#, fuzzy +msgid "Wireframe not supported by video driver" +msgstr "சேடர்கள் இயக்கப்பட்டன, ஆனால் சி.எல்.எச்.எல் இயக்கி ஆதரிக்கவில்லை." + +#: src/client/game.cpp +msgid "Wireframe shown" +msgstr "வயர்ஃப்ரேம் காட்டப்பட்டுள்ளது" + +#: src/client/game.cpp +msgid "Zoom currently disabled by game or mod" +msgstr "சூம் தற்போது விளையாட்டு அல்லது மோட் மூலம் முடக்கப்பட்டுள்ளது" + +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "- பயன்முறை: " + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "- பொது: " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "- பி.வி.பி: " + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "- சேவையக பெயர்: " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "கடவுச்சொல்லை மாற்றவும்" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "தொடரவும்" + +#: src/client/game_formspec.cpp +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" +"கட்டுப்பாடுகள்:\n" +" பட்டியல் திறக்கப்படவில்லை:\n" +" - விரல் ச்லைடு: சுற்றிப் பாருங்கள்\n" +" - தட்டவும்: இடம்/பஞ்ச்/பயன்பாடு (இயல்புநிலை)\n" +" - நீண்ட குழாய்: தோண்டி/பயன்படுத்தவும் (இயல்புநிலை)\n" +" மெனு/சரக்கு திறந்திருக்கும்:\n" +" - இரட்டை தட்டு (வெளியே):\n" +" -> மூடு\n" +" - டச் அடுக்கு, டச் ச்லாட்:\n" +" -> அடுக்கை நகர்த்தவும்\n" +" - தொட்டு இழுக்கவும், 2 வது விரலைத் தட்டவும்\n" +" -> ஒற்றை உருப்படியை ச்லாட்டுக்கு வைக்கவும்\n" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "மெனுவுக்கு வெளியேறவும்" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "OS க்கு வெளியேறு" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "விளையாட்டு தகவல்:" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "விளையாட்டு இடைநிறுத்தப்பட்டது" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "ஓச்டிங் சேவையகம்" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "அணை" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "ஆன்" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "தொலை சேவையகம்" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "ரெச்பான்" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "ஒலி தொகுதி" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "நீங்கள் இறந்துவிட்டீர்கள்" + +#: src/client/gameui.cpp +msgid "Chat currently disabled by game or mod" +msgstr "விளையாட்டு அல்லது மோட் மூலம் தற்போது முடக்கப்பட்டுள்ளது" + +#: src/client/gameui.cpp +msgid "Chat hidden" +msgstr "அரட்டை மறைக்கப்பட்டுள்ளது" + +#: src/client/gameui.cpp +msgid "Chat shown" +msgstr "அரட்டை காட்டப்பட்டுள்ளது" + +#: src/client/gameui.cpp +msgid "HUD hidden" +msgstr "HUD மறைக்கப்பட்டுள்ளது" + +#: src/client/gameui.cpp +msgid "HUD shown" +msgstr "HUD காட்டப்பட்டுள்ளது" + +#: src/client/gameui.cpp +msgid "Profiler hidden" +msgstr "விவரக்குறிப்பு மறைக்கப்பட்டுள்ளது" + +#: src/client/gameui.cpp +#, c-format +msgid "Profiler shown (page %d of %d)" +msgstr "சுயவிவரக் காட்டப்பட்டுள்ளது ( %d இன் பக்கம் %d)" + +#: src/client/keycode.cpp +msgid "Apps" +msgstr "பயன்பாடுகள்" + +#: src/client/keycode.cpp +msgid "Backspace" +msgstr "பேக்ச்பேச்" + +#. ~ Usually paired with the Pause key +#: src/client/keycode.cpp +msgid "Break Key" +msgstr "உடைக்கும் விசை" + +#: src/client/keycode.cpp +msgid "Caps Lock" +msgstr "தொப்பிகள் பூட்டு" + +#: src/client/keycode.cpp +msgid "Clear Key" +msgstr "தெளிவான விசை" + +#: src/client/keycode.cpp +msgid "Control Key" +msgstr "கட்டுப்பாட்டு விசை" + +#: src/client/keycode.cpp +msgid "Delete Key" +msgstr "விசையை நீக்கு" + +#: src/client/keycode.cpp +msgid "Down Arrow" +msgstr "கீழ் அம்பு" + +#: src/client/keycode.cpp +msgid "End" +msgstr "முடிவு" + +#: src/client/keycode.cpp +msgid "Erase EOF" +msgstr "EOF ஐ அழிக்கவும்" + +#: src/client/keycode.cpp +msgid "Execute" +msgstr "செயல்படுத்தவும்" + +#: src/client/keycode.cpp +msgid "Help" +msgstr "உதவி" + +#: src/client/keycode.cpp +msgid "Home" +msgstr "வீடு" + +#: src/client/keycode.cpp +msgid "IME Accept" +msgstr "Ime ஏற்றுக்கொள்ளுங்கள்" + +#: src/client/keycode.cpp +msgid "IME Convert" +msgstr "IME மாற்ற" + +#: src/client/keycode.cpp +msgid "IME Escape" +msgstr "எச்பேப் செய்ய" + +#: src/client/keycode.cpp +msgid "IME Mode Change" +msgstr "IME பயன்முறை மாற்றம்" + +#: src/client/keycode.cpp +msgid "IME Nonconvert" +msgstr "Ime non convert" + +#: src/client/keycode.cpp +msgid "Insert" +msgstr "செருகவும்" + +#: src/client/keycode.cpp +msgid "Left Arrow" +msgstr "இடது அம்பு" + +#: src/client/keycode.cpp +msgid "Left Button" +msgstr "இடது பொத்தான்" + +#: src/client/keycode.cpp +msgid "Left Control" +msgstr "இடது கட்டுப்பாடு" + +#: src/client/keycode.cpp +msgid "Left Menu" +msgstr "இடது பட்டியல்" + +#: src/client/keycode.cpp +msgid "Left Shift" +msgstr "இடது மாற்றம்" + +#: src/client/keycode.cpp +msgid "Left Windows" +msgstr "இடது சன்னல்கள்" + +#. ~ Key name, common on Windows keyboards +#: src/client/keycode.cpp +msgid "Menu Key" +msgstr "பட்டி விசை" + +#: src/client/keycode.cpp +msgid "Middle Button" +msgstr "நடுத்தர பொத்தான்" + +#: src/client/keycode.cpp +msgid "Num Lock" +msgstr "எண் பூட்டு" + +#: src/client/keycode.cpp +msgid "Numpad *" +msgstr "Numbad *" + +#: src/client/keycode.cpp +msgid "Numpad +" +msgstr "எண்பலகை +" + +#: src/client/keycode.cpp +msgid "Numpad -" +msgstr "எண் -" + +#: src/client/keycode.cpp +msgid "Numpad ." +msgstr "Numpad." + +#: src/client/keycode.cpp +msgid "Numpad /" +msgstr "நம்பர் /" + +#: src/client/keycode.cpp +msgid "Numpad 0" +msgstr "நம்பட் 0" + +#: src/client/keycode.cpp +msgid "Numpad 1" +msgstr "நம்பட் 1" + +#: src/client/keycode.cpp +msgid "Numpad 2" +msgstr "நம்பட் 2" + +#: src/client/keycode.cpp +msgid "Numpad 3" +msgstr "நம்பட் 3" + +#: src/client/keycode.cpp +msgid "Numpad 4" +msgstr "நம்பட் 4" + +#: src/client/keycode.cpp +msgid "Numpad 5" +msgstr "நம்பட் 5" + +#: src/client/keycode.cpp +msgid "Numpad 6" +msgstr "நம்பட் 6" + +#: src/client/keycode.cpp +msgid "Numpad 7" +msgstr "நம்பட் 7" + +#: src/client/keycode.cpp +msgid "Numpad 8" +msgstr "நம்பட் 8" + +#: src/client/keycode.cpp +msgid "Numpad 9" +msgstr "நம்பட் 9" + +#: src/client/keycode.cpp +msgid "OEM Clear" +msgstr "ஒஇஎம் தெளிவாக" + +#: src/client/keycode.cpp +msgid "Page Down" +msgstr "பக்கம் கீழே" + +#: src/client/keycode.cpp +msgid "Page Up" +msgstr "பக்கம்" + +#. ~ Usually paired with the Break key +#: src/client/keycode.cpp +msgid "Pause Key" +msgstr "இடைநிறுத்த விசை" + +#: src/client/keycode.cpp +msgid "Play" +msgstr "விளையாடுங்கள்" + +#. ~ "Print screen" key +#: src/client/keycode.cpp +msgid "Print" +msgstr "அச்சிடுக" + +#: src/client/keycode.cpp +msgid "Return Key" +msgstr "திரும்ப விசை" + +#: src/client/keycode.cpp +msgid "Right Arrow" +msgstr "வலது அம்பு" + +#: src/client/keycode.cpp +msgid "Right Button" +msgstr "வலது பொத்தான்" + +#: src/client/keycode.cpp +msgid "Right Control" +msgstr "சரியான கட்டுப்பாடு" + +#: src/client/keycode.cpp +msgid "Right Menu" +msgstr "வலது பட்டியல்" + +#: src/client/keycode.cpp +msgid "Right Shift" +msgstr "சரியான மாற்றம்" + +#: src/client/keycode.cpp +msgid "Right Windows" +msgstr "வலது சாளரங்கள்" + +#: src/client/keycode.cpp +msgid "Scroll Lock" +msgstr "உருள் பூட்டு" + +#. ~ Key name +#: src/client/keycode.cpp +msgid "Select" +msgstr "தேர்ந்தெடு" + +#: src/client/keycode.cpp +msgid "Shift Key" +msgstr "சிப்ட் விசை" + +#: src/client/keycode.cpp +msgid "Sleep" +msgstr "தூங்கு" + +#: src/client/keycode.cpp +msgid "Snapshot" +msgstr "ச்னாப்சாட்" + +#: src/client/keycode.cpp +msgid "Space" +msgstr "இடைவெளி" + +#: src/client/keycode.cpp +msgid "Tab" +msgstr "தாவல்" + +#: src/client/keycode.cpp +msgid "Up Arrow" +msgstr "அம்பு" + +#: src/client/keycode.cpp +msgid "X Button 1" +msgstr "ஃச் பொத்தான் 1" + +#: src/client/keycode.cpp +msgid "X Button 2" +msgstr "ஃச் பொத்தான் 2" + +#: src/client/keycode.cpp +msgid "Zoom Key" +msgstr "பெரிதாக்க விசை" + +#: src/client/minimap.cpp +msgid "Minimap hidden" +msgstr "மினிமாப் மறைக்கப்பட்டுள்ளது" + +#: src/client/minimap.cpp +#, c-format +msgid "Minimap in radar mode, Zoom x%d" +msgstr "ரேடார் பயன்முறையில் மினிமேப், பெரிதாக்கு x%d" + +#: src/client/minimap.cpp +#, c-format +msgid "Minimap in surface mode, Zoom x%d" +msgstr "மேற்பரப்பு பயன்முறையில் மினிமாப், பெரிதாக்க x%d" + +#: src/client/minimap.cpp +msgid "Minimap in texture mode" +msgstr "அமைப்பு பயன்முறையில் மினிமாப்" + +#: src/client/shader.cpp +#, c-format +msgid "Failed to compile the \"%s\" shader." +msgstr "\"%s\" சேடரை தொகுக்கத் தவறிவிட்டது." + +#: src/client/shader.cpp +#, fuzzy +msgid "GLSL is not supported by the driver" +msgstr "சேடர்கள் இயக்கப்பட்டன, ஆனால் சி.எல்.எச்.எல் இயக்கி ஆதரிக்கவில்லை." + +#. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" +#: src/content/mod_configuration.cpp +#, c-format +msgid "%s is missing:" +msgstr "%s காணவில்லை:" + +#: src/content/mod_configuration.cpp +msgid "" +"Install and enable the required mods, or disable the mods causing errors." +msgstr "" +"தேவையான மோட்களை நிறுவி இயக்கவும், அல்லது பிழைகளை ஏற்படுத்தும் மோட்களை முடக்கவும்." + +#: src/content/mod_configuration.cpp +msgid "" +"Note: this may be caused by a dependency cycle, in which case try updating " +"the mods." +msgstr "" +"குறிப்பு: இது ஒரு சார்பு சுழற்சியால் ஏற்படலாம், இந்த விசயத்தில் மோட்களைப் புதுப்பிக்க " +"முயற்சிக்கவும்." + +#: src/content/mod_configuration.cpp +msgid "Some mods have unsatisfied dependencies:" +msgstr "சில மோட்களில் திருப்தியற்ற சார்புநிலைகள் உள்ளன:" + +#: src/gui/guiChatConsole.cpp +msgid "Failed to open webpage" +msgstr "வலைப்பக்கத்தைத் திறக்கத் தவறிவிட்டது" + +#: src/gui/guiChatConsole.cpp +msgid "Opening webpage" +msgstr "வலைப்பக்கத்தைத் திறக்கும்" + +#: src/gui/guiFormSpecMenu.cpp +msgid "Proceed" +msgstr "தொடரவும்" + +#: src/gui/guiKeyChangeMenu.cpp +msgid "\"Aux1\" = climb down" +msgstr "\"AUX1\" = கீழே ஏறவும்" + +#: src/gui/guiKeyChangeMenu.cpp +msgid "Autoforward" +msgstr "ஆட்டோஃபார்வார்ட்" + +#: src/gui/guiKeyChangeMenu.cpp src/settings_translation_file.cpp +msgid "Automatic jumping" +msgstr "தானியங்கி சம்பிங்" + +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp +msgid "Aux1" +msgstr "AU1" + +#: src/gui/guiKeyChangeMenu.cpp +msgid "Backward" +msgstr "பின்னோக்கு" + +#: src/gui/guiKeyChangeMenu.cpp +msgid "Block bounds" +msgstr "தொகுதி வரம்புகள்" + +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp +msgid "Change camera" +msgstr "கேமராவை மாற்றவும்" + +#: src/gui/guiKeyChangeMenu.cpp +msgid "Command" +msgstr "கட்டளை" + +#: src/gui/guiKeyChangeMenu.cpp +msgid "Console" +msgstr "கன்சோல்" + +#: src/gui/guiKeyChangeMenu.cpp +msgid "Dec. range" +msgstr "டிசம்பர் வீச்சு" + +#: src/gui/guiKeyChangeMenu.cpp +msgid "Dec. volume" +msgstr "டிசம்பர் தொகுதி" + +#: src/gui/guiKeyChangeMenu.cpp +msgid "Double tap \"jump\" to toggle fly" +msgstr "பறக்க மாற்ற \"சம்ப்\" இரட்டை தட்டவும்" + +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp +msgid "Drop" +msgstr "துளி" + +#: src/gui/guiKeyChangeMenu.cpp +msgid "Forward" +msgstr "முன்னோக்கி" + +#: src/gui/guiKeyChangeMenu.cpp +msgid "Inc. range" +msgstr "இன்க் வரம்பு" + +#: src/gui/guiKeyChangeMenu.cpp +msgid "Inc. volume" +msgstr "இன்க் தொகுதி" + +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp +msgid "Inventory" +msgstr "சரக்கு" + +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp +msgid "Jump" +msgstr "தாவு" + +#: src/gui/guiKeyChangeMenu.cpp +msgid "Key already in use" +msgstr "ஏற்கனவே பயன்பாட்டில் உள்ள விசை" + +#: src/gui/guiKeyChangeMenu.cpp +msgid "Keybindings." +msgstr "விசைப்பலகைகள்." + +#: src/gui/guiKeyChangeMenu.cpp +msgid "Left" +msgstr "இடது" + +#: src/gui/guiKeyChangeMenu.cpp +msgid "Local command" +msgstr "உள்ளக கட்டளை" + +#: src/gui/guiKeyChangeMenu.cpp +msgid "Mute" +msgstr "முடக்கு" + +#: src/gui/guiKeyChangeMenu.cpp +msgid "Next item" +msgstr "அடுத்த உருப்படி" + +#: src/gui/guiKeyChangeMenu.cpp +msgid "Prev. item" +msgstr "முந்தைய. உருப்படி" + +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp +msgid "Range select" +msgstr "வரம்பு தேர்ந்தெடுக்கவும்" + +#: src/gui/guiKeyChangeMenu.cpp +msgid "Right" +msgstr "வலது" + +#: src/gui/guiKeyChangeMenu.cpp +msgid "Screenshot" +msgstr "திரைக்காட்சி" + +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp +msgid "Sneak" +msgstr "பதுங்கிக் கொள்ளுங்கள்" + +#: src/gui/guiKeyChangeMenu.cpp +msgid "Toggle HUD" +msgstr "HUD ஐ மாற்றவும்" + +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp +msgid "Toggle chat log" +msgstr "அரட்டை பதிவை மாற்றவும்" + +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp +msgid "Toggle fast" +msgstr "வேகமாக மாறவும்" + +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp +msgid "Toggle fly" +msgstr "பறக்க மாற்று" + +#: src/gui/guiKeyChangeMenu.cpp +msgid "Toggle fog" +msgstr "மூடுபனி மாற்று" + +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp +msgid "Toggle minimap" +msgstr "மினிமேப்பை மாற்றவும்" + +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp +msgid "Toggle noclip" +msgstr "Noclip ஐ மாற்றவும்" + +#: src/gui/guiKeyChangeMenu.cpp +msgid "Toggle pitchmove" +msgstr "பிட்ச்மோவை மாற்றவும்" + +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp +msgid "Zoom" +msgstr "பெரிதாக்கு" + +#: src/gui/guiKeyChangeMenu.cpp +msgid "press key" +msgstr "விசையை அழுத்தவும்" + +#: src/gui/guiOpenURL.cpp +msgid "Open" +msgstr "திற" + +#: src/gui/guiOpenURL.cpp +msgid "Open URL?" +msgstr "திறந்த URL?" + +#: src/gui/guiOpenURL.cpp +msgid "Unable to open URL" +msgstr "முகவரி ஐ திறக்க முடியவில்லை" + +#: src/gui/guiPasswordChange.cpp +msgid "Change" +msgstr "மாற்றம்" + +#: src/gui/guiPasswordChange.cpp +msgid "New Password" +msgstr "புதிய கடவுச்சொல்" + +#: src/gui/guiPasswordChange.cpp +msgid "Old Password" +msgstr "பழைய கடவுச்சொல்" + +#: src/gui/guiPasswordChange.cpp +msgid "Passwords do not match!" +msgstr "கடவுச்சொற்கள் பொருந்தவில்லை!" + +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp +msgid "Exit" +msgstr "வெளியேறு" + +#: src/gui/guiVolumeChange.cpp +msgid "Muted" +msgstr "முடக்கிய" + +#: src/gui/guiVolumeChange.cpp +#, c-format +msgid "Sound Volume: %d%%" +msgstr "ஒலி தொகுதி:%d %%" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Add button" +msgstr "நடுத்தர பொத்தான்" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "முடிந்தது!" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Remove" +msgstr "தொலை சேவையகம்" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp +msgid "Joystick" +msgstr "இயக்குப்பிடி" + +#: src/gui/touchscreenlayout.cpp +msgid "Overflow menu" +msgstr "வழிதல் பட்டியல்" + +#: src/gui/touchscreenlayout.cpp +msgid "Toggle debug" +msgstr "பிழைத்திருத்தத்தை மாற்றவும்" + +#: src/network/clientpackethandler.cpp +msgid "" +"Another client is connected with this name. If your client closed " +"unexpectedly, try again in a minute." +msgstr "" +"மற்றொரு வாடிக்கையாளர் இந்த பெயருடன் இணைக்கப்பட்டுள்ளார். உங்கள் வாடிக்கையாளர் எதிர்பாராத " +"விதமாக மூடப்பட்டால், ஒரு நிமிடத்தில் மீண்டும் முயற்சிக்கவும்." + +#: src/network/clientpackethandler.cpp +msgid "Empty passwords are disallowed. Set a password and try again." +msgstr "" +"வெற்று கடவுச்சொற்கள் அனுமதிக்கப்படவில்லை. கடவுச்சொல்லை அமைத்து மீண்டும் முயற்சிக்கவும்." + +#: src/network/clientpackethandler.cpp +msgid "Internal server error" +msgstr "உள் சேவையக பிழை" + +#: src/network/clientpackethandler.cpp +msgid "Invalid password" +msgstr "தவறான கடவுச்சொல்" + +#. ~ DO NOT TRANSLATE THIS LITERALLY! +#. This is a special string which needs to contain the translation's +#. language code (e.g. "de" for German). +#: src/network/clientpackethandler.cpp src/script/lua_api/l_client.cpp +#: src/script/lua_api/l_mainmenu.cpp +msgid "LANG_CODE" +msgstr "Lang_code" + +#: src/network/clientpackethandler.cpp +msgid "" +"Name is not registered. To create an account on this server, click 'Register'" +msgstr "" +"பெயர் பதிவு செய்யப்படவில்லை. இந்த சேவையகத்தில் ஒரு கணக்கை உருவாக்க, 'பதிவு' என்பதைக் " +"சொடுக்கு செய்க" + +#: src/network/clientpackethandler.cpp +msgid "Name is taken. Please choose another name" +msgstr "பெயர் எடுக்கப்படுகிறது. மற்றொரு பெயரைத் தேர்வுசெய்க" + +#: src/network/clientpackethandler.cpp +msgid "Player name contains disallowed characters" +msgstr "பிளேயர் பெயரில் அனுமதிக்கப்படாத எழுத்துக்கள் உள்ளன" + +#: src/network/clientpackethandler.cpp +msgid "Player name not allowed" +msgstr "வீரர் பெயர் அனுமதிக்கப்படவில்லை" + +#: src/network/clientpackethandler.cpp +msgid "Server shutting down" +msgstr "சேவையகம் மூடப்படுகிறது" + +#: src/network/clientpackethandler.cpp +msgid "" +"The server has experienced an internal error. You will now be disconnected." +msgstr "சேவையகம் ஒரு உள் பிழையை அனுபவித்துள்ளது. நீங்கள் இப்போது துண்டிக்கப்படுவீர்கள்." + +#: src/network/clientpackethandler.cpp +msgid "The server is running in singleplayer mode. You cannot connect." +msgstr "சேவையகம் சிங்கிள் பிளேயர் பயன்முறையில் இயங்குகிறது. நீங்கள் இணைக்க முடியாது." + +#: src/network/clientpackethandler.cpp +msgid "Too many users" +msgstr "அதிகமான பயனர்கள்" + +#: src/network/clientpackethandler.cpp +msgid "Unknown disconnect reason." +msgstr "அறியப்படாத துண்டிப்பு காரணம்." + +#: src/network/clientpackethandler.cpp +msgid "" +"Your client sent something the server didn't expect. Try reconnecting or " +"updating your client." +msgstr "" +"உங்கள் வாடிக்கையாளர் சேவையகம் எதிர்பார்க்காத ஒன்றை அனுப்பினார். உங்கள் வாடிக்கையாளரை மீண்டும் " +"இணைக்க அல்லது புதுப்பிக்க முயற்சிக்கவும்." + +#: src/network/clientpackethandler.cpp +msgid "" +"Your client's version is not supported.\n" +"Please contact the server administrator." +msgstr "" +"உங்கள் வாடிக்கையாளரின் பதிப்பு ஆதரிக்கப்படவில்லை.\n" +" சேவையக நிர்வாகியை தொடர்பு கொள்ளவும்." + +#: src/server.cpp +#, c-format +msgid "%s while shutting down: " +msgstr "மூடும்போது %s: " + +#: src/settings_translation_file.cpp +msgid "" +"(X,Y,Z) offset of fractal from world center in units of 'scale'.\n" +"Can be used to move a desired point to (0, 0) to create a\n" +"suitable spawn point, or to allow 'zooming in' on a desired\n" +"point by increasing 'scale'.\n" +"The default is tuned for a suitable spawn point for Mandelbrot\n" +"sets with default parameters, it may need altering in other\n" +"situations.\n" +"Range roughly -2 to 2. Multiply by 'scale' for offset in nodes." +msgstr "" +"(X, ஒய், z) 'அளவுகோல்' அலகுகளில் உலக மையத்திலிருந்து ஃப்ராக்டலை ஈடுசெய்யவும்.\n" +" ஒரு உருவாக்க விரும்பிய புள்ளியை (0, 0) நகர்த்த பயன்படுத்தலாம்\n" +" பொருத்தமான ச்பான் புள்ளி\n" +" 'அளவை' அதிகரிப்பதன் மூலம் புள்ளி.\n" +" மாண்டல்பிரோட்டுக்கு பொருத்தமான ச்பான் புள்ளிக்கு இயல்புநிலை சரிசெய்யப்படுகிறது\n" +" இயல்புநிலை அளவுருக்களுடன் அமைக்கிறது, இது மற்றவற்றில் மாற்ற வேண்டியிருக்கலாம்\n" +" சூழ்நிலைகள்.\n" +" வரம்பு -2 முதல் 2. வரை. முனைகளில் ஆஃப்செட்டுக்கு 'அளவுகோல்' மூலம் பெருக்கவும்." + +#: src/settings_translation_file.cpp +msgid "" +"(X,Y,Z) scale of fractal in nodes.\n" +"Actual fractal size will be 2 to 3 times larger.\n" +"These numbers can be made very large, the fractal does\n" +"not have to fit inside the world.\n" +"Increase these to 'zoom' into the detail of the fractal.\n" +"Default is for a vertically-squashed shape suitable for\n" +"an island, set all 3 numbers equal for the raw shape." +msgstr "" +"(X, ஒய், z) முனைகளில் ஃப்ராக்டலின் அளவு.\n" +" உண்மையான பின்னம் அளவு 2 முதல் 3 மடங்கு பெரியதாக இருக்கும்.\n" +" இந்த எண்களை மிகப் பெரியதாக மாற்றலாம், பின்னல் செய்கிறது\n" +" உலகிற்குள் பொருந்த வேண்டியதில்லை.\n" +" இவற்றை 'சூம்' என அதிகரிக்கவும்.\n" +" இயல்புநிலை என்பது செங்குத்தாக சதுர வடிவத்திற்கு ஏற்றது\n" +" ஒரு தீவு, அனைத்து 3 எண்களையும் மூல வடிவத்திற்கு சமமாக அமைக்கவும்." + +#: src/settings_translation_file.cpp +msgid "2D noise that controls the shape/size of ridged mountains." +msgstr "அகற்றப்பட்ட மலைகளின் வடிவம்/அளவைக் கட்டுப்படுத்தும் 2 டி ஒலி." + +#: src/settings_translation_file.cpp +msgid "2D noise that controls the shape/size of rolling hills." +msgstr "உருளும் மலைகளின் வடிவம்/அளவைக் கட்டுப்படுத்தும் 2 டி ஒலி." + +#: src/settings_translation_file.cpp +msgid "2D noise that controls the shape/size of step mountains." +msgstr "படி மலைகளின் வடிவம்/அளவைக் கட்டுப்படுத்தும் 2 டி ஒலி." + +#: src/settings_translation_file.cpp +msgid "2D noise that controls the size/occurrence of ridged mountain ranges." +msgstr "2 டி ஒலி அகற்றப்பட்ட மலைத்தொடர்களின் அளவு/நிகழ்வைக் கட்டுப்படுத்துகிறது." + +#: src/settings_translation_file.cpp +msgid "2D noise that controls the size/occurrence of rolling hills." +msgstr "ரோலிங் மலைகளின் அளவு/நிகழ்வைக் கட்டுப்படுத்தும் 2 டி ஒலி." + +#: src/settings_translation_file.cpp +msgid "2D noise that controls the size/occurrence of step mountain ranges." +msgstr "படி மலைத்தொடர்களின் அளவு/நிகழ்வைக் கட்டுப்படுத்தும் 2 டி ஒலி." + +#: src/settings_translation_file.cpp +msgid "2D noise that locates the river valleys and channels." +msgstr "நதி பள்ளத்தாக்குகள் மற்றும் சேனல்களைக் கண்டுபிடிக்கும் 2 டி ஒலி." + +#: src/settings_translation_file.cpp +msgid "3D" +msgstr "ZD" + +#: src/settings_translation_file.cpp +msgid "3D clouds" +msgstr "3 டி மேகங்கள்" + +#: src/settings_translation_file.cpp +msgid "3D mode" +msgstr "3 டி பயன்முறை" + +#: src/settings_translation_file.cpp +msgid "3D mode parallax strength" +msgstr "3D பயன்முறை இடமாறு வலிமை" + +#: src/settings_translation_file.cpp +msgid "3D noise defining giant caverns." +msgstr "3D ஒலி மாபெரும் குகைகளை வரையறுக்கிறது." + +#: src/settings_translation_file.cpp +msgid "" +"3D noise defining mountain structure and height.\n" +"Also defines structure of floatland mountain terrain." +msgstr "" +"3D ஒலி மலை அமைப்பு மற்றும் உயரத்தை வரையறுக்கிறது.\n" +" ஃப்ளோட்லேண்ட் மலை நிலப்பரப்பின் கட்டமைப்பையும் வரையறுக்கிறது." + +#: src/settings_translation_file.cpp +msgid "" +"3D noise defining structure of floatlands.\n" +"If altered from the default, the noise 'scale' (0.7 by default) may need\n" +"to be adjusted, as floatland tapering functions best when this noise has\n" +"a value range of approximately -2.0 to 2.0." +msgstr "" +"3 டி ஒலி ஃப்ளோட்லேண்ட்சின் கட்டமைப்பை வரையறுக்கிறது.\n" +" இயல்புநிலையிலிருந்து மாற்றப்பட்டால், ஒலி 'அளவு' (இயல்பாக 0.7) தேவைப்படலாம்\n" +" சரிசெய்யப்பட வேண்டும், இந்த ஒலி இருக்கும்போது ஃப்ளோட்லேண்ட் டேப்பரிங் சிறப்பாக " +"செயல்படுகிறது\n" +" தோராயமாக -2.0 முதல் 2.0 வரை மதிப்பு வரம்பு." + +#: src/settings_translation_file.cpp +msgid "3D noise defining structure of river canyon walls." +msgstr "3 டி ஒலி நதி பள்ளத்தாக்கு சுவர்களின் கட்டமைப்பை வரையறுக்கிறது." + +#: src/settings_translation_file.cpp +msgid "3D noise defining terrain." +msgstr "3D ஒலி நிலப்பரப்பை வரையறுக்கிறது." + +#: src/settings_translation_file.cpp +msgid "3D noise for mountain overhangs, cliffs, etc. Usually small variations." +msgstr "மலை ஓவர்ஆங்க்கள், குன்றுகள் போன்றவற்றுக்கான 3 டி ஒலி பொதுவாக சிறிய மாறுபாடுகள்." + +#: src/settings_translation_file.cpp +msgid "3D noise that determines number of dungeons per mapchunk." +msgstr "3 டி ஒலி ஒரு மேப்சங்கிற்கு நிலவறைகளின் எண்ணிக்கையை நிர்ணயிக்கும்." + +#: src/settings_translation_file.cpp +#, fuzzy +msgid "" +"3D support.\n" +"Currently supported:\n" +"- none: no 3d output.\n" +"- anaglyph: cyan/magenta color 3d.\n" +"- interlaced: odd/even line based polarization screen support.\n" +"- topbottom: split screen top/bottom.\n" +"- sidebyside: split screen side by side.\n" +"- crossview: Cross-eyed 3d" +msgstr "" +"3D ஆதரவு.\n" +" தற்போது ஆதரிக்கப்படுகிறது:\n" +" - எதுவுமில்லை: 3D வெளியீடு இல்லை.\n" +" - அனக்லிஃப்: சியான்/மெசந்தா கலர் 3 டி.\n" +" - ஒன்றோடொன்று: ஒற்றைப்படை/கூட வரி அடிப்படையிலான துருவமுனைப்பு திரை ஆதரவு.\n" +" - டாப் பாட்டம்: திரை டாப்/கீழே.\n" +" - சைட்பைடு: திரையை அருகருகே பிரிக்கவும்.\n" +" - குறுக்குவெட்டு: குறுக்கு கண்கள் 3D\n" +" ஒன்றிணைந்த பயன்முறையில் சேடர்களை இயக்க வேண்டும் என்பதை நினைவில் கொள்க." + +#: src/settings_translation_file.cpp +msgid "" +"A chosen map seed for a new map, leave empty for random.\n" +"Will be overridden when creating a new world in the main menu." +msgstr "" +"புதிய வரைபடத்திற்கு தேர்ந்தெடுக்கப்பட்ட வரைபட விதை, சீரற்றதாக காலியாக விடவும்.\n" +" முதன்மையான பட்டியலில் புதிய உலகத்தை உருவாக்கும்போது மீறப்படும்." + +#: src/settings_translation_file.cpp +msgid "A message to be displayed to all clients when the server crashes." +msgstr "" +"சேவையகம் செயலிழக்கும்போது அனைத்து வாடிக்கையாளர்களுக்கும் காண்பிக்கப்பட வேண்டிய செய்தி." + +#: src/settings_translation_file.cpp +msgid "A message to be displayed to all clients when the server shuts down." +msgstr "" +"சேவையகம் மூடப்படும் போது அனைத்து வாடிக்கையாளர்களுக்கும் காண்பிக்கப்பட வேண்டிய செய்தி." + +#: src/settings_translation_file.cpp +msgid "ABM interval" +msgstr "ஏபிஎம் இடைவெளி" + +#: src/settings_translation_file.cpp +msgid "ABM time budget" +msgstr "ஏபிஎம் நேர பட்செட்" + +#: src/settings_translation_file.cpp +msgid "Absolute limit of queued blocks to emerge" +msgstr "வரிசைப்படுத்தப்பட்ட தொகுதிகளின் முழுமையான வரம்பு வெளிப்படும்" + +#: src/settings_translation_file.cpp +msgid "Acceleration in air" +msgstr "காற்றில் முடுக்கம்" + +#: src/settings_translation_file.cpp +msgid "Acceleration of gravity, in nodes per second per second." +msgstr "ஈர்ப்பு முடுக்கம், நொடிக்கு முனைகளில்." + +#: src/settings_translation_file.cpp +msgid "Active Block Modifiers" +msgstr "செயலில் தொகுதி மாற்றியமைப்பாளர்கள்" + +#: src/settings_translation_file.cpp +msgid "Active block management interval" +msgstr "செயலில் தொகுதி மேலாண்மை இடைவெளி" + +#: src/settings_translation_file.cpp +msgid "Active block range" +msgstr "செயலில் தொகுதி வரம்பு" + +#: src/settings_translation_file.cpp +msgid "Active object send range" +msgstr "செயலில் உள்ள பொருள் அனுப்பு வரம்பு" + +#: src/settings_translation_file.cpp +msgid "Adjust the detected display density, used for scaling UI elements." +msgstr "" +"கண்டறியப்பட்ட காட்சி அடர்த்தியை சரிசெய்யவும், இடைமுகம் கூறுகளை அளவிடுவதற்குப் " +"பயன்படுத்தப்படுகிறது." + +#: src/settings_translation_file.cpp +#, c-format +msgid "" +"Adjusts the density of the floatland layer.\n" +"Increase value to increase density. Can be positive or negative.\n" +"Value = 0.0: 50% of volume is floatland.\n" +"Value = 2.0 (can be higher depending on 'mgv7_np_floatland', always test\n" +"to be sure) creates a solid floatland layer." +msgstr "" +"ஃப்ளோட்லேண்ட் லேயரின் அடர்த்தியை சரிசெய்கிறது.\n" +" அடர்த்தியை அதிகரிக்க மதிப்பை அதிகரிக்கவும். நேர்மறை அல்லது எதிர்மறையாக இருக்கலாம்.\n" +" மதிப்பு = 0.0: 50% தொகுதி மிதவை.\n" +" மதிப்பு = 2.0 ('mgv7_np_floatland' ஐப் பொறுத்து அதிகமாக இருக்கலாம், எப்போதும் " +"சோதனை செய்யுங்கள்\n" +" நிச்சயமாக) ஒரு திட மிதவை அடுக்கை உருவாக்குகிறது." + +#: src/settings_translation_file.cpp +msgid "Admin name" +msgstr "நிர்வாக பெயர்" + +#: src/settings_translation_file.cpp +msgid "Advanced" +msgstr "மேம்பட்ட" + +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +#, fuzzy +msgid "Allow clouds to look 3D instead of flat." +msgstr "பிளாட்டுக்கு பதிலாக 3D முகில் தோற்றத்தைப் பயன்படுத்தவும்." + +#: src/settings_translation_file.cpp +msgid "Allows liquids to be translucent." +msgstr "திரவங்கள் ஒளிஊடுருவக்கூடியதாக இருக்க அனுமதிக்கிறது." + +#: src/settings_translation_file.cpp +msgid "" +"Alters the light curve by applying 'gamma correction' to it.\n" +"Higher values make middle and lower light levels brighter.\n" +"Value '1.0' leaves the light curve unaltered.\n" +"This only has significant effect on daylight and artificial\n" +"light, it has very little effect on natural night light." +msgstr "" +"அதில் 'காமா திருத்தம்' பயன்படுத்துவதன் மூலம் ஒளி வளைவை மாற்றுகிறது.\n" +" அதிக மதிப்புகள் நடுத்தர மற்றும் கீழ் ஒளி நிலைகளை பிரகாசமாக்குகின்றன.\n" +" மதிப்பு '1.0' ஒளி வளைவை மாற்றாமல் விட்டுவிடுகிறது.\n" +" இது பகல் மற்றும் செயற்கை ஆகியவற்றில் குறிப்பிடத்தக்க தாக்கத்தை ஏற்படுத்துகிறது\n" +" ஒளி, இது இயற்கையான இரவு ஒளியில் மிகக் குறைந்த விளைவைக் கொண்டுள்ளது." + +#: src/settings_translation_file.cpp +msgid "Always fly fast" +msgstr "எப்போதும் வேகமாக பறக்க" + +#: src/settings_translation_file.cpp +msgid "Ambient occlusion gamma" +msgstr "சுற்றுப்புற மறைவு காமா" + +#: src/settings_translation_file.cpp +msgid "Amplifies the valleys." +msgstr "பள்ளத்தாக்குகளை பெருக்குகிறது." + +#: src/settings_translation_file.cpp +msgid "Anisotropic filtering" +msgstr "அனிசோட்ரோபிக் வடிகட்டுதல்" + +#: src/settings_translation_file.cpp +msgid "Announce server" +msgstr "சேவையகத்தை அறிவிக்கவும்" + +#: src/settings_translation_file.cpp +msgid "Announce to this serverlist." +msgstr "இந்த சேவையகத்திற்கு அறிவிக்கவும்." + +#: src/settings_translation_file.cpp +msgid "Anti-aliasing scale" +msgstr "எதிர்ப்பு மாற்றுப்பெயர் அளவு" + +#: src/settings_translation_file.cpp +msgid "Antialiasing method" +msgstr "ஆன்டிலிசிங் முறை" + +#: src/settings_translation_file.cpp +msgid "Anticheat flags" +msgstr "ஆன்டிசீட் கொடிகள்" + +#: src/settings_translation_file.cpp +msgid "Anticheat movement tolerance" +msgstr "ஆன்டிகீட் இயக்கம் சகிப்புத்தன்மை" + +#: src/settings_translation_file.cpp +msgid "Append item name" +msgstr "உருப்படி பெயரைச் சேர்க்கவும்" + +#: src/settings_translation_file.cpp +msgid "Append item name to tooltip." +msgstr "உதவிக்குறிப்பில் உருப்படி பெயரைச் சேர்க்கவும்." + +#: src/settings_translation_file.cpp +msgid "Apple trees noise" +msgstr "ஆப்பிள் மரங்கள் ஒலி" + +#: src/settings_translation_file.cpp +msgid "" +"Apply dithering to reduce color banding artifacts.\n" +"Dithering significantly increases the size of losslessly-compressed\n" +"screenshots and it works incorrectly if the display or operating system\n" +"performs additional dithering or if the color channels are not quantized\n" +"to 8 bits.\n" +"With OpenGL ES, dithering only works if the shader supports high\n" +"floating-point precision and it may have a higher performance impact." +msgstr "" +"வண்ண பேண்டிங் கலைப்பொருட்களைக் குறைக்க டிதீயிங்கைப் பயன்படுத்துங்கள்.\n" +" குறைப்பது இழப்பற்ற முறையில் சுருக்கப்பட்ட அளவை கணிசமாக அதிகரிக்கிறது\n" +" காட்சி அல்லது இயக்க முறைமை என்றால் திரை சாட்கள் மற்றும் அது தவறாக செயல்படுகிறது\n" +" கூடுதல் டூரிங் செய்கிறது அல்லது வண்ண சேனல்கள் அளவிடப்படாவிட்டால்\n" +" 8 பிட்களுக்கு.\n" +" ஓபன்சிஎல் எச் உடன், சேடர் உயர்ந்ததை ஆதரித்தால் மட்டுமே டூரிங் வேலை செய்யும்\n" +" மிதக்கும்-புள்ளி துல்லியம் மற்றும் இது அதிக செயல்திறன் தாக்கத்தை ஏற்படுத்தக்கூடும்." + +#: src/settings_translation_file.cpp +msgid "Apply specular shading to nodes." +msgstr "முனைகளுக்கு ஏகப்பட்ட நிழலைப் பயன்படுத்துங்கள்." + +#: src/settings_translation_file.cpp +msgid "Arm inertia" +msgstr "கை மந்தநிலை" + +#: src/settings_translation_file.cpp +msgid "" +"Arm inertia, gives a more realistic movement of\n" +"the arm when the camera moves." +msgstr "" +"கை மந்தநிலை, மிகவும் யதார்த்தமான இயக்கத்தை அளிக்கிறது\n" +" கேமரா நகரும் போது கை." + +#: src/settings_translation_file.cpp +msgid "Ask to reconnect after crash" +msgstr "விபத்துக்குப் பிறகு மீண்டும் இணைக்கச் சொல்லுங்கள்" + +#: src/settings_translation_file.cpp +msgid "" +"At this distance the server will aggressively optimize which blocks are sent " +"to\n" +"clients.\n" +"Small values potentially improve performance a lot, at the expense of " +"visible\n" +"rendering glitches (some blocks might not be rendered correctly in caves).\n" +"Setting this to a value greater than max_block_send_distance disables this\n" +"optimization.\n" +"Stated in MapBlocks (16 nodes)." +msgstr "" +"இந்த தூரத்தில் எந்த தொகுதிகள் அனுப்பப்படுகின்றன என்பதை சேவையகம் ஆக்ரோசமாக மேம்படுத்தும்\n" +" வாடிக்கையாளர்கள்.\n" +" சிறிய மதிப்புகள் செயல்திறனை நிறைய மேம்படுத்தக்கூடும், புலப்படும் செலவில்\n" +" குறைபாடுகளை வழங்குதல் (சில தொகுதிகள் குகைகளில் சரியாக வழங்கப்படாமல் போகலாம்).\n" +" இதை max_block_send_distance ஐ விட அதிகமான மதிப்புக்கு அமைப்பது இதை " +"முடக்குகிறது\n" +" தேர்வுமுறை.\n" +" மேப் பிளாக்சில் (16 முனைகள்) கூறப்பட்டுள்ளது." + +#: src/settings_translation_file.cpp +msgid "" +"At this distance the server will perform a simpler and cheaper occlusion " +"check.\n" +"Smaller values potentially improve performance, at the expense of " +"temporarily visible\n" +"rendering glitches (missing blocks).\n" +"This is especially useful for very large viewing range (upwards of 500).\n" +"Stated in MapBlocks (16 nodes)." +msgstr "" +"இந்த தூரத்தில் சேவையகம் எளிமையான மற்றும் மலிவான மறைவு சோதனை செய்யும்.\n" +" சிறிய மதிப்புகள் தற்காலிகமாக காணக்கூடிய செலவில் செயல்திறனை மேம்படுத்தக்கூடும்\n" +" குறைபாடுகளை வழங்குதல் (காணாமல் போன தொகுதிகள்).\n" +" இது மிகப் பெரிய பார்வை வரம்பிற்கு மிகவும் பயனுள்ளதாக இருக்கும் (500 க்கு மேல்).\n" +" மேப் பிளாக்சில் (16 முனைகள்) கூறப்பட்டுள்ளது." + +#: src/settings_translation_file.cpp +msgid "Audio" +msgstr "ஆடியோ" + +#: src/settings_translation_file.cpp +msgid "Automatically jump up single-node obstacles." +msgstr "ஒற்றை-முனை தடைகளை தானாக மேலே குதிக்கவும்." + +#: src/settings_translation_file.cpp +msgid "Automatically report to the serverlist." +msgstr "சேவையகத்திற்கு தானாகவே புகாரளிக்கவும்." + +#: src/settings_translation_file.cpp +msgid "Autoscaling mode" +msgstr "ஆட்டோச்கேலிங் பயன்முறை" + +#: src/settings_translation_file.cpp +msgid "Aux1 key for climbing/descending" +msgstr "ஏறுதல்/இறங்குவதற்கான AUX1 விசை" + +#: src/settings_translation_file.cpp +msgid "Base ground level" +msgstr "அடிப்படை தரை மட்டத்தில்" + +#: src/settings_translation_file.cpp +msgid "Base terrain height." +msgstr "அடிப்படை நிலப்பரப்பு உயரம்." + +#: src/settings_translation_file.cpp +msgid "Base texture size" +msgstr "அடிப்படை அமைப்பு அளவு" + +#: src/settings_translation_file.cpp +msgid "Basic privileges" +msgstr "அடிப்படை சலுகைகள்" + +#: src/settings_translation_file.cpp +msgid "Beach noise" +msgstr "கடற்கரை ஒலி" + +#: src/settings_translation_file.cpp +msgid "Beach noise threshold" +msgstr "கடற்கரை ஒலி வாசல்" + +#: src/settings_translation_file.cpp +msgid "Bilinear filtering" +msgstr "பிலினியர் வடிகட்டுதல்" + +#: src/settings_translation_file.cpp +msgid "Bind address" +msgstr "முகவரியை பிணைக்கவும்" + +#: src/settings_translation_file.cpp +msgid "Biome API" +msgstr "பயோம் பநிஇ" + +#: src/settings_translation_file.cpp +msgid "Biome noise" +msgstr "பயோம் ஒலி" + +#: src/settings_translation_file.cpp +msgid "Block bounds HUD radius" +msgstr "தொகுதி வரம்புகள் HUD ஆரம்" + +#: src/settings_translation_file.cpp +msgid "Block cull optimize distance" +msgstr "பிளாக் கல் தூரத்தை மேம்படுத்துகிறது" + +#: src/settings_translation_file.cpp +msgid "Block send optimize distance" +msgstr "பிளாக் அனுப்பு உகந்த தூரத்தை அனுப்புங்கள்" + +#: src/settings_translation_file.cpp +msgid "Bobbing" +msgstr "பாபிங்" + +#: src/settings_translation_file.cpp +msgid "Bold and italic font path" +msgstr "தைரியமான மற்றும் சாய்வு எழுத்துரு பாதை" + +#: src/settings_translation_file.cpp +msgid "Bold and italic monospace font path" +msgstr "தைரியமான மற்றும் சாய்வு மோனோச்பேச் எழுத்துரு பாதை" + +#: src/settings_translation_file.cpp +msgid "Bold font path" +msgstr "தைரியமான எழுத்துரு பாதை" + +#: src/settings_translation_file.cpp +msgid "Bold monospace font path" +msgstr "தைரியமான மோனோச்பேச் எழுத்துரு பாதை" + +#: src/settings_translation_file.cpp +msgid "Build inside player" +msgstr "பிளேயருக்குள் உருவாக்குங்கள்" + +#: src/settings_translation_file.cpp +msgid "Builtin" +msgstr "பில்டின்" + +#: src/settings_translation_file.cpp +msgid "Camera" +msgstr "கேமரா" + +#: src/settings_translation_file.cpp +msgid "Camera smoothing" +msgstr "கேமரா மென்மையாக்குதல்" + +#: src/settings_translation_file.cpp +msgid "Camera smoothing in cinematic mode" +msgstr "சினிமா பயன்முறையில் கேமரா மென்மையாக்குகிறது" + +#: src/settings_translation_file.cpp +msgid "Cave noise" +msgstr "குகை ஒலி" + +#: src/settings_translation_file.cpp +msgid "Cave noise #1" +msgstr "குகை ஒலி #1" + +#: src/settings_translation_file.cpp +msgid "Cave noise #2" +msgstr "குகை ஒலி #2" + +#: src/settings_translation_file.cpp +msgid "Cave width" +msgstr "குகை அகலம்" + +#: src/settings_translation_file.cpp +msgid "Cave1 noise" +msgstr "குகை 1 ஒலி" + +#: src/settings_translation_file.cpp +msgid "Cave2 noise" +msgstr "குகை 2 ஒலி" + +#: src/settings_translation_file.cpp +msgid "Cavern limit" +msgstr "குகை வரம்பு" + +#: src/settings_translation_file.cpp +msgid "Cavern noise" +msgstr "குகை ஒலி" + +#: src/settings_translation_file.cpp +msgid "Cavern taper" +msgstr "குகை டேப்பர்" + +#: src/settings_translation_file.cpp +msgid "Cavern threshold" +msgstr "குகை வாசல்" + +#: src/settings_translation_file.cpp +msgid "Cavern upper limit" +msgstr "குகை மேல் வரம்பு" + +#: src/settings_translation_file.cpp +msgid "" +"Center of light curve boost range.\n" +"Where 0.0 is minimum light level, 1.0 is maximum light level." +msgstr "" +"ஒளி வளைவு பூச்ட் வரம்பின் மையம்.\n" +" 0.0 குறைந்தபட்ச ஒளி நிலை, 1.0 அதிகபட்ச ஒளி நிலை." + +#: src/settings_translation_file.cpp +msgid "Chat command time message threshold" +msgstr "அரட்டை கட்டளை நேர செய்தி வாசல்" + +#: src/settings_translation_file.cpp +msgid "Chat commands" +msgstr "அரட்டை கட்டளைகள்" + +#: src/settings_translation_file.cpp +msgid "Chat font size" +msgstr "எழுத்துரு அளவு அரட்டை" + +#: src/settings_translation_file.cpp +msgid "Chat log level" +msgstr "அரட்டை பதிவு நிலை" + +#: src/settings_translation_file.cpp +msgid "Chat message count limit" +msgstr "அரட்டை செய்தி எண்ணிக்கை வரம்பு" + +#: src/settings_translation_file.cpp +msgid "Chat message format" +msgstr "அரட்டை செய்தி வடிவம்" + +#: src/settings_translation_file.cpp +msgid "Chat message kick threshold" +msgstr "அரட்டை செய்தி கிக் வாசல்" + +#: src/settings_translation_file.cpp +msgid "Chat message max length" +msgstr "அரட்டை செய்தி அதிகபட்ச நீளம்" + +#: src/settings_translation_file.cpp +msgid "Chat weblinks" +msgstr "வெப்லிங்க்ச் அரட்டை" + +#: src/settings_translation_file.cpp +msgid "Chunk size" +msgstr "துண்டு அளவு" + +#: src/settings_translation_file.cpp +msgid "" +"Clickable weblinks (middle-click or Ctrl+left-click) enabled in chat console " +"output." +msgstr "" +"சொடுக்கு செய்யக்கூடிய வலை இணைப்புகள் (நடுத்தர சொடுக்கு அல்லது சி.டி.ஆர்.எல்+இடது-" +"கிளிக்) அரட்டை கன்சோல் வெளியீட்டில் இயக்கவும்." + +#: src/settings_translation_file.cpp +msgid "Client" +msgstr "கிளீன்" + +#: src/settings_translation_file.cpp +msgid "Client Mesh Chunksize" +msgstr "கிளையன்ட் கண்ணி துண்டுகள்" + +#: src/settings_translation_file.cpp +msgid "Client and Server" +msgstr "வாங்கி மற்றும் சேவையகம்" + +#: src/settings_translation_file.cpp +msgid "Client modding" +msgstr "கிளையன்ட் மோடிங்" + +#: src/settings_translation_file.cpp +msgid "Client side modding restrictions" +msgstr "கிளையன்ட் சைட் மோடிங் கட்டுப்பாடுகள்" + +#: src/settings_translation_file.cpp +msgid "Client-side Modding" +msgstr "கிளையன்ட் பக்க மோடிங்" + +#: src/settings_translation_file.cpp +msgid "Client-side node lookup range restriction" +msgstr "கிளையன்ட் பக்க முனை தேடல் வரம்பு கட்டுப்பாடு" + +#: src/settings_translation_file.cpp +msgid "Climbing speed" +msgstr "ஏறும் விரைவு" + +#: src/settings_translation_file.cpp +msgid "Cloud radius" +msgstr "முகில் ஆரம்" + +#: src/settings_translation_file.cpp +msgid "Clouds" +msgstr "மேகங்கள்" + +#: src/settings_translation_file.cpp +msgid "Clouds in menu" +msgstr "பட்டியலில் மேகங்கள்" + +#: src/settings_translation_file.cpp +msgid "Color depth for post-processing texture" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Colored fog" +msgstr "வண்ண மூடுபனி" + +#: src/settings_translation_file.cpp +msgid "Colored shadows" +msgstr "வண்ண நிழல்கள்" + +#: src/settings_translation_file.cpp +msgid "" +"Comma-separated list of AL and ALC extensions that should not be used.\n" +"Useful for testing. See al_extensions.[h,cpp] for details." +msgstr "" +"பயன்படுத்தக் கூடாத AL மற்றும் ALC நீட்டிப்புகளின் கமாவால் பிரிக்கப்பட்ட பட்டியல்.\n" +" சோதனைக்கு பயனுள்ளதாக இருக்கும். விவரங்களுக்கு Al_extensions. [H, CPP] ஐப் பார்க்கவும்." + +#: src/settings_translation_file.cpp +#, fuzzy +msgid "" +"Comma-separated list of flags to hide in the content repository.\n" +"\"nonfree\" can be used to hide packages which do not qualify as 'free " +"software',\n" +"as defined by the Free Software Foundation.\n" +"You can also specify content ratings.\n" +"These flags are independent from Luanti versions,\n" +"so see a full list at https://content.luanti.org/help/content_flags/" +msgstr "" +"உள்ளடக்க களஞ்சியத்தில் மறைக்க கமாவால் பிரிக்கப்பட்ட கொடிகளின் பட்டியல்.\n" +" 'இலவச மென்பொருள்' என்று தகுதி பெறாத தொகுப்புகளை மறைக்க \"இலவசம்\" " +"பயன்படுத்தப்படலாம்,\n" +" இலவச மென்பொருள் அறக்கட்டளையால் வரையறுக்கப்பட்டுள்ளது.\n" +" உள்ளடக்க மதிப்பீடுகளையும் நீங்கள் குறிப்பிடலாம்.\n" +" இந்த கொடிகள் லுவாண்டி பதிப்புகளிலிருந்து சுயாதீனமானவை,\n" +" எனவே ஒரு முழு பட்டியலையும் https://content.minetest.net/help/content_flags/ " +"இல் காண்க" + +#: src/settings_translation_file.cpp +msgid "" +"Comma-separated list of mods that are allowed to access HTTP APIs, which\n" +"allow them to upload and download data to/from the internet." +msgstr "" +"HTTP பநிஇ களை அணுக அனுமதிக்கப்பட்ட மோட்களின் கமாவால் பிரிக்கப்பட்ட பட்டியல், இது\n" +" இணையத்திலிருந்து/தரவைப் பதிவேற்றவும் பதிவிறக்கவும் அவர்களை அனுமதிக்கவும்." + +#: src/settings_translation_file.cpp +msgid "" +"Comma-separated list of trusted mods that are allowed to access insecure\n" +"functions even when mod security is on (via request_insecure_environment())." +msgstr "" +"பாதுகாப்பற்றதை அணுக அனுமதிக்கப்பட்ட நம்பகமான மோட்களின் கமாவால் பிரிக்கப்பட்ட பட்டியல்\n" +" மோட் பாதுகாப்பு இயக்கத்தில் இருக்கும்போது கூட செயல்பாடுகள் " +"(Quest_insecure_enveronment () வழியாக)." + +#: src/settings_translation_file.cpp +msgid "" +"Compression level to use when saving mapblocks to disk.\n" +"-1 - use default compression level\n" +"0 - least compression, fastest\n" +"9 - best compression, slowest" +msgstr "" +"மேப் பிளாக்சை வட்டில் சேமிக்கும்போது பயன்படுத்த சுருக்க நிலை.\n" +" -1 - இயல்புநிலை சுருக்க அளவைப் பயன்படுத்தவும்\n" +" 0 - குறைந்த சுருக்க, வேகமாக\n" +" 9 - சிறந்த சுருக்க, மெதுவாக" + +#: src/settings_translation_file.cpp +msgid "" +"Compression level to use when sending mapblocks to the client.\n" +"-1 - use default compression level\n" +"0 - least compression, fastest\n" +"9 - best compression, slowest" +msgstr "" +"கிளையண்டிற்கு மேப் பிளாக்சை அனுப்பும்போது பயன்படுத்த வேண்டிய சுருக்க நிலை.\n" +" -1 - இயல்புநிலை சுருக்க அளவைப் பயன்படுத்தவும்\n" +" 0 - குறைந்த சுருக்க, வேகமாக\n" +" 9 - சிறந்த சுருக்க, மெதுவானது" + +#: src/settings_translation_file.cpp +msgid "Connect glass" +msgstr "கண்ணாடி இணைக்கவும்" + +#: src/settings_translation_file.cpp +msgid "Connect to external media server" +msgstr "வெளிப்புற மீடியா சேவையகத்துடன் இணைக்கவும்" + +#: src/settings_translation_file.cpp +msgid "Connects glass if supported by node." +msgstr "முனையால் ஆதரிக்கப்பட்டால் கண்ணாடியை இணைக்கிறது." + +#: src/settings_translation_file.cpp +msgid "Console alpha" +msgstr "கன்சோல் ஆல்பா" + +#: src/settings_translation_file.cpp +msgid "Console color" +msgstr "கன்சோல் நிறம்" + +#: src/settings_translation_file.cpp +msgid "Console height" +msgstr "கன்சோல் உயரம்" + +#: src/settings_translation_file.cpp +msgid "Content Repository" +msgstr "உள்ளடக்க களஞ்சியம்" + +#: src/settings_translation_file.cpp +msgid "ContentDB Flag Blacklist" +msgstr "ContentDB கொடி தடுப்புப்பட்டியல்" + +#: src/settings_translation_file.cpp +msgid "ContentDB Max Concurrent Downloads" +msgstr "ContentDB அதிகபட்ச பதிவிறக்கங்கள்" + +#: src/settings_translation_file.cpp +msgid "ContentDB URL" +msgstr "ContentDB முகவரி" + +#: src/settings_translation_file.cpp +msgid "" +"Controls length of day/night cycle.\n" +"Examples:\n" +"72 = 20min, 360 = 4min, 1 = 24hour, 0 = day/night/whatever stays unchanged." +msgstr "" +"பகல்/இரவு சுழற்சியின் நீளத்தைக் கட்டுப்படுத்துகிறது.\n" +" எடுத்துக்காட்டுகள்:\n" +" 72 = 20 நிமிடங்கள், 360 = 4 நிமிடங்கள், 1 = 24 மணிநேரம், 0 = பகல்/இரவு/மாறாமல் " +"இருக்கும்." + +#: src/settings_translation_file.cpp +msgid "" +"Controls sinking speed in liquid when idling. Negative values will cause\n" +"you to rise instead." +msgstr "" +"சும்மா இருக்கும்போது திரவத்தில் மூழ்கும் வேகத்தை கட்டுப்படுத்துகிறது. எதிர்மறை மதிப்புகள் " +"ஏற்படுத்தும்\n" +" அதற்கு பதிலாக நீங்கள் உயர வேண்டும்." + +#: src/settings_translation_file.cpp +msgid "Controls steepness/depth of lake depressions." +msgstr "ஏரி மந்தநிலைகளின் செங்குத்தான/ஆழத்தை கட்டுப்படுத்துகிறது." + +#: src/settings_translation_file.cpp +msgid "Controls steepness/height of hills." +msgstr "மலைகளின் செங்குத்தான/உயரத்தை கட்டுப்படுத்துகிறது." + +#: src/settings_translation_file.cpp +msgid "" +"Controls width of tunnels, a smaller value creates wider tunnels.\n" +"Value >= 10.0 completely disables generation of tunnels and avoids the\n" +"intensive noise calculations." +msgstr "" +"சுரங்கங்களின் அகலத்தைக் கட்டுப்படுத்துகிறது, ஒரு சிறிய மதிப்பு பரந்த சுரங்கங்களை " +"உருவாக்குகிறது.\n" +" மதிப்பு> = 10.0 சுரங்கங்களின் தலைமுறையை முற்றிலுமாக முடக்குகிறது மற்றும் " +"தவிர்க்கிறது\n" +" தீவிர ஒலி கணக்கீடுகள்." + +#: src/settings_translation_file.cpp +msgid "Crash message" +msgstr "செயலிழப்பு செய்தி" + +#: src/settings_translation_file.cpp +msgid "Crosshair alpha" +msgstr "குறுக்குவழி ஆல்பா" + +#: src/settings_translation_file.cpp +msgid "" +"Crosshair alpha (opaqueness, between 0 and 255).\n" +"This also applies to the object crosshair." +msgstr "" +"குறுக்குவழி ஆல்பா (ஒளிபுகா, 0 மற்றும் 255 க்கு இடையில்).\n" +" இது குறுக்கு நாற்காலிக்கும் பொருந்தும்." + +#: src/settings_translation_file.cpp +msgid "Crosshair color" +msgstr "குறுக்கு நாற்காலி நிறம்" + +#: src/settings_translation_file.cpp +msgid "" +"Crosshair color (R,G,B).\n" +"Also controls the object crosshair color" +msgstr "" +"குறுக்குவழி நிறம் (ஆர், சி, பி).\n" +" பொருள் குறுக்குவழி நிறத்தையும் கட்டுப்படுத்துகிறது" + +#: src/settings_translation_file.cpp +msgid "Debug log file size threshold" +msgstr "பிழைத்திருத்த பதிவு கோப்பு அளவு வாசல்" + +#: src/settings_translation_file.cpp +msgid "Debug log level" +msgstr "பதிவு நிலை பிழைத்திருத்த" + +#: src/settings_translation_file.cpp +msgid "Debugging" +msgstr "பிழைத்திருத்தம்" + +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Dedicated server step" +msgstr "அர்ப்பணிக்கப்பட்ட சேவையக படி" + +#: src/settings_translation_file.cpp +msgid "Default acceleration" +msgstr "இயல்புநிலை முடுக்கம்" + +#: src/settings_translation_file.cpp +msgid "" +"Default maximum number of forceloaded mapblocks.\n" +"Set this to -1 to disable the limit." +msgstr "" +"இயல்புநிலை அதிகபட்ச ஃபோர்செலோடட் மேப் பிளாக்சின் எண்ணிக்கை.\n" +" வரம்பை முடக்க இதை -1 ஆக அமைக்கவும்." + +#: src/settings_translation_file.cpp +msgid "Default password" +msgstr "இயல்புநிலை கடவுச்சொல்" + +#: src/settings_translation_file.cpp +msgid "Default privileges" +msgstr "இயல்புநிலை சலுகைகள்" + +#: src/settings_translation_file.cpp +msgid "Default report format" +msgstr "இயல்புநிலை அறிக்கை வடிவம்" + +#: src/settings_translation_file.cpp +msgid "Default stack size" +msgstr "இயல்புநிலை அடுக்கு அளவு" + +#: src/settings_translation_file.cpp +msgid "" +"Define shadow filtering quality.\n" +"This simulates the soft shadows effect by applying a PCF or Poisson disk\n" +"but also uses more resources." +msgstr "" +"நிழல் வடிகட்டுதல் தரத்தை வரையறுக்கவும்.\n" +" இது பிசிஎஃப் அல்லது பாய்சன் வட்டைப் பயன்படுத்துவதன் மூலம் மென்மையான நிழல் விளைவை " +"உருவகப்படுத்துகிறது\n" +" ஆனால் அதிக வளங்களையும் பயன்படுத்துகிறது." + +#: src/settings_translation_file.cpp +msgid "" +"Define the oldest clients allowed to connect.\n" +"Older clients are compatible in the sense that they will not crash when " +"connecting\n" +"to new servers, but they may not support all new features that you are " +"expecting.\n" +"This allows for more fine-grained control than " +"strict_protocol_version_checking.\n" +"Luanti still enforces its own internal minimum, and enabling\n" +"strict_protocol_version_checking will effectively override this." +msgstr "" +"இணைக்க அனுமதிக்கப்பட்ட பழமையான வாடிக்கையாளர்களை வரையறுக்கவும்.\n" +" பழைய வாடிக்கையாளர்கள் இணைக்கும்போது அவர்கள் செயலிழக்க மாட்டார்கள் என்ற பொருளில் " +"இணக்கமானவர்கள்\n" +" புதிய சேவையகங்களுக்கு, ஆனால் நீங்கள் எதிர்பார்க்கும் அனைத்து புதிய அம்சங்களையும் அவை " +"ஆதரிக்காது.\n" +" இது ச்ட்ரிக்ட்_பிரோட்டோகால்_்வெர்சன்_செக்கிங்கை விட சிறந்த கட்டுப்பாட்டு கட்டுப்பாட்டை " +"அனுமதிக்கிறது.\n" +" லுவாண்டி இன்னும் அதன் சொந்த உள் குறைந்தபட்சத்தை செயல்படுத்துகிறது, மேலும் " +"செயல்படுத்துகிறது\n" +" grict_protocol_version_checking இதை திறம்பட மீறும்." + +#: src/settings_translation_file.cpp +msgid "Defines areas where trees have apples." +msgstr "மரங்களில் ஆப்பிள்கள் உள்ள பகுதிகளை வரையறுக்கிறது." + +#: src/settings_translation_file.cpp +msgid "Defines areas with sandy beaches." +msgstr "மணல் கடற்கரைகளைக் கொண்ட பகுதிகளை வரையறுக்கிறது." + +#: src/settings_translation_file.cpp +msgid "Defines distribution of higher terrain and steepness of cliffs." +msgstr "" +"உயர் நிலப்பரப்பின் வழங்கல் மற்றும் குன்றின் செங்குத்தான தன்மை ஆகியவற்றை வரையறுக்கிறது." + +#: src/settings_translation_file.cpp +msgid "Defines distribution of higher terrain." +msgstr "உயர் நிலப்பரப்பின் விநியோகத்தை வரையறுக்கிறது." + +#: src/settings_translation_file.cpp +msgid "Defines full size of caverns, smaller values create larger caverns." +msgstr "" +"குகைகளின் முழு அளவையும் வரையறுக்கிறது, சிறிய மதிப்புகள் பெரிய குகைகளை " +"உருவாக்குகின்றன." + +#: src/settings_translation_file.cpp +msgid "Defines large-scale river channel structure." +msgstr "பெரிய அளவிலான நதி சேனல் கட்டமைப்பை வரையறுக்கிறது." + +#: src/settings_translation_file.cpp +msgid "Defines location and terrain of optional hills and lakes." +msgstr "விருப்ப மலைகள் மற்றும் ஏரிகளின் இருப்பிடம் மற்றும் நிலப்பரப்பை வரையறுக்கிறது." + +#: src/settings_translation_file.cpp +msgid "Defines the base ground level." +msgstr "அடிப்படை தரை மட்டத்தை வரையறுக்கிறது." + +#: src/settings_translation_file.cpp +msgid "Defines the depth of the river channel." +msgstr "நதி சேனலின் ஆழத்தை வரையறுக்கிறது." + +#: src/settings_translation_file.cpp +msgid "Defines the maximal player transfer distance in blocks (0 = unlimited)." +msgstr "தொகுதிகளில் அதிகபட்ச பிளேயர் பரிமாற்ற தூரத்தை வரையறுக்கிறது (0 = வரம்பற்றது)." + +#: src/settings_translation_file.cpp +msgid "" +"Defines the size of the sampling grid for FSAA and SSAA antialiasing " +"methods.\n" +"Value of 2 means taking 2x2 = 4 samples." +msgstr "" +"FSAA மற்றும் SSAA ஆன்டியாலியாசிங் முறைகளுக்கான மாதிரி கட்டத்தின் அளவை வரையறுக்கிறது.\n" +" 2 இன் மதிப்பு என்பது 2x2 = 4 மாதிரிகள் எடுப்பதைக் குறிக்கிறது." + +#: src/settings_translation_file.cpp +msgid "Defines the width of the river channel." +msgstr "நதி சேனலின் அகலத்தை வரையறுக்கிறது." + +#: src/settings_translation_file.cpp +msgid "Defines the width of the river valley." +msgstr "நதி பள்ளத்தாக்கின் அகலத்தை வரையறுக்கிறது." + +#: src/settings_translation_file.cpp +msgid "Defines tree areas and tree density." +msgstr "மூன்று பகுதிகள் மற்றும் மர அடர்த்தியை வரையறுக்கவும்." + +#: src/settings_translation_file.cpp +msgid "" +"Delay between mesh updates on the client in ms. Increasing this will slow\n" +"down the rate of mesh updates, thus reducing jitter on slower clients." +msgstr "" +"எம்.எச்சில் கிளையண்டில் கண்ணி புதுப்பிப்புகளுக்கு இடையில் நேரந்தவறுகை. இதை அதிகரிப்பது " +"மெதுவாக இருக்கும்\n" +" கண்ணி புதுப்பிப்புகளின் வீதத்தைக் குறைக்கும், இதனால் மெதுவான வாடிக்கையாளர்கள் மீது " +"நடுக்கத்தை குறைக்கிறது." + +#: src/settings_translation_file.cpp +msgid "Delay in sending blocks after building" +msgstr "கட்டிய பின் தொகுதிகள் அனுப்புவதில் நேரந்தவறுகை" + +#: src/settings_translation_file.cpp +msgid "Delay showing tooltips, stated in milliseconds." +msgstr "" +"மில்லி விநாடிகளில் குறிப்பிடப்பட்டுள்ள உதவிக்குறிப்புகளைக் காண்பிக்கும் நேரந்தவறுகை." + +#: src/settings_translation_file.cpp +msgid "Deprecated Lua API handling" +msgstr "நீக்கப்பட்ட லுவா பநிஇ கையாளுதல்" + +#: src/settings_translation_file.cpp +msgid "Depth below which you'll find giant caverns." +msgstr "கீழே உள்ள ஆழம் நீங்கள் மாபெரும் குகைகளைக் காணலாம்." + +#: src/settings_translation_file.cpp +msgid "Depth below which you'll find large caves." +msgstr "கீழே உள்ள ஆழம் நீங்கள் பெரிய குகைகளைக் காணலாம்." + +#: src/settings_translation_file.cpp +msgid "" +"Description of server, to be displayed when players join and in the " +"serverlist." +msgstr "" +"சேவையகத்தின் விளக்கம், வீரர்கள் சேரும்போது மற்றும் சர்வர் பட்டியலில் காண்பிக்கப்பட வேண்டும்." + +#: src/settings_translation_file.cpp +msgid "Desert noise threshold" +msgstr "பாலைவன ஒலி வாசல்" + +#: src/settings_translation_file.cpp +msgid "" +"Deserts occur when np_biome exceeds this value.\n" +"When the 'snowbiomes' flag is enabled, this is ignored." +msgstr "" +"NP_BIOME இந்த மதிப்பை மீறும் போது பாலைவனங்கள் நிகழ்கின்றன.\n" +" 'ச்னோபியோம்கள்' கொடி இயக்கப்பட்டால், இது புறக்கணிக்கப்படுகிறது." + +#: src/settings_translation_file.cpp +msgid "Developer Options" +msgstr "உருவாக்குபவர் விருப்பங்கள்" + +#: src/settings_translation_file.cpp +msgid "Disallow empty passwords" +msgstr "வெற்று கடவுச்சொற்களை அனுமதிக்காதீர்கள்" + +#: src/settings_translation_file.cpp +msgid "Display Density Scaling Factor" +msgstr "காட்சி அடர்த்தி அளவிடுதல் காரணி" + +#: src/settings_translation_file.cpp +msgid "" +"Distance in nodes at which transparency depth sorting is enabled.\n" +"Use this to limit the performance impact of transparency depth sorting.\n" +"Set to 0 to disable it entirely." +msgstr "" +"வெளிப்படைத்தன்மை ஆழம் வரிசைப்படுத்துதல் இயக்கப்பட்ட முனைகளில் தூரம்.\n" +" வெளிப்படைத்தன்மை ஆழம் வரிசையாக்கத்தின் செயல்திறன் தாக்கத்தை கட்டுப்படுத்த இதைப் " +"பயன்படுத்தவும்.\n" +" அதை முழுவதுமாக முடக்க 0 என அமைக்கவும்." + +#: src/settings_translation_file.cpp +msgid "Domain name of server, to be displayed in the serverlist." +msgstr "சேவையகத்தின் டொமைன் பெயர், சேவையக பட்டியலில் காட்டப்பட வேண்டும்." + +#: src/settings_translation_file.cpp +msgid "Double tap jump for fly" +msgstr "பறக்க இரட்டை தட்டு சம்ப்" + +#: src/settings_translation_file.cpp +msgid "Double-tapping the jump key toggles fly mode." +msgstr "சம்ப் விசையை இருமுறை தட்டுவது பறக்கும் பயன்முறையை மாற்றுகிறது." + +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Dump the mapgen debug information." +msgstr "மேப்சென் பிழைத்திருத்த தகவலைக் கொட்டவும்." + +#: src/settings_translation_file.cpp +msgid "Dungeon maximum Y" +msgstr "நிலவறை அதிகபட்ச ஒய்" + +#: src/settings_translation_file.cpp +msgid "Dungeon minimum Y" +msgstr "நிலவறை குறைந்தபட்ச ஒய்" + +#: src/settings_translation_file.cpp +msgid "Dungeon noise" +msgstr "நிலவறை ஒலி" + +#: src/settings_translation_file.cpp +msgid "Effects" +msgstr "விளைவுகள்" + +#: src/settings_translation_file.cpp +msgid "Enable Automatic Exposure" +msgstr "தானியங்கி வெளிப்பாட்டை இயக்கவும்" + +#: src/settings_translation_file.cpp +msgid "Enable Bloom" +msgstr "ப்ளூமை இயக்கவும்" + +#: src/settings_translation_file.cpp +msgid "Enable Bloom Debug" +msgstr "ப்ளூம் பிழைத்திருத்தத்தை இயக்கவும்" + +#: src/settings_translation_file.cpp +msgid "Enable Debanding" +msgstr "பற்றாக்குறையை இயக்கவும்" + +#: src/settings_translation_file.cpp +msgid "" +"Enable IPv6 support (for both client and server).\n" +"Required for IPv6 connections to work at all." +msgstr "" +"IPv6 ஆதரவை இயக்கவும் (கிளையன்ட் மற்றும் சேவையகம் இரண்டிற்கும்).\n" +" ஐபிவி 6 இணைப்புகள் வேலை செய்ய தேவை." + +#: src/settings_translation_file.cpp +msgid "" +"Enable Lua modding support on client.\n" +"This support is experimental and API can change." +msgstr "" +"கிளையன்ட் மீது லுவா மோடிங் ஆதரவை இயக்கவும்.\n" +" இந்த உதவி சோதனை மற்றும் பநிஇ மாறலாம்." + +#: src/settings_translation_file.cpp +msgid "" +"Enable Poisson disk filtering.\n" +"On true uses Poisson disk to make \"soft shadows\". Otherwise uses PCF " +"filtering." +msgstr "" +"பாய்சன் வட்டு வடிகட்டலை இயக்கவும்.\n" +" உண்மையான பயன்பாடுகளில் \"மென்மையான நிழல்கள்\" செய்ய பாய்சன் வட்டு. இல்லையெனில் பிசிஎஃப் " +"வடிகட்டலைப் பயன்படுத்துகிறது." + +#: src/settings_translation_file.cpp +msgid "Enable Post Processing" +msgstr "இடுகை செயலாக்கத்தை இயக்கவும்" + +#: src/settings_translation_file.cpp +msgid "Enable Raytraced Culling" +msgstr "ரேச்ட்ரேச் கலிங்கை இயக்கவும்" + +#: src/settings_translation_file.cpp +msgid "" +"Enable automatic exposure correction\n" +"When enabled, the post-processing engine will\n" +"automatically adjust to the brightness of the scene,\n" +"simulating the behavior of human eye." +msgstr "" +"தானியங்கி வெளிப்பாடு திருத்தத்தை இயக்கவும்\n" +" இயக்கப்பட்டால், பிந்தைய செயலாக்க இயந்திரம்\n" +" காட்சியின் பிரகாசத்தை தானாக சரிசெய்யவும்,\n" +" மனித கண்ணின் நடத்தை உருவகப்படுத்துதல்." + +#: src/settings_translation_file.cpp +#, fuzzy +msgid "" +"Enable colored shadows for transculent nodes.\n" +"This is expensive." +msgstr "" +"வண்ண நிழல்களை இயக்கவும்.\n" +" உண்மையான ஒளிஊடுருவக்கூடிய முனைகளில் வண்ண நிழல்கள். இது விலை உயர்ந்தது." + +#: src/settings_translation_file.cpp +msgid "Enable console window" +msgstr "கன்சோல் சாளரத்தை இயக்கவும்" + +#: src/settings_translation_file.cpp +msgid "Enable joysticks" +msgstr "சாய்ச்டிக்சை இயக்கவும்" + +#: src/settings_translation_file.cpp +msgid "Enable joysticks. Requires a restart to take effect" +msgstr "சாய்ச்டிக்சை இயக்கவும். நடைமுறைக்கு வர மறுதொடக்கம் தேவை" + +#: src/settings_translation_file.cpp +msgid "Enable mod channels support." +msgstr "மோட் சேனல்கள் ஆதரவை இயக்கவும்." + +#: src/settings_translation_file.cpp +msgid "Enable mod security" +msgstr "மோட் பாதுகாப்பை இயக்கவும்" + +#: src/settings_translation_file.cpp +msgid "Enable mouse wheel (scroll) for item selection in hotbar." +msgstr "ஆட்பாரில் உருப்படி தேர்வுக்கு மவுச் வீல் (சுருள்) இயக்கவும்." + +#: src/settings_translation_file.cpp +msgid "Enable random mod loading (mainly used for testing)." +msgstr "சீரற்ற மோட் ஏற்றுதல் (முக்கியமாக சோதனைக்கு பயன்படுத்தப்படுகிறது)." + +#: src/settings_translation_file.cpp +msgid "Enable random user input (only used for testing)." +msgstr "சீரற்ற பயனர் உள்ளீட்டை இயக்கவும் (சோதனைக்கு மட்டுமே பயன்படுத்தப்படுகிறது)." + +#: src/settings_translation_file.cpp +msgid "Enable smooth lighting with simple ambient occlusion." +msgstr "எளிய சுற்றுப்புற மறுப்புடன் மென்மையான விளக்குகளை இயக்கவும்." + +#: src/settings_translation_file.cpp +msgid "Enable split login/register" +msgstr "பிளவு உள்நுழைவு/பதிவேட்டை இயக்கவும்" + +#: src/settings_translation_file.cpp +msgid "" +"Enable to disallow old clients from connecting.\n" +"Older clients are compatible in the sense that they will not crash when " +"connecting\n" +"to new servers, but they may not support all new features that you are " +"expecting." +msgstr "" +"பழைய வாடிக்கையாளர்களை இணைப்பதை அனுமதிக்க வேண்டாம்.\n" +" பழைய வாடிக்கையாளர்கள் இணைக்கும்போது அவர்கள் செயலிழக்க மாட்டார்கள் என்ற பொருளில் " +"இணக்கமானவர்கள்\n" +" புதிய சேவையகங்களுக்கு, ஆனால் நீங்கள் எதிர்பார்க்கும் அனைத்து புதிய அம்சங்களையும் அவை " +"ஆதரிக்காது." + +#: src/settings_translation_file.cpp +msgid "Enable updates available indicator on content tab" +msgstr "உள்ளடக்க தாவலில் கிடைக்கக்கூடிய காட்டி புதுப்பிப்புகளை இயக்கவும்" + +#: src/settings_translation_file.cpp +msgid "" +"Enable usage of remote media server (if provided by server).\n" +"Remote servers offer a significantly faster way to download media (e.g. " +"textures)\n" +"when connecting to the server." +msgstr "" +"தொலை ஊடக சேவையகத்தின் பயன்பாட்டை இயக்கவும் (சேவையகத்தால் வழங்கப்பட்டால்).\n" +" தொலை சேவையகங்கள் மீடியாவைப் பதிவிறக்குவதற்கு கணிசமாக விரைவான வழியை வழங்குகின்றன " +"(எ.கா. அமைப்பு)\n" +" சேவையகத்துடன் இணைக்கும்போது." + +#: src/settings_translation_file.cpp +msgid "" +"Enable view bobbing and amount of view bobbing.\n" +"For example: 0 for no view bobbing; 1.0 for normal; 2.0 for double." +msgstr "" +"பார்வை பாப்பிங் மற்றும் பார்வை பாபிங்கின் அளவு ஆகியவற்றை இயக்கவும்.\n" +" உதாரணமாக: 0 பார்வைக்கு இல்லை; சாதாரணத்திற்கு 1.0; இரட்டிப்புக்கு 2.0." + +#: src/settings_translation_file.cpp +#, fuzzy +msgid "" +"Enable/disable running an IPv6 server.\n" +"Ignored if bind_address is set." +msgstr "" +"ஐபிவி 6 சேவையகத்தை இயக்கவும்/முடக்கவும்.\n" +" BIND_ADDRESS அமைக்கப்பட்டால் புறக்கணிக்கப்படுகிறது.\n" +" இயக்க_ஐபிவி 6 இயக்கப்பட வேண்டும்." + +#: src/settings_translation_file.cpp +msgid "" +"Enables Hable's 'Uncharted 2' filmic tone mapping.\n" +"Simulates the tone curve of photographic film and how this approximates the\n" +"appearance of high dynamic range images. Mid-range contrast is slightly\n" +"enhanced, highlights and shadows are gradually compressed." +msgstr "" +"ஏபலின் 'பெயரிடப்படாத 2' ஃபிலிம் டோன் மேப்பிங்கை இயக்குகிறது.\n" +" புகைப்படப் படத்தின் தொனி வளைவை உருவகப்படுத்துகிறது, இது எவ்வாறு தோராயமாக " +"மதிப்பிடுகிறது\n" +" உயர் மாறும் ரேஞ்ச் படங்களின் தோற்றம். இடைப்பட்ட மாறுபாடு சற்று\n" +" மேம்படுத்தப்பட்ட, சிறப்பம்சங்கள் மற்றும் நிழல்கள் படிப்படியாக சுருக்கப்படுகின்றன." + +#: src/settings_translation_file.cpp +msgid "Enables animation of inventory items." +msgstr "சரக்கு உருப்படிகளின் அனிமேசனை செயல்படுத்துகிறது." + +#: src/settings_translation_file.cpp +msgid "Enables debug and error-checking in the OpenGL driver." +msgstr "ஓபன்சிஎல் டிரைவரில் பிழைத்திருத்தம் மற்றும் பிழை சரிபார்ப்பை செயல்படுத்துகிறது." + +#: src/settings_translation_file.cpp +msgid "Enables smooth scrolling." +msgstr "மென்மையான ச்க்ரோலிங் செயல்படுத்துகிறது." + +#: src/settings_translation_file.cpp +msgid "Enables the post processing pipeline." +msgstr "பிந்தைய செயலாக்க குழாய்வழியை செயல்படுத்துகிறது." + +#: src/settings_translation_file.cpp +msgid "" +"Enables the touchscreen controls, allowing you to play the game with a " +"touchscreen.\n" +"\"auto\" means that the touchscreen controls will be enabled and disabled\n" +"automatically depending on the last used input method." +msgstr "" +"தொடுதிரை கட்டுப்பாடுகளை செயல்படுத்துகிறது, இது தொடுதிரை மூலம் விளையாட்டை விளையாட " +"அனுமதிக்கிறது.\n" +" \"ஆட்டோ\" என்பது தொடுதிரை கட்டுப்பாடுகள் இயக்கப்பட்டு முடக்கப்படும் என்பதாகும்\n" +" கடைசியாக பயன்படுத்தப்பட்ட உள்ளீட்டு முறையைப் பொறுத்து தானாகவே." + +#: src/settings_translation_file.cpp +msgid "" +"Enables tradeoffs that reduce CPU load or increase rendering performance\n" +"at the expense of minor visual glitches that do not impact game playability." +msgstr "" +"சிபியு சுமையைக் குறைக்கும் அல்லது வழங்குதல் செயல்திறனை அதிகரிக்கும் பரிமாற்றங்களை " +"செயல்படுத்துகிறது\n" +" விளையாட்டு விளையாட்டுத்திறனை பாதிக்காத சிறிய காட்சி குறைபாடுகளின் இழப்பில்." + +#: src/settings_translation_file.cpp +msgid "Engine Profiler" +msgstr "என்சின் விவரக்குறிப்பு" + +#: src/settings_translation_file.cpp +msgid "Engine profiling data print interval" +msgstr "இயந்திர விவரக்குறிப்பு தரவு அச்சு இடைவெளி" + +#: src/settings_translation_file.cpp +msgid "Entity methods" +msgstr "நிறுவன முறைகள்" + +#: src/settings_translation_file.cpp +msgid "" +"Exponent of the floatland tapering. Alters the tapering behavior.\n" +"Value = 1.0 creates a uniform, linear tapering.\n" +"Values > 1.0 create a smooth tapering suitable for the default separated\n" +"floatlands.\n" +"Values < 1.0 (for example 0.25) create a more defined surface level with\n" +"flatter lowlands, suitable for a solid floatland layer." +msgstr "" +"ஃப்ளோட்லேண்ட் டேப்பரிங்கின் அடுக்கு. தட்டையான நடத்தை மாற்றுகிறது.\n" +" மதிப்பு = 1.0 ஒரு சீரான, நேரியல் டேப்பரிங் உருவாக்குகிறது.\n" +" மதிப்புகள்> 1.0 இயல்புநிலை பிரிக்கப்பட்ட ஒரு மென்மையான டேப்பரிங்கை உருவாக்கவும்\n" +" ஃப்ளோட்லேண்ட்ச்.\n" +" மதிப்புகள் <1.0 (எடுத்துக்காட்டாக 0.25) மேலும் வரையறுக்கப்பட்ட மேற்பரப்பு அளவை " +"உருவாக்குகிறது\n" +" ஒரு திடமான மிதவை அடுக்குக்கு ஏற்றது." + +#: src/settings_translation_file.cpp +msgid "Exposure compensation" +msgstr "வெளிப்பாடு இழப்பீடு" + +#: src/settings_translation_file.cpp +msgid "FPS" +msgstr "Fps" + +#: src/settings_translation_file.cpp +msgid "FPS when unfocused or paused" +msgstr "எஃப்.பி.எச் கவனம் செலுத்தப்படாத அல்லது இடைநிறுத்தப்படும்போது" + +#: src/settings_translation_file.cpp +msgid "Factor noise" +msgstr "காரணி ஒலி" + +#: src/settings_translation_file.cpp +msgid "Fall bobbing factor" +msgstr "வீழ்ச்சி பாப்பிங் காரணி" + +#: src/settings_translation_file.cpp +msgid "Fallback font path" +msgstr "குறைவடையும் எழுத்துரு பாதை" + +#: src/settings_translation_file.cpp +msgid "Fast mode acceleration" +msgstr "வேகமான பயன்முறை முடுக்கம்" + +#: src/settings_translation_file.cpp +msgid "Fast mode speed" +msgstr "வேகமான பயன்முறை விரைவு" + +#: src/settings_translation_file.cpp +msgid "Field of view" +msgstr "பார்வை புலம்" + +#: src/settings_translation_file.cpp +msgid "Field of view in degrees." +msgstr "டிகிரிகளில் பார்வை புலம்." + +#: src/settings_translation_file.cpp +msgid "" +"File in client/serverlist/ that contains your favorite servers displayed in " +"the\n" +"Multiplayer Tab." +msgstr "" +"கிளையன்ட்/ சர்வர் லிச்டில் கோப்பு/ அதில் உங்களுக்கு பிடித்த சேவையகங்கள் உள்ளன\n" +" மல்டிபிளேயர் தாவல்." + +#: src/settings_translation_file.cpp +msgid "Filler depth" +msgstr "நிரப்பு ஆழம்" + +#: src/settings_translation_file.cpp +msgid "Filler depth noise" +msgstr "நிரப்பு ஆழம் ஒலி" + +#: src/settings_translation_file.cpp +msgid "Filmic tone mapping" +msgstr "ஃபிலிம் டோன் மேப்பிங்" + +#: src/settings_translation_file.cpp +msgid "Filtering and Antialiasing" +msgstr "வடிகட்டுதல் மற்றும் ஆன்டிலியாசிங்" + +#: src/settings_translation_file.cpp +msgid "First of 4 2D noises that together define hill/mountain range height." +msgstr "இல்/மலை வீச்சு உயரத்தை ஒன்றாக வரையறுக்கும் 4 2 டி சத்தங்களில் முதல்." + +#: src/settings_translation_file.cpp +msgid "First of two 3D noises that together define tunnels." +msgstr "இரண்டு 3D சத்தங்களில் முதல் சுரங்கங்களை வரையறுக்கிறது." + +#: src/settings_translation_file.cpp +msgid "Fixed map seed" +msgstr "நிலையான வரைபட விதை" + +#: src/settings_translation_file.cpp +msgid "Fixed virtual joystick" +msgstr "நிலையான மெய்நிகர் சாய்ச்டிக்" + +#: src/settings_translation_file.cpp +msgid "" +"Fixes the position of virtual joystick.\n" +"If disabled, virtual joystick will center to first-touch's position." +msgstr "" +"மெய்நிகர் சாய்ச்டிக் நிலையை சரிசெய்கிறது.\n" +" முடக்கப்பட்டால், மெய்நிகர் சாய்ச்டிக் முதல்-தொடுதலின் நிலைக்கு மையமாக இருக்கும்." + +#: src/settings_translation_file.cpp +msgid "Floatland density" +msgstr "ஃப்ளோட்லேண்ட் அடர்த்தி" + +#: src/settings_translation_file.cpp +msgid "Floatland maximum Y" +msgstr "ஃப்ளோட்லேண்ட் அதிகபட்சம் ஒய்" + +#: src/settings_translation_file.cpp +msgid "Floatland minimum Y" +msgstr "ஃப்ளோட்லேண்ட் குறைந்தபட்ச ஒய்" + +#: src/settings_translation_file.cpp +msgid "Floatland noise" +msgstr "ஃப்ளோட்லேண்ட் ஒலி" + +#: src/settings_translation_file.cpp +msgid "Floatland taper exponent" +msgstr "ஃப்ளோட்லேண்ட் டேப்பர் எக்ச்போனென்ட்" + +#: src/settings_translation_file.cpp +msgid "Floatland tapering distance" +msgstr "ஃப்ளோட்லேண்ட் டேப்பரிங் தூரம்" + +#: src/settings_translation_file.cpp +msgid "Floatland water level" +msgstr "ஃப்ளோட்லேண்ட் நீர் நிலை" + +#: src/settings_translation_file.cpp +msgid "Fog" +msgstr "மூடுபனி" + +#: src/settings_translation_file.cpp +msgid "Fog start" +msgstr "தொடங்கும்" + +#: src/settings_translation_file.cpp +msgid "Font" +msgstr "எழுத்துரு" + +#: src/settings_translation_file.cpp +msgid "Font bold by default" +msgstr "இயல்புநிலையாக எழுத்துரு தைரியமானது" + +#: src/settings_translation_file.cpp +msgid "Font italic by default" +msgstr "இயல்பாக எழுத்துரு சாய்வு" + +#: src/settings_translation_file.cpp +msgid "Font shadow" +msgstr "எழுத்துரு நிழல்" + +#: src/settings_translation_file.cpp +msgid "Font shadow alpha" +msgstr "எழுத்துரு நிழல் ஆல்பா" + +#: src/settings_translation_file.cpp +msgid "Font size" +msgstr "எழுத்துரு அளவு" + +#: src/settings_translation_file.cpp +msgid "Font size divisible by" +msgstr "எழுத்துரு அளவு பிரிக்கக்கூடியது" + +#: src/settings_translation_file.cpp +msgid "Font size of the default font where 1 unit = 1 pixel at 96 DPI" +msgstr "இயல்புநிலை எழுத்துருவின் எழுத்துரு அளவு, அங்கு 1 அலகு = 1 படப்புள்ளி 96 டிபிஐ" + +#: src/settings_translation_file.cpp +msgid "Font size of the monospace font where 1 unit = 1 pixel at 96 DPI" +msgstr "மோனோச்பேச் எழுத்துருவின் எழுத்துரு அளவு, அங்கு 1 யூனிட் = 1 படப்புள்ளி 96 டிபிஐ" + +#: src/settings_translation_file.cpp +msgid "" +"Font size of the recent chat text and chat prompt in point (pt).\n" +"Value 0 will use the default font size." +msgstr "" +"அண்மைக் கால அரட்டை உரையின் எழுத்துரு அளவு மற்றும் புள்ளியில் அரட்டை வரியில் (PT).\n" +" மதிப்பு 0 இயல்புநிலை எழுத்துரு அளவைப் பயன்படுத்தும்." + +#: src/settings_translation_file.cpp +msgid "" +"For pixel-style fonts that do not scale well, this ensures that font sizes " +"used\n" +"with this font will always be divisible by this value, in pixels. For " +"instance,\n" +"a pixel font 16 pixels tall should have this set to 16, so it will only ever " +"be\n" +"sized 16, 32, 48, etc., so a mod requesting a size of 25 will get 32." +msgstr "" +"நன்றாக அளவிடாத படப்புள்ளி பாணி எழுத்துருக்களுக்கு, இது எழுத்துரு அளவுகள் " +"பயன்படுத்தப்படுவதை உறுதி செய்கிறது\n" +" இந்த எழுத்துரு எப்போதும் இந்த மதிப்பால், பிக்சல்களில் வகுக்கப்படும். உதாரணமாக,\n" +" ஒரு படப்புள்ளி எழுத்துரு 16 படப்புள்ளிகள் உயரம் இந்த தொகுப்பை 16 ஆக வைத்திருக்க " +"வேண்டும், எனவே அது எப்போதும் மட்டுமே இருக்கும்\n" +" அளவு 16, 32, 48, முதலியன, எனவே 25 அளவைக் கோரும் மோட் 32 கிடைக்கும்." + +#: src/settings_translation_file.cpp +msgid "" +"Format of player chat messages. The following strings are valid " +"placeholders:\n" +"@name, @message, @timestamp (optional)" +msgstr "" +"பிளேயர் அரட்டை செய்திகளின் வடிவம். பின்வரும் சரங்கள் செல்லுபடியாகும் ஒதுக்கிடங்கள்:\n" +" @name, @message, @timestamp (விரும்பினால்)" + +#: src/settings_translation_file.cpp +msgid "Format of screenshots." +msgstr "திரை சாட்களின் வடிவம்." + +#: src/settings_translation_file.cpp +msgid "Formspec Full-Screen Background Color" +msgstr "FORMSPEC முழு திரை பின்னணி நிறம்" + +#: src/settings_translation_file.cpp +msgid "Formspec Full-Screen Background Opacity" +msgstr "FORMSPEC முழு திரை பின்னணி ஒளிபுகாநிலை" + +#: src/settings_translation_file.cpp +msgid "Formspec full-screen background color (R,G,B)." +msgstr "FORMSPEC முழு திரை பின்னணி நிறம் (r, g, b)." + +#: src/settings_translation_file.cpp +msgid "Formspec full-screen background opacity (between 0 and 255)." +msgstr "FORMSPEC முழு திரை பின்னணி ஒளிபுகாநிலை (0 மற்றும் 255 க்கு இடையில்)." + +#: src/settings_translation_file.cpp +msgid "Fourth of 4 2D noises that together define hill/mountain range height." +msgstr "இல்/மலை வீச்சு உயரத்தை ஒன்றாக வரையறுக்கும் 4 2 டி சத்தங்களில் நான்காவது." + +#: src/settings_translation_file.cpp +msgid "Fractal type" +msgstr "பின்னல் வகை" + +#: src/settings_translation_file.cpp +msgid "Fraction of the visible distance at which fog starts to be rendered" +msgstr "மூடுபனி வழங்கத் தொடங்கும் புலப்படும் தூரத்தின் பின்னம்" + +#: src/settings_translation_file.cpp +msgid "" +"From how far blocks are generated for clients, stated in mapblocks (16 " +"nodes)." +msgstr "" +"மேப் பிளாக்ச் (16 முனைகளில்) குறிப்பிடப்பட்டுள்ள வாடிக்கையாளர்களுக்கு எவ்வளவு தூரம் " +"தொகுதிகள் உருவாக்கப்படுகின்றன என்பதிலிருந்து." + +#: src/settings_translation_file.cpp +msgid "" +"From how far blocks are sent to clients, stated in mapblocks (16 nodes)." +msgstr "" +"மேப் பிளாக்ச் (16 முனைகளில்) கூறப்பட்ட வாடிக்கையாளர்களுக்கு எவ்வளவு தூரம் " +"அனுப்பப்படுகிறது என்பதிலிருந்து." + +#: src/settings_translation_file.cpp +msgid "" +"From how far clients know about objects, stated in mapblocks (16 nodes).\n" +"\n" +"Setting this larger than active_block_range will also cause the server\n" +"to maintain active objects up to this distance in the direction the\n" +"player is looking. (This can avoid mobs suddenly disappearing from view)" +msgstr "" +"மேப் பிளாக்சில் (16 முனைகள்) கூறப்பட்ட பொருள்களைப் பற்றி வாடிக்கையாளர்களுக்கு எவ்வளவு " +"தூரம் தெரியும் என்பதிலிருந்து.\n" +"\n" +" ஆக்டிவ்_பிளாக்_ரேஞ்சை விட இது பெரியதாக அமைப்பதும் சேவையகத்தை ஏற்படுத்தும்\n" +" திசையில் இந்த தூரம் வரை செயலில் உள்ள பொருட்களை பராமரிக்க\n" +" வீரர் பார்க்கிறார். (இது கும்பல்கள் திடீரென்று பார்வையில் இருந்து மறைந்து போவதைத் " +"தவிர்க்கலாம்)" + +#: src/settings_translation_file.cpp +msgid "Full screen" +msgstr "முழுத் திரை" + +#: src/settings_translation_file.cpp +msgid "Fullscreen mode." +msgstr "முழுத்திரை பயன்முறை." + +#: src/settings_translation_file.cpp +msgid "GUI" +msgstr "குய்" + +#: src/settings_translation_file.cpp +msgid "GUI scaling" +msgstr "GUI அளவிடுதல்" + +#: src/settings_translation_file.cpp +msgid "GUI scaling filter" +msgstr "GUI அளவிடுதல் வடிகட்டி" + +#: src/settings_translation_file.cpp +msgid "Gamepads" +msgstr "கேம்பேட்ச்" + +#: src/settings_translation_file.cpp +msgid "Global callbacks" +msgstr "உலகளாவிய கால்பேக்குகள்" + +#: src/settings_translation_file.cpp +msgid "" +"Global map generation attributes.\n" +"In Mapgen v6 the 'decorations' flag controls all decorations except trees\n" +"and jungle grass, in all other mapgens this flag controls all decorations." +msgstr "" +"உலகளாவிய வரைபட தலைமுறை பண்புக்கூறுகள்.\n" +" MAPGEN V6 இல் 'அலங்காரங்கள்' கொடி மரங்களைத் தவிர அனைத்து அலங்காரங்களையும் " +"கட்டுப்படுத்துகிறது\n" +" மற்றும் சங்கிள் புல், மற்ற எல்லா வரைபடங்களிலும் இந்த கொடி அனைத்து அலங்காரங்களையும் " +"கட்டுப்படுத்துகிறது." + +#: src/settings_translation_file.cpp +msgid "" +"Gradient of light curve at maximum light level.\n" +"Controls the contrast of the highest light levels." +msgstr "" +"அதிகபட்ச ஒளி மட்டத்தில் ஒளி வளைவின் சாய்வு.\n" +" மிக உயர்ந்த ஒளி மட்டங்களின் மாறுபாட்டைக் கட்டுப்படுத்துகிறது." + +#: src/settings_translation_file.cpp +msgid "" +"Gradient of light curve at minimum light level.\n" +"Controls the contrast of the lowest light levels." +msgstr "" +"குறைந்தபட்ச ஒளி மட்டத்தில் ஒளி வளைவின் சாய்வு.\n" +" மிகக் குறைந்த ஒளி நிலைகளின் மாறுபாட்டைக் கட்டுப்படுத்துகிறது." + +#: src/settings_translation_file.cpp +msgid "Graphics" +msgstr "கிராபிக்ச்" + +#: src/settings_translation_file.cpp +msgid "Graphics and Audio" +msgstr "கிராபிக்ச் மற்றும் ஆடியோ" + +#: src/settings_translation_file.cpp +msgid "Gravity" +msgstr "ஈர்ப்பு" + +#: src/settings_translation_file.cpp +msgid "Ground level" +msgstr "நிலத்தடி நிலை" + +#: src/settings_translation_file.cpp +msgid "Ground noise" +msgstr "நில ஒலி" + +#: src/settings_translation_file.cpp +msgid "HTTP mods" +msgstr "Http மோட்ச்" + +#: src/settings_translation_file.cpp +msgid "HUD" +msgstr "HUD" + +#: src/settings_translation_file.cpp +msgid "HUD scaling" +msgstr "HUD அளவிடுதல்" + +#: src/settings_translation_file.cpp +msgid "" +"Handling for deprecated Lua API calls:\n" +"- none: Do not log deprecated calls\n" +"- log: mimic and log backtrace of deprecated call (default).\n" +"- error: abort on usage of deprecated call (suggested for mod developers)." +msgstr "" +"நீக்கப்பட்ட லுவா பநிஇ அழைப்புகளைக் கையாளுதல்:\n" +" - எதுவுமில்லை: நீக்கப்பட்ட அழைப்புகளை பதிவு செய்ய வேண்டாம்\n" +" - பதிவு: நீக்கப்பட்ட அழைப்பின் (இயல்புநிலை) பின்னடைவு மற்றும் பதிவு.\n" +" - பிழை: நீக்கப்பட்ட அழைப்பின் பயன்பாட்டை நிறுத்துங்கள் (மோட் டெவலப்பர்களுக்கு " +"பரிந்துரைக்கப்படுகிறது)." + +#: src/settings_translation_file.cpp +msgid "" +"Have the profiler instrument itself:\n" +"* Instrument an empty function.\n" +"This estimates the overhead, that instrumentation is adding (+1 function " +"call).\n" +"* Instrument the sampler being used to update the statistics." +msgstr "" +"சுயவிவர கருவியை வைத்திருங்கள்:\n" +" * கருவி ஒரு வெற்று செயல்பாடு.\n" +" இது மேல்நிலைகளை மதிப்பிடுகிறது, அந்த கருவி சேர்க்கிறது (+1 செயல்பாட்டு அழைப்பு).\n" +" * கருவி புள்ளிவிவரங்களைப் புதுப்பிக்க மாதிரி பயன்படுத்தப்படுகிறது." + +#: src/settings_translation_file.cpp +msgid "Heat blend noise" +msgstr "வெப்ப கலவை ஒலி" + +#: src/settings_translation_file.cpp +msgid "Heat noise" +msgstr "வெப்ப ஒலி" + +#: src/settings_translation_file.cpp +msgid "Height component of the initial window size." +msgstr "ஆரம்ப சாளர அளவின் உயர கூறு." + +#: src/settings_translation_file.cpp +msgid "Height noise" +msgstr "உயர ஒலி" + +#: src/settings_translation_file.cpp +msgid "Height select noise" +msgstr "உயரம் சத்தத்தை தேர்ந்தெடுக்கவும்" + +#: src/settings_translation_file.cpp +msgid "Hill steepness" +msgstr "மலை செங்குத்தானது" + +#: src/settings_translation_file.cpp +msgid "Hill threshold" +msgstr "மலை வாசல்" + +#: src/settings_translation_file.cpp +msgid "Hilliness1 noise" +msgstr "மலைப்பாங்கான 1 ஒலி" + +#: src/settings_translation_file.cpp +msgid "Hilliness2 noise" +msgstr "மலையடிவரம் 2 ஒலி" + +#: src/settings_translation_file.cpp +msgid "Hilliness3 noise" +msgstr "மலைப்பாங்கான 3 ஒலி" + +#: src/settings_translation_file.cpp +msgid "Hilliness4 noise" +msgstr "மலைப்பாங்கான 4 ஒலி" + +#: src/settings_translation_file.cpp +msgid "Homepage of server, to be displayed in the serverlist." +msgstr "சேவையகத்தின் முகப்புப்பக்கம், சர்வர் பட்டியலில் காட்டப்பட வேண்டும்." + +#: src/settings_translation_file.cpp +msgid "" +"Horizontal acceleration in air when jumping or falling,\n" +"in nodes per second per second." +msgstr "" +"குதிக்கும் போது அல்லது விழும்போது காற்றில் கிடைமட்ட முடுக்கம்,\n" +" நொடிக்கு ஒரு நொடிக்கு முனைகளில்." + +#: src/settings_translation_file.cpp +msgid "" +"Horizontal and vertical acceleration in fast mode,\n" +"in nodes per second per second." +msgstr "" +"வேகமான பயன்முறையில் கிடைமட்ட மற்றும் செங்குத்து முடுக்கம்,\n" +" நொடிக்கு ஒரு நொடிக்கு முனைகளில்." + +#: src/settings_translation_file.cpp +msgid "" +"Horizontal and vertical acceleration on ground or when climbing,\n" +"in nodes per second per second." +msgstr "" +"தரையில் அல்லது ஏறும் போது கிடைமட்ட மற்றும் செங்குத்து முடுக்கம்,\n" +" நொடிக்கு ஒரு நொடிக்கு முனைகளில்." + +#: src/settings_translation_file.cpp +msgid "Hotbar: Enable mouse wheel for selection" +msgstr "ஆட்பார்: தேர்வுக்கு சுட்டி சக்கரத்தை இயக்கவும்" + +#: src/settings_translation_file.cpp +msgid "Hotbar: Invert mouse wheel direction" +msgstr "ஆட்பார்: மவுச் சக்கர திசையை தலைகீழ்" + +#: src/settings_translation_file.cpp +msgid "How deep to make rivers." +msgstr "நதிகளை உருவாக்குவது எவ்வளவு ஆழமானது." + +#: src/settings_translation_file.cpp +msgid "" +"How fast liquid waves will move. Higher = faster.\n" +"If negative, liquid waves will move backwards." +msgstr "" +"எவ்வளவு வேகமாக திரவ அலைகள் நகரும். அதிக = வேகமான.\n" +" எதிர்மறையாக இருந்தால், திரவ அலைகள் பின்னோக்கி நகரும்." + +#: src/settings_translation_file.cpp +msgid "" +"How long the server will wait before unloading unused mapblocks, stated in " +"seconds.\n" +"Higher value is smoother, but will use more RAM." +msgstr "" +"பயன்படுத்தப்படாத மேப் பிளாக்சை இறக்குவதற்கு முன் சேவையகம் எவ்வளவு காலம் காத்திருக்கும், " +"நொடிகளில் கூறப்படுகிறது.\n" +" அதிக மதிப்பு மென்மையானது, ஆனால் அதிக ரேம் பயன்படுத்தும்." + +#: src/settings_translation_file.cpp +msgid "" +"How much you are slowed down when moving inside a liquid.\n" +"Decrease this to increase liquid resistance to movement." +msgstr "" +"ஒரு திரவத்திற்குள் நகரும் போது நீங்கள் எவ்வளவு மெதுவாக இருக்கிறீர்கள்.\n" +" இயக்கத்திற்கு திரவ எதிர்ப்பை அதிகரிக்க இதைக் குறைக்கவும்." + +#: src/settings_translation_file.cpp +msgid "How wide to make rivers." +msgstr "ஆறுகளை உருவாக்குவது எவ்வளவு அகலமானது." + +#: src/settings_translation_file.cpp +msgid "Humidity blend noise" +msgstr "ஈரப்பதம் கலவை ஒலி" + +#: src/settings_translation_file.cpp +msgid "Humidity noise" +msgstr "ஈரப்பதம் ஒலி" + +#: src/settings_translation_file.cpp +msgid "Humidity variation for biomes." +msgstr "பயோம்களுக்கான ஈரப்பதம் மாறுபாடு." + +#: src/settings_translation_file.cpp +msgid "IPv6" +msgstr "Ipvsh" + +#: src/settings_translation_file.cpp +msgid "IPv6 server" +msgstr "ஐபிவி 6 சேவையகம்" + +#: src/settings_translation_file.cpp +msgid "" +"If FPS would go higher than this, limit it by sleeping\n" +"to not waste CPU power for no benefit." +msgstr "" +"இதை விட FPS அதிகமாக சென்றால், தூங்குவதன் மூலம் அதைக் கட்டுப்படுத்துங்கள்\n" +" எந்த நன்மையும் இல்லாமல் சிபியு சக்தியை வீணாக்கக்கூடாது." + +#: src/settings_translation_file.cpp +msgid "" +"If disabled, \"Aux1\" key is used to fly fast if both fly and fast mode are\n" +"enabled." +msgstr "" +"முடக்கப்பட்டால், பறக்க மற்றும் வேகமான பயன்முறை இரண்டும் இருந்தால் வேகமாக பறக்க \"AUX1\" " +"விசை பயன்படுத்தப்படுகிறது\n" +" இயக்கப்பட்டது." + +#: src/settings_translation_file.cpp +msgid "" +"If enabled and you have ContentDB packages installed, Luanti may contact " +"ContentDB to\n" +"check for package updates when opening the mainmenu." +msgstr "" +"இயக்கப்பட்டிருந்தால் மற்றும் நீங்கள் ContentDB தொகுப்புகள் நிறுவப்பட்டிருந்தால், லுவாண்டி " +"உள்ளடக்கத்தை தொடர்பு கொள்ளலாம்\n" +" மெயின்மெனுவைத் திறக்கும்போது தொகுப்பு புதுப்பிப்புகளைச் சரிபார்க்கவும்." + +#: src/settings_translation_file.cpp +msgid "" +"If enabled, \"Aux1\" key instead of \"Sneak\" key is used for climbing down " +"and\n" +"descending." +msgstr "" +"இயக்கப்பட்டால், \"ச்னீக்\" விசைக்கு பதிலாக \"AUX1\" விசை கீழே ஏற பயன்படுத்தப்படுகிறது\n" +" இறங்கு." + +#: src/settings_translation_file.cpp +msgid "" +"If enabled, actions are recorded for rollback.\n" +"This option is only read when server starts." +msgstr "" +"இயக்கப்பட்டிருந்தால், ரோல்பேக்குக்கு நடவடிக்கைகள் பதிவு செய்யப்படுகின்றன.\n" +" சேவையகம் தொடங்கும் போது மட்டுமே இந்த விருப்பம் படிக்கப்படுகிறது." + +#: src/settings_translation_file.cpp +msgid "" +"If enabled, invalid world data won't cause the server to shut down.\n" +"Only enable this if you know what you are doing." +msgstr "" +"இயக்கப்பட்டால், தவறான உலக தரவு சேவையகம் மூடப்படாது.\n" +" நீங்கள் என்ன செய்கிறீர்கள் என்று உங்களுக்குத் தெரிந்தால் மட்டுமே இதை இயக்கவும்." + +#: src/settings_translation_file.cpp +msgid "" +"If enabled, players cannot join without a password or change theirs to an " +"empty password." +msgstr "" +"இயக்கப்பட்டிருந்தால், வீரர்கள் கடவுச்சொல் இல்லாமல் சேரவோ அல்லது வெற்று கடவுச்சொல்லாக மாற்றவோ " +"முடியாது." + +#: src/settings_translation_file.cpp +#, fuzzy +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" +"இயக்கப்பட்டால், கணக்கு பதிவு இடைமுகம் இல் உள்நுழைவிலிருந்து தனித்தனியாக இருக்கும்.\n" +" முடக்கப்பட்டால், உள்நுழையும்போது புதிய கணக்குகள் தானாக பதிவு செய்யப்படும்." + +#: src/settings_translation_file.cpp +msgid "" +"If enabled, the server will perform map block occlusion culling based on\n" +"on the eye position of the player. This can reduce the number of blocks\n" +"sent to the client by 50-80%. Clients will no longer receive most\n" +"invisible blocks, so that the utility of noclip mode is reduced." +msgstr "" +"இயக்கப்பட்டால், சேவையகம் வரைபடத் தொகுதி மறைமுகத்தை அடிப்படையாகக் கொண்டது\n" +" வீரரின் கண் நிலையில். இது தொகுதிகளின் எண்ணிக்கையைக் குறைக்கும்\n" +" வாடிக்கையாளருக்கு 50-80%அனுப்பப்பட்டது. வாடிக்கையாளர்கள் இனி அதிகம் பெற மாட்டார்கள்\n" +" கண்ணுக்கு தெரியாத தொகுதிகள், இதனால் NOCLIP பயன்முறையின் பயன்பாடு குறைக்கப்படுகிறது." + +#: src/settings_translation_file.cpp +msgid "" +"If enabled, you can place nodes at the position (feet + eye level) where you " +"stand.\n" +"This is helpful when working with nodeboxes in small areas." +msgstr "" +"இயக்கப்பட்டால், நீங்கள் நிற்கும் இடத்தில் (அடி + கண் நிலை) முனைகளில் முனைகளை வைக்கலாம்.\n" +" சிறிய பகுதிகளில் நோட்பாக்சுடன் பணிபுரியும் போது இது உதவியாக இருக்கும்." + +#: src/settings_translation_file.cpp +msgid "" +"If the CSM restriction for node range is enabled, get_node calls are " +"limited\n" +"to this distance from the player to the node." +msgstr "" +"முனை வரம்பிற்கான சிஎச்எம் கட்டுப்பாடு இயக்கப்பட்டிருந்தால், get_node அழைப்புகள் குறைவாகவே " +"இருக்கும்\n" +" பிளேயரிலிருந்து முனை வரை இந்த தூரத்திற்கு." + +#: src/settings_translation_file.cpp +msgid "" +"If the execution of a chat command takes longer than this specified time in\n" +"seconds, add the time information to the chat command message" +msgstr "" +"அரட்டை கட்டளையை செயல்படுத்துவது இந்த குறிப்பிட்ட நேரத்தை விட அதிக நேரம் எடுத்தால்\n" +" விநாடிகள், அரட்டை கட்டளை செய்தியில் நேர தகவலைச் சேர்க்கவும்" + +#: src/settings_translation_file.cpp +msgid "" +"If the file size of debug.txt exceeds the number of megabytes specified in\n" +"this setting when it is opened, the file is moved to debug.txt.1,\n" +"deleting an older debug.txt.1 if it exists.\n" +"debug.txt is only moved if this setting is positive." +msgstr "" +"பிழைத்திருத்தத்தின் கோப்பு அளவு குறிப்பிடப்பட்ட மெகாபைட்டுகளின் எண்ணிக்கையை விட அதிகமாக " +"இருந்தால்\n" +" இந்த அமைப்பு திறக்கப்படும்போது, கோப்பு பிழைத்திருத்தத்திற்கு நகர்த்தப்படுகிறது. Txt.1,\n" +" பழைய பிழைத்திருத்தத்தை நீக்குதல். Txt.1 அது இருந்தால்.\n" +" இந்த அமைப்பு நேர்மறையாக இருந்தால் மட்டுமே பிழைத்திருத்தம். TXT நகர்த்தப்படும்." + +#: src/settings_translation_file.cpp +msgid "If this is set, players will always (re)spawn at the given position." +msgstr "" +"இது அமைக்கப்பட்டால், வீரர்கள் எப்போதும் (மறு) கொடுக்கப்பட்ட நிலையில் உருவாகிவிடுவார்கள்." + +#: src/settings_translation_file.cpp +msgid "Ignore world errors" +msgstr "உலக பிழைகளை புறக்கணிக்கவும்" + +#: src/settings_translation_file.cpp +msgid "In-game chat console background alpha (opaqueness, between 0 and 255)." +msgstr "விளையாட்டு அரட்டை கன்சோல் பின்னணி ஆல்பா (ஒளிபுகா, 0 மற்றும் 255 க்கு இடையில்)." + +#: src/settings_translation_file.cpp +msgid "In-game chat console background color (R,G,B)." +msgstr "விளையாட்டு அரட்டை கன்சோல் பின்னணி நிறம் (ஆர், சி, பி)." + +#: src/settings_translation_file.cpp +msgid "In-game chat console height, between 0.1 (10%) and 1.0 (100%)." +msgstr "விளையாட்டு அரட்டை கன்சோல் உயரம், 0.1 (10%) முதல் 1.0 (100%) வரை." + +#: src/settings_translation_file.cpp +msgid "Initial vertical speed when jumping, in nodes per second." +msgstr "ஆரம்ப செங்குத்து விரைவு குதிக்கும் போது, வினாடிக்கு முனைகளில்." + +#: src/settings_translation_file.cpp +msgid "" +"Instrument builtin.\n" +"This is usually only needed by core/builtin contributors" +msgstr "" +"கருவி பில்டின்.\n" +" இது பொதுவாக கோர்/பில்டின் பங்களிப்பாளர்களால் மட்டுமே தேவைப்படுகிறது" + +#: src/settings_translation_file.cpp +msgid "Instrument chat commands on registration." +msgstr "பதிவு அரட்டை கட்டளைகள் பதிவு செய்வதில்." + +#: src/settings_translation_file.cpp +msgid "" +"Instrument global callback functions on registration.\n" +"(anything you pass to a core.register_*() function)" +msgstr "" +"கருவி உலகளாவிய கால்பேக் பதிவுகளில் செயல்பாடுகள்.\n" +" (நீங்கள் ஒரு கோர். ரெசிச்டர் _*() செயல்பாடு)" + +#: src/settings_translation_file.cpp +msgid "" +"Instrument the action function of Active Block Modifiers on registration." +msgstr "கருவி பதிவில் செயலில் தொகுதி மாற்றிகளின் செயல் செயல்பாடு." + +#: src/settings_translation_file.cpp +msgid "" +"Instrument the action function of Loading Block Modifiers on registration." +msgstr "கருவி பதிவில் தொகுதி மாற்றிகளை ஏற்றுவதற்கான செயல் செயல்பாடு." + +#: src/settings_translation_file.cpp +msgid "Instrument the methods of entities on registration." +msgstr "பதிவு செய்வதற்கான நிறுவனங்களின் முறைகள்." + +#: src/settings_translation_file.cpp +msgid "Interval of saving important changes in the world, stated in seconds." +msgstr "உலகில் முக்கியமான மாற்றங்களைச் சேமிக்கும் இடைவெளி, நொடிகளில் கூறப்பட்டுள்ளது." + +#: src/settings_translation_file.cpp +msgid "Inventory items animations" +msgstr "சரக்கு உருப்படிகள் அனிமேசன்கள்" + +#: src/settings_translation_file.cpp +msgid "Invert mouse" +msgstr "மவுச் தலைகீழ்" + +#: src/settings_translation_file.cpp +msgid "Invert mouse wheel (scroll) direction for item selection in hotbar." +msgstr "ஆட்பாரில் உருப்படி தேர்வுக்கு மவுச் வீல் (சுருள்) திசையை தலைகீழ்." + +#: src/settings_translation_file.cpp +msgid "Invert vertical mouse movement." +msgstr "செங்குத்து சுட்டி இயக்கம் தலைகீழ்." + +#: src/settings_translation_file.cpp +msgid "Italic font path" +msgstr "சாய்வு எழுத்துரு பாதை" + +#: src/settings_translation_file.cpp +msgid "Italic monospace font path" +msgstr "சாய்வு மோனோச்பேச் எழுத்துரு பாதை" + +#: src/settings_translation_file.cpp +msgid "Item entity TTL" +msgstr "உருப்படி நிறுவனம் TTL" + +#: src/settings_translation_file.cpp +msgid "Iterations" +msgstr "மறு செய்கைகள்" + +#: src/settings_translation_file.cpp +msgid "" +"Iterations of the recursive function.\n" +"Increasing this increases the amount of fine detail, but also\n" +"increases processing load.\n" +"At iterations = 20 this mapgen has a similar load to mapgen V7." +msgstr "" +"சுழல்நிலை செயல்பாட்டின் மறு செய்கைகள்.\n" +" இதை அதிகரிப்பது சிறந்த விவரங்களின் அளவை அதிகரிக்கிறது, ஆனால்\n" +" செயலாக்க சுமை அதிகரிக்கிறது.\n" +" மறு செய்கைகளில் = 20 இந்த மேப்சென் மேப்சென் வி 7 க்கு ஒத்த சுமை உள்ளது." + +#: src/settings_translation_file.cpp +msgid "Joystick ID" +msgstr "சாய்ச்டிக் ஐடி" + +#: src/settings_translation_file.cpp +msgid "Joystick button repetition interval" +msgstr "சாய்ச்டிக் பொத்தான் மறுபடியும் இடைவெளி" + +#: src/settings_translation_file.cpp +msgid "Joystick dead zone" +msgstr "சாய்ச்டிக் இறந்த மண்டலம்" + +#: src/settings_translation_file.cpp +msgid "Joystick frustum sensitivity" +msgstr "சாய்ச்டிக் ஃப்ரச்டம் உணர்திறன்" + +#: src/settings_translation_file.cpp +msgid "Joystick type" +msgstr "சாய்ச்டிக் வகை" + +#: src/settings_translation_file.cpp +msgid "" +"Julia set only.\n" +"W component of hypercomplex constant.\n" +"Alters the shape of the fractal.\n" +"Has no effect on 3D fractals.\n" +"Range roughly -2 to 2." +msgstr "" +"சூலியா மட்டுமே.\n" +" ஐப்பர் காம்ப்ளக்ச் மாறிலியின் w கூறு.\n" +" ஃப்ராக்டலின் வடிவத்தை மாற்றுகிறது.\n" +" 3D பின்னல்களில் எந்த விளைவும் இல்லை.\n" +" வரம்பு தோராயமாக -2 முதல் 2 வரை." + +#: src/settings_translation_file.cpp +msgid "" +"Julia set only.\n" +"X component of hypercomplex constant.\n" +"Alters the shape of the fractal.\n" +"Range roughly -2 to 2." +msgstr "" +"சூலியா மட்டுமே.\n" +" ஐப்பர் காம்ப்ளக்ச் மாறிலியின் ஃச் கூறு.\n" +" ஃப்ராக்டலின் வடிவத்தை மாற்றுகிறது.\n" +" வரம்பு தோராயமாக -2 முதல் 2 வரை." + +#: src/settings_translation_file.cpp +msgid "" +"Julia set only.\n" +"Y component of hypercomplex constant.\n" +"Alters the shape of the fractal.\n" +"Range roughly -2 to 2." +msgstr "" +"சூலியா மட்டுமே.\n" +" ஐப்பர் காம்ப்ளக்ச் மாறிலியின் ஒய் கூறு.\n" +" ஃப்ராக்டலின் வடிவத்தை மாற்றுகிறது.\n" +" வரம்பு தோராயமாக -2 முதல் 2 வரை." + +#: src/settings_translation_file.cpp +msgid "" +"Julia set only.\n" +"Z component of hypercomplex constant.\n" +"Alters the shape of the fractal.\n" +"Range roughly -2 to 2." +msgstr "" +"சூலியா மட்டுமே.\n" +" ஐப்பர் காம்ப்ளக்ச் மாறிலியின் சட் கூறு.\n" +" ஃப்ராக்டலின் வடிவத்தை மாற்றுகிறது.\n" +" வரம்பு தோராயமாக -2 முதல் 2 வரை." + +#: src/settings_translation_file.cpp +msgid "Julia w" +msgstr "சூலியா இன்" + +#: src/settings_translation_file.cpp +msgid "Julia x" +msgstr "சூலியா ஃச்" + +#: src/settings_translation_file.cpp +msgid "Julia y" +msgstr "சூலியா மற்றும்" + +#: src/settings_translation_file.cpp +msgid "Julia z" +msgstr "சூலியா சட்" + +#: src/settings_translation_file.cpp +msgid "Jumping speed" +msgstr "சம்பிங் விரைவு" + +#: src/settings_translation_file.cpp +msgid "Keyboard and Mouse" +msgstr "விசைப்பலகை மற்றும் சுட்டி" + +#: src/settings_translation_file.cpp +msgid "Kick players who sent more than X messages per 10 seconds." +msgstr "10 வினாடிகளுக்கு மேல் ஃச் செய்திகளை அனுப்பிய வீரர்களை கிக் செய்யுங்கள்." + +#: src/settings_translation_file.cpp +msgid "Lake steepness" +msgstr "ஏரி செங்குத்தானது" + +#: src/settings_translation_file.cpp +msgid "Lake threshold" +msgstr "ஏரி வாசல்" + +#: src/settings_translation_file.cpp +msgid "Language" +msgstr "மொழி" + +#: src/settings_translation_file.cpp +msgid "Large cave depth" +msgstr "பெரிய குகை ஆழம்" + +#: src/settings_translation_file.cpp +msgid "Large cave maximum number" +msgstr "பெரிய குகை அதிகபட்ச எண்" + +#: src/settings_translation_file.cpp +msgid "Large cave minimum number" +msgstr "பெரிய குகை குறைந்தபட்ச எண்" + +#: src/settings_translation_file.cpp +msgid "Large cave proportion flooded" +msgstr "பெரிய குகை விகிதம் வெள்ளத்தில் மூழ்கியது" + +#: src/settings_translation_file.cpp +msgid "Leaves style" +msgstr "இலைகள் நடை" + +#: src/settings_translation_file.cpp +msgid "" +"Leaves style:\n" +"- Fancy: all faces visible\n" +"- Simple: only outer faces\n" +"- Opaque: disable transparency" +msgstr "" +"இலைகள் நடை:\n" +" - ஆடம்பரமான: எல்லா முகங்களும் தெரியும்\n" +" - எளிமையானது: வெளிப்புற முகங்கள் மட்டுமே\n" +" - ஒளிபுகா: வெளிப்படைத்தன்மையை முடக்கு" + +#: src/settings_translation_file.cpp +msgid "" +"Length of a server tick (the interval at which everything is generally " +"updated),\n" +"stated in seconds.\n" +"Does not apply to sessions hosted from the client menu.\n" +"This is a lower bound, i.e. server steps may not be shorter than this, but\n" +"they are often longer." +msgstr "" +"ஒரு சேவையக டிக்கின் நீளம் (எல்லாம் பொதுவாக புதுப்பிக்கப்படும் இடைவெளி),\n" +" விநாடிகளில் கூறப்பட்டது.\n" +" கிளையன்ட் மெனுவிலிருந்து புரவலன் செய்யப்பட்ட அமர்வுகளுக்கு பொருந்தாது.\n" +" இது குறைந்த எல்லையாகும், அதாவது சேவையக படிகள் இதை விட குறைவாக இருக்காது, ஆனால்\n" +" அவை பெரும்பாலும் நீளமாக இருக்கும்." + +#: src/settings_translation_file.cpp +msgid "Length of liquid waves." +msgstr "திரவ அலைகளின் நீளம்." + +#: src/settings_translation_file.cpp +msgid "" +"Length of time between Active Block Modifier (ABM) execution cycles, stated " +"in seconds." +msgstr "" +"செயலில் தொகுதி மாற்றியமைப்பாளர் (ஏபிஎம்) செயல்படுத்தல் சுழற்சிகளுக்கு இடையிலான நேரத்தின் " +"நீளம், நொடிகளில் குறிப்பிடப்பட்டுள்ளது." + +#: src/settings_translation_file.cpp +msgid "Length of time between NodeTimer execution cycles, stated in seconds." +msgstr "" +"நோடிமர் சாவுஒறுப்பு சுழற்சிகளுக்கு இடையிலான நேரத்தின் நீளம், நொடிகளில் " +"குறிப்பிடப்பட்டுள்ளது." + +#: src/settings_translation_file.cpp +msgid "" +"Length of time between active block management cycles, stated in seconds." +msgstr "" +"செயலில் உள்ள தொகுதி மேலாண்மை சுழற்சிகளுக்கு இடையிலான நேரத்தின் நீளம், நொடிகளில் " +"குறிப்பிடப்பட்டுள்ளது." + +#: src/settings_translation_file.cpp +msgid "" +"Level of logging to be written to debug.txt:\n" +"- (no logging)\n" +"- none (messages with no level)\n" +"- error\n" +"- warning\n" +"- action\n" +"- info\n" +"- verbose\n" +"- trace" +msgstr "" +"பிழைத்திருத்தத்திற்கு எழுத வேண்டிய பதிவு நிலை. Txt:\n" +" - <எதுவும்> (பதிவு இல்லை)\n" +" - எதுவுமில்லை (எந்த மட்டமும் இல்லாத செய்திகள்)\n" +" - பிழை\n" +" - எச்சரிக்கை\n" +" - செயல்\n" +" - செய்தி\n" +" - வாய்மொழி\n" +" - சுவடு" + +#: src/settings_translation_file.cpp +msgid "Light curve boost" +msgstr "ஒளி வளைவு பூச்ட்" + +#: src/settings_translation_file.cpp +msgid "Light curve boost center" +msgstr "ஒளி வளைவு பூச்ட் நடுவண்" + +#: src/settings_translation_file.cpp +msgid "Light curve boost spread" +msgstr "ஒளி வளைவு பூச்ட் பரவல்" + +#: src/settings_translation_file.cpp +msgid "Light curve gamma" +msgstr "ஒளி வளைவு காமா" + +#: src/settings_translation_file.cpp +msgid "Light curve high gradient" +msgstr "ஒளி வளைவு உயர் சாய்வு" + +#: src/settings_translation_file.cpp +msgid "Light curve low gradient" +msgstr "ஒளி வளைவு குறைந்த சாய்வு" + +#: src/settings_translation_file.cpp +msgid "Lighting" +msgstr "லைட்டிங்" + +#: src/settings_translation_file.cpp +msgid "" +"Limit of map generation, in nodes, in all 6 directions from (0, 0, 0).\n" +"Only mapchunks completely within the mapgen limit are generated.\n" +"Value is stored per-world." +msgstr "" +"(0, 0, 0) இலிருந்து அனைத்து 6 திசைகளிலும் வரைபட உருவாக்கத்தின் வரம்பு, முனைகளில்.\n" +" மேப்சென் வரம்பிற்குள் MAPCHUNK கள் மட்டுமே உருவாக்கப்படுகின்றன.\n" +" மதிப்பு ஒரு உலகத்திற்கு சேமிக்கப்படுகிறது." + +#: src/settings_translation_file.cpp +msgid "" +"Limits number of parallel HTTP requests. Affects:\n" +"- Media fetch if server uses remote_media setting.\n" +"- Serverlist download and server announcement.\n" +"- Downloads performed by main menu (e.g. mod manager).\n" +"Only has an effect if compiled with cURL." +msgstr "" +"இணையான HTTP கோரிக்கைகளின் எண்ணிக்கை. பாதிக்கிறது:\n" +" - சேவையகம் ரிமோட்_மீடியா அமைப்பைப் பயன்படுத்தினால் மீடியா பெறுதல்.\n" +" - சேவையக பட்டியல் பதிவிறக்கம் மற்றும் சேவையக அறிவிப்பு.\n" +" - முதன்மையான மெனுவால் நிகழ்த்தப்பட்ட பதிவிறக்கங்கள் (எ.கா. மோட் மேலாளர்).\n" +" சுருட்டை தொகுத்தால் மட்டுமே ஒரு விளைவைக் கொண்டுள்ளது." + +#: src/settings_translation_file.cpp +msgid "Liquid fluidity" +msgstr "திரவ திரவம்" + +#: src/settings_translation_file.cpp +msgid "Liquid fluidity smoothing" +msgstr "திரவ திரவம் மென்மையாக்குதல்" + +#: src/settings_translation_file.cpp +msgid "Liquid loop max" +msgstr "திரவ வளைய அதிகபட்சம்" + +#: src/settings_translation_file.cpp +msgid "Liquid queue purge time" +msgstr "திரவ வரிசை சுத்திகரிப்பு நேரம்" + +#: src/settings_translation_file.cpp +msgid "Liquid reflections" +msgstr "திரவ பிரதிபலிப்புகள்" + +#: src/settings_translation_file.cpp +msgid "Liquid sinking" +msgstr "திரவ மூழ்கும்" + +#: src/settings_translation_file.cpp +msgid "Liquid update interval in seconds." +msgstr "நொடிகளில் திரவ புதுப்பிப்பு இடைவெளி." + +#: src/settings_translation_file.cpp +msgid "Liquid update tick" +msgstr "திரவ புதுப்பிப்பு டிக்" + +#: src/settings_translation_file.cpp +msgid "Load the game profiler" +msgstr "விளையாட்டு சுயவிவரத்தை ஏற்றவும்" + +#: src/settings_translation_file.cpp +msgid "" +"Load the game profiler to collect game profiling data.\n" +"Provides a /profiler command to access the compiled profile.\n" +"Useful for mod developers and server operators." +msgstr "" +"விளையாட்டு விவரக்குறிப்பு தரவை சேகரிக்க விளையாட்டு சுயவிவரத்தை ஏற்றவும்.\n" +" தொகுக்கப்பட்ட சுயவிவரத்தை அணுக ஏ /சுயவிவர கட்டளையை வழங்குகிறது.\n" +" மோட் உருவாக்குபவர்கள் மற்றும் சேவையக ஆபரேட்டர்களுக்கு பயனுள்ளதாக இருக்கும்." + +#: src/settings_translation_file.cpp +msgid "Loading Block Modifiers" +msgstr "தொகுதி மாற்றிகளை ஏற்றுகிறது" + +#: src/settings_translation_file.cpp +msgid "Lower Y limit of dungeons." +msgstr "நிலவறைகளின் குறைந்த ஒய் வரம்பு." + +#: src/settings_translation_file.cpp +msgid "Lower Y limit of floatlands." +msgstr "ஃப்ளோட்லேண்ட்சின் குறைந்த ஒய் வரம்பு." + +#: src/settings_translation_file.cpp +msgid "Main menu script" +msgstr "முதன்மை பட்டியல் ச்கிரிப்ட்" + +#: src/settings_translation_file.cpp +msgid "" +"Make fog and sky colors depend on daytime (dawn/sunset) and view direction." +msgstr "" +"மூடுபனி மற்றும் வான வண்ணங்கள் பகல்நேரத்தை (விடியல்/சூரிய அச்தமனம்) சார்ந்து திசையைக் காண்க." + +#: src/settings_translation_file.cpp +msgid "Map Compression Level for Disk Storage" +msgstr "வட்டு சேமிப்பகத்திற்கான வரைபட சுருக்க நிலை" + +#: src/settings_translation_file.cpp +msgid "Map Compression Level for Network Transfer" +msgstr "பிணையம் பரிமாற்றத்திற்கான வரைபட சுருக்க நிலை" + +#: src/settings_translation_file.cpp +msgid "Map directory" +msgstr "வரைபட அடைவு" + +#: src/settings_translation_file.cpp +msgid "Map generation attributes specific to Mapgen Carpathian." +msgstr "வரைபட உருவாக்கம் மேப்சென் கார்பாதியனுக்கு குறிப்பிட்ட பண்புக்கூறுகள்." + +#: src/settings_translation_file.cpp +msgid "" +"Map generation attributes specific to Mapgen Flat.\n" +"Occasional lakes and hills can be added to the flat world." +msgstr "" +"மேப்சென் பிளாட்டுக்கு குறிப்பிட்ட வரைபட தலைமுறை பண்புக்கூறுகள்.\n" +" அவ்வப்போது ஏரிகள் மற்றும் மலைகள் தட்டையான உலகில் சேர்க்கப்படலாம்." + +#: src/settings_translation_file.cpp +msgid "" +"Map generation attributes specific to Mapgen Fractal.\n" +"'terrain' enables the generation of non-fractal terrain:\n" +"ocean, islands and underground." +msgstr "" +"மேப்சென் ஃப்ராக்டலுக்கு குறிப்பிட்ட வரைபட தலைமுறை பண்புக்கூறுகள்.\n" +" 'டெர்ரெய்ன்' ஃப்ராக்டல் அல்லாத நிலப்பரப்பின் தலைமுறையை செயல்படுத்துகிறது:\n" +" கடல், தீவுகள் மற்றும் நிலத்தடி." + +#: src/settings_translation_file.cpp +msgid "" +"Map generation attributes specific to Mapgen Valleys.\n" +"'altitude_chill': Reduces heat with altitude.\n" +"'humid_rivers': Increases humidity around rivers.\n" +"'vary_river_depth': If enabled, low humidity and high heat causes rivers\n" +"to become shallower and occasionally dry.\n" +"'altitude_dry': Reduces humidity with altitude." +msgstr "" +"மேப்சென் பள்ளத்தாக்குகளுக்கு குறிப்பிட்ட வரைபட தலைமுறை பண்புக்கூறுகள்.\n" +" 'உயரம்_சில்': உயரத்துடன் வெப்பத்தை குறைக்கிறது.\n" +" 'ஈரப்பதம்_ரிவர்ச்': ஆறுகளைச் சுற்றியுள்ள ஈரப்பதத்தை அதிகரிக்கிறது.\n" +" 'vary_river_depth': இயக்கப்பட்டால், குறைந்த ஈரப்பதம் மற்றும் அதிக வெப்பம் ஆறுகளை " +"ஏற்படுத்துகிறது\n" +" ஆழமற்ற மற்றும் எப்போதாவது உலர்ந்ததாக மாற.\n" +" 'உயரம்_டி': உயரத்துடன் ஈரப்பதத்தை குறைக்கிறது." + +#: src/settings_translation_file.cpp +msgid "Map generation attributes specific to Mapgen v5." +msgstr "MAPGEN V5 க்கு குறிப்பிட்ட வரைபட தலைமுறை பண்புக்கூறுகள்." + +#: src/settings_translation_file.cpp +msgid "" +"Map generation attributes specific to Mapgen v6.\n" +"The 'snowbiomes' flag enables the new 5 biome system.\n" +"When the 'snowbiomes' flag is enabled jungles are automatically enabled and\n" +"the 'jungles' flag is ignored.\n" +"The 'temples' flag disables generation of desert temples. Normal dungeons " +"will appear instead." +msgstr "" +"MAPGEN V6 க்கு குறிப்பிட்ட வரைபட தலைமுறை பண்புக்கூறுகள்.\n" +" 'ச்னோபியோம்ச்' கொடி புதிய 5 பயோம் அமைப்பை செயல்படுத்துகிறது.\n" +" 'ச்னோபியோம்ச்' கொடி இயக்கப்பட்டிருக்கும் போது காடுகள் தானாக இயக்கப்படும்\n" +" 'காடுகள்' கொடி புறக்கணிக்கப்படுகிறது.\n" +" 'கோயில்கள்' கொடி பாலைவன கோயில்களின் தலைமுறையை முடக்குகிறது. அதற்கு பதிலாக சாதாரண " +"நிலவறைகள் தோன்றும்." + +#: src/settings_translation_file.cpp +msgid "" +"Map generation attributes specific to Mapgen v7.\n" +"'ridges': Rivers.\n" +"'floatlands': Floating land masses in the atmosphere.\n" +"'caverns': Giant caves deep underground." +msgstr "" +"MAPGEN V7 க்கு குறிப்பிட்ட வரைபட தலைமுறை பண்புக்கூறுகள்.\n" +" 'முகடுகள்': ஆறுகள்.\n" +" 'ஃப்ளோட்லேண்ட்ச்': வளிமண்டலத்தில் மிதக்கும் நிலப்பரப்பு.\n" +" 'கேவர்ன்ச்': செயண்ட் குகைகள் ஆழமான நிலத்தடி." + +#: src/settings_translation_file.cpp +msgid "Map generation limit" +msgstr "வரைபட தலைமுறை வரம்பு" + +#: src/settings_translation_file.cpp +msgid "Map save interval" +msgstr "வரைபடம் இடைவெளி சேமிக்கவும்" + +#: src/settings_translation_file.cpp +msgid "Map shadows update frames" +msgstr "வரைபட நிழல்கள் பிரேம்களைப் புதுப்பிக்கின்றன" + +#: src/settings_translation_file.cpp +msgid "Mapblock limit" +msgstr "மேப் பிளாக் வரம்பு" + +#: src/settings_translation_file.cpp +msgid "Mapblock mesh generation delay" +msgstr "மேப் பிளாக் மெச் தலைமுறை நேரந்தவறுகை" + +#: src/settings_translation_file.cpp +msgid "Mapblock mesh generation threads" +msgstr "மேப் பிளாக் மெச் தலைமுறை நூல்கள்" + +#: src/settings_translation_file.cpp +msgid "Mapblock unload timeout" +msgstr "MapBlock இறக்குமதி நேரம் முடிந்தது" + +#: src/settings_translation_file.cpp +msgid "Mapgen Carpathian" +msgstr "மேப்சென் கார்பாதியன்" + +#: src/settings_translation_file.cpp +msgid "Mapgen Carpathian specific flags" +msgstr "Mapgen Carpathian குறிப்பிட்ட கொடிகள்" + +#: src/settings_translation_file.cpp +msgid "Mapgen Flat" +msgstr "மேப்சென் பிளாட்" + +#: src/settings_translation_file.cpp +msgid "Mapgen Flat specific flags" +msgstr "Mapgen தட்டையான குறிப்பிட்ட கொடிகள்" + +#: src/settings_translation_file.cpp +msgid "Mapgen Fractal" +msgstr "Mapgen Fractal" + +#: src/settings_translation_file.cpp +msgid "Mapgen Fractal specific flags" +msgstr "Mapgen Fractal குறிப்பிட்ட கொடிகள்" + +#: src/settings_translation_file.cpp +msgid "Mapgen V5" +msgstr "மேப்சென் வி 5" + +#: src/settings_translation_file.cpp +msgid "Mapgen V5 specific flags" +msgstr "MAPGEN V5 குறிப்பிட்ட கொடிகள்" + +#: src/settings_translation_file.cpp +msgid "Mapgen V6" +msgstr "மேப்சென் வி 6" + +#: src/settings_translation_file.cpp +msgid "Mapgen V6 specific flags" +msgstr "MAPGEN V6 குறிப்பிட்ட கொடிகள்" + +#: src/settings_translation_file.cpp +msgid "Mapgen V7" +msgstr "மேப்சென் வி 7" + +#: src/settings_translation_file.cpp +msgid "Mapgen V7 specific flags" +msgstr "MAPGEN V7 குறிப்பிட்ட கொடிகள்" + +#: src/settings_translation_file.cpp +msgid "Mapgen Valleys" +msgstr "மேப்சென் பள்ளத்தாக்குகள்" + +#: src/settings_translation_file.cpp +msgid "Mapgen Valleys specific flags" +msgstr "Mapgen பள்ளத்தாக்குகள் குறிப்பிட்ட கொடிகள்" + +#: src/settings_translation_file.cpp +msgid "Mapgen debug" +msgstr "மேப்சென் பிழைத்திருத்தம்" + +#: src/settings_translation_file.cpp +msgid "Mapgen name" +msgstr "மேப்சென் பெயர்" + +#: src/settings_translation_file.cpp +msgid "Max block generate distance" +msgstr "அதிகபட்ச தொகுதி தூரத்தை உருவாக்குகிறது" + +#: src/settings_translation_file.cpp +msgid "Max block send distance" +msgstr "அதிகபட்ச தொகுதி தூரம் அனுப்பவும்" + +#: src/settings_translation_file.cpp +msgid "Max liquids processed per step." +msgstr "ஒரு படிக்கு செயலாக்கப்பட்ட அதிகபட்ச திரவங்கள்." + +#: src/settings_translation_file.cpp +msgid "Max. clearobjects extra blocks" +msgstr "அதிகபட்சம். கூடுதல் தொகுதிகள் க்ளியர்ஆப்செக்ட்ச்" + +#: src/settings_translation_file.cpp +msgid "Max. packets per iteration" +msgstr "அதிகபட்சம். மறு செய்கைக்கு பாக்கெட்டுகள்" + +#: src/settings_translation_file.cpp +msgid "Maximum FPS" +msgstr "அதிகபட்ச எஃப்.பி.எச்" + +#: src/settings_translation_file.cpp +msgid "Maximum FPS when the window is not focused, or when the game is paused." +msgstr "" +"சாளரம் கவனம் செலுத்தாதபோது, அல்லது விளையாட்டு இடைநிறுத்தப்படும்போது அதிகபட்ச " +"எஃப்.பி.எச்." + +#: src/settings_translation_file.cpp +msgid "Maximum distance to render shadows." +msgstr "நிழல்களை வழங்க அதிகபட்ச தூரம்." + +#: src/settings_translation_file.cpp +msgid "Maximum forceloaded blocks" +msgstr "அதிகபட்ச ஃபோர்செலோடட் தொகுதிகள்" + +#: src/settings_translation_file.cpp +msgid "Maximum hotbar width" +msgstr "அதிகபட்ச ஆட்பார் அகலம்" + +#: src/settings_translation_file.cpp +msgid "Maximum limit of random number of large caves per mapchunk." +msgstr "ஒரு மேப்சங்கிற்கு பெரிய குகைகளின் சீரற்ற எண்ணிக்கையின் அதிகபட்ச வரம்பு." + +#: src/settings_translation_file.cpp +msgid "Maximum limit of random number of small caves per mapchunk." +msgstr "ஒரு மேப்சங்குக்கு சிறிய குகைகளின் சீரற்ற எண்ணிக்கையின் அதிகபட்ச வரம்பு." + +#: src/settings_translation_file.cpp +msgid "" +"Maximum liquid resistance. Controls deceleration when entering liquid at\n" +"high speed." +msgstr "" +"அதிகபட்ச திரவ எதிர்ப்பு. திரவத்தில் நுழையும்போது குறைப்பைக் கட்டுப்படுத்துகிறது\n" +" அதிக விரைவு." + +#: src/settings_translation_file.cpp +msgid "" +"Maximum number of blocks that are simultaneously sent per client.\n" +"The maximum total count is calculated dynamically:\n" +"max_total = ceil((#clients + max_users) * per_client / 4)" +msgstr "" +"ஒரு வாடிக்கையாளருக்கு ஒரே நேரத்தில் அனுப்பப்படும் அதிகபட்ச தொகுதிகள்.\n" +" அதிகபட்ச மொத்த எண்ணிக்கை மாறும் வகையில் கணக்கிடப்படுகிறது:\n" +" max_total = ceil ((#வாடிக்கையாளர்கள் + அதிகபட்சம்_சர்கள்) * per_client / 4)" + +#: src/settings_translation_file.cpp +msgid "Maximum number of blocks that can be queued for loading." +msgstr "ஏற்றுவதற்கு வரிசைப்படுத்தக்கூடிய அதிகபட்ச தொகுதிகள்." + +#: src/settings_translation_file.cpp +msgid "" +"Maximum number of blocks to be queued that are to be generated.\n" +"This limit is enforced per player." +msgstr "" +"உருவாக்கப்பட வேண்டிய அதிகபட்ச தொகுதிகள் வரிசைப்படுத்தப்பட வேண்டும்.\n" +" இந்த வரம்பு ஒரு வீரருக்கு செயல்படுத்தப்படுகிறது." + +#: src/settings_translation_file.cpp +msgid "" +"Maximum number of blocks to be queued that are to be loaded from file.\n" +"This limit is enforced per player." +msgstr "" +"கோப்பிலிருந்து ஏற்றப்பட வேண்டிய அதிகபட்ச தொகுதிகள் வரிசையில் வைக்கப்பட வேண்டும்.\n" +" இந்த வரம்பு ஒரு வீரருக்கு செயல்படுத்தப்படுகிறது." + +#: src/settings_translation_file.cpp +msgid "" +"Maximum number of concurrent downloads. Downloads exceeding this limit will " +"be queued.\n" +"This should be lower than curl_parallel_limit." +msgstr "" +"ஒரே நேரத்தில் பதிவிறக்கங்களின் அதிகபட்ச எண்ணிக்கை. இந்த வரம்பை மீறும் பதிவிறக்கங்கள் " +"வரிசையில் நிற்கப்படும்.\n" +" இது CURL_PARALLEL_LIMIT ஐ விட குறைவாக இருக்க வேண்டும்." + +#: src/settings_translation_file.cpp +msgid "" +"Maximum number of mapblocks for client to be kept in memory.\n" +"Set to -1 for unlimited amount." +msgstr "" +"கிளையன்ட் நினைவகத்தில் வைக்க அதிகபட்ச மேப் பிளாக்சின் எண்ணிக்கை.\n" +" வரம்பற்ற தொகைக்கு -1 ஆக அமைக்கவும்." + +#: src/settings_translation_file.cpp +msgid "" +"Maximum number of packets sent per send step in the low-level networking " +"code.\n" +"You generally don't need to change this, however busy servers may benefit " +"from a higher number." +msgstr "" +"குறைந்த அளவிலான நெட்வொர்க்கிங் குறியீட்டில் அனுப்பப்பட்ட படி அனுப்பப்பட்ட அதிகபட்ச " +"பாக்கெட்டுகள்.\n" +" நீங்கள் பொதுவாக இதை மாற்ற தேவையில்லை, இருப்பினும் பிசியான சேவையகங்கள் அதிக " +"எண்ணிக்கையில் இருந்து பயனடையக்கூடும்." + +#: src/settings_translation_file.cpp +msgid "Maximum number of players that can be connected simultaneously." +msgstr "ஒரே நேரத்தில் இணைக்கக்கூடிய அதிகபட்ச வீரர்களின் எண்ணிக்கை." + +#: src/settings_translation_file.cpp +msgid "Maximum number of recent chat messages to show" +msgstr "காண்பிக்க அண்மைக் கால அரட்டை செய்திகளின் அதிகபட்ச எண்ணிக்கை" + +#: src/settings_translation_file.cpp +msgid "Maximum number of statically stored objects in a block." +msgstr "ஒரு தொகுதியில் நிலையான சேமிக்கப்பட்ட பொருட்களின் அதிகபட்ச எண்ணிக்கை." + +#: src/settings_translation_file.cpp +msgid "Maximum objects per block" +msgstr "ஒரு தொகுதிக்கு அதிகபட்ச பொருள்கள்" + +#: src/settings_translation_file.cpp +msgid "" +"Maximum proportion of current window to be used for hotbar.\n" +"Useful if there's something to be displayed right or left of hotbar." +msgstr "" +"ஆட்ட்பாருக்கு பயன்படுத்தப்பட வேண்டிய தற்போதைய சாளரத்தின் அதிகபட்ச விகிதம்.\n" +" ஆட்பாரின் வலது அல்லது இடதுபுறத்தில் ஏதாவது காட்டப்பட வேண்டும் என்றால் பயனுள்ளதாக " +"இருக்கும்." + +#: src/settings_translation_file.cpp +msgid "Maximum simultaneous block sends per client" +msgstr "ஒரு வாடிக்கையாளருக்கு அதிகபட்சம் ஒரே நேரத்தில் தொகுதி அனுப்புகிறது" + +#: src/settings_translation_file.cpp +msgid "Maximum size of the outgoing chat queue" +msgstr "வெளிச்செல்லும் அரட்டை வரிசையின் அதிகபட்ச அளவு" + +#: src/settings_translation_file.cpp +msgid "" +"Maximum size of the outgoing chat queue.\n" +"0 to disable queueing and -1 to make the queue size unlimited." +msgstr "" +"வெளிச்செல்லும் அரட்டை வரிசையின் அதிகபட்ச அளவு.\n" +" வரிசையை முடக்க 0 மற்றும் -1 வரிசை அளவை வரம்பற்றதாக மாற்ற." + +#: src/settings_translation_file.cpp +msgid "" +"Maximum time a file download (e.g. a mod download) may take, stated in " +"milliseconds." +msgstr "" +"அதிகபட்ச நேரம் ஒரு கோப்பு பதிவிறக்கம் (எ.கா. ஒரு மோட் பதிவிறக்கம்) மில்லி விநாடிகளில் " +"குறிப்பிடப்பட்டுள்ளது." + +#: src/settings_translation_file.cpp +msgid "" +"Maximum time an interactive request (e.g. server list fetch) may take, " +"stated in milliseconds." +msgstr "" +"அதிகபட்ச நேரம் ஒரு ஊடாடும் கோரிக்கை (எ.கா. சேவையக பட்டியல் பெறுதல்) எடுக்கப்படலாம், " +"இது மில்லி விநாடிகளில் கூறப்படுகிறது." + +#: src/settings_translation_file.cpp +msgid "Maximum users" +msgstr "அதிகபட்ச பயனர்கள்" + +#: src/settings_translation_file.cpp +msgid "Message of the day" +msgstr "அன்றைய செய்தி" + +#: src/settings_translation_file.cpp +msgid "Message of the day displayed to players connecting." +msgstr "இணைக்கும் வீரர்களுக்கு நாள் செய்தி காண்பிக்கப்படுகிறது." + +#: src/settings_translation_file.cpp +msgid "Method used to highlight selected object." +msgstr "தேர்ந்தெடுக்கப்பட்ட பொருளை முன்னிலைப்படுத்த பயன்படுத்தப்படும் முறை." + +#: src/settings_translation_file.cpp +msgid "Minimal level of logging to be written to chat." +msgstr "அரட்டைக்கு எழுதப்பட வேண்டிய குறைந்த அளவு பதிவு." + +#: src/settings_translation_file.cpp +msgid "Minimap scan height" +msgstr "மினிமாப் ச்கேன் உயரம்" + +#: src/settings_translation_file.cpp +msgid "Minimum dig repetition interval" +msgstr "குறைந்தபட்ச தோண்டி மறுபடியும் இடைவெளி" + +#: src/settings_translation_file.cpp +msgid "Minimum limit of random number of large caves per mapchunk." +msgstr "ஒரு மேப்சன்குக்கு பெரிய குகைகளின் சீரற்ற எண்ணிக்கையின் குறைந்தபட்ச வரம்பு." + +#: src/settings_translation_file.cpp +msgid "Minimum limit of random number of small caves per mapchunk." +msgstr "ஒரு மேப்சங்குக்கு சிறிய குகைகளின் சீரற்ற எண்ணிக்கையின் குறைந்தபட்ச வரம்பு." + +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Mipmapping" +msgstr "மிப்மாப்பிங்" + +#: src/settings_translation_file.cpp +msgid "Miscellaneous" +msgstr "மற்றவை" + +#: src/settings_translation_file.cpp +msgid "Mod Profiler" +msgstr "சுயவிவரங்களுக்கு எதிராக" + +#: src/settings_translation_file.cpp +msgid "Mod Security" +msgstr "மோட் பாதுகாப்பு" + +#: src/settings_translation_file.cpp +msgid "Mod channels" +msgstr "மோட் சேனல்கள்" + +#: src/settings_translation_file.cpp +msgid "Modifies the size of the HUD elements." +msgstr "HUD கூறுகளின் அளவை மாற்றியமைக்கிறது." + +#: src/settings_translation_file.cpp +msgid "Monospace font path" +msgstr "மோனோச்பேச் எழுத்துரு பாதை" + +#: src/settings_translation_file.cpp +msgid "Monospace font size" +msgstr "மோனோச்பேச் எழுத்துரு அளவு" + +#: src/settings_translation_file.cpp +msgid "Monospace font size divisible by" +msgstr "மோனோச்பேச் எழுத்துரு அளவு பிரிக்கக்கூடியது" + +#: src/settings_translation_file.cpp +msgid "Mountain height noise" +msgstr "மலை உயர ஒலி" + +#: src/settings_translation_file.cpp +msgid "Mountain noise" +msgstr "மலை ஒலி" + +#: src/settings_translation_file.cpp +msgid "Mountain variation noise" +msgstr "மலை மாறுபாடு ஒலி" + +#: src/settings_translation_file.cpp +msgid "Mountain zero level" +msgstr "மலை சுழிய நிலை" + +#: src/settings_translation_file.cpp +msgid "Mouse sensitivity" +msgstr "சுட்டி உணர்திறன்" + +#: src/settings_translation_file.cpp +msgid "Mouse sensitivity multiplier." +msgstr "சுட்டி உணர்திறன் பெருக்கி." + +#: src/settings_translation_file.cpp +msgid "Movement threshold" +msgstr "இயக்க வாசல்" + +#: src/settings_translation_file.cpp +msgid "Mud noise" +msgstr "மண் ஒலி" + +#: src/settings_translation_file.cpp +msgid "" +"Multiplier for fall bobbing.\n" +"For example: 0 for no view bobbing; 1.0 for normal; 2.0 for double." +msgstr "" +"வீழ்ச்சி பாப்பிங்கிற்கான பெருக்கி.\n" +" உதாரணமாக: 0 பார்வைக்கு இல்லை; சாதாரணத்திற்கு 1.0; இரட்டிப்புக்கு 2.0." + +#: src/settings_translation_file.cpp +msgid "Mute sound" +msgstr "முடக்கு ஒலி" + +#: src/settings_translation_file.cpp +msgid "" +"Name of map generator to be used when creating a new world.\n" +"Creating a world in the main menu will override this.\n" +"Current mapgens in a highly unstable state:\n" +"- The optional floatlands of v7 (disabled by default)." +msgstr "" +"புதிய உலகத்தை உருவாக்கும்போது பயன்படுத்த வேண்டிய வரைபட செனரேட்டரின் பெயர்.\n" +" முதன்மையான பட்டியலில் ஒரு உலகத்தை உருவாக்குவது இதை மேலெழுதும்.\n" +" மிகவும் நிலையற்ற நிலையில் தற்போதைய வரைபடங்கள்:\n" +" - V7 இன் விருப்பமான மிதவை நிலங்கள் (இயல்பாக முடக்கப்பட்டுள்ளது)." + +#: src/settings_translation_file.cpp +#, fuzzy +msgid "" +"Name of the player.\n" +"When running a server, a client connecting with this name is admin.\n" +"When starting from the main menu, this is overridden." +msgstr "" +"வீரரின் பெயர்.\n" +" சேவையகத்தை இயக்கும் போது, இந்த பெயருடன் இணைக்கும் வாடிக்கையாளர்கள் நிர்வாகிகள்.\n" +" முதன்மையான மெனுவிலிருந்து தொடங்கும் போது, இது மேலெழுதப்பட்டுள்ளது." + +#: src/settings_translation_file.cpp +msgid "" +"Name of the server, to be displayed when players join and in the serverlist." +msgstr "" +"சேவையகத்தின் பெயர், வீரர்கள் சேரும்போது மற்றும் சர்வர் பட்டியலில் காண்பிக்கப்பட வேண்டும்." + +#: src/settings_translation_file.cpp +msgid "" +"Network port to listen (UDP).\n" +"This value will be overridden when starting from the main menu." +msgstr "" +"கேட்க பிணையம் துறைமுகம் (யுடிபி).\n" +" முதன்மையான மெனுவிலிருந்து தொடங்கும் போது இந்த மதிப்பு மீறப்படும்." + +#: src/settings_translation_file.cpp +msgid "Networking" +msgstr "நெட்வொர்க்கிங்" + +#: src/settings_translation_file.cpp +msgid "New users need to input this password." +msgstr "புதிய பயனர்கள் இந்த கடவுச்சொல்லை உள்ளிட வேண்டும்." + +#: src/settings_translation_file.cpp +msgid "Node and Entity Highlighting" +msgstr "முனை மற்றும் நிறுவனம் சிறப்பம்சமாக" + +#: src/settings_translation_file.cpp +msgid "Node highlighting" +msgstr "முனை சிறப்பம்சமாக" + +#: src/settings_translation_file.cpp +msgid "Node specular" +msgstr "முனை ஏகப்பட்ட" + +#: src/settings_translation_file.cpp +msgid "NodeTimer interval" +msgstr "நோடிமர் இடைவெளி" + +#: src/settings_translation_file.cpp +msgid "Noises" +msgstr "ஒலி" + +#: src/settings_translation_file.cpp +msgid "Number of emerge threads" +msgstr "வெளிப்படும் நூல்களின் எண்ணிக்கை" + +#: src/settings_translation_file.cpp +msgid "" +"Number of emerge threads to use.\n" +"Value 0:\n" +"- Automatic selection. The number of emerge threads will be\n" +"- 'number of processors - 2', with a lower limit of 1.\n" +"Any other value:\n" +"- Specifies the number of emerge threads, with a lower limit of 1.\n" +"WARNING: Increasing the number of emerge threads increases engine mapgen\n" +"speed, but this may harm game performance by interfering with other\n" +"processes, especially in singleplayer and/or when running Lua code in\n" +"'on_generated'. For many users the optimum setting may be '1'." +msgstr "" +"பயன்படுத்த வெளிப்படையான நூல்களின் எண்ணிக்கை.\n" +" மதிப்பு 0:\n" +" - தானியங்கி தேர்வு. வெளிப்படும் நூல்களின் எண்ணிக்கை இருக்கும்\n" +" - 'செயலிகளின் எண்ணிக்கை - 2', குறைந்த வரம்புடன் 1.\n" +" வேறு எந்த மதிப்பு:\n" +" - குறைந்த வரம்புடன் 1 இன் எமர்ச் நூல்களின் எண்ணிக்கையைக் குறிப்பிடுகிறது.\n" +" எச்சரிக்கை: வெளிப்படையான நூல்களின் எண்ணிக்கையை அதிகரிப்பது என்சின் மேப்சென் " +"அதிகரிக்கிறது\n" +" விரைவு, ஆனால் இது மற்றவர்களுடன் தலையிடுவதன் மூலம் விளையாட்டு செயல்திறனுக்கு தீங்கு " +"விளைவிக்கும்\n" +" செயல்முறைகள், குறிப்பாக சிங்கிள் பிளேயர் மற்றும்/அல்லது லுவா குறியீட்டை இயக்கும் போது\n" +" 'on_generated'. பல பயனர்களுக்கு உகந்த அமைப்பு '1' ஆக இருக்கலாம்." + +#: src/settings_translation_file.cpp +msgid "" +"Number of extra blocks that can be loaded by /clearobjects at once.\n" +"This is a trade-off between SQLite transaction overhead and\n" +"memory consumption (4096=100MB, as a rule of thumb)." +msgstr "" +"ஒரே நேரத்தில் /கிளியப்செக்டுகளால் ஏற்றக்கூடிய கூடுதல் தொகுதிகளின் எண்ணிக்கை.\n" +" இது SQLITE பரிவர்த்தனை மேல்நிலை மற்றும் இடையே ஒரு வர்த்தகமாகும்\n" +" நினைவக நுகர்வு (4096 = 100MB, கட்டைவிரல் விதியாக)." + +#: src/settings_translation_file.cpp +msgid "Number of messages a player may send per 10 seconds." +msgstr "ஒரு வீரர் 10 வினாடிகளுக்கு அனுப்பக்கூடிய செய்திகளின் எண்ணிக்கை." + +#: src/settings_translation_file.cpp +msgid "" +"Number of threads to use for mesh generation.\n" +"Value of 0 (default) will let Luanti autodetect the number of available " +"threads." +msgstr "" +"கண்ணி தலைமுறைக்கு பயன்படுத்த நூல்களின் எண்ணிக்கை.\n" +" 0 (இயல்புநிலை) மதிப்பு லுவாண்டி கிடைக்கக்கூடிய நூல்களின் எண்ணிக்கையை தன்னியக்கமாக்க " +"அனுமதிக்கும்." + +#: src/settings_translation_file.cpp +msgid "Occlusion Culler" +msgstr "மறைவு குல்லர்" + +#: src/settings_translation_file.cpp +msgid "Occlusion Culling" +msgstr "மறைவு குறைத்தல்" + +#: src/settings_translation_file.cpp +msgid "" +"Opaqueness (alpha) of the shadow behind the default font, between 0 and 255." +msgstr "" +"இயல்புநிலை எழுத்துருவின் பின்னால் உள்ள நிழலின் ஒளிபுகா (ஆல்பா), 0 முதல் 255 வரை." + +#: src/settings_translation_file.cpp +msgid "" +"Open the pause menu when the window's focus is lost. Does not pause if a " +"formspec is\n" +"open." +msgstr "" +"சாளரத்தின் கவனம் இழக்கப்படும்போது இடைநிறுத்த மெனுவைத் திறக்கவும். ஒரு ஃபார்ம்ச்பெக் " +"இருந்தால் இடைநிறுத்தப்படாது\n" +" திறந்த." + +#: src/settings_translation_file.cpp +msgid "OpenGL debug" +msgstr "Opengl பிழைத்திருத்தம்" + +#: src/settings_translation_file.cpp +msgid "Optimize GUI for touchscreens" +msgstr "தொடுதிரைகளுக்கு GUI ஐ மேம்படுத்தவும்" + +#: src/settings_translation_file.cpp +msgid "Optional override for chat weblink color." +msgstr "அரட்டை வெப்லிங்க் வண்ணத்திற்கான விருப்ப மேலெழுத்து." + +#: src/settings_translation_file.cpp +msgid "Other Effects" +msgstr "பிற விளைவுகள்" + +#: src/settings_translation_file.cpp +msgid "" +"Path of the fallback font. Must be a TrueType font.\n" +"This font will be used for certain languages or if the default font is " +"unavailable." +msgstr "" +"குறைவடையும் எழுத்துருவின் பாதை. ஒரு TRUETYPE எழுத்துருவாக இருக்க வேண்டும்.\n" +" இந்த எழுத்துரு சில மொழிகளுக்கு பயன்படுத்தப்படும் அல்லது இயல்புநிலை எழுத்துரு " +"கிடைக்கவில்லை என்றால்." + +#: src/settings_translation_file.cpp +msgid "" +"Path to save screenshots at. Can be an absolute or relative path.\n" +"The folder will be created if it doesn't already exist." +msgstr "" +"திரை சாட்களைச் சேமிப்பதற்கான பாதை. ஒரு முழுமையான அல்லது உறவினர் பாதையாக இருக்கலாம்.\n" +" கோப்புறை ஏற்கனவே இல்லாவிட்டால் உருவாக்கப்படும்." + +#: src/settings_translation_file.cpp +msgid "" +"Path to shader directory. If no path is defined, default location will be " +"used." +msgstr "" +"சேடர் கோப்பகத்திற்கான பாதை. பாதை வரையறுக்கப்படாவிட்டால், இயல்புநிலை இருப்பிடம் " +"பயன்படுத்தப்படும்." + +#: src/settings_translation_file.cpp +msgid "" +"Path to the default font. Must be a TrueType font.\n" +"The fallback font will be used if the font cannot be loaded." +msgstr "" +"இயல்புநிலை எழுத்துருவுக்கு பாதை. ஒரு TRUETYPE எழுத்துருவாக இருக்க வேண்டும்.\n" +" எழுத்துருவை ஏற்ற முடியாவிட்டால் குறைவடையும் எழுத்துரு பயன்படுத்தப்படும்." + +#: src/settings_translation_file.cpp +msgid "" +"Path to the monospace font. Must be a TrueType font.\n" +"This font is used for e.g. the console and profiler screen." +msgstr "" +"மோனோச்பேச் எழுத்துருவுக்கு பாதை. ஒரு TRUETYPE எழுத்துருவாக இருக்க வேண்டும்.\n" +" இந்த எழுத்துரு எ.கா. கன்சோல் மற்றும் சுயவிவரத் திரை." + +#: src/settings_translation_file.cpp +msgid "Pause on lost window focus" +msgstr "இழந்த சாளர மையத்தில் இடைநிறுத்தம்" + +#: src/settings_translation_file.cpp +msgid "Per-player limit of queued blocks load from disk" +msgstr "வரிசையில் இருந்து வரிசையில் இருந்து ஏற்றப்பட்ட தொகுதிகளின் பிளேயர் வரம்பு" + +#: src/settings_translation_file.cpp +msgid "Per-player limit of queued blocks to generate" +msgstr "வரிசைப்படுத்தப்பட்ட தொகுதிகளின் ஒவ்வொரு பிளேயர் வரம்பு" + +#: src/settings_translation_file.cpp +msgid "Physics" +msgstr "இயற்பியல்" + +#: src/settings_translation_file.cpp +msgid "Place repetition interval" +msgstr "மீண்டும் மறுபடியும் இடைவெளி வைக்கவும்" + +#: src/settings_translation_file.cpp +msgid "Player transfer distance" +msgstr "பிளேயர் பரிமாற்ற தூரம்" + +#: src/settings_translation_file.cpp +msgid "Poisson filtering" +msgstr "பாய்சன் வடிகட்டுதல்" + +#: src/settings_translation_file.cpp +msgid "Post Processing" +msgstr "இடுகை செயலாக்கம்" + +#: src/settings_translation_file.cpp +msgid "" +"Prevent digging and placing from repeating when holding the respective " +"buttons.\n" +"Enable this when you dig or place too often by accident.\n" +"On touchscreens, this only affects digging." +msgstr "" +"அந்தந்த பொத்தான்களை வைத்திருக்கும்போது தோண்டுவதையும் மீண்டும் மீண்டும் வருவதையும் தடுக்கவும்.\n" +" தற்செயலாக நீங்கள் அடிக்கடி தோண்டும்போது அல்லது வைக்கும்போது இதை இயக்கவும்.\n" +" தொடுதிரைகளில், இது தோண்டுவதை மட்டுமே பாதிக்கிறது." + +#: src/settings_translation_file.cpp +msgid "Prevent mods from doing insecure things like running shell commands." +msgstr "" +"செல் கட்டளைகளை இயக்குவது போன்ற பாதுகாப்பற்ற விசயங்களைச் செய்வதிலிருந்து மோட்சைத் " +"தடுக்கவும்." + +#: src/settings_translation_file.cpp +msgid "" +"Print the engine's profiling data in regular intervals (in seconds).\n" +"0 = disable. Useful for developers." +msgstr "" +"இயந்திரத்தின் விவரக்குறிப்பு தரவை வழக்கமான இடைவெளியில் (நொடிகளில்) அச்சிடுக.\n" +" 0 = முடக்கு. டெவலப்பர்களுக்கு பயனுள்ளதாக இருக்கும்." + +#: src/settings_translation_file.cpp +msgid "Privileges that players with basic_privs can grant" +msgstr "அடிப்படை_பிரிவ்சுடன் கூடிய வீரர்கள் வழங்கக்கூடிய சலுகைகள்" + +#: src/settings_translation_file.cpp +msgid "Profiler" +msgstr "விவரக்குறிப்பு" + +#: src/settings_translation_file.cpp +msgid "Prometheus listener address" +msgstr "ப்ரோமிதியச் கேட்பவரின் முகவரி" + +#: src/settings_translation_file.cpp +msgid "" +"Prometheus listener address.\n" +"If Luanti is compiled with ENABLE_PROMETHEUS option enabled,\n" +"enable metrics listener for Prometheus on that address.\n" +"Metrics can be fetched on http://127.0.0.1:30000/metrics" +msgstr "" +"ப்ரோமிதியச் கேட்பவரின் முகவரி.\n" +" LUANTI ENABLE_PROMETHEUS விருப்பத்துடன் தொகுக்கப்பட்டால்,\n" +" அந்த முகவரியில் ப்ரோமிதியசுக்கு அளவீடுகள் கேட்பவரை இயக்கவும்.\n" +" அளவீடுகளை http://127.0.0.1:30000/metrics இல் பெறலாம்" + +#: src/settings_translation_file.cpp +msgid "Proportion of large caves that contain liquid." +msgstr "திரவத்தைக் கொண்ட பெரிய குகைகளின் விகிதம்." + +#: src/settings_translation_file.cpp +msgid "Protocol version minimum" +msgstr "நெறிமுறை பதிப்பு குறைந்தபட்சம்" + +#: src/settings_translation_file.cpp +msgid "Punch gesture" +msgstr "பஞ்ச் சைகை" + +#: src/settings_translation_file.cpp +msgid "" +"Radius of cloud area stated in number of 64 node cloud squares.\n" +"Values larger than 26 will start to produce sharp cutoffs at cloud area " +"corners." +msgstr "" +"மேகக்கணி பகுதியின் ஆரம் 64 முனை முகில் சதுரங்களின் எண்ணிக்கையில் கூறப்பட்டுள்ளது.\n" +" 26 ஐ விட பெரிய மதிப்புகள் முகில் பகுதி மூலைகளில் கூர்மையான வெட்டுக்களை உருவாக்கத் " +"தொடங்கும்." + +#: src/settings_translation_file.cpp +msgid "Radius to use when the block bounds HUD feature is set to near blocks." +msgstr "" +"தொகுதி வரம்புகள் HUD நற்பொருத்தம் அருகிலுள்ள தொகுதிகளுக்கு அமைக்கப்படும் போது பயன்படுத்த " +"ஆரம்." + +#: src/settings_translation_file.cpp +msgid "Raises terrain to make valleys around the rivers." +msgstr "ஆறுகளைச் சுற்றி பள்ளத்தாக்குகளை உருவாக்க நிலப்பரப்பை உயர்த்துகிறது." + +#: src/settings_translation_file.cpp +msgid "Random input" +msgstr "சீரற்ற உள்ளீடு" + +#: src/settings_translation_file.cpp +msgid "Random mod load order" +msgstr "சீரற்ற மோட் சுமை வரிசை" + +#: src/settings_translation_file.cpp +msgid "Recent Chat Messages" +msgstr "அண்மைக் கால அரட்டை செய்திகள்" + +#: src/settings_translation_file.cpp +msgid "Regular font path" +msgstr "வழக்கமான எழுத்துரு பாதை" + +#: src/settings_translation_file.cpp +msgid "Remember screen size" +msgstr "திரை அளவை நினைவில் கொள்ளுங்கள்" + +#: src/settings_translation_file.cpp +msgid "Remote media" +msgstr "தொலை ஊடகங்கள்" + +#: src/settings_translation_file.cpp +msgid "" +"Remove color codes from incoming chat messages\n" +"Use this to stop players from being able to use color in their messages" +msgstr "" +"உள்வரும் அரட்டை செய்திகளிலிருந்து வண்ண குறியீடுகளை அகற்று\n" +" வீரர்கள் தங்கள் செய்திகளில் வண்ணத்தைப் பயன்படுத்துவதைத் தடுக்க இதைப் பயன்படுத்தவும்" + +#: src/settings_translation_file.cpp +msgid "Replaces the default main menu with a custom one." +msgstr "இயல்புநிலை முதன்மையான மெனுவை தனிப்பயன் மூலம் மாற்றுகிறது." + +#: src/settings_translation_file.cpp +msgid "Report path" +msgstr "அறிக்கை பாதை" + +#: src/settings_translation_file.cpp +msgid "" +"Restricts the access of certain client-side functions on servers.\n" +"Combine the byteflags below to restrict client-side features, or set to 0\n" +"for no restrictions:\n" +"LOAD_CLIENT_MODS: 1 (disable loading client-provided mods)\n" +"CHAT_MESSAGES: 2 (disable send_chat_message call client-side)\n" +"READ_ITEMDEFS: 4 (disable get_item_def call client-side)\n" +"READ_NODEDEFS: 8 (disable get_node_def call client-side)\n" +"LOOKUP_NODES_LIMIT: 16 (limits get_node call client-side to\n" +"csm_restriction_noderange)\n" +"READ_PLAYERINFO: 32 (disable get_player_names call client-side)" +msgstr "" +"சேவையகங்களில் சில கிளையன்ட் பக்க செயல்பாடுகளின் அணுகலை கட்டுப்படுத்துகிறது.\n" +" கிளையன்ட் பக்க அம்சங்களைக் கட்டுப்படுத்த கீழே உள்ள பைட்ஃப்ளாக்சை இணைக்கவும் அல்லது 0 ஆக " +"அமைக்கவும்\n" +" எந்த கட்டுப்பாடுகளுக்கும்:\n" +" Load_client_mods: 1 (கிளையன்ட் வழங்கிய மோட்களை ஏற்றுவதை முடக்கு)\n" +" சாட்_மெசேச்கள்: 2 (send_chat_message ஐ முடக்கு கிளையன்ட்-சைட்)\n" +" Read_itemdefs: 4 (Get_item_def ஐ முடக்கு கிளையன்ட்-சைட்)\n" +" Read_nodedefs: 8 (Get_node_def ஐ முடக்கு கிளையன்ட்-சைட்)\n" +" Goodup_nodes_limit: 16 (get_node கிளையன்ட்-பக்கத்தை அழைக்கவும்\n" +" CSM_RESTRICTION_NODERANGE)\n" +" Read_playerinfo: 32 (Get_Player_names ஐ முடக்கு கிளையன்ட்-சைட்)" + +#: src/settings_translation_file.cpp +msgid "Ridge mountain spread noise" +msgstr "ரிட்ச் மலை பரவல் ஒலி" + +#: src/settings_translation_file.cpp +msgid "Ridge noise" +msgstr "ரிட்ச் ஒலி" + +#: src/settings_translation_file.cpp +msgid "Ridge underwater noise" +msgstr "ரிட்ச் நீருக்கடியில் ஒலி" + +#: src/settings_translation_file.cpp +msgid "Ridged mountain size noise" +msgstr "அகற்றப்பட்ட மலை அளவு ஒலி" + +#: src/settings_translation_file.cpp +msgid "River channel depth" +msgstr "நதி சேனல் ஆழம்" + +#: src/settings_translation_file.cpp +msgid "River channel width" +msgstr "நதி சேனல் அகலம்" + +#: src/settings_translation_file.cpp +msgid "River depth" +msgstr "நதி ஆழம்" + +#: src/settings_translation_file.cpp +msgid "River noise" +msgstr "நதி ஒலி" + +#: src/settings_translation_file.cpp +msgid "River size" +msgstr "நதி அளவு" + +#: src/settings_translation_file.cpp +msgid "River valley width" +msgstr "நதி பள்ளத்தாக்கு அகலம்" + +#: src/settings_translation_file.cpp +msgid "Rollback recording" +msgstr "ரோல்பேக் பதிவு" + +#: src/settings_translation_file.cpp +msgid "Rolling hill size noise" +msgstr "மலை அளவு ஒலி உருட்டல்" + +#: src/settings_translation_file.cpp +msgid "Rolling hills spread noise" +msgstr "ரோலிங் மலைகள் ஒலி பரவுகின்றன" + +#: src/settings_translation_file.cpp +msgid "Safe digging and placing" +msgstr "பாதுகாப்பான தோண்டி மற்றும் வைப்பது" + +#: src/settings_translation_file.cpp +msgid "Sandy beaches occur when np_beach exceeds this value." +msgstr "NP_BEACH இந்த மதிப்பை மீறும் போது மணல் கடற்கரைகள் ஏற்படுகின்றன." + +#: src/settings_translation_file.cpp +msgid "Save the map received by the client on disk." +msgstr "கிளையன்ட் பெறப்பட்ட வரைபடத்தை வட்டில் சேமிக்கவும்." + +#: src/settings_translation_file.cpp +msgid "" +"Save window size automatically when modified.\n" +"If true, screen size is saved in screen_w and screen_h, and whether the " +"window\n" +"is maximized is stored in window_maximized.\n" +"(Autosaving window_maximized only works if compiled with SDL.)" +msgstr "" +"மாற்றியமைக்கும்போது சாளர அளவை தானாக சேமிக்கவும்.\n" +" உண்மை என்றால், திரை அளவு ச்கிரீன்_டபிள்யூ மற்றும் ச்கிரீன்_எச் ஆகியவற்றில் " +"சேமிக்கப்படுகிறது, மேலும் சாளரம் உள்ளதா\n" +" அதிகபட்சம் சாளரம்_மாக்சிமிசில் சேமிக்கப்படுகிறது.\n" +" (SDL உடன் தொகுக்கப்பட்டால் மட்டுமே ஆட்டோசேவிங் சாளரம்_மாக்சிமிச் வேலை செய்யும்.)" + +#: src/settings_translation_file.cpp +msgid "Saving map received from server" +msgstr "சேவையகத்திலிருந்து பெறப்பட்ட வரைபடம்" + +#: src/settings_translation_file.cpp +msgid "" +"Scale GUI by a user specified value.\n" +"Use a nearest-neighbor-anti-alias filter to scale the GUI.\n" +"This will smooth over some of the rough edges, and blend\n" +"pixels when scaling down, at the cost of blurring some\n" +"edge pixels when images are scaled by non-integer sizes." +msgstr "" +"ஒரு பயனர் குறிப்பிட்ட மதிப்பால் GUI ஐ அளவிடவும்.\n" +" GUI ஐ அளவிட அருகிலுள்ள-அக்ச்போர்-ஆன்டி-அலியாச் வடிகட்டியைப் பயன்படுத்தவும்.\n" +" இது சில கடினமான விளிம்புகளில் மென்மையாக இருக்கும், மேலும் கலக்கவும்\n" +" படப்புள்ளிகள் அளவிடும்போது, சிலவற்றை மழுங்கடிக்கும் செலவில்\n" +" விளிம்பில் படப்புள்ளிகள் படிகள் முழு எண் அல்லாத அளவுகளால் அளவிடப்படும்போது." + +#: src/settings_translation_file.cpp +msgid "Screen" +msgstr "திரை" + +#: src/settings_translation_file.cpp +msgid "Screen height" +msgstr "திரை உயரம்" + +#: src/settings_translation_file.cpp +msgid "Screen width" +msgstr "திரை அகலம்" + +#: src/settings_translation_file.cpp +msgid "Screenshot folder" +msgstr "திரைக்காட்சி கோப்புறை" + +#: src/settings_translation_file.cpp +msgid "Screenshot format" +msgstr "திரைக்காட்சி வடிவம்" + +#: src/settings_translation_file.cpp +msgid "Screenshot quality" +msgstr "திரைக்காட்சி தகுதி" + +#: src/settings_translation_file.cpp +msgid "" +"Screenshot quality. Only used for JPEG format.\n" +"1 means worst quality; 100 means best quality.\n" +"Use 0 for default quality." +msgstr "" +"திரைக்காட்சி தகுதி. JPEG வடிவத்திற்கு மட்டுமே பயன்படுத்தப்படுகிறது.\n" +" 1 என்றால் மோசமான தரம்; 100 என்றால் சிறந்த தரம்.\n" +" இயல்புநிலை தரத்திற்கு 0 ஐப் பயன்படுத்தவும்." + +#: src/settings_translation_file.cpp +msgid "Screenshots" +msgstr "திரைக்காட்சிகள்" + +#: src/settings_translation_file.cpp +msgid "Seabed noise" +msgstr "கடற்பரப்பு ஒலி" + +#: src/settings_translation_file.cpp +msgid "Second of 4 2D noises that together define hill/mountain range height." +msgstr "இல்/மலை வீச்சு உயரத்தை ஒன்றாக வரையறுக்கும் 4 2 டி சத்தங்களில் இரண்டாவது." + +#: src/settings_translation_file.cpp +msgid "Second of two 3D noises that together define tunnels." +msgstr "சுரங்கங்களை ஒன்றாக வரையறுக்கும் இரண்டு 3 டி சத்தங்களில் இரண்டாவது." + +#: src/settings_translation_file.cpp +msgid "See https://www.sqlite.org/pragma.html#pragma_synchronous" +msgstr "Https://www.sqlite.org/pragma.html#pragma_synchronous ஐப் பார்க்கவும்" + +#: src/settings_translation_file.cpp +#, fuzzy +msgid "" +"Select the antialiasing method to apply.\n" +"\n" +"* None - No antialiasing (default)\n" +"\n" +"* FSAA - Hardware-provided full-screen antialiasing\n" +"A.K.A multi-sample antialiasing (MSAA)\n" +"Smoothens out block edges but does not affect the insides of textures.\n" +"\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" +"Applies a post-processing filter to detect and smoothen high-contrast " +"edges.\n" +"Provides balance between speed and image quality.\n" +"\n" +"* SSAA - Super-sampling antialiasing\n" +"Renders higher-resolution image of the scene, then scales down to reduce\n" +"the aliasing effects. This is the slowest and the most accurate method." +msgstr "" +"விண்ணப்பிக்க ஆன்டிலியாசிங் முறையைத் தேர்ந்தெடுக்கவும்.\n" +"\n" +" * எதுவுமில்லை - ஆன்டிலியாசிங் இல்லை (இயல்புநிலை)\n" +"\n" +" * FSAA-வன்பொருள் வழங்கிய முழு திரை ஆண்டியலிசிங்\n" +" (பிந்தைய செயலாக்கம் மற்றும் அடிக்கோடிட்டுக் காட்டுவதற்கு பொருந்தாது)\n" +" A.k.a மல்டி-மாதிரி ஆன்டியாலியாசிங் (MSAA)\n" +" தொகுதி விளிம்புகளை மென்மையாக்குகிறது, ஆனால் அமைப்புகளின் உட்புறங்களை பாதிக்காது.\n" +" இந்த விருப்பத்தை மாற்ற மறுதொடக்கம் தேவை.\n" +"\n" +" * FXAA - வேகமான தோராயமான ஆன்டிலியாசிங் (சேடர்கள் தேவை)\n" +" உயர்-மாறுபட்ட விளிம்புகளைக் கண்டறிந்து மென்மையாக்க ஒரு பிந்தைய செயலாக்க வடிப்பானைப் " +"பயன்படுத்துகிறது.\n" +" விரைவு மற்றும் பட தரத்திற்கு இடையில் சமநிலையை வழங்குகிறது.\n" +"\n" +" * SSAA - சூப்பர் -மாதிரி ஆன்டிலியாசிங் (சேடர்கள் தேவை)\n" +" காட்சியின் உயர்-தெளிவுத்திறன் படத்தை வழங்குகிறது, பின்னர் குறைக்க செதில்கள்\n" +" மாற்றுப்பெயர் விளைவுகள். இது மெதுவான மற்றும் மிகவும் துல்லியமான முறையாகும்." + +#: src/settings_translation_file.cpp +msgid "Selection box border color (R,G,B)." +msgstr "தேர்வு பெட்டி எல்லை நிறம் (ஆர், சி, பி)." + +#: src/settings_translation_file.cpp +msgid "Selection box color" +msgstr "தேர்வு பெட்டி நிறம்" + +#: src/settings_translation_file.cpp +msgid "Selection box width" +msgstr "தேர்வு பெட்டி அகலம்" + +#: src/settings_translation_file.cpp +msgid "" +"Selects one of 18 fractal types.\n" +"1 = 4D \"Roundy\" Mandelbrot set.\n" +"2 = 4D \"Roundy\" Julia set.\n" +"3 = 4D \"Squarry\" Mandelbrot set.\n" +"4 = 4D \"Squarry\" Julia set.\n" +"5 = 4D \"Mandy Cousin\" Mandelbrot set.\n" +"6 = 4D \"Mandy Cousin\" Julia set.\n" +"7 = 4D \"Variation\" Mandelbrot set.\n" +"8 = 4D \"Variation\" Julia set.\n" +"9 = 3D \"Mandelbrot/Mandelbar\" Mandelbrot set.\n" +"10 = 3D \"Mandelbrot/Mandelbar\" Julia set.\n" +"11 = 3D \"Christmas Tree\" Mandelbrot set.\n" +"12 = 3D \"Christmas Tree\" Julia set.\n" +"13 = 3D \"Mandelbulb\" Mandelbrot set.\n" +"14 = 3D \"Mandelbulb\" Julia set.\n" +"15 = 3D \"Cosine Mandelbulb\" Mandelbrot set.\n" +"16 = 3D \"Cosine Mandelbulb\" Julia set.\n" +"17 = 4D \"Mandelbulb\" Mandelbrot set.\n" +"18 = 4D \"Mandelbulb\" Julia set." +msgstr "" +"18 ஃப்ராக்டல் வகைகளில் ஒன்றைத் தேர்ந்தெடுக்கிறது.\n" +" 1 = 4 டி \"ரவுண்டி\" மாண்டல்ப்ராட் தொகுப்பு.\n" +" 2 = 4 டி \"ரவுண்டி\" சூலியா தொகுப்பு.\n" +" 3 = 4 டி \"சதுர\" மாண்டல்ப்ராட் தொகுப்பு.\n" +" 4 = 4 டி \"சதுர\" சூலியா தொகுப்பு.\n" +" 5 = 4 டி \"மாண்டி உறவினர்\" மாண்டல்பிரோட் செட்.\n" +" 6 = 4 டி \"மாண்டி உறவினர்\" சூலியா செட்.\n" +" 7 = 4 டி \"மாறுபாடு\" மண்டெல்பிரோட் தொகுப்பு.\n" +" 8 = 4 டி \"மாறுபாடு\" சூலியா தொகுப்பு.\n" +" 9 = 3D \"மாண்டல்பிரோட்/மாண்டல்பார்\" மண்டெல்பிரோட் செட்.\n" +" 10 = 3D \"மாண்டல்பிரோட்/மாண்டல்பார்\" சூலியா செட்.\n" +" 11 = 3D \"கிறிச்துமச் மரம்\" மண்டல்பிரோட் தொகுப்பு.\n" +" 12 = 3D \"கிறிச்துமச் மரம்\" சூலியா தொகுப்பு.\n" +" 13 = 3D \"மாண்டல்பல்ப்\" மாண்டல்பிரோட் தொகுப்பு.\n" +" 14 = 3D \"மண்டேல்பல்ப்\" சூலியா தொகுப்பு.\n" +" 15 = 3D \"கொசைன் மாண்டல்பல்ப்\" மாண்டல்பிரோட் தொகுப்பு.\n" +" 16 = 3D \"கொசைன் மண்டேல்பல்ப்\" சூலியா தொகுப்பு.\n" +" 17 = 4 டி \"மாண்டல்பல்ப்\" மாண்டல்பிரோட் தொகுப்பு.\n" +" 18 = 4 டி \"மாண்டல்பல்ப்\" சூலியா தொகுப்பு." + +#: src/settings_translation_file.cpp +msgid "" +"Send names of online players to the serverlist. If disabled only the player " +"count is revealed." +msgstr "" +"நிகழ்நிலை பிளேயர்களின் பெயர்களை சேவையகத்திற்கு அனுப்பவும். முடக்கப்பட்டால் மட்டுமே வீரர் " +"எண்ணிக்கை வெளிப்படுகிறது." + +#: src/settings_translation_file.cpp +msgid "Send player names to the server list" +msgstr "சேவையக பட்டியலில் பிளேயர் பெயர்களை அனுப்பவும்" + +#: src/settings_translation_file.cpp +msgid "Server" +msgstr "சேவையகம்" + +#: src/settings_translation_file.cpp +msgid "Server Gameplay" +msgstr "சேவையக விளையாட்டு" + +#: src/settings_translation_file.cpp +msgid "Server Security" +msgstr "சேவையக பாதுகாப்பு" + +#: src/settings_translation_file.cpp +msgid "Server URL" +msgstr "சேவையக முகவரி" + +#: src/settings_translation_file.cpp +msgid "Server address" +msgstr "சேவையக முகவரி" + +#: src/settings_translation_file.cpp +msgid "" +"Server anticheat configuration.\n" +"Flags are positive. Uncheck the flag to disable corresponding anticheat " +"module." +msgstr "" +"சேவையக ஆன்டிகீட் உள்ளமைவு.\n" +" கொடிகள் நேர்மறையானவை. தொடர்புடைய ஆன்டிகீட் தொகுதியை முடக்க கொடியைத் தேர்வுசெய்யவும்." + +#: src/settings_translation_file.cpp +msgid "Server description" +msgstr "சேவையக விளக்கம்" + +#: src/settings_translation_file.cpp +msgid "Server name" +msgstr "சேவையக பெயர்" + +#: src/settings_translation_file.cpp +msgid "Server port" +msgstr "சேவையக துறைமுகம்" + +#: src/settings_translation_file.cpp +msgid "Server-side occlusion culling" +msgstr "சேவையக பக்க மறைவு" + +#: src/settings_translation_file.cpp +msgid "Server/Env Performance" +msgstr "சேவையகம்/ENV செயல்திறன்" + +#: src/settings_translation_file.cpp +msgid "Serverlist URL" +msgstr "ServerList முகவரி" + +#: src/settings_translation_file.cpp +msgid "Serverlist and MOTD" +msgstr "சேவையக பட்டியல் மற்றும் MOTD" + +#: src/settings_translation_file.cpp +msgid "Serverlist file" +msgstr "சேவையக பட்டியல் கோப்பு" + +#: src/settings_translation_file.cpp +msgid "" +"Set the default tilt of Sun/Moon orbit in degrees.\n" +"Games may change orbit tilt via API.\n" +"Value of 0 means no tilt / vertical orbit." +msgstr "" +"சூரியன்/சந்திரன் சுற்றுப்பாதையின் இயல்புநிலை சாய்வை டிகிரிகளில் அமைக்கவும்.\n" +" விளையாட்டுகள் பநிஇ வழியாக சுற்றுப்பாதை சாய்வை மாற்றக்கூடும்.\n" +" 0 இன் மதிப்பு என்பது சாய்வு / செங்குத்து சுற்றுப்பாதை இல்லை." + +#: src/settings_translation_file.cpp +msgid "" +"Set the exposure compensation in EV units.\n" +"Value of 0.0 (default) means no exposure compensation.\n" +"Range: from -1 to 1.0" +msgstr "" +"வெளிப்பாடு இழப்பீட்டை EV அலகுகளில் அமைக்கவும்.\n" +" 0.0 (இயல்புநிலை) மதிப்பு என்பது வெளிப்பாடு இழப்பீடு இல்லை.\n" +" வரம்பு: -1 முதல் 1.0 வரை" + +#: src/settings_translation_file.cpp +msgid "" +"Set the language. By default, the system language is used.\n" +"A restart is required after changing this." +msgstr "" +"மொழியை அமைக்கவும். இயல்பாக, கணினி மொழி பயன்படுத்தப்படுகிறது.\n" +" இதை மாற்றிய பின் மறுதொடக்கம் தேவை." + +#: src/settings_translation_file.cpp +msgid "" +"Set the maximum length of a chat message (in characters) sent by clients." +msgstr "" +"வாடிக்கையாளர்களால் அனுப்பப்பட்ட அரட்டை செய்தியின் அதிகபட்ச நீளத்தை (எழுத்துக்களில்) " +"அமைக்கவும்." + +#: src/settings_translation_file.cpp +msgid "" +"Set the shadow strength gamma.\n" +"Adjusts the intensity of in-game dynamic shadows.\n" +"Lower value means lighter shadows, higher value means darker shadows." +msgstr "" +"நிழல் வலிமை காமா அமைக்கவும்.\n" +" விளையாட்டு மாறும் நிழல்களின் தீவிரத்தை சரிசெய்கிறது.\n" +" குறைந்த மதிப்பு என்றால் இலகுவான நிழல்கள், அதிக மதிப்பு என்பது இருண்ட நிழல்கள் என்று " +"பொருள்." + +#: src/settings_translation_file.cpp +msgid "" +"Set the soft shadow radius size.\n" +"Lower values mean sharper shadows, bigger values mean softer shadows.\n" +"Minimum value: 1.0; maximum value: 15.0" +msgstr "" +"மென்மையான நிழல் ஆரம் அளவை அமைக்கவும்.\n" +" குறைந்த மதிப்புகள் கூர்மையான நிழல்களைக் குறிக்கின்றன, பெரிய மதிப்புகள் மென்மையான " +"நிழல்களைக் குறிக்கின்றன.\n" +" குறைந்தபட்ச மதிப்பு: 1.0; அதிகபட்ச மதிப்பு: 15.0" + +#: src/settings_translation_file.cpp +msgid "Set to true to enable Shadow Mapping." +msgstr "நிழல் மேப்பிங்கை இயக்க உண்மையாக அமைக்கவும்." + +#: src/settings_translation_file.cpp +msgid "" +"Set to true to enable bloom effect.\n" +"Bright colors will bleed over the neighboring objects." +msgstr "" +"பூக்கும் விளைவை செயல்படுத்த உண்மையாக அமைக்கவும்.\n" +" பிரகாசமான வண்ணங்கள் அண்டை பொருட்களின் மீது இரத்தம் வரும்." + +#: src/settings_translation_file.cpp +msgid "Set to true to enable volumetric lighting effect (a.k.a. \"Godrays\")." +msgstr "" +"வால்யூமெட்ரிக் லைட்டிங் விளைவை இயக்குவதற்கு உண்மையாக அமைக்கவும் (a.k.a. \"கோட்ரேச்\")." + +#: src/settings_translation_file.cpp +msgid "Set to true to enable waving leaves." +msgstr "அசைக்கும் இலைகளை இயக்க உண்மையாக அமைக்கவும்." + +#: src/settings_translation_file.cpp +msgid "Set to true to enable waving liquids (like water)." +msgstr "அசைக்கும் திரவங்களை (நீர் போன்றவை) செயல்படுத்த உண்மையாக அமைக்கவும்." + +#: src/settings_translation_file.cpp +msgid "Set to true to enable waving plants." +msgstr "அசைந்த தாவரங்களை இயக்குவதற்கு உண்மையாக அமைக்கவும்." + +#: src/settings_translation_file.cpp +msgid "" +"Set to true to render debugging breakdown of the bloom effect.\n" +"In debug mode, the screen is split into 4 quadrants:\n" +"top-left - processed base image, top-right - final image\n" +"bottom-left - raw base image, bottom-right - bloom texture." +msgstr "" +"பூக்கும் விளைவின் பிழைத்திருத்தத்தை வழங்குவதற்கு உண்மையாக அமைக்கவும்.\n" +" பிழைத்திருத்த பயன்முறையில், திரை 4 நாற்காலிகளாக பிரிக்கப்பட்டுள்ளது:\n" +" மேல் -இடது - செயலாக்கப்பட்ட அடிப்படை படம், மேல் -வலது - இறுதி படம்\n" +" கீழ் -இடது - மூல அடிப்படை படம், கீழ் -வலது - பூக்கும் அமைப்பு." + +#: src/settings_translation_file.cpp +msgid "" +"Sets shadow texture quality to 32 bits.\n" +"On false, 16 bits texture will be used.\n" +"This can cause much more artifacts in the shadow." +msgstr "" +"நிழல் அமைப்பு தரத்தை 32 பிட்களாக அமைக்கிறது.\n" +" பொய்யில், 16 பிட்கள் அமைப்பு பயன்படுத்தப்படும்.\n" +" இது நிழலில் அதிகமான கலைப்பொருட்களை ஏற்படுத்தும்." + +#: src/settings_translation_file.cpp +msgid "Shader path" +msgstr "சேடர் பாதை" + +#: src/settings_translation_file.cpp +msgid "Shadow filter quality" +msgstr "நிழல் வடிகட்டி தகுதி" + +#: src/settings_translation_file.cpp +msgid "Shadow map max distance in nodes to render shadows" +msgstr "நிழல்களை வழங்க முனைகளில் நிழல் வரைபடம் அதிகபட்ச தூரம்" + +#: src/settings_translation_file.cpp +msgid "Shadow map texture in 32 bits" +msgstr "32 பிட்களில் நிழல் வரைபட அமைப்பு" + +#: src/settings_translation_file.cpp +msgid "Shadow map texture size" +msgstr "நிழல் வரைபட அமைப்பு அளவு" + +#: src/settings_translation_file.cpp +msgid "" +"Shadow offset (in pixels) of the default font. If 0, then shadow will not be " +"drawn." +msgstr "" +"இயல்புநிலை எழுத்துருவின் நிழல் ஆஃப்செட் (பிக்சல்களில்). 0 என்றால், நிழல் வரையப்படாது." + +#: src/settings_translation_file.cpp +msgid "Shadow strength gamma" +msgstr "நிழல் வலிமை காமா" + +#: src/settings_translation_file.cpp +msgid "Show debug info" +msgstr "பிழைத்திருத்த தகவலைக் காட்டு" + +#: src/settings_translation_file.cpp +msgid "Show entity selection boxes" +msgstr "நிறுவன தேர்வு பெட்டிகளைக் காட்டு" + +#: src/settings_translation_file.cpp +msgid "" +"Show entity selection boxes\n" +"A restart is required after changing this." +msgstr "" +"நிறுவன தேர்வு பெட்டிகளைக் காட்டு\n" +" இதை மாற்றிய பின் மறுதொடக்கம் தேவை." + +#: src/settings_translation_file.cpp +msgid "Show name tag backgrounds by default" +msgstr "இயல்புநிலையாக பெயர் குறிச்சொல் பின்னணியைக் காட்டு" + +#: src/settings_translation_file.cpp +msgid "Shutdown message" +msgstr "பணிநிறுத்தம் செய்தி" + +#: src/settings_translation_file.cpp +msgid "" +"Side length of a cube of map blocks that the client will consider together\n" +"when generating meshes.\n" +"Larger values increase the utilization of the GPU by reducing the number of\n" +"draw calls, benefiting especially high-end GPUs.\n" +"Systems with a low-end GPU (or no GPU) would benefit from smaller values." +msgstr "" +"கிளையன்ட் ஒன்றாகக் கருத்தில் கொள்ளும் வரைபடத் தொகுதிகளின் ஒரு கனசதுரத்தின் பக்க நீளம்\n" +" மெச்களை உருவாக்கும் போது.\n" +" பெரிய மதிப்புகள் எண்ணிக்கையைக் குறைப்பதன் மூலம் சி.பீ.யுவின் பயன்பாட்டை அதிகரிக்கின்றன\n" +" அழைப்புகளை வரையவும், குறிப்பாக உயர்நிலை சி.பீ.யுகளுக்கு பயனளிக்கிறது.\n" +" குறைந்த-இறுதி சி.பீ.யூ (அல்லது சி.பீ.யூ இல்லை) கொண்ட அமைப்புகள் சிறிய " +"மதிப்புகளிலிருந்து பயனடைகின்றன." + +#: src/settings_translation_file.cpp +msgid "Simulate translucency when looking at foliage in the sunlight." +msgstr "சூரிய ஒளியில் பசுமையாகப் பார்க்கும்போது ஒளிஊடுருவலை உருவகப்படுத்துங்கள்." + +#: src/settings_translation_file.cpp +msgid "" +"Size of mapchunks generated by mapgen, stated in mapblocks (16 nodes).\n" +"WARNING: There is no benefit, and there are several dangers, in\n" +"increasing this value above 5.\n" +"Reducing this value increases cave and dungeon density.\n" +"Altering this value is for special usage, leaving it unchanged is\n" +"recommended." +msgstr "" +"மேப் பிளாக்ச் (16 முனைகளில்) குறிப்பிடப்பட்ட மேப்கென் உருவாக்கிய மேப்சங்க்களின் அளவு.\n" +" எச்சரிக்கை: எந்த நன்மையும் இல்லை, மேலும் பல ஆபத்துகள் உள்ளன\n" +" இந்த மதிப்பை 5 க்கு மேல் அதிகரித்தல்.\n" +" இந்த மதிப்பைக் குறைப்பது குகை மற்றும் நிலவறை அடர்த்தியை அதிகரிக்கிறது.\n" +" இந்த மதிப்பை மாற்றுவது சிறப்பு பயன்பாட்டிற்கானது, மாறாமல் இருப்பது\n" +" பரிந்துரைக்கப்படுகிறது." + +#: src/settings_translation_file.cpp +msgid "Sky Body Orbit Tilt" +msgstr "வான உடல் சுற்றுப்பாதை சாய்வு" + +#: src/settings_translation_file.cpp +msgid "Slice w" +msgstr "துண்டு w" + +#: src/settings_translation_file.cpp +msgid "Slope and fill work together to modify the heights." +msgstr "உயரங்களை மாற்ற சாய்வு மற்றும் நிரப்பு ஒன்றாக வேலை செய்யுங்கள்." + +#: src/settings_translation_file.cpp +msgid "Small cave maximum number" +msgstr "சிறிய குகை அதிகபட்ச எண்" + +#: src/settings_translation_file.cpp +msgid "Small cave minimum number" +msgstr "சிறிய குகை குறைந்தபட்ச எண்" + +#: src/settings_translation_file.cpp +msgid "Small-scale humidity variation for blending biomes on borders." +msgstr "எல்லைகளில் பயோம்களைக் கலப்பதற்கான சிறிய அளவிலான ஈரப்பதம் மாறுபாடு." + +#: src/settings_translation_file.cpp +msgid "Small-scale temperature variation for blending biomes on borders." +msgstr "எல்லைகளில் பயோம்களை கலப்பதற்கான சிறிய அளவிலான வெப்பநிலை மாறுபாடு." + +#: src/settings_translation_file.cpp +msgid "Smooth lighting" +msgstr "மென்மையான விளக்குகள்" + +#: src/settings_translation_file.cpp +msgid "Smooth scrolling" +msgstr "மென்மையான ச்க்ரோலிங்" + +#: src/settings_translation_file.cpp +msgid "" +"Smooths rotation of camera when in cinematic mode, 0 to disable. Enter " +"cinematic mode by using the key set in Controls." +msgstr "" +"சினிமா பயன்முறையில் இருக்கும்போது கேமராவின் சுழற்சியை மென்மையாக்குகிறது, முடக்க 0. " +"கட்டுப்பாடுகளில் விசை தொகுப்பைப் பயன்படுத்தி சினிமா பயன்முறையை உள்ளிடவும்." + +#: src/settings_translation_file.cpp +msgid "" +"Smooths rotation of camera, also called look or mouse smoothing. 0 to " +"disable." +msgstr "" +"கேமராவின் மென்மையான சுழற்சி, தோற்றம் அல்லது சுட்டி மென்மையாக்குதல் என்றும் " +"அழைக்கப்படுகிறது. முடக்க 0." + +#: src/settings_translation_file.cpp +msgid "Sneaking speed" +msgstr "பதுங்கியிருக்கும் விரைவு" + +#: src/settings_translation_file.cpp +msgid "Sneaking speed, in nodes per second." +msgstr "பதுங்கிய வேகத்தை, நொடிக்கு முனைகளில்." + +#: src/settings_translation_file.cpp +msgid "Soft clouds" +msgstr "மென்மையான மேகங்கள்" + +#: src/settings_translation_file.cpp +msgid "Soft shadow radius" +msgstr "மென்மையான நிழல் ஆரம்" + +#: src/settings_translation_file.cpp +msgid "Sound" +msgstr "ஒலி" + +#: src/settings_translation_file.cpp +msgid "Sound Extensions Blacklist" +msgstr "ஒலி நீட்டிப்புகள் தடுப்புப்பட்டியல்" + +#: src/settings_translation_file.cpp +msgid "" +"Specifies URL from which client fetches media instead of using UDP.\n" +"$filename should be accessible from $remote_media$filename via cURL\n" +"(obviously, remote_media should end with a slash).\n" +"Files that are not present will be fetched the usual way." +msgstr "" +"UTP ஐப் பயன்படுத்துவதற்குப் பதிலாக கிளையன்ட் மீடியாவைப் பெறும் முகவரி ஐக் " +"குறிப்பிடுகிறது.\n" +" $ remote_media $ கோப்புப்பெயர் இலிருந்து சுருட்டை வழியாக கோப்பு பெயரை அணுக " +"வேண்டும்\n" +" (வெளிப்படையாக, ரிமோட்_மீடியா ஒரு குறைப்புடன் முடிவடைய வேண்டும்).\n" +" இல்லாத கோப்புகள் வழக்கமான வழியைப் பெறும்." + +#: src/settings_translation_file.cpp +msgid "" +"Specifies the default stack size of nodes, items and tools.\n" +"Note that mods or games may explicitly set a stack for certain (or all) " +"items." +msgstr "" +"முனைகள், உருப்படிகள் மற்றும் கருவிகளின் இயல்புநிலை அடுக்கு அளவைக் குறிப்பிடுகிறது.\n" +" மோட்ச் அல்லது கேம்கள் சில (அல்லது அனைத்து) உருப்படிகளுக்கு வெளிப்படையாக ஒரு அடுக்கை " +"அமைக்கக்கூடும் என்பதை நினைவில் கொள்க." + +#: src/settings_translation_file.cpp +#, fuzzy +msgid "" +"Spread a complete update of the shadow map over a given number of frames.\n" +"Higher values might make shadows laggy, lower values\n" +"will consume more resources." +msgstr "" +"கொடுக்கப்பட்ட பிரேம்களின் எண்ணிக்கையில் நிழல் வரைபடத்தின் முழுமையான புதுப்பிப்பை " +"பரப்பவும்.\n" +" அதிக மதிப்புகள் நிழல்களை பின்னடைவு, குறைந்த மதிப்புகளை உருவாக்கக்கூடும்\n" +" அதிக வளங்களை உட்கொள்ளும்.\n" +" குறைந்தபட்ச மதிப்பு: 1; அதிகபட்ச மதிப்பு: 16" + +#: src/settings_translation_file.cpp +msgid "" +"Spread of light curve boost range.\n" +"Controls the width of the range to be boosted.\n" +"Standard deviation of the light curve boost Gaussian." +msgstr "" +"ஒளி வளைவு பூச்ட் வரம்பின் பரவல்.\n" +" உயர்த்தப்பட வேண்டிய வரம்பின் அகலத்தை கட்டுப்படுத்துகிறது.\n" +" ஒளி வளைவின் நிலையான விலகல் காசியனை உயர்த்துகிறது." + +#: src/settings_translation_file.cpp +msgid "Static spawn point" +msgstr "நிலையான ச்பான் புள்ளி" + +#: src/settings_translation_file.cpp +msgid "Steepness noise" +msgstr "செங்குத்தான ஒலி" + +#: src/settings_translation_file.cpp +msgid "Step mountain size noise" +msgstr "மலை அளவு ஒலி" + +#: src/settings_translation_file.cpp +msgid "Step mountain spread noise" +msgstr "படி மலை பரவல் ஒலி" + +#: src/settings_translation_file.cpp +msgid "Strength of 3D mode parallax." +msgstr "3D பயன்முறை இடமாறு வலிமை." + +#: src/settings_translation_file.cpp +msgid "" +"Strength of light curve boost.\n" +"The 3 'boost' parameters define a range of the light\n" +"curve that is boosted in brightness." +msgstr "" +"ஒளி வளைவு ஊக்கத்தின் வலிமை.\n" +" 3 'பூச்ட்' அளவுருக்கள் ஒளியின் வரம்பை வரையறுக்கின்றன\n" +" பிரகாசத்தில் அதிகரிக்கும் வளைவு." + +#: src/settings_translation_file.cpp +msgid "Strict protocol checking" +msgstr "கடுமையான நெறிமுறை சோதனை" + +#: src/settings_translation_file.cpp +msgid "Strip color codes" +msgstr "துண்டு வண்ண குறியீடுகளை" + +#: src/settings_translation_file.cpp +msgid "" +"Surface level of optional water placed on a solid floatland layer.\n" +"Water is disabled by default and will only be placed if this value is set\n" +"to above 'mgv7_floatland_ymax' - 'mgv7_floatland_taper' (the start of the\n" +"upper tapering).\n" +"***WARNING, POTENTIAL DANGER TO WORLDS AND SERVER PERFORMANCE***:\n" +"When enabling water placement, floatlands must be configured and tested\n" +"to be a solid layer by setting 'mgv7_floatland_density' to 2.0 (or other\n" +"required value depending on 'mgv7_np_floatland'), to avoid\n" +"server-intensive extreme water flow and to avoid vast flooding of the\n" +"world surface below." +msgstr "" +"ஒரு திட மிதவை அடுக்கில் வைக்கப்பட்டுள்ள விருப்ப நீரின் மேற்பரப்பு நிலை.\n" +" இயல்புநிலையாக நீர் முடக்கப்பட்டுள்ளது, இந்த மதிப்பு அமைக்கப்பட்டால் மட்டுமே வைக்கப்படும்\n" +" மேலே 'mgv7_floatland_ymax' - 'mgv7_floatland_taper' (தொடக்க\n" +" மேல் டேப்பரிங்).\n" +" *** எச்சரிக்கை, உலகங்களுக்கு இடர் மற்றும் சேவையக செயல்திறன் ***:\n" +" நீர் வேலைவாய்ப்பை செயல்படுத்தும்போது, ஃப்ளோட்லேண்ட்ச் கட்டமைக்கப்பட்டு சோதிக்கப்பட வேண்டும்\n" +" 'MGV7_FLOATLAND_DENCES' ஐ 2.0 ஆக அமைப்பதன் மூலம் ஒரு திட அடுக்காக இருக்க வேண்டும் " +"(அல்லது பிற\n" +" தவிர்க்க, 'mgv7_np_floatland' ஐப் பொறுத்து தேவை), தவிர்க்க\n" +" சேவையக-தீவிர தீவிர நீர் ஓட்டம் மற்றும் பரந்த வெள்ளத்தைத் தவிர்க்க\n" +" உலக மேற்பரப்பு கீழே." + +#: src/settings_translation_file.cpp +msgid "Synchronous SQLite" +msgstr "ஒத்திசைவான SQLite" + +#: src/settings_translation_file.cpp +msgid "Temperature variation for biomes." +msgstr "பயோம்களுக்கான வெப்பநிலை மாறுபாடு." + +#: src/settings_translation_file.cpp +msgid "Terrain alternative noise" +msgstr "நிலப்பரப்பு மாற்று ஒலி" + +#: src/settings_translation_file.cpp +msgid "Terrain base noise" +msgstr "நிலப்பரப்பு அடிப்படை ஒலி" + +#: src/settings_translation_file.cpp +msgid "Terrain height" +msgstr "நிலப்பரப்பு உயரம்" + +#: src/settings_translation_file.cpp +msgid "Terrain higher noise" +msgstr "நிலப்பரப்பு அதிக ஒலி" + +#: src/settings_translation_file.cpp +msgid "Terrain noise" +msgstr "நிலப்பரப்பு ஒலி" + +#: src/settings_translation_file.cpp +msgid "" +"Terrain noise threshold for hills.\n" +"Controls proportion of world area covered by hills.\n" +"Adjust towards 0.0 for a larger proportion." +msgstr "" +"மலைகளுக்கான நிலப்பரப்பு இரைச்சல் வாசல்.\n" +" மலைகள் மூடப்பட்ட உலகப் பகுதியின் விகிதத்தை கட்டுப்படுத்துகிறது.\n" +" ஒரு பெரிய விகிதத்திற்கு 0.0 ஐ சரிசெய்யவும்." + +#: src/settings_translation_file.cpp +msgid "" +"Terrain noise threshold for lakes.\n" +"Controls proportion of world area covered by lakes.\n" +"Adjust towards 0.0 for a larger proportion." +msgstr "" +"ஏரிகளுக்கு நிலப்பரப்பு இரைச்சல் வாசல்.\n" +" ஏரிகளால் மூடப்பட்ட உலகப் பகுதியின் விகிதத்தை கட்டுப்படுத்துகிறது.\n" +" ஒரு பெரிய விகிதத்திற்கு 0.0 ஐ சரிசெய்யவும்." + +#: src/settings_translation_file.cpp +msgid "Terrain persistence noise" +msgstr "நிலப்பரப்பு நிலைத்தன்மை ஒலி" + +#: src/settings_translation_file.cpp +msgid "" +"Texture size to render the shadow map on.\n" +"This must be a power of two.\n" +"Bigger numbers create better shadows but it is also more expensive." +msgstr "" +"நிழல் வரைபடத்தை வழங்க அமைப்பு அளவு.\n" +" இது இரண்டின் சக்தியாக இருக்க வேண்டும்.\n" +" பெரிய எண்கள் சிறந்த நிழல்களை உருவாக்குகின்றன, ஆனால் இது மிகவும் விலை உயர்ந்தது." + +#: src/settings_translation_file.cpp +msgid "" +"Textures on a node may be aligned either to the node or to the world.\n" +"The former mode suits better things like machines, furniture, etc., while\n" +"the latter makes stairs and microblocks fit surroundings better.\n" +"However, as this possibility is new, thus may not be used by older servers,\n" +"this option allows enforcing it for certain node types. Note though that\n" +"that is considered EXPERIMENTAL and may not work properly." +msgstr "" +"ஒரு முனையில் உள்ள கட்டமைப்புகள் முனை அல்லது உலகத்துடன் சீரமைக்கப்படலாம்.\n" +" முன்னாள் பயன்முறை இயந்திரங்கள், தளபாடங்கள் போன்றவற்றுக்கு பொருந்தும்\n" +" பிந்தையது படிக்கட்டுகள் மற்றும் மைக்ரோ பிளாக்சை சுற்றுப்புறங்களை பொருத்தமாக்குகிறது.\n" +" இருப்பினும், இந்த சாத்தியம் புதியது என்பதால், பழைய சேவையகங்களால் பயன்படுத்தப்படாது,\n" +" இந்த விருப்பம் சில முனை வகைகளுக்கு அதை செயல்படுத்த அனுமதிக்கிறது. கவனியுங்கள்\n" +" இது சோதனைக்குரியதாகக் கருதப்படுகிறது மற்றும் சரியாக வேலை செய்யாது." + +#: src/settings_translation_file.cpp +msgid "The URL for the content repository" +msgstr "உள்ளடக்க களஞ்சியத்திற்கான முகவரி" + +#: src/settings_translation_file.cpp +msgid "The dead zone of the joystick" +msgstr "சாய்ச்டிக்கின் இறந்த மண்டலம்" + +#: src/settings_translation_file.cpp +msgid "" +"The default format in which profiles are being saved,\n" +"when calling `/profiler save [format]` without format." +msgstr "" +"சுயவிவரங்கள் சேமிக்கப்படும் இயல்புநிலை வடிவம்,\n" +" `/சுயவிவரத்தை அழைக்கும்போது [வடிவத்தை]` வடிவமின்றி சேமிக்கவும்." + +#: src/settings_translation_file.cpp +msgid "" +"The delay in milliseconds after which a touch interaction is considered a " +"long tap." +msgstr "" +"மில்லி விநாடிகளின் நேரந்தவறுகை அதன் பிறகு ஒரு தொடு தொடர்பு ஒரு நீண்ட குழாய் என்று " +"கருதப்படுகிறது." + +#: src/settings_translation_file.cpp +msgid "" +"The file path relative to your world path in which profiles will be saved to." +msgstr "சுயவிவரங்கள் சேமிக்கப்படும் உங்கள் உலக பாதையுடன் தொடர்புடைய கோப்பு பாதை." + +#: src/settings_translation_file.cpp +msgid "" +"The gesture for punching players/entities.\n" +"This can be overridden by games and mods.\n" +"\n" +"* short_tap\n" +"Easy to use and well-known from other games that shall not be named.\n" +"\n" +"* long_tap\n" +"Known from the classic Luanti mobile controls.\n" +"Combat is more or less impossible." +msgstr "" +"வீரர்கள்/நிறுவனங்களை குத்துவதற்கான சைகை.\n" +" இதை விளையாட்டுகள் மற்றும் மோட்களால் மீறலாம்.\n" +"\n" +" * short_tap\n" +" பயன்படுத்த எளிதானது மற்றும் பெயரிடப்படாத பிற விளையாட்டுகளிலிருந்து நன்கு " +"அறியப்பட்டது.\n" +"\n" +" * long_tap\n" +" கிளாசிக் லுவாண்டி மொபைல் கட்டுப்பாடுகளிலிருந்து அறியப்படுகிறது.\n" +" போர் அதிகமாகவோ அல்லது குறைவாகவோ சாத்தியமற்றது." + +#: src/settings_translation_file.cpp +msgid "The identifier of the joystick to use" +msgstr "பயன்படுத்த சாய்ச்டிக்கின் அடையாளங்காட்டி" + +#: src/settings_translation_file.cpp +msgid "" +"The length in pixels after which a touch interaction is considered movement." +msgstr "பிக்சல்களில் உள்ள நீளம் அதன் பிறகு ஒரு தொடு தொடர்பு இயக்கமாகக் கருதப்படுகிறது." + +#: src/settings_translation_file.cpp +msgid "" +"The maximum height of the surface of waving liquids.\n" +"4.0 = Wave height is two nodes.\n" +"0.0 = Wave doesn't move at all.\n" +"Default is 1.0 (1/2 node)." +msgstr "" +"திரவங்களை அசைக்கும் மேற்பரப்பின் அதிகபட்ச உயரம்.\n" +" 4.0 = அலை உயரம் இரண்டு முனைகள்.\n" +" 0.0 = அலை எதுவும் நகராது.\n" +" இயல்புநிலை 1.0 (1/2 முனை)." + +#: src/settings_translation_file.cpp +msgid "" +"The minimum time in seconds it takes between digging nodes when holding\n" +"the dig button." +msgstr "" +"நொடிகளில் குறைந்தபட்ச நேரம் வைத்திருக்கும் போது தோண்டும் முனைகளுக்கு இடையில் எடுக்கும்\n" +" தோண்டி பொத்தானை." + +#: src/settings_translation_file.cpp +msgid "The network interface that the server listens on." +msgstr "சேவையகம் கேட்கும் பிணைய இடைமுகம்." + +#: src/settings_translation_file.cpp +msgid "" +"The privileges that new users automatically get.\n" +"See /privs in game for a full list on your server and mod configuration." +msgstr "" +"புதிய பயனர்கள் தானாகவே பெறும் சலுகைகள்.\n" +" உங்கள் சேவையகம் மற்றும் மோட் உள்ளமைவில் முழு பட்டியலுக்கான விளையாட்டில் /privers ஐப் " +"பார்க்கவும்." + +#: src/settings_translation_file.cpp +msgid "" +"The radius of the volume of blocks around every player that is subject to " +"the\n" +"active block stuff, stated in mapblocks (16 nodes).\n" +"In active blocks objects are loaded and ABMs run.\n" +"This is also the minimum range in which active objects (mobs) are " +"maintained.\n" +"This should be configured together with active_object_send_range_blocks." +msgstr "" +"ஒவ்வொரு வீரரைச் சுற்றியுள்ள தொகுதிகளின் அளவின் ஆரம்\n" +" செயலில் உள்ள திறன், மேப் பிளாக்சில் (16 முனைகள்) கூறப்பட்டுள்ளது.\n" +" செயலில் உள்ள தொகுதிகளில் பொருள்கள் ஏற்றப்பட்டு ஏபிஎம்எச் இயங்கும்.\n" +" செயலில் உள்ள பொருள்கள் (COB கள்) பராமரிக்கப்படும் குறைந்தபட்ச வரம்பும் இதுவாகும்.\n" +" இது Active_object_send_range_blocks உடன் ஒன்றாக கட்டமைக்கப்பட வேண்டும்." + +#: src/settings_translation_file.cpp +msgid "" +"The rendering back-end.\n" +"Note: A restart is required after changing this!\n" +"OpenGL is the default for desktop, and OGLES2 for Android." +msgstr "" +"வழங்குதல் பின்-இறுதி.\n" +" குறிப்பு: இதை மாற்றிய பின் மறுதொடக்கம் தேவை!\n" +" OpenGL என்பது டெச்க்டாப்பின் இயல்புநிலை, மற்றும் ஆண்ட்ராய்டு க்கான OGLES2." + +#: src/settings_translation_file.cpp +msgid "" +"The sensitivity of the joystick axes for moving the\n" +"in-game view frustum around." +msgstr "" +"நகர்த்துவதற்கான சாய்ச்டிக் அச்சுகளின் உணர்திறன்\n" +" விளையாட்டில் பார்க்கவும்." + +#: src/settings_translation_file.cpp +msgid "" +"The strength (darkness) of node ambient-occlusion shading.\n" +"Lower is darker, Higher is lighter. The valid range of values for this\n" +"setting is 0.25 to 4.0 inclusive. If the value is out of range it will be\n" +"set to the nearest valid value." +msgstr "" +"முனை சுற்றுப்புற-மறுப்பு நிழலின் வலிமை (இருள்).\n" +" கீழ் இருண்டது, உயர்ந்தது இலகுவானது. இதற்கான மதிப்புகளின் சரியான வரம்பு\n" +" அமைப்பு 0.25 முதல் 4.0 ஆகியவை அடங்கும். மதிப்பு வரம்பில்லாமல் இருந்தால் அது இருக்கும்\n" +" அருகிலுள்ள செல்லுபடியாகும் மதிப்புக்கு அமைக்கவும்." + +#: src/settings_translation_file.cpp +msgid "" +"The time (in seconds) that the liquids queue may grow beyond processing\n" +"capacity until an attempt is made to decrease its size by dumping old queue\n" +"items. A value of 0 disables the functionality." +msgstr "" +"திரவங்களின் வரிசை செயலாக்கத்திற்கு அப்பால் வளரக்கூடிய நேரம் (நொடிகளில்)\n" +" பழைய வரிசையை கொட்டுவதன் மூலம் அதன் அளவைக் குறைக்க முயற்சி செய்யும் வரை திறன்\n" +" உருப்படிகள். 0 இன் மதிப்பு செயல்பாட்டை முடக்குகிறது." + +#: src/settings_translation_file.cpp +msgid "" +"The time budget allowed for ABMs to execute on each step\n" +"(as a fraction of the ABM Interval)" +msgstr "" +"ஒவ்வொரு அடியிலும் ஏபிஎம்எச் செயல்படுத்த நேர பட்செட் அனுமதித்தது\n" +" (ஏபிஎம் இடைவெளியின் ஒரு பகுதியாக)" + +#: src/settings_translation_file.cpp +msgid "" +"The time in seconds it takes between repeated events\n" +"when holding down a joystick button combination." +msgstr "" +"மீண்டும் மீண்டும் நிகழ்வுகளுக்கு இடையில் எடுக்கும் விநாடிகளில் நேரம்\n" +" சாய்ச்டிக் பொத்தான் கலவையை வைத்திருக்கும் போது." + +#: src/settings_translation_file.cpp +msgid "" +"The time in seconds it takes between repeated node placements when holding\n" +"the place button." +msgstr "" +"நொடிகளில் நேரம் எடுக்கும் போது மீண்டும் மீண்டும் முனை வேலைவாய்ப்புகளுக்கு இடையில் எடுக்கும் " +"நேரம்\n" +" இட பொத்தானை." + +#: src/settings_translation_file.cpp +msgid "The type of joystick" +msgstr "சாய்ச்டிக் வகை" + +#: src/settings_translation_file.cpp +msgid "" +"The vertical distance over which heat drops by 20 if 'altitude_chill' is\n" +"enabled. Also, the vertical distance over which humidity drops by 10 if\n" +"'altitude_dry' is enabled." +msgstr "" +"'உயரம்_சில்' என்றால் வெப்பம் 20 ஆல் செங்குத்து தூரம்\n" +" இயக்கப்பட்டது. மேலும், ஈரப்பதம் 10 என்றால் செங்குத்து தூரம்\n" +" 'Altitute_dry' இயக்கப்பட்டது." + +#: src/settings_translation_file.cpp +msgid "Third of 4 2D noises that together define hill/mountain range height." +msgstr "இல்/மலை வீச்சு உயரத்தை ஒன்றாக வரையறுக்கும் 4 2 டி சத்தங்களில் மூன்றாவது." + +#: src/settings_translation_file.cpp +msgid "Threshold for long taps" +msgstr "நீண்ட குழாய்களுக்கான வாசல்" + +#: src/settings_translation_file.cpp +msgid "" +"Time in seconds for item entity (dropped items) to live.\n" +"Setting it to -1 disables the feature." +msgstr "" +"உருப்படி நிறுவனம் (கைவிடப்பட்ட உருப்படிகள்) வாழ விநாடிகளில் நேரம்.\n" +" அதை -1 ஆக அமைப்பது அம்சத்தை முடக்கியது." + +#: src/settings_translation_file.cpp +msgid "Time of day when a new world is started, in millihours (0-23999)." +msgstr "ஒரு புதிய உலகம் தொடங்கப்பட்ட நாள், மில்லிஓர்சில் (0-23999)." + +#: src/settings_translation_file.cpp +msgid "Time speed" +msgstr "நேர விரைவு" + +#: src/settings_translation_file.cpp +msgid "Timeout for client to remove unused map data from memory, in seconds." +msgstr "" +"பயன்படுத்தப்படாத வரைபடத் தரவை நினைவகத்திலிருந்து நொடிகளில் அகற்ற கிளையன்ட் நேரம் " +"முடிந்தது." + +#: src/settings_translation_file.cpp +msgid "" +"To reduce lag, block transfers are slowed down when a player is building " +"something.\n" +"This determines how long they are slowed down after placing or removing a " +"node." +msgstr "" +"பின்னடைவைக் குறைக்க, ஒரு வீரர் எதையாவது உருவாக்கும்போது தொகுதி இடமாற்றங்கள் " +"குறைகின்றன.\n" +" இது ஒரு முனையை வைத்த பிறகு அல்லது அகற்றிய பின் அவை எவ்வளவு நேரம் குறைகின்றன என்பதை " +"இது தீர்மானிக்கிறது." + +#: src/settings_translation_file.cpp +msgid "" +"Tolerance of movement cheat detector.\n" +"Increase the value if players experience stuttery movement." +msgstr "" +"இயக்கம் ஏமாற்று கண்டுபிடிப்பாளரின் சகிப்புத்தன்மை.\n" +" வீரர்கள் ச்டட்டரி இயக்கத்தை அனுபவித்தால் மதிப்பை அதிகரிக்கவும்." + +#: src/settings_translation_file.cpp +msgid "Tooltip delay" +msgstr "உதவிக்குறிப்பு நேரந்தவறுகை" + +#: src/settings_translation_file.cpp +msgid "Touchscreen" +msgstr "தொடுதிரை" + +#: src/settings_translation_file.cpp +msgid "Touchscreen controls" +msgstr "தொடுதிரை கட்டுப்பாடுகள்" + +#: src/settings_translation_file.cpp +msgid "Touchscreen sensitivity" +msgstr "தொடுதிரை உணர்திறன்" + +#: src/settings_translation_file.cpp +msgid "Touchscreen sensitivity multiplier." +msgstr "தொடுதிரை உணர்திறன் பெருக்கி." + +#: src/settings_translation_file.cpp +msgid "Tradeoffs for performance" +msgstr "செயல்திறனுக்கான பரிமாற்றங்கள்" + +#: src/settings_translation_file.cpp +msgid "Translucent foliage" +msgstr "கசியும் பசுமையாக" + +#: src/settings_translation_file.cpp +msgid "Translucent liquids" +msgstr "கசியும் திரவங்கள்" + +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Distance" +msgstr "வெளிப்படைத்தன்மை வரிசையாக்க தூரம்" + +#: src/settings_translation_file.cpp +#, fuzzy +msgid "Transparency Sorting Group by Buffers" +msgstr "வெளிப்படைத்தன்மை வரிசையாக்க தூரம்" + +#: src/settings_translation_file.cpp +msgid "Trees noise" +msgstr "மரங்களின் ஒலி" + +#: src/settings_translation_file.cpp +msgid "Trilinear filtering" +msgstr "Trilinear வடிகட்டுதல்" + +#: src/settings_translation_file.cpp +msgid "" +"True = 256\n" +"False = 128\n" +"Usable to make minimap smoother on slower machines." +msgstr "" +"உண்மை = 256\n" +" தவறு = 128\n" +" மெதுவான இயந்திரங்களில் மினிமேப்பை மென்மையாக்க பயன்படுத்தக்கூடியது." + +#: src/settings_translation_file.cpp +msgid "Trusted mods" +msgstr "நம்பகமான மோட்ச்" + +#: src/settings_translation_file.cpp +msgid "" +"Type of occlusion_culler\n" +"\n" +"\"loops\" is the legacy algorithm with nested loops and O(n³) complexity\n" +"\"bfs\" is the new algorithm based on breadth-first-search and side culling\n" +"\n" +"This setting should only be changed if you have performance problems." +msgstr "" +"Acclusion_culler வகை\n" +"\n" +" \"லூப்ச்\" என்பது உள்ளமைக்கப்பட்ட சுழல்கள் மற்றும் ஓ (n³) சிக்கலான மரபு வழிமுறை\n" +" \"பி.எஃப்.எச்\" என்பது அகலம்-முதல் தேடல் மற்றும் பக்கக் குறைப்பை அடிப்படையாகக் கொண்ட " +"புதிய வழிமுறையாகும்\n" +"\n" +" உங்களுக்கு செயல்திறன் சிக்கல்கள் இருந்தால் மட்டுமே இந்த அமைப்பை மாற்ற வேண்டும்." + +#: src/settings_translation_file.cpp +msgid "" +"URL to JSON file which provides information about the newest Luanti " +"release.\n" +"If this is empty the engine will never check for updates." +msgstr "" +"புதிய லுவாண்டி வெளியீட்டைப் பற்றிய தகவல்களை வழங்கும் சாதொபொகு கோப்பிற்கான URL.\n" +" இது காலியாக இருந்தால், இயந்திரம் ஒருபோதும் புதுப்பிப்புகளை சரிபார்க்காது." + +#: src/settings_translation_file.cpp +msgid "URL to the server list displayed in the Multiplayer Tab." +msgstr "மல்டிபிளேயர் தாவலில் காட்டப்படும் சேவையக பட்டியலுக்கான முகவரி." + +#: src/settings_translation_file.cpp +msgid "Undersampling" +msgstr "அடிக்கோடிட்டுக் காட்டுகிறது" + +#: src/settings_translation_file.cpp +#, fuzzy +msgid "" +"Undersampling is similar to using a lower screen resolution, but it applies\n" +"to the game world only, keeping the GUI intact.\n" +"It should give a significant performance boost at the cost of less detailed " +"image.\n" +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." +msgstr "" +"அடிக்கோடிட்டுக் காட்டுவது குறைந்த திரை தெளிவுத்திறனைப் பயன்படுத்துவதைப் போன்றது, ஆனால் " +"அது பொருந்தும்\n" +" விளையாட்டு உலகிற்கு மட்டுமே, GUI ஐ அப்படியே வைத்திருத்தல்.\n" +" இது குறைந்த விரிவான படத்தின் விலையில் குறிப்பிடத்தக்க செயல்திறன் ஊக்கத்தை அளிக்க " +"வேண்டும்.\n" +" அதிக மதிப்புகள் குறைந்த விரிவான படத்தை விளைவிக்கின்றன." + +#: src/settings_translation_file.cpp +msgid "Unlimited player transfer distance" +msgstr "வரம்பற்ற வீரர் பரிமாற்ற தூரம்" + +#: src/settings_translation_file.cpp +msgid "Unload unused server data" +msgstr "பயன்படுத்தப்படாத சேவையக தரவை இறக்கவும்" + +#: src/settings_translation_file.cpp +msgid "Update information URL" +msgstr "செய்தி முகவரி ஐப் புதுப்பிக்கவும்" + +#: src/settings_translation_file.cpp +msgid "Upper Y limit of dungeons." +msgstr "நிலவறைகளின் மேல் ஒய் வரம்பு." + +#: src/settings_translation_file.cpp +msgid "Upper Y limit of floatlands." +msgstr "ஃப்ளோட்லேண்ட்சின் மேல் ஒய் வரம்பு." + +#: src/settings_translation_file.cpp +msgid "Use a cloud animation for the main menu background." +msgstr "முதன்மையான பட்டியல் பின்னணிக்கு முகில் அனிமேசனைப் பயன்படுத்தவும்." + +#: src/settings_translation_file.cpp +#, fuzzy +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." +msgstr "" +"ஒரு கோணத்தில் இருந்து அமைப்புகளைப் பார்க்கும்போது அனிசோட்ரோபிக் வடிகட்டலைப் பயன்படுத்தவும்." + +#: src/settings_translation_file.cpp +msgid "Use bilinear filtering when scaling textures." +msgstr "அமைப்புகளை அளவிடும்போது பிலினியர் வடிகட்டலைப் பயன்படுத்தவும்." + +#: src/settings_translation_file.cpp +msgid "Use crosshair for touch screen" +msgstr "தொடுதிரைக்கு குறுக்குவழியைப் பயன்படுத்தவும்" + +#: src/settings_translation_file.cpp +msgid "" +"Use crosshair to select object instead of whole screen.\n" +"If enabled, a crosshair will be shown and will be used for selecting object." +msgstr "" +"முழு திரைக்கு பதிலாக பொருளைத் தேர்ந்தெடுக்க குறுக்குவழியைப் பயன்படுத்தவும்.\n" +" இயக்கப்பட்டால், ஒரு குறுக்கு நாற்காலி காண்பிக்கப்படும் மற்றும் பொருளைத் தேர்ந்தெடுப்பதற்கு " +"பயன்படுத்தப்படும்." + +#: src/settings_translation_file.cpp +msgid "" +"Use mipmaps when scaling textures. May slightly increase performance,\n" +"especially when using a high-resolution texture pack.\n" +"Gamma-correct downscaling is not supported." +msgstr "" +"அமைப்புகளை அளவிடும்போது MIPMAP களைப் பயன்படுத்தவும். செயல்திறனை சற்று அதிகரிக்கலாம்,\n" +" குறிப்பாக உயர் தெளிவுத்திறன் கொண்ட அமைப்பு பேக்கைப் பயன்படுத்தும் போது.\n" +" காமா-திருத்த கீழ்நோக்கி ஆதரிக்கப்படவில்லை." + +#: src/settings_translation_file.cpp +msgid "" +"Use raytraced occlusion culling in the new culler.\n" +"This flag enables use of raytraced occlusion culling test for\n" +"client mesh sizes smaller than 4x4x4 map blocks." +msgstr "" +"புதிய குல்லரில் ரேச்ட்ரேச் க்ளூசன் குறைப்பைப் பயன்படுத்தவும்.\n" +" இந்த கொடி ரேச்ட்ரேச் க்ளூசன் க்ளிங் சோதனையைப் பயன்படுத்த உதவுகிறது\n" +" கிளையன்ட் மெச் அளவுகள் 4x4x4 வரைபடத் தொகுதிகளை விட சிறியவை." + +#: src/settings_translation_file.cpp +msgid "Use smooth cloud shading." +msgstr "மென்மையான மேக நிழல் பயன்படுத்தவும்." + +#: src/settings_translation_file.cpp +msgid "" +"Use trilinear filtering when scaling textures.\n" +"If both bilinear and trilinear filtering are enabled, trilinear filtering\n" +"is applied." +msgstr "" +"அமைப்புகளை அளவிடும்போது Trilinear வடிகட்டலைப் பயன்படுத்தவும்.\n" +" பிலினியர் மற்றும் ட்ரிலினியர் வடிகட்டுதல் இரண்டும் இயக்கப்பட்டிருந்தால், ட்ரிலினியர் " +"வடிகட்டுதல்\n" +" பயன்படுத்தப்படுகிறது." + +#: src/settings_translation_file.cpp +msgid "" +"Use virtual joystick to trigger \"Aux1\" button.\n" +"If enabled, virtual joystick will also tap \"Aux1\" button when out of main " +"circle." +msgstr "" +"\"AUX1\" பொத்தானைத் தூண்டுவதற்கு மெய்நிகர் சாய்ச்டிக் பயன்படுத்தவும்.\n" +" இயக்கப்பட்டால், முதன்மையான வட்டத்திற்கு வெளியே இருக்கும்போது மெய்நிகர் சாய்ச்டிக் \"AUX1\" " +"பொத்தானையும் தட்டிவிடும்." + +#: src/settings_translation_file.cpp +msgid "User Interfaces" +msgstr "பயனர் இடைமுகங்கள்" + +#: src/settings_translation_file.cpp +msgid "VSync" +msgstr "Vsync" + +#: src/settings_translation_file.cpp +msgid "Valley depth" +msgstr "பள்ளத்தாக்கு ஆழம்" + +#: src/settings_translation_file.cpp +msgid "Valley fill" +msgstr "பள்ளத்தாக்கு நிரப்பு" + +#: src/settings_translation_file.cpp +msgid "Valley profile" +msgstr "பள்ளத்தாக்கு சுயவிவரம்" + +#: src/settings_translation_file.cpp +msgid "Valley slope" +msgstr "பள்ளத்தாக்கு சாய்வு" + +#: src/settings_translation_file.cpp +msgid "Variation of biome filler depth." +msgstr "பயோம் நிரப்பு ஆழத்தின் மாறுபாடு." + +#: src/settings_translation_file.cpp +msgid "Variation of maximum mountain height (in nodes)." +msgstr "அதிகபட்ச மலை உயரத்தின் மாறுபாடு (முனைகளில்)." + +#: src/settings_translation_file.cpp +msgid "Variation of number of caves." +msgstr "குகைகளின் எண்ணிக்கையின் மாறுபாடு." + +#: src/settings_translation_file.cpp +msgid "" +"Variation of terrain vertical scale.\n" +"When noise is < -0.55 terrain is near-flat." +msgstr "" +"நிலப்பரப்பு செங்குத்து அளவின் மாறுபாடு.\n" +" ஒலி இருக்கும்போது <-0.55 நிலப்பரப்பு ஃப்ளாட் ஆகும்." + +#: src/settings_translation_file.cpp +msgid "Varies depth of biome surface nodes." +msgstr "பயோம் மேற்பரப்பு முனைகளின் ஆழம் மாறுபடும்." + +#: src/settings_translation_file.cpp +msgid "" +"Varies roughness of terrain.\n" +"Defines the 'persistence' value for terrain_base and terrain_alt noises." +msgstr "" +"நிலப்பரப்பின் கடினத்தன்மை மாறுபடும்.\n" +" TERRAIN_BASE மற்றும் TERRAIN_ALT சத்தங்களுக்கான 'விடாமுயற்சி' மதிப்பை வரையறுக்கிறது." + +#: src/settings_translation_file.cpp +msgid "Varies steepness of cliffs." +msgstr "குன்றின் செங்குத்தாக மாறுபடும்." + +#: src/settings_translation_file.cpp +msgid "Vertical climbing speed, in nodes per second." +msgstr "செங்குத்து ஏறும் விரைவு, நொடிக்கு முனைகளில்." + +#: src/settings_translation_file.cpp +msgid "" +"Vertical screen synchronization. Your system may still force VSync on even " +"if this is disabled." +msgstr "" +"செங்குத்து திரை ஒத்திசைவு. இது முடக்கப்பட்டிருந்தாலும் உங்கள் கணினி VSYNC ஐ " +"கட்டாயப்படுத்தக்கூடும்." + +#: src/settings_translation_file.cpp +msgid "Video driver" +msgstr "வீடியோ இயக்கி" + +#: src/settings_translation_file.cpp +msgid "View bobbing factor" +msgstr "பாப்பிங் காரணியைக் காண்க" + +#: src/settings_translation_file.cpp +msgid "View distance in nodes." +msgstr "முனைகளில் தூரத்தைக் காண்க." + +#: src/settings_translation_file.cpp +msgid "Viewing range" +msgstr "பார்க்கும் வரம்பு" + +#: src/settings_translation_file.cpp +msgid "Virtual joystick triggers Aux1 button" +msgstr "மெய்நிகர் சாய்ச்டிக் AUX1 பொத்தானைத் தூண்டுகிறது" + +#: src/settings_translation_file.cpp +msgid "Volume" +msgstr "தொகுதி" + +#: src/settings_translation_file.cpp +msgid "Volume multiplier when the window is unfocused." +msgstr "சாளரம் கவனம் செலுத்தப்படாதபோது தொகுதி பெருக்கி." + +#: src/settings_translation_file.cpp +msgid "" +"Volume of all sounds.\n" +"Requires the sound system to be enabled." +msgstr "" +"எல்லா ஒலிகளின் அளவு.\n" +" ஒலி அமைப்பு இயக்கப்பட வேண்டும்." + +#: src/settings_translation_file.cpp +msgid "Volume when unfocused" +msgstr "கவனம் செலுத்தாதபோது தொகுதி" + +#: src/settings_translation_file.cpp +msgid "Volumetric lighting" +msgstr "அளவீட்டு விளக்குகள்" + +#: src/settings_translation_file.cpp +msgid "" +"W coordinate of the generated 3D slice of a 4D fractal.\n" +"Determines which 3D slice of the 4D shape is generated.\n" +"Alters the shape of the fractal.\n" +"Has no effect on 3D fractals.\n" +"Range roughly -2 to 2." +msgstr "" +"4 டி ஃப்ராக்டலின் உருவாக்கப்பட்ட 3 டி ச்லைசின் ஒருங்கிணைப்பு.\n" +" 4D வடிவத்தின் எந்த 3D துண்டு உருவாக்கப்படுகிறது என்பதை தீர்மானிக்கிறது.\n" +" ஃப்ராக்டலின் வடிவத்தை மாற்றுகிறது.\n" +" 3D பின்னல்களில் எந்த விளைவும் இல்லை.\n" +" வரம்பு தோராயமாக -2 முதல் 2 வரை." + +#: src/settings_translation_file.cpp +msgid "Walking and flying speed, in nodes per second." +msgstr "நடைபயிற்சி மற்றும் பறக்கும் விரைவு, நொடிக்கு முனைகளில்." + +#: src/settings_translation_file.cpp +msgid "Walking speed" +msgstr "நடைபயிற்சி விரைவு" + +#: src/settings_translation_file.cpp +msgid "Walking, flying and climbing speed in fast mode, in nodes per second." +msgstr "" +"நடைபயிற்சி, பறக்கும் மற்றும் ஏறும் விரைவு வேகமான பயன்முறையில், நொடிக்கு முனைகளில்." + +#: src/settings_translation_file.cpp +msgid "Water level" +msgstr "நீர் நிலை" + +#: src/settings_translation_file.cpp +msgid "Water surface level of the world." +msgstr "உலகின் நீர் மேற்பரப்பு நிலை." + +#: src/settings_translation_file.cpp +msgid "Waving Nodes" +msgstr "முனைகள் அசைக்கும்" + +#: src/settings_translation_file.cpp +msgid "Waving leaves" +msgstr "இலைகளை அசைக்கும்" + +#: src/settings_translation_file.cpp +msgid "Waving liquids" +msgstr "திரவங்களை அசைக்கும்" + +#: src/settings_translation_file.cpp +msgid "Waving liquids wave height" +msgstr "திரவங்களின் அலை உயரம்" + +#: src/settings_translation_file.cpp +msgid "Waving liquids wave speed" +msgstr "திரவங்களின் அலை வேகத்தை அசைத்தல்" + +#: src/settings_translation_file.cpp +msgid "Waving liquids wavelength" +msgstr "திரவ அலைநீளம் அசைத்தல்" + +#: src/settings_translation_file.cpp +msgid "Waving plants" +msgstr "தாவரங்களை அசைத்தல்" + +#: src/settings_translation_file.cpp +msgid "Weblink color" +msgstr "வெப்லிங்க் நிறம்" + +#: src/settings_translation_file.cpp +msgid "When enabled, liquid reflections are simulated." +msgstr "இயக்கப்பட்டால், திரவ பிரதிபலிப்புகள் உருவகப்படுத்தப்படுகின்றன." + +#: src/settings_translation_file.cpp +msgid "" +"When enabled, the GUI is optimized to be more usable on touchscreens.\n" +"Whether this is enabled by default depends on your hardware form-factor." +msgstr "" +"இயக்கப்பட்டால், CUI தொடுதிரைகளில் மிகவும் பயன்படுத்தக்கூடியதாக இருக்கும்.\n" +" இது இயல்புநிலையாக இயக்கப்பட்டதா என்பது உங்கள் வன்பொருள் படிவ-காரணி சார்ந்துள்ளது." + +#: src/settings_translation_file.cpp +msgid "" +"When gui_scaling_filter is true, all GUI images need to be\n" +"filtered in software, but some images are generated directly\n" +"to hardware (e.g. render-to-texture for nodes in inventory)." +msgstr "" +"GUI_SCALING_FILTER உண்மையாக இருக்கும்போது, அனைத்து GUI படங்களும் இருக்க வேண்டும்\n" +" மென்பொருளில் வடிகட்டப்படுகிறது, ஆனால் சில படங்கள் நேரடியாக உருவாக்கப்படுகின்றன\n" +" வன்பொருளுக்கு (எ.கா. சரக்குகளில் முனைகளுக்கு ரெண்டர்-டு-டெக்ச்டர்)." + +#: src/settings_translation_file.cpp +#, fuzzy +msgid "" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" +"This is also used as the base node texture size for world-aligned\n" +"texture autoscaling." +msgstr "" +"பிலினியர்/ட்ரிலினியர்/அனிசோட்ரோபிக் வடிப்பான்களைப் பயன்படுத்தும் போது, குறைந்த " +"தெளிவுத்திறன் கொண்ட கட்டங்கள்\n" +" மங்கலாக இருக்க முடியும், எனவே தானாகவே அவற்றை அருகிலுள்ள-அருவருப்பானதாக உயர்த்தவும்\n" +" மிருதுவான பிக்சல்களைப் பாதுகாக்க இடைக்கணிப்பு. இது குறைந்தபட்ச அமைப்பு அளவை " +"அமைக்கிறது\n" +" உயர்த்தப்பட்ட அமைப்புகளுக்கு; அதிக மதிப்புகள் கூர்மையாகத் தெரிகின்றன, ஆனால் இன்னும் தேவை\n" +" நினைவகம். 2 அதிகாரங்கள் பரிந்துரைக்கப்படுகின்றன. இந்த அமைப்பு என்றால் மட்டுமே " +"பயன்படுத்தப்படுகிறது\n" +" பிலினியர்/ட்ரிலினியர்/அனிசோட்ரோபிக் வடிகட்டுதல் இயக்கப்பட்டது.\n" +" இது உலக சீரமைக்கப்பட்ட அடிப்படை முனை அமைப்பு அளவாகவும் பயன்படுத்தப்படுகிறது\n" +" அமைப்பு ஆட்டோச்கேலிங்." + +#: src/settings_translation_file.cpp +msgid "" +"Whether name tag backgrounds should be shown by default.\n" +"Mods may still set a background." +msgstr "" +"பெயர் குறிச்சொல் பின்னணிகள் இயல்பாக காட்டப்பட வேண்டுமா.\n" +" மோட்ச் இன்னும் ஒரு பின்னணியை அமைக்கலாம்." + +#: src/settings_translation_file.cpp +msgid "" +"Whether players are shown to clients without any range limit.\n" +"Deprecated, use the setting player_transfer_distance instead." +msgstr "" +"எந்தவொரு வரம்பு வரம்பும் இல்லாமல் வீரர்கள் வாடிக்கையாளர்களுக்குக் காட்டப்படுகிறார்களா " +"என்பது.\n" +" நீக்கப்பட்டது, அதற்கு பதிலாக பிளேயர்_ டிரான்ச்ஃபர்_டிச்டன்ச் அமைப்பைப் பயன்படுத்தவும்." + +#: src/settings_translation_file.cpp +msgid "Whether the window is maximized." +msgstr "சாளரம் அதிகரிக்கப்பட்டுள்ளதா." + +#: src/settings_translation_file.cpp +msgid "" +"Whether to ask clients to reconnect after a (Lua) crash.\n" +"Set this to true if your server is set up to restart automatically." +msgstr "" +"ஒரு (LUA) விபத்துக்குப் பிறகு மீண்டும் இணைக்க வாடிக்கையாளர்களைக் கேட்கலாமா?\n" +" தானாக மறுதொடக்கம் செய்ய உங்கள் சேவையகம் அமைக்கப்பட்டால் இதை உண்மை என அமைக்கவும்." + +#: src/settings_translation_file.cpp +msgid "Whether to fog out the end of the visible area." +msgstr "புலப்படும் பகுதியின் முடிவை மூடுபனி செய்ய வேண்டுமா." + +#: src/settings_translation_file.cpp +#, fuzzy +msgid "" +"Whether to mute sounds. You can unmute sounds at any time.\n" +"In-game, you can toggle the mute state with the mute key or by using the\n" +"pause menu." +msgstr "" +"ஊமையாக ஒலிக்க வேண்டுமா. நீங்கள் எந்த நேரத்திலும் ஒலிகளை அசைக்கலாம்\n" +" ஒலி அமைப்பு முடக்கப்பட்டுள்ளது (enable_sound = பொய்).\n" +" விளையாட்டில், நீங்கள் முடக்கு நிலையை முடக்கு விசையுடன் அல்லது பயன்படுத்துவதன் மூலம் " +"மாற்றலாம்\n" +" இடைநிறுத்த பட்டியல்." + +#: src/settings_translation_file.cpp +msgid "" +"Whether to show the client debug info (has the same effect as hitting F5)." +msgstr "" +"கிளையன்ட் பிழைத்திருத்த தகவலைக் காட்ட வேண்டுமா (F5 ஐத் தாக்கும் அதே விளைவைக் கொண்டுள்ளது)." + +#: src/settings_translation_file.cpp +msgid "Width component of the initial window size." +msgstr "ஆரம்ப சாளர அளவின் அகல கூறு." + +#: src/settings_translation_file.cpp +msgid "Width of the selection box lines around nodes." +msgstr "முனைகளைச் சுற்றியுள்ள தேர்வு பெட்டி வரிகளின் அகலம்." + +#: src/settings_translation_file.cpp +msgid "Window maximized" +msgstr "சாளரம் அதிகரிக்கப்பட்டது" + +#: src/settings_translation_file.cpp +msgid "" +"Windows systems only: Start Luanti with the command line window in the " +"background.\n" +"Contains the same information as the file debug.txt (default name)." +msgstr "" +"சாளரங்கள் சிச்டம்ச் மட்டும்: பின்னணியில் கட்டளை வரி சாளரத்துடன் லுவாண்டியைத் தொடங்கவும்.\n" +" கோப்பு பிழைத்திருத்தத்தின் அதே தகவலைக் கொண்டுள்ளது. TXT (இயல்புநிலை பெயர்)." + +#: src/settings_translation_file.cpp +msgid "" +"World directory (everything in the world is stored here).\n" +"Not needed if starting from the main menu." +msgstr "" +"உலக அடைவு (உலகில் உள்ள அனைத்தும் இங்கே சேமிக்கப்பட்டுள்ளன).\n" +" முதன்மையான மெனுவிலிருந்து தொடங்கினால் தேவையில்லை." + +#: src/settings_translation_file.cpp +msgid "World start time" +msgstr "உலக தொடக்க நேரம்" + +#: src/settings_translation_file.cpp +msgid "" +"World-aligned textures may be scaled to span several nodes. However,\n" +"the server may not send the scale you want, especially if you use\n" +"a specially-designed texture pack; with this option, the client tries\n" +"to determine the scale automatically basing on the texture size.\n" +"See also texture_min_size.\n" +"Warning: This option is EXPERIMENTAL!" +msgstr "" +"உலக சீரமைக்கப்பட்ட அமைப்புகள் பல முனைகளை அளவிட அளவிடப்படலாம். இருப்பினும்,\n" +" சேவையகம் நீங்கள் விரும்பும் அளவை அனுப்பக்கூடாது, குறிப்பாக நீங்கள் பயன்படுத்தினால்\n" +" சிறப்பாக வடிவமைக்கப்பட்ட அமைப்பு பேக்; இந்த விருப்பத்துடன், வாடிக்கையாளர் முயற்சிக்கிறார்\n" +" அமைப்பு அளவைக் கட்டியெழுப்பும் அளவைத் தீர்மானிக்க.\n" +" Sexture_min_size ஐயும் காண்க.\n" +" எச்சரிக்கை: இந்த விருப்பம் சோதனை!" + +#: src/settings_translation_file.cpp +msgid "World-aligned textures mode" +msgstr "உலக சீரமைக்கப்பட்ட அமைப்பு பயன்முறை" + +#: src/settings_translation_file.cpp +msgid "Y of flat ground." +msgstr "தட்டையான தரை ஒய்." + +#: src/settings_translation_file.cpp +msgid "" +"Y of mountain density gradient zero level. Used to shift mountains " +"vertically." +msgstr "மலை அடர்த்தி சாய்வு சுழிய அளவின் ஒய். மலைகளை செங்குத்தாக மாற்ற பயன்படுகிறது." + +#: src/settings_translation_file.cpp +msgid "Y of upper limit of large caves." +msgstr "பெரிய குகைகளின் மேல் வரம்பின் ஒய்." + +#: src/settings_translation_file.cpp +msgid "Y-distance over which caverns expand to full size." +msgstr "குகைகள் முழு அளவிற்கு விரிவடையும் மீது ஒய்-தூரம்." + +#: src/settings_translation_file.cpp +msgid "" +"Y-distance over which floatlands taper from full density to nothing.\n" +"Tapering starts at this distance from the Y limit.\n" +"For a solid floatland layer, this controls the height of hills/mountains.\n" +"Must be less than or equal to half the distance between the Y limits." +msgstr "" +"Y- தூரம் எந்த ஃப்ளோட்லேண்ட்ச் முழு அடர்த்தியிலிருந்து ஒன்றும் இல்லை.\n" +" ஒய் வரம்பிலிருந்து இந்த தூரத்தில் தட்டுதல் தொடங்குகிறது.\n" +" திடமான மிதவை நிலப்பரப்புக்கு, இது மலைகள்/மலைகளின் உயரத்தை கட்டுப்படுத்துகிறது.\n" +" ஒய் வரம்புகளுக்கு இடையில் பாதி தூரத்தை விட குறைவாகவோ அல்லது சமமாகவோ இருக்க வேண்டும்." + +#: src/settings_translation_file.cpp +msgid "Y-level of average terrain surface." +msgstr "சராசரி நிலப்பரப்பு மேற்பரப்பின் y- நிலை." + +#: src/settings_translation_file.cpp +msgid "Y-level of cavern upper limit." +msgstr "கேவர்ன் மேல் வரம்பின் ஒய்-லெவல்." + +#: src/settings_translation_file.cpp +msgid "Y-level of higher terrain that creates cliffs." +msgstr "குன்றுகளை உருவாக்கும் உயர் நிலப்பரப்பின் ஒய்-நிலை." + +#: src/settings_translation_file.cpp +msgid "Y-level of lower terrain and seabed." +msgstr "கீழ் நிலப்பரப்பு மற்றும் கடற்பரப்பின் ஒய்-நிலை." + +#: src/settings_translation_file.cpp +msgid "Y-level of seabed." +msgstr "கடலோரத்தின் y- நிலை." + +#: src/settings_translation_file.cpp +msgid "cURL" +msgstr "சுருட்டை" + +#: src/settings_translation_file.cpp +msgid "cURL file download timeout" +msgstr "சுருட்டை கோப்பு பதிவிறக்க நேரம் முடிந்தது" + +#: src/settings_translation_file.cpp +msgid "cURL interactive timeout" +msgstr "ஊடாடும் காலக்கெடுவை சுருட்டுங்கள்" + +#: src/settings_translation_file.cpp +msgid "cURL parallel limit" +msgstr "இணையான வரம்பை சுருட்டுங்கள்" + +#~ msgid "Adds particles when digging a node." +#~ msgstr "ஒரு முனையைத் தோண்டும்போது துகள்களைச் சேர்க்கிறது." + +#~ msgid "Clouds are a client-side effect." +#~ msgstr "மேகங்கள் கிளையன்ட் பக்க விளைவு." + +#~ msgid "Debug info and profiler graph hidden" +#~ msgstr "பிழைத்திருத்த செய்தி மற்றும் சுயவிவர வரைபடம் மறைக்கப்பட்டுள்ளது" + +#~ msgid "Debug info, profiler graph, and wireframe hidden" +#~ msgstr "பிழைத்திருத்த செய்தி, சுயவிவர வரைபடம் மற்றும் வயர்ஃப்ரேம் மறைக்கப்பட்டுள்ளன" + +#~ msgid "Desynchronize block animation" +#~ msgstr "பிளாக் அனிமேசனை தேய்மானம்" + +#~ msgid "Digging particles" +#~ msgstr "துகள்களை தோண்டி எடுக்கும்" + +#~ msgid "Enable" +#~ msgstr "இயக்கு" + +#~ msgid "" +#~ "Enables caching of facedir rotated meshes.\n" +#~ "This is only effective with shaders disabled." +#~ msgstr "" +#~ "FACEDIR சுழலும் மெச்களின் தேக்ககத்தை செயல்படுத்துகிறது.\n" +#~ " இது சேடர்கள் முடக்கப்பட்டால் மட்டுமே பயனுள்ளதாக இருக்கும்." + +#~ msgid "GUI scaling filter txr2img" +#~ msgstr "GUI அளவிடுதல் வடிகட்டி TXR2IMG" + +#~ msgid "Interval of sending time of day to clients, stated in seconds." +#~ msgstr "" +#~ "வாடிக்கையாளர்களுக்கு நாள் நேரத்தை அனுப்பும் இடைவெளி, நொடிகளில் கூறப்படுகிறது." + +#~ msgid "Irrlicht device:" +#~ msgstr "Irlicht சாதனம்:" + +#~ msgid "Mesh cache" +#~ msgstr "கண்ணி கேச்" + +#~ msgid "Shaders" +#~ msgstr "சேடர்ச்" + +#~ msgid "" +#~ "Shaders are a fundamental part of rendering and enable advanced visual " +#~ "effects." +#~ msgstr "" +#~ "சேடர்கள் ஒழுங்கமைப்பின் ஒரு அடிப்படை பகுதியாகும் மற்றும் மேம்பட்ட காட்சி விளைவுகளை " +#~ "இயக்குகின்றன." + +#~ msgid "Shaders are disabled." +#~ msgstr "சேடர்கள் முடக்கப்பட்டுள்ளன." + +#~ msgid "Sound system is disabled" +#~ msgstr "ஒலி அமைப்பு முடக்கப்பட்டுள்ளது" + +#~ msgid "This is not a recommended configuration." +#~ msgstr "இது பரிந்துரைக்கப்பட்ட உள்ளமைவு அல்ல." + +#~ msgid "Time send interval" +#~ msgstr "நேரம் இடைவெளி அனுப்பவும்" + +#~ msgid "" +#~ "When gui_scaling_filter_txr2img is true, copy those images\n" +#~ "from hardware to software for scaling. When false, fall back\n" +#~ "to the old scaling method, for video drivers that don't\n" +#~ "properly support downloading textures back from hardware." +#~ msgstr "" +#~ "GUI_SCALING_FILTER_TXR2IMG உண்மையாக இருக்கும்போது, அந்த படங்களை நகலெடுக்கவும்\n" +#~ " வன்பொருள் முதல் மென்பொருள் வரை. பொய்யானது போது, பின்வாங்கவும்\n" +#~ " பழைய அளவிடுதல் முறைக்கு, இல்லாத வீடியோ இயக்கிகளுக்கு\n" +#~ " வன்பொருளிலிருந்து அமைப்புகளை பதிவிறக்குவதை ஒழுங்காக ஆதரிக்கவும்." + +#~ msgid "" +#~ "Whether node texture animations should be desynchronized per mapblock." +#~ msgstr "மேப் பிளாக் ஒன்றுக்கு முனை அமைப்பு அனிமேசன்கள் தேய்மானம் செய்யப்பட வேண்டுமா." diff --git a/po/th/luanti.po b/po/th/luanti.po index 3ae8aa207..399bc589e 100644 --- a/po/th/luanti.po +++ b/po/th/luanti.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Thai (Minetest)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" "PO-Revision-Date: 2022-03-18 01:05+0000\n" "Last-Translator: Thomas Wiegand \n" "Language-Team: Thai ] [-t]" msgstr "[ทั้งหมด | ]" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "เรียกดู" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "แก้ไข" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "เลือกไดเรกทอรี" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "เลือกไฟล์" + +#: builtin/common/settings/components.lua +#, fuzzy +msgid "Set" +msgstr "เลือก" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(ไม่มีคำอธิบายของการตั้งค่าที่ให้มา)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "2D นอยส์" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "ยกเลิก" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "ความไม่ชัดเจน" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#, fuzzy +msgid "Octaves" +msgstr "ความละเอียดของการสุ่ม" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "ค่าชดเชย" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "วิริยะ" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "บันทึก" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "ขนาด" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "เมล็ดพันธุ์" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "X กระจาย" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "Y กระจาย" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "Z กระจาย" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "ค่าผันแปรการสุ่มสร้างแผนที่" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "เริ่มต้น" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "ความนุ่มนวลของพื้นผิวบนทางลาด" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "แช" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "ล้าง" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "ควบคุม" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "ปิดการใช้งานแล้ว" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "เปิดใช้งานแล้ว" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Movement" +msgstr "การเคลื่อนไหวเร็ว" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "ไม่มีผลลัพธ์" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Reset setting to default" +msgstr "คืนค่าเริ่มต้น" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "ค้นหา" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "แสดงชื่อทางเทคนิค" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Touchscreen layout" +msgstr "ขีด จำกัด หน้าจอสัมผัส" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "pause_menu" +msgstr "FPS ในเมนูหยุดชั่วคราว" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Client Mods" +msgstr "เลือก Mods" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Content: Games" +msgstr "เนื้อหา" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Content: Mods" +msgstr "เนื้อหา" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "เงาแบบไดนามิก" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "สูง" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "ต่ำ" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "ปานกลาง" + +#: builtin/common/settings/shadows_component.lua +#, fuzzy +msgid "Very High" +msgstr "สูงเป็นพิเศษ" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "ต่ำมาก" + #: builtin/fstk/ui.lua msgid "" msgstr "<ไม่มี>" @@ -164,7 +412,6 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "หลัง" @@ -201,11 +448,6 @@ msgstr "ม็อด" msgid "No packages could be retrieved" msgstr "ไม่สามารถเรียกแพคเกจได้" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "ไม่มีผลลัพธ์" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "ไม่มีการปรับปรุง" @@ -251,18 +493,6 @@ msgstr "ติดตั้งแล้ว" msgid "Base Game:" msgstr "เกมพื้นฐาน:" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "ยกเลิก" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -391,6 +621,12 @@ msgstr "ไม่สามารถติดตั้ง mod $1" msgid "Unable to install a $1 as a texture pack" msgstr "ไม่สามารถติดตั้งพื้นผิว Texture $1" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "" @@ -455,12 +691,6 @@ msgstr "เสริม อ้างอิง" msgid "Optional dependencies:" msgstr "ไฟล์อ้างอิงที่เลือกใช้ได้:" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "บันทึก" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "โลก:" @@ -612,11 +842,6 @@ msgstr "แม่น้ำ" msgid "Sea level rivers" msgstr "แม่น้ำระดับน้ำทะเล" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "เมล็ดพันธุ์" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "การเปลี่ยนแปลงที่ราบรื่นระหว่างไบโอม" @@ -755,6 +980,23 @@ msgid "" "override any renaming here." msgstr "ม็อดแพ็คมีชื่อชื่อที่ถูกตั้งในไฟล์ modpack.conf ซึ่งจะแทนที่ชื่อที่เปลี่ยนตรงนี้" +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "เปิดใช้งานทั้งหมด" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "" @@ -779,7 +1021,7 @@ msgstr "" msgid "Visit website" msgstr "" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "การตั้งค่า" @@ -791,233 +1033,6 @@ msgstr "รายชื่อเซิร์ฟเวอร์สาธารณ msgid "Try reenabling public serverlist and check your internet connection." msgstr "ลองเปิดใช้งานเซิร์ฟเวอร์ลิสต์สาธารณะอีกครั้งและตรวจสอบการเชื่อมต่ออินเทอร์เน็ต" -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "เรียกดู" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "แก้ไข" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "เลือกไดเรกทอรี" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "เลือกไฟล์" - -#: builtin/mainmenu/settings/components.lua -#, fuzzy -msgid "Set" -msgstr "เลือก" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(ไม่มีคำอธิบายของการตั้งค่าที่ให้มา)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "2D นอยส์" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "ความไม่ชัดเจน" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#, fuzzy -msgid "Octaves" -msgstr "ความละเอียดของการสุ่ม" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "ค่าชดเชย" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "วิริยะ" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "ขนาด" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "X กระจาย" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "Y กระจาย" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "Z กระจาย" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "ค่าผันแปรการสุ่มสร้างแผนที่" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "เริ่มต้น" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "ความนุ่มนวลของพื้นผิวบนทางลาด" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "แช" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "ล้าง" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "ควบคุม" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "ปิดการใช้งานแล้ว" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "เปิดใช้งานแล้ว" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Movement" -msgstr "การเคลื่อนไหวเร็ว" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Reset setting to default" -msgstr "คืนค่าเริ่มต้น" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "ค้นหา" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "แสดงชื่อทางเทคนิค" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Client Mods" -msgstr "เลือก Mods" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Content: Games" -msgstr "เนื้อหา" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Content: Mods" -msgstr "เนื้อหา" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "เปิดใช้งานแล้ว" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Shaders are disabled." -msgstr "ปิดใช้งานการอัปเดตกล้องแล้ว" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "เงาแบบไดนามิก" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "สูง" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "ต่ำ" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "ปานกลาง" - -#: builtin/mainmenu/settings/shadows_component.lua -#, fuzzy -msgid "Very High" -msgstr "สูงเป็นพิเศษ" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "ต่ำมาก" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "เกี่ยวกับ" @@ -1038,10 +1053,6 @@ msgstr "นักพัฒนาหลัก" msgid "Core Team" msgstr "" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "เปิดไดเรกทอรีข้อมูลผู้ใช้" @@ -1193,10 +1204,22 @@ msgstr "เริ่มเกม" msgid "You need to install a game before you can create a world." msgstr "" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "รีโมตพอร์ต" + #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "ที่อยู่" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "ไคลเอนต์" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "โหมดสร้างสรรค์" @@ -1210,6 +1233,11 @@ msgstr "ดาเมจ / ผู้เล่นผ่านเครื่อง msgid "Favorites" msgstr "รายการโปรด" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "เกม" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "เซิร์ฟเวอร์ที่เข้ากันไม่ได้" @@ -1222,10 +1250,28 @@ msgstr "เข้าร่วมเกม" msgid "Login" msgstr "" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Number of mods: $1" +msgstr "จำนวนเธรดที่โผล่ออกมา" + +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Open server website" +msgstr "ขั้นตอนเซิร์ฟเวอร์เฉพาะ" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "เวลาตอบสนอง" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Public Servers" msgstr "เซิฟเวอร์สาธารณะ" @@ -1312,23 +1358,6 @@ msgstr "" "\n" "ตรวจสอบรายละเอียด debug.txt." -#: src/client/game.cpp -msgid "- Mode: " -msgstr "-โหมด: " - -#: src/client/game.cpp -msgid "- Public: " -msgstr "-ประชาชน: " - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "- ผู้เล่นวีซ่าผู้เล่น: " - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "-ชื่อเซิร์ฟเวอร์: " - #: src/client/game.cpp msgid "A serialization error occurred:" msgstr "เกิดข้อผิดพลาดในการทำให้เป็นอันดับ:" @@ -1338,6 +1367,11 @@ msgstr "เกิดข้อผิดพลาดในการทำให้ msgid "Access denied. Reason: %s" msgstr "ปฏิเสธการเข้าใช้. เหตุผล: %s" +#: src/client/game.cpp +#, fuzzy +msgid "All debug info hidden" +msgstr "แสดงข้อมูลการดีบัก" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "ปิดใช้งานการส่งต่ออัตโนมัติ" @@ -1358,6 +1392,10 @@ msgstr "ขอบเขตบล็อกที่แสดงสำหรับ msgid "Block bounds shown for nearby blocks" msgstr "แสดงขอบเขตบล็อกสำหรับบล็อกใกล้เคียง" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "ปิดใช้งานการอัปเดตกล้องแล้ว" @@ -1371,10 +1409,6 @@ msgstr "เปิดใช้งานการอัปเดตกล้อง msgid "Can't show block bounds (disabled by game or mod)" msgstr "ไม่สามารถแสดงขอบเขตการบล็อก (ต้องการสิทธิ์ 'basic_debug')" -#: src/client/game.cpp -msgid "Change Password" -msgstr "เปลี่ยนรหัสผ่าน" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "ปิดใช้งานโหมดภาพยนตร์" @@ -1403,39 +1437,6 @@ msgstr "ข้อผิดพลาดการเชื่อมต่อ (ห msgid "Connection failed for unknown reason" msgstr "การเชื่อมต่อล้มเหลวโดยไม่ทราบสาเหตุ" -#: src/client/game.cpp -msgid "Continue" -msgstr "ต่อ" - -#: src/client/game.cpp -#, fuzzy -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" -"การควบคุมเริ่มต้น:\n" -"ไม่ปรากฏเมนู:\n" -"- แตะเพียงครั้งเดียว: เปิดใช้งานปุ่ม\n" -"- แตะสองครั้ง: สถานที่ / การใช้งาน\n" -"- นิ้วสไลด์: มองไปรอบ ๆ\n" -"เมนู / คลังโฆษณาปรากฏ:\n" -"- แตะสองครั้ง (นอก):\n" -"-> ใกล้\n" -"- สแต็กสัมผัส, สล็อตสัมผัส:\n" -"-> ย้ายสแต็ก\n" -"- แตะแล้วลากแตะนิ้วที่สอง\n" -"-> วางรายการเดียวไปยังสล็อต\n" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1449,31 +1450,15 @@ msgstr "สร้างไคลเอ็นต์..." msgid "Creating server..." msgstr "การสร้างเซิร์ฟเวอร์..." -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "ข้อมูลการดีบักและกราฟตัวสร้างโปรไฟล์ถูกซ่อน" - #: src/client/game.cpp msgid "Debug info shown" msgstr "แสดงข้อมูลการดีบัก" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "ข้อมูลการแก้ปัญหากราฟ profiler และ wireframe ซ่อนอยู่" - #: src/client/game.cpp #, fuzzy, c-format msgid "Error creating client: %s" msgstr "สร้างไคลเอ็นต์..." -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "ออกจากเมนู" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "อธิบายระบบปฏิบัติการ" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "ปิดใช้งานโหมดเร็ว" @@ -1511,18 +1496,6 @@ msgstr "หมอกเปิดใช้งาน" msgid "Fog enabled by game or mod" msgstr "ซูมถูกปิดใช้งานในปัจจุบันโดยเกมหรือตัวดัดแปลง" -#: src/client/game.cpp -msgid "Game info:" -msgstr "ข้อมูลเกม:" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "เกมหยุดชั่วคราว" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "เซิร์ฟเวอร์ที่โฮสต์" - #: src/client/game.cpp msgid "Item definitions..." msgstr "ข้อกำหนดของสินค้า..." @@ -1559,14 +1532,6 @@ msgstr "เปิดใช้งานโหมด Noclip (หมายเหต msgid "Node definitions..." msgstr "กำหนดโหน..." -#: src/client/game.cpp -msgid "Off" -msgstr "ปิด" - -#: src/client/game.cpp -msgid "On" -msgstr "บน" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "ปิดใช้งานโหมดย้ายสนาม" @@ -1579,38 +1544,22 @@ msgstr "สนามย้ายเปิดใช้โหมด" msgid "Profiler graph shown" msgstr "แสดงกราฟ Profiler" -#: src/client/game.cpp -msgid "Remote server" -msgstr "เซิร์ฟเวอร์ระยะไกล" - #: src/client/game.cpp msgid "Resolving address..." msgstr "การแก้ไขที่อยู่..." -#: src/client/game.cpp -msgid "Respawn" -msgstr "เกิดใหม่" - #: src/client/game.cpp msgid "Shutting down..." msgstr "ปิด..." -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "เล่นคนเดียว" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "ระดับเสียง" - #: src/client/game.cpp msgid "Sound muted" msgstr "เสียงเสียง" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "ระบบเสียงปิดอยู่" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "ไม่รองรับระบบเสียงในบิลด์นี้" @@ -1684,18 +1633,116 @@ msgstr "ช่วงการดูเปลี่ยนเป็น %d1" msgid "Volume changed to %d%%" msgstr "ปริมาตรที่เปลี่ยนไป %d1%%2" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "แสดงโครงลวด" -#: src/client/game.cpp -msgid "You died" -msgstr "คุณตายแล้ว" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "ซูมถูกปิดใช้งานในปัจจุบันโดยเกมหรือตัวดัดแปลง" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "-โหมด: " + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "-ประชาชน: " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "- ผู้เล่นวีซ่าผู้เล่น: " + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "-ชื่อเซิร์ฟเวอร์: " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "เปลี่ยนรหัสผ่าน" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "ต่อ" + +#: src/client/game_formspec.cpp +#, fuzzy +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" +"การควบคุมเริ่มต้น:\n" +"ไม่ปรากฏเมนู:\n" +"- แตะเพียงครั้งเดียว: เปิดใช้งานปุ่ม\n" +"- แตะสองครั้ง: สถานที่ / การใช้งาน\n" +"- นิ้วสไลด์: มองไปรอบ ๆ\n" +"เมนู / คลังโฆษณาปรากฏ:\n" +"- แตะสองครั้ง (นอก):\n" +"-> ใกล้\n" +"- สแต็กสัมผัส, สล็อตสัมผัส:\n" +"-> ย้ายสแต็ก\n" +"- แตะแล้วลากแตะนิ้วที่สอง\n" +"-> วางรายการเดียวไปยังสล็อต\n" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "ออกจากเมนู" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "อธิบายระบบปฏิบัติการ" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "ข้อมูลเกม:" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "เกมหยุดชั่วคราว" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "เซิร์ฟเวอร์ที่โฮสต์" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "ปิด" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "บน" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "เซิร์ฟเวอร์ระยะไกล" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "เกิดใหม่" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "ระดับเสียง" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "คุณตายแล้ว" + #: src/client/gameui.cpp #, fuzzy msgid "Chat currently disabled by game or mod" @@ -2036,8 +2083,9 @@ msgid "Failed to compile the \"%s\" shader." msgstr "ไม่สามารถเปิดหน้าเว็บ" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." -msgstr "" +#, fuzzy +msgid "GLSL is not supported by the driver" +msgstr "ไม่รองรับระบบเสียงในบิลด์นี้" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" #: src/content/mod_configuration.cpp @@ -2085,7 +2133,7 @@ msgstr "ส่งต่ออัตโนมัติ" msgid "Automatic jumping" msgstr "กระโดด อัตโนมัติ" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "Aux1" @@ -2097,7 +2145,7 @@ msgstr "ย้อนหลัง" msgid "Block bounds" msgstr "บล็อกขอบเขต" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "เปลี่ยนกล้อง" @@ -2121,7 +2169,7 @@ msgstr "ปริมาณลดลง" msgid "Double tap \"jump\" to toggle fly" msgstr "แตะสองครั้งกระโดดสลับบิน" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "ปล่อย" @@ -2137,11 +2185,11 @@ msgstr "เพิ่มช่วง" msgid "Inc. volume" msgstr "เพิ่มระดับเสียง" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "สินค้าคงคลัง" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "กระโดด" @@ -2173,7 +2221,7 @@ msgstr "รายการถัดไป" msgid "Prev. item" msgstr "รายการก่อนหน้า" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "ช่วงเลือก" @@ -2185,7 +2233,7 @@ msgstr "สิทธิ" msgid "Screenshot" msgstr "ภาพหน้าจอ" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "แอบ" @@ -2193,15 +2241,15 @@ msgstr "แอบ" msgid "Toggle HUD" msgstr "สลับ HUD" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "บันทึกสนทนาสลับ" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "สลับอย่างรวดเร็ว" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "สลับบิน" @@ -2209,11 +2257,11 @@ msgstr "สลับบิน" msgid "Toggle fog" msgstr "สลับหมอก" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "แผนที่ย่อสลับ" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "สลับ noclip" @@ -2221,7 +2269,7 @@ msgstr "สลับ noclip" msgid "Toggle pitchmove" msgstr "สลับ pitchmove" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "ซูม" @@ -2258,7 +2306,7 @@ msgstr "รหัสผ่านเก่า" msgid "Passwords do not match!" msgstr "รหัสผ่านไม่ตรงกับ!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "ออก" @@ -2271,16 +2319,47 @@ msgstr "เสียง" msgid "Sound Volume: %d%%" msgstr "ระดับเสียง: %d%%" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Add button" +msgstr "ปุ่มกลาง" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "ทำ!" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Remove" +msgstr "เซิร์ฟเวอร์ระยะไกล" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Joystick" msgstr "จอยสติ๊ก ID" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Toggle debug" msgstr "สลับหมอก" @@ -2503,8 +2582,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" "รองรับ 3D\n" "รองรับในปัจจุบัน:\n" @@ -2569,10 +2647,6 @@ msgstr "ช่วงบล็อกที่ใช้งานอยู่" msgid "Active object send range" msgstr "ช่วงการส่งวัตถุที่ใช้งานอยู่" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "เพิ่มอนุภาคเมื่อขุดโหนด." - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "ปรับความหนาแน่นของการแสดงผลที่ตรวจพบ ซึ่งใช้สำหรับปรับขนาดองค์ประกอบ UI" @@ -2601,6 +2675,17 @@ msgstr "ผนวกชื่อรายการ" msgid "Advanced" msgstr "สูง" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +#, fuzzy +msgid "Allow clouds to look 3D instead of flat." +msgstr "ใช้รูปลักษณ์คลาวด์ 3D แทนที่จะเป็นแนวราบ" + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "" @@ -3004,15 +3089,14 @@ msgstr "รัศมีเมฆ" msgid "Clouds" msgstr "เมฆ" -#: src/settings_translation_file.cpp -#, fuzzy -msgid "Clouds are a client-side effect." -msgstr "เมฆเป็นผลข้างเคียงของลูกค้า" - #: src/settings_translation_file.cpp msgid "Clouds in menu" msgstr "มีเมฆในเมนู" +#: src/settings_translation_file.cpp +msgid "Color depth for post-processing texture" +msgstr "" + #: src/settings_translation_file.cpp msgid "Colored fog" msgstr "หมอกสี" @@ -3036,7 +3120,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" "รายการแฟล็กที่คั่นด้วยเครื่องหมายจุลภาคเพื่อซ่อนในที่เก็บเนื้อหา.\n" "สามารถใช้ \"nonfree\" เพื่อซ่อนแพ็คเกจที่ไม่เข้าข่ายเป็น 'ซอฟต์แวร์ฟรี'\n" @@ -3201,6 +3285,14 @@ msgstr "ระดับบันทึกดีบัก" msgid "Debugging" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "ขั้นตอนเซิร์ฟเวอร์เฉพาะ" @@ -3364,19 +3456,11 @@ msgstr "" "ทะเลทรายเกิดขึ้นเมื่อ np_biome เกินค่านี้.\n" "เมื่อเปิดใช้งานแฟล็ก 'snowbiomes' สิ่งนี้จะถูกละเว้น." -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "Desynchronize บล็อกภาพเคลื่อนไหว" - #: src/settings_translation_file.cpp #, fuzzy msgid "Developer Options" msgstr "ของตกแต่ง" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "ขุดอนุภาค" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "ไม่อนุญาตรหัสผ่านที่ว่างเปล่า" @@ -3404,6 +3488,14 @@ msgstr "แตะสองครั้งที่กระโดดสำหร msgid "Double-tapping the jump key toggles fly mode." msgstr "สำเร็จกระโดดปุ่มสลับโหมดการบิน." +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "ดัมพ์ข้อมูลการดีบัก mapgen." @@ -3486,9 +3578,10 @@ msgid "" msgstr "" #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" ".เปิดใช้งานเงาสี\n" "บนโหนดโปร่งแสงที่แท้จริงจะทำให้เกิดเงาสี. นี้มีราคาแพง." @@ -3573,10 +3666,10 @@ msgstr "" "ตัวอย่างเช่น: 0 ที่ไม่มีการสั่น 1.0 สำหรับปกติ 2.0 สำหรับสองเท่า" #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" "เปิดใช้งาน / ปิดการใช้งานเซิร์ฟเวอร์ IPv6.\n" "ข้ามไปหากตั้งค่า bind_address.\n" @@ -3598,13 +3691,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "เปิดใช้งานภาพเคลื่อนไหวของรายการสินค้าคงคลัง." -#: src/settings_translation_file.cpp -#, fuzzy -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "เปิดใช้งานการแคชของตาข่ายที่หมุนได้." - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -3937,10 +4023,6 @@ msgstr "การปรับขนาด GUI" msgid "GUI scaling filter" msgstr "ตัวกรองมาตราส่วน GUI" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "ตัวกรองการปรับขนาด GUI txr2img" - #: src/settings_translation_file.cpp #, fuzzy msgid "Gamepads" @@ -4203,15 +4285,6 @@ msgstr "" "หากเปิดใช้งาน ปุ่ม \"Aux1\" แทนปุ่ม \"แอบ\" จะใช้สำหรับการปีนลงและ\n" "จากมากไปน้อย" -#: src/settings_translation_file.cpp -#, fuzzy -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" -"เปิดใช้งานการยืนยันการลงทะเบียนเมื่อเชื่อมต่อกับเซิร์ฟเวอร์.\n" -"หากปิดใช้งานบัญชีใหม่จะถูกลงทะเบียนโดยอัตโนมัติ." - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -4235,6 +4308,16 @@ msgid "" "empty password." msgstr "หากเปิดใช้งานผู้เล่นใหม่จะไม่สามารถเข้าร่วมด้วยรหัสผ่านที่ว่างเปล่าได้." +#: src/settings_translation_file.cpp +#, fuzzy +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" +"เปิดใช้งานการยืนยันการลงทะเบียนเมื่อเชื่อมต่อกับเซิร์ฟเวอร์.\n" +"หากปิดใช้งานบัญชีใหม่จะถูกลงทะเบียนโดยอัตโนมัติ." + #: src/settings_translation_file.cpp #, fuzzy msgid "" @@ -4350,11 +4433,6 @@ msgstr "เครื่องมือวิธีการของหน่ว msgid "Interval of saving important changes in the world, stated in seconds." msgstr "ช่วงเวลาของการบันทึกการเปลี่ยนแปลงที่สำคัญในโลก ระบุเป็นวินาที." -#: src/settings_translation_file.cpp -#, fuzzy -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "ช่วงเวลาในการส่งช่วงเวลาของวันให้กับลูกค้า." - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "ภาพเคลื่อนไหวรายการสินค้าคงคลัง" @@ -5067,10 +5145,6 @@ msgstr "" msgid "Maximum users" msgstr "ผู้ใช้สูงสุด" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "แคชตาข่าย" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "ข้อความประจำวัน" @@ -5104,6 +5178,10 @@ msgstr "ขีดจำกัดขั้นต่ำของการสุ่ msgid "Minimum limit of random number of small caves per mapchunk." msgstr "ขีดจำกัดขั้นต่ำของจำนวนถ้ำขนาดเล็กแบบสุ่มต่อ mapchunk." +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "Mipmapping (แมงป่อง)" @@ -5200,9 +5278,10 @@ msgstr "" "- floatlands เสริมของ v7 (ปิดใช้งานโดยค่าเริ่มต้น)." #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" "ชื่อผู้เล่น.\n" @@ -5711,17 +5790,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5970,16 +6051,6 @@ msgstr "" msgid "Shader path" msgstr "เส้นทาง Shader" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "เฉดสี" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "คุณภาพของภาพหน้าจอ" @@ -6162,10 +6233,9 @@ msgstr "" #: src/settings_translation_file.cpp #, fuzzy msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" "อัปเดตแผนที่เงาโดยสมบูรณ์ตามจำนวนเฟรมที่กำหนด.\n" "ค่าที่สูงขึ้นอาจทำให้เงาล้าหลัง ค่าที่ต่ำกว่า\n" @@ -6528,10 +6598,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "เวลาของวันที่เริ่มต้นโลกใหม่ หน่วยเป็นมิลลิชั่วโมง (0-23999)." -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "ช่วงเวลาการส่ง" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "ความเร็วของเวลา" @@ -6599,6 +6665,10 @@ msgstr "ของเหลวทึบแสง" msgid "Transparency Sorting Distance" msgstr "" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "เสียงต้นไม้" @@ -6647,12 +6717,16 @@ msgid "Undersampling" msgstr "สุ่มตัวอย่าง" #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Undersampling is similar to using a lower screen resolution, but it applies\n" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" "การสุ่มตัวอย่างต่ำจะคล้ายกับการใช้ความละเอียดหน้าจอที่ต่ำกว่า แต่ใช้ได้\n" "ให้กับโลกของเกมเท่านั้น โดยรักษา GUI ไว้เหมือนเดิม\n" @@ -6679,17 +6753,15 @@ msgstr "ขีด จำกัด Y บนของดันเจี้ยน." msgid "Upper Y limit of floatlands." msgstr "ขีด จำกัด Y บนของทุ่นลอยน้ำ." -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "ใช้รูปลักษณ์คลาวด์ 3D แทนที่จะเป็นแนวราบ" - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "ใช้ภาพเคลื่อนไหวคลาวด์สำหรับพื้นหลังเมนูหลัก." #: src/settings_translation_file.cpp #, fuzzy -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "ใช้ตัวกรอง anisotropic เมื่อดูที่พื้นผิวจากมุม" #: src/settings_translation_file.cpp @@ -6949,25 +7021,14 @@ msgstr "" "เป็นฮาร์ดแวร์ (เช่น render-to-texture สำหรับโหนดในคลังโฆษณา)" #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" -"เมื่อ gui_scaling_filter_txr2img เป็นจริงให้คัดลอกภาพเหล่านั้น\n" -"จากฮาร์ดแวร์ซอฟต์แวร์เพื่อการปรับขนาด เมื่อเท็จถอยกลับ\n" -"กับวิธีการปรับขนาดแบบเก่าสำหรับไดรเวอร์วิดีโอที่ไม่ต้องการ\n" -"รองรับการดาวน์โหลดพื้นผิวอย่างถูกต้องจากฮาร์ดแวร์" - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -6988,10 +7049,6 @@ msgstr "" "ควรแสดงพื้นหลังแท็กชื่อโดยค่าเริ่มต้นหรือไม่.\n" "Mods อาจยังคงตั้งค่าพื้นหลัง." -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "ระบุว่าควรสร้างการซิงโครไนซ์ภาพเคลื่อนไหวพื้นผิวของโหนดต่อแม็ปบล็อกหรือไม่" - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -7017,9 +7074,9 @@ msgid "Whether to fog out the end of the visible area." msgstr "ไม่ว่าจะเป็นการพ่นหมอกออกในตอนท้ายของพื้นที่มองเห็น" #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -7200,6 +7257,9 @@ msgstr "cURL ขีด จำกัด ขนาน" #~ "เว้นว่างไว้เพื่อเริ่มเซิร์ฟเวอร์ภายใน\n" #~ "โปรดทราบว่าฟิลด์ที่อยู่ในเมนูหลักจะแทนที่การตั้งค่านี้" +#~ msgid "Adds particles when digging a node." +#~ msgstr "เพิ่มอนุภาคเมื่อขุดโหนด." + #~ msgid "" #~ "Adjust dpi configuration to your screen (non X11/Android only) e.g. for " #~ "4k screens." @@ -7305,6 +7365,10 @@ msgstr "cURL ขีด จำกัด ขนาน" #~ msgid "Clean transparent textures" #~ msgstr "ทำความสะอาดพื้นผิวโปร่งใส" +#, fuzzy +#~ msgid "Clouds are a client-side effect." +#~ msgstr "เมฆเป็นผลข้างเคียงของลูกค้า" + #~ msgid "Command key" #~ msgstr "คีย์คำสั่ง" @@ -7386,9 +7450,15 @@ msgstr "cURL ขีด จำกัด ขนาน" #~ msgid "Darkness sharpness" #~ msgstr "ความมืดมิด" +#~ msgid "Debug info and profiler graph hidden" +#~ msgstr "ข้อมูลการดีบักและกราฟตัวสร้างโปรไฟล์ถูกซ่อน" + #~ msgid "Debug info toggle key" #~ msgstr "แก้ไขคีย์การสลับข้อมูล" +#~ msgid "Debug info, profiler graph, and wireframe hidden" +#~ msgstr "ข้อมูลการแก้ปัญหากราฟ profiler และ wireframe ซ่อนอยู่" + #~ msgid "Dec. volume key" #~ msgstr "ลดระดับเสียงที่สำคัญ" @@ -7412,9 +7482,15 @@ msgstr "cURL ขีด จำกัด ขนาน" #~ msgid "Del. Favorite" #~ msgstr "ลบรายการโปรด" +#~ msgid "Desynchronize block animation" +#~ msgstr "Desynchronize บล็อกภาพเคลื่อนไหว" + #~ msgid "Dig key" #~ msgstr "ปุ่มขวา" +#~ msgid "Digging particles" +#~ msgstr "ขุดอนุภาค" + #~ msgid "Disable anticheat" #~ msgstr "ปิดใช้งาน anticheat" @@ -7440,6 +7516,10 @@ msgstr "cURL ขีด จำกัด ขนาน" #~ msgid "Dynamic shadows:" #~ msgstr "เงาแบบไดนามิก: " +#, fuzzy +#~ msgid "Enable" +#~ msgstr "เปิดใช้งานแล้ว" + #~ msgid "Enable VBO" #~ msgstr "ทำให้สามารถ VBO" @@ -7473,6 +7553,12 @@ msgstr "cURL ขีด จำกัด ขนาน" #~ "หรือจำเป็นต้องสร้างขึ้นอัตโนมัติ\n" #~ "ต้องมี shaders เพื่อเปิดใช้งาน" +#, fuzzy +#~ msgid "" +#~ "Enables caching of facedir rotated meshes.\n" +#~ "This is only effective with shaders disabled." +#~ msgstr "เปิดใช้งานการแคชของตาข่ายที่หมุนได้." + #~ msgid "Enables filmic tone mapping" #~ msgstr "เปิดใช้งานการจับคู่โทนภาพยนตร์" @@ -7515,9 +7601,6 @@ msgstr "cURL ขีด จำกัด ขนาน" #~ "ตัวเลือกการทดลองอาจทำให้เกิดช่องว่างระหว่างบล็อก\n" #~ "เมื่อตั้งค่าเป็นจำนวนที่สูงกว่า 0" -#~ msgid "FPS in pause menu" -#~ msgstr "FPS ในเมนูหยุดชั่วคราว" - #~ msgid "FSAA" #~ msgstr "FSAA" @@ -7591,8 +7674,8 @@ msgstr "cURL ขีด จำกัด ขนาน" #~ msgid "Full screen BPP" #~ msgstr "BPP เต็มหน้าจอ" -#~ msgid "Game" -#~ msgstr "เกม" +#~ msgid "GUI scaling filter txr2img" +#~ msgstr "ตัวกรองการปรับขนาด GUI txr2img" #~ msgid "Gamma" #~ msgstr "แกมมา" @@ -7746,6 +7829,10 @@ msgstr "cURL ขีด จำกัด ขนาน" #~ msgid "Instrumentation" #~ msgstr "เครื่องมือวัด" +#, fuzzy +#~ msgid "Interval of sending time of day to clients, stated in seconds." +#~ msgstr "ช่วงเวลาในการส่งช่วงเวลาของวันให้กับลูกค้า." + #~ msgid "Invalid gamespec." #~ msgstr "ข้อมูลจำเพาะเกี่ยวกับเกม ไม่ถูกต้อง." @@ -7757,647 +7844,647 @@ msgstr "cURL ขีด จำกัด ขนาน" #~ msgid "" #~ "Key for decreasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ปุ่มสำหรับลดช่วงการรับชม.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for decreasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ปุ่มสำหรับลดระดับเสียง.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for digging.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "กุญแจสำหรับการกระโดด.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for dropping the currently selected item.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "กุญแจสำคัญในการวางรายการที่เลือกในปัจจุบัน.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ปุ่มสำหรับเพิ่มช่วงการรับชม.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ปุ่มกดสำหรับเพิ่มระดับเสียง.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for jumping.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "กุญแจสำหรับการกระโดด.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving fast in fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ปุ่มกดสำหรับการเคลื่อนที่อย่างรวดเร็วในโหมดเร็ว.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player backward.\n" #~ "Will also disable autoforward, when active.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ปุ่มกดสำหรับเลื่อนเครื่องเล่นถอยหลัง.\n" #~ "จะปิดใช้งานการป้อนอัตโนมัติอัตโนมัติเมื่อเปิดใช้งาน.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player forward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "กุญแจสำคัญสำหรับการย้ายผู้เล่นไปข้างหน้า.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player left.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ปุ่มสำหรับย้ายผู้เล่นไปทางซ้าย.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player right.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ปุ่มกดสำหรับเลื่อนเครื่องเล่นไปทางขวา.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for muting the game.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "กุญแจสำหรับการปิดเสียงเกม.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ปุ่มสำหรับเปิดหน้าต่างแชทเพื่อพิมพ์คำสั่ง.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type local commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ปุ่มสำหรับเปิดหน้าต่างแชทเพื่อพิมพ์คำสั่งในเครื่อง.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "รหัสสำหรับเปิดหน้าต่างแชท.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the inventory.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "กุญแจสำคัญในการเปิดสินค้าคงคลัง.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for placing.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "กุญแจสำหรับการกระโดด.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 11th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ปุ่มสำหรับเลือกสล็อต hotbar ที่ 11.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 12th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ปุ่มสำหรับเลือกสล็อต hotbar ที่ 12.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 13th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ปุ่มสำหรับเลือกสล็อต hotbar ที่ 13.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 14th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ปุ่มสำหรับเลือกสล็อต hotbar ที่ 14.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 15th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ปุ่มสำหรับเลือกสล็อต hotbar ที่ 15.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 16th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ปุ่มสำหรับเลือกสล็อต hotbar ที่ 16.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 17th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ปุ่มสำหรับเลือกสล็อต hotbar ที่ 17.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 18th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ปุ่มสำหรับเลือกสล็อต hotbar ที่ 18.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 19th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ปุ่มสำหรับเลือกสล็อต hotbar ที่ 19.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 20th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ปุ่มสำหรับเลือกสล็อต hotbar ที่ 20.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 21st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ปุ่มสำหรับเลือกสล็อต hotbar ที่ 21.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 22nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ปุ่มสำหรับเลือกสล็อต hotbar ที่ 22.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 23rd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ปุ่มสำหรับเลือกสล็อต hotbar ที่ 23.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 24th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ปุ่มสำหรับเลือกสล็อต hotbar ที่ 24.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 25th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ปุ่มสำหรับเลือกสล็อต hotbar ที่ 25.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 26th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ปุ่มสำหรับเลือกสล็อต hotbar ที่ 26.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 27th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ปุ่มสำหรับเลือกสล็อต hotbar ที่ 27.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 28th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ปุ่มสำหรับเลือกสล็อต hotbar ที่ 28.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 29th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ปุ่มสำหรับเลือกสล็อต hotbar ที่ 29.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 30th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ปุ่มสำหรับเลือกสล็อต hotbar ที่ 30.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 31st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ปุ่มสำหรับเลือกสล็อต hotbar ที่ 31.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 32nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ปุ่มสำหรับเลือกสล็อต hotbar ที่ 32.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the eighth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ปุ่มสำหรับเลือกสล็อต hotbar ที่แปด.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the fifth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ปุ่มสำหรับเลือกสล็อต hotbar ที่ห้า.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the first hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ปุ่มสำหรับเลือกสล็อต hotbar แรก.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the fourth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ปุ่มสำหรับเลือกสล็อต hotbar ที่สี่.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the next item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "แป้นสำหรับเลือกรายการถัดไปในแถบร้อน.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the ninth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ปุ่มสำหรับเลือกสล็อต hotbar ที่เก้า.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the previous item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "แป้นสำหรับเลือกรายการก่อนหน้าในแถบร้อน.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the second hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ปุ่มสำหรับเลือกสล็อต hotbar ที่สอง.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the seventh hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "คีย์สำหรับการเลือกสล็อต hotbar ที่เจ็ด.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the sixth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ปุ่มสำหรับเลือกสล็อต hotbar ที่หก.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the tenth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ปุ่มสำหรับเลือกช่องเสียบที่สิบ.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the third hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ปุ่มสำหรับเลือกสล็อต hotbar ที่สาม.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for sneaking.\n" #~ "Also used for climbing down and descending in water if aux1_descends is " #~ "disabled.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ที่สำคัญสำหรับการด้อม.\n" #~ "นอกจากนี้ยังใช้สำหรับการปีนลงและลงไปในน้ำหากปิดการใช้งาน aux1_descends.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for switching between first- and third-person camera.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ปุ่มสำหรับสลับระหว่างกล้องตัวแรกและตัวที่สาม.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for taking screenshots.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "กุญแจสำคัญสำหรับการจับภาพหน้าจอ.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling autoforward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "กุญแจสำคัญในการสลับ autoforward.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling cinematic mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ปุ่มสำหรับสลับโหมดโรงภาพยนตร์.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling display of minimap.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "กุญแจสำคัญในการสลับการแสดงผลของแผนที่ย่อ.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ปุ่มสำหรับสลับโหมดอย่างรวดเร็ว.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling flying.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "กุญแจสำคัญในการสลับการบิน.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling noclip mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "คีย์สำหรับสลับโหมด noclip.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling pitch move mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "กุญแจสำคัญในการสลับโหมด pitch.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the camera update. Only used for development\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ปุ่มสำหรับสลับการอัปเดตกล้อง ใช้สำหรับการพัฒนาเท่านั้น\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of chat.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "กุญแจสำคัญในการสลับการแสดงผลของการแชท.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of debug info.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "คีย์สำหรับสลับการแสดงข้อมูลการดีบัก.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of fog.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "กุญแจสำคัญในการสลับการแสดงผลของหมอก.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the HUD.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "กุญแจสำคัญในการสลับการแสดงผลของ HUD.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the large chat console.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ปุ่มสำหรับสลับการแสดงผลของแชทคอนโซลขนาดใหญ่.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the profiler. Used for development.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "ปุ่มสำหรับสลับการแสดงผลของตัวสร้างโปรไฟล์ ใช้สำหรับการพัฒนา.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling unlimited view range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "กุญแจสำคัญในการสลับช่วงมุมมองไม่ จำกัด.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key to use view zoom when possible.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "กุญแจสำคัญในการใช้มุมมองซูมเมื่อเป็นไปได้.\n" -#~ "ดู http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "ดู http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Keybindings. (If this menu screws up, remove stuff from minetest.conf)" @@ -8446,6 +8533,9 @@ msgstr "cURL ขีด จำกัด ขนาน" #~ msgid "Menus" #~ msgstr "เมนู" +#~ msgid "Mesh cache" +#~ msgstr "แคชตาข่าย" + #~ msgid "Minimap" #~ msgstr "แผนที่ขนาดเล็ก" @@ -8642,6 +8732,9 @@ msgstr "cURL ขีด จำกัด ขนาน" #~ msgid "Server / Singleplayer" #~ msgstr "เซิร์ฟเวอร์ / ผู้เล่นเดี่ยว" +#~ msgid "Shaders" +#~ msgstr "เฉดสี" + #~ msgid "Shaders (experimental)" #~ msgstr "เฉดสี (ไม่พร้อมใช้งาน)" @@ -8658,6 +8751,10 @@ msgstr "cURL ขีด จำกัด ขนาน" #~ "บัตร\n" #~ "ใช้งานได้กับแบ็กเอนด์วิดีโอ OpenGL เท่านั้น" +#, fuzzy +#~ msgid "Shaders are disabled." +#~ msgstr "ปิดใช้งานการอัปเดตกล้องแล้ว" + #, fuzzy #~ msgid "" #~ "Shadow offset (in pixels) of the fallback font. If 0, then shadow will " @@ -8685,6 +8782,9 @@ msgstr "cURL ขีด จำกัด ขนาน" #~ msgid "Smooths rotation of camera. 0 to disable." #~ msgstr "มากการหมุนของกล้อง 0 เพื่อปิดใช้งาน" +#~ msgid "Sound system is disabled" +#~ msgstr "ระบบเสียงปิดอยู่" + #~ msgid "Special" #~ msgstr "พิเศษ" @@ -8727,6 +8827,9 @@ msgstr "cURL ขีด จำกัด ขนาน" #~ msgid "This font will be used for certain languages." #~ msgstr "แบบอักษรนี้จะใช้สำหรับบางภาษา" +#~ msgid "Time send interval" +#~ msgstr "ช่วงเวลาการส่ง" + #~ msgid "To enable shaders the OpenGL driver needs to be used." #~ msgstr "การเปิดใช้งานต้องมีโปรแกรมควบคุม OpenGL ของ shaders ใช้." @@ -8817,6 +8920,17 @@ msgstr "cURL ขีด จำกัด ขนาน" #~ msgid "Waving water" #~ msgstr "โบกน้ำ" +#~ msgid "" +#~ "When gui_scaling_filter_txr2img is true, copy those images\n" +#~ "from hardware to software for scaling. When false, fall back\n" +#~ "to the old scaling method, for video drivers that don't\n" +#~ "properly support downloading textures back from hardware." +#~ msgstr "" +#~ "เมื่อ gui_scaling_filter_txr2img เป็นจริงให้คัดลอกภาพเหล่านั้น\n" +#~ "จากฮาร์ดแวร์ซอฟต์แวร์เพื่อการปรับขนาด เมื่อเท็จถอยกลับ\n" +#~ "กับวิธีการปรับขนาดแบบเก่าสำหรับไดรเวอร์วิดีโอที่ไม่ต้องการ\n" +#~ "รองรับการดาวน์โหลดพื้นผิวอย่างถูกต้องจากฮาร์ดแวร์" + #~ msgid "" #~ "Whether FreeType fonts are used, requires FreeType support to be compiled " #~ "in.\n" @@ -8825,6 +8939,10 @@ msgstr "cURL ขีด จำกัด ขนาน" #~ "ไม่ว่าจะใช้ฟอนต์ FreeType ต้องมีการสนับสนุน FreeType เพื่อรวบรวม\n" #~ "หากปิดใช้งาน ฟอนต์บิตแมปและเอ็กซ์เอ็มแอลเวกเตอร์จะใช้แทน" +#~ msgid "" +#~ "Whether node texture animations should be desynchronized per mapblock." +#~ msgstr "ระบุว่าควรสร้างการซิงโครไนซ์ภาพเคลื่อนไหวพื้นผิวของโหนดต่อแม็ปบล็อกหรือไม่" + #~ msgid "Whether to allow players to damage and kill each other." #~ msgstr "ไม่ว่าจะอนุญาตให้ผู้เล่นสร้างความเสียหายและสังหารกัน." diff --git a/po/tok/luanti.po b/po/tok/luanti.po index 7a099ce78..b23223e4e 100644 --- a/po/tok/luanti.po +++ b/po/tok/luanti.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: minetest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" "PO-Revision-Date: 2024-08-12 16:09+0000\n" "Last-Translator: rubenwardy \n" "Language-Team: Toki Pona ] [-t]" msgstr "[all | ]" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "" + +#: builtin/common/settings/components.lua +msgid "Set" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Touchscreen layout" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "pause_menu" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Client Mods" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "" + #: builtin/fstk/ui.lua msgid "" msgstr "" @@ -166,7 +404,6 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "" @@ -202,11 +439,6 @@ msgstr "" msgid "No packages could be retrieved" msgstr "" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "" @@ -251,18 +483,6 @@ msgstr "" msgid "Base Game:" msgstr "musi lawa:" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -384,6 +604,12 @@ msgstr "" msgid "Unable to install a $1 as a texture pack" msgstr "" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "" @@ -446,12 +672,6 @@ msgstr "" msgid "Optional dependencies:" msgstr "" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "ma:" @@ -602,11 +822,6 @@ msgstr "" msgid "Sea level rivers" msgstr "" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "" @@ -742,6 +957,22 @@ msgid "" "override any renaming here." msgstr "" +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Expand all" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "" @@ -766,7 +997,7 @@ msgstr "" msgid "Visit website" msgstr "" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "" @@ -778,223 +1009,6 @@ msgstr "" msgid "Try reenabling public serverlist and check your internet connection." msgstr "" -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Set" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "Enable" -msgstr "" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "Shaders are disabled." -msgstr "" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "" @@ -1015,10 +1029,6 @@ msgstr "" msgid "Core Team" msgstr "" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "" @@ -1163,10 +1173,20 @@ msgstr "" msgid "You need to install a game before you can create a world." msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "Add favorite" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Clients:\n" +"$1" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "" @@ -1180,6 +1200,11 @@ msgstr "" msgid "Favorites" msgstr "" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "musi" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "" @@ -1192,10 +1217,26 @@ msgstr "" msgid "Login" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +msgid "Open server website" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Public Servers" msgstr "" @@ -1278,23 +1319,6 @@ msgid "" "Check debug.txt for details." msgstr "" -#: src/client/game.cpp -msgid "- Mode: " -msgstr "" - -#: src/client/game.cpp -msgid "- Public: " -msgstr "" - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "" - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "" - #: src/client/game.cpp msgid "A serialization error occurred:" msgstr "" @@ -1304,6 +1328,10 @@ msgstr "" msgid "Access denied. Reason: %s" msgstr "" +#: src/client/game.cpp +msgid "All debug info hidden" +msgstr "" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "" @@ -1324,6 +1352,10 @@ msgstr "" msgid "Block bounds shown for nearby blocks" msgstr "" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "" @@ -1336,10 +1368,6 @@ msgstr "" msgid "Can't show block bounds (disabled by game or mod)" msgstr "" -#: src/client/game.cpp -msgid "Change Password" -msgstr "" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "" @@ -1368,26 +1396,6 @@ msgstr "" msgid "Connection failed for unknown reason" msgstr "" -#: src/client/game.cpp -msgid "Continue" -msgstr "" - -#: src/client/game.cpp -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1401,31 +1409,15 @@ msgstr "" msgid "Creating server..." msgstr "" -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "" - #: src/client/game.cpp msgid "Debug info shown" msgstr "" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "" - #: src/client/game.cpp #, c-format msgid "Error creating client: %s" msgstr "" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "" @@ -1462,18 +1454,6 @@ msgstr "" msgid "Fog enabled by game or mod" msgstr "" -#: src/client/game.cpp -msgid "Game info:" -msgstr "" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "" - #: src/client/game.cpp msgid "Item definitions..." msgstr "" @@ -1510,14 +1490,6 @@ msgstr "" msgid "Node definitions..." msgstr "" -#: src/client/game.cpp -msgid "Off" -msgstr "" - -#: src/client/game.cpp -msgid "On" -msgstr "" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "" @@ -1530,38 +1502,22 @@ msgstr "" msgid "Profiler graph shown" msgstr "" -#: src/client/game.cpp -msgid "Remote server" -msgstr "" - #: src/client/game.cpp msgid "Resolving address..." msgstr "" -#: src/client/game.cpp -msgid "Respawn" -msgstr "o kama sin" - #: src/client/game.cpp msgid "Shutting down..." msgstr "" -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "" - #: src/client/game.cpp msgid "Sound muted" msgstr "" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "" @@ -1633,18 +1589,103 @@ msgstr "" msgid "Volume changed to %d%%" msgstr "" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "" -#: src/client/game.cpp -msgid "You died" -msgstr "sina moli" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "" + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "o kama sin" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "sina moli" + #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" msgstr "" @@ -1971,7 +2012,7 @@ msgid "Failed to compile the \"%s\" shader." msgstr "" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." +msgid "GLSL is not supported by the driver" msgstr "" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" @@ -2019,7 +2060,7 @@ msgstr "" msgid "Automatic jumping" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "" @@ -2031,7 +2072,7 @@ msgstr "" msgid "Block bounds" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "" @@ -2055,7 +2096,7 @@ msgstr "" msgid "Double tap \"jump\" to toggle fly" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "" @@ -2071,11 +2112,11 @@ msgstr "" msgid "Inc. volume" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "" @@ -2107,7 +2148,7 @@ msgstr "" msgid "Prev. item" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "" @@ -2119,7 +2160,7 @@ msgstr "" msgid "Screenshot" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "" @@ -2127,15 +2168,15 @@ msgstr "" msgid "Toggle HUD" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "" @@ -2143,11 +2184,11 @@ msgstr "" msgid "Toggle fog" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "" @@ -2155,7 +2196,7 @@ msgstr "" msgid "Toggle pitchmove" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "" @@ -2191,7 +2232,7 @@ msgstr "" msgid "Passwords do not match!" msgstr "" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "" @@ -2204,15 +2245,43 @@ msgstr "" msgid "Sound Volume: %d%%" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +msgid "Add button" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Done" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Remove" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp msgid "Joystick" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Toggle debug" msgstr "" @@ -2408,8 +2477,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" #: src/settings_translation_file.cpp @@ -2462,10 +2530,6 @@ msgstr "" msgid "Active object send range" msgstr "" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "" - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2488,6 +2552,16 @@ msgstr "" msgid "Advanced" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Allow clouds to look 3D instead of flat." +msgstr "" + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "" @@ -2855,11 +2929,11 @@ msgid "Clouds" msgstr "" #: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." +msgid "Clouds in menu" msgstr "" #: src/settings_translation_file.cpp -msgid "Clouds in menu" +msgid "Color depth for post-processing texture" msgstr "" #: src/settings_translation_file.cpp @@ -2884,7 +2958,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" #: src/settings_translation_file.cpp @@ -3019,6 +3093,14 @@ msgstr "" msgid "Debugging" msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "" @@ -3170,18 +3252,10 @@ msgid "" "When the 'snowbiomes' flag is enabled, this is ignored." msgstr "" -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "" - #: src/settings_translation_file.cpp msgid "Developer Options" msgstr "" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "" @@ -3209,6 +3283,14 @@ msgstr "" msgid "Double-tapping the jump key toggles fly mode." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "" @@ -3282,8 +3364,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" #: src/settings_translation_file.cpp @@ -3356,8 +3438,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" #: src/settings_translation_file.cpp @@ -3372,12 +3453,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "" - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -3679,10 +3754,6 @@ msgstr "" msgid "GUI scaling filter" msgstr "" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "" - #: src/settings_translation_file.cpp msgid "Gamepads" msgstr "" @@ -3906,12 +3977,6 @@ msgid "" "descending." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -3930,6 +3995,13 @@ msgid "" "empty password." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4024,10 +4096,6 @@ msgstr "" msgid "Interval of saving important changes in the world, stated in seconds." msgstr "" -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "" - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "" @@ -4642,10 +4710,6 @@ msgstr "" msgid "Maximum users" msgstr "" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "" @@ -4678,6 +4742,10 @@ msgstr "" msgid "Minimum limit of random number of small caves per mapchunk." msgstr "" +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "" @@ -4767,7 +4835,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" @@ -5206,17 +5274,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5409,16 +5479,6 @@ msgstr "" msgid "Shader path" msgstr "" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "" @@ -5579,10 +5639,9 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" #: src/settings_translation_file.cpp @@ -5861,10 +5920,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "" -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "" @@ -5923,6 +5978,10 @@ msgstr "" msgid "Transparency Sorting Distance" msgstr "" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "" @@ -5973,7 +6032,10 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" #: src/settings_translation_file.cpp @@ -5996,16 +6058,14 @@ msgstr "" msgid "Upper Y limit of floatlands." msgstr "" -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "" - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "" #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" #: src/settings_translation_file.cpp @@ -6242,20 +6302,12 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -6266,10 +6318,6 @@ msgid "" "Mods may still set a background." msgstr "" -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -6292,8 +6340,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" diff --git a/po/tr/luanti.po b/po/tr/luanti.po index 875b68c24..5f168c3bf 100644 --- a/po/tr/luanti.po +++ b/po/tr/luanti.po @@ -2,9 +2,9 @@ msgid "" msgstr "" "Project-Id-Version: Turkish (Minetest)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" -"PO-Revision-Date: 2024-03-24 17:01+0000\n" -"Last-Translator: Oğuz Ersen \n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" +"PO-Revision-Date: 2025-01-07 17:01+0000\n" +"Last-Translator: Siber \n" "Language-Team: Turkish \n" "Language: tr\n" @@ -12,7 +12,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.5-dev\n" +"X-Generator: Weblate 5.10-dev\n" #: builtin/client/chatcommands.lua msgid "Clear the out chat queue" @@ -71,14 +71,259 @@ msgstr "Komutlar için yardım alın" msgid "" "Use '.help ' to get more information, or '.help all' to list everything." msgstr "" -"Daha fazla bilgi almak için '.help ' veya her şeyi listelemek için '." -"help all' kullanın." +"Daha fazla bilgi almak için '.help ' veya her şeyi listelemek için " +"'.help all' kullanın." #: builtin/common/chatcommands.lua #, fuzzy msgid "[all | ] [-t]" msgstr "[all | ]" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "Gözat" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "Düzenle" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "Dizin seç" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "Dosya seç" + +#: builtin/common/settings/components.lua +#, fuzzy +msgid "Set" +msgstr "Seç" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(Ayarın verilen açıklaması yok)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "2D Gürültü" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "İptal" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "Aralılık" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "Oktavlar" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "Kaydırma" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "Süreklilik" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "Kaydet" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "Boyut" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "Tohum" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "X yayılması" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "Y yayılması" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "Z yayılması" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "mutlak değer" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "öntanımlılar" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "rahat" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "(The game will need to enable automatic exposure as well)" +msgstr "(Oyunun gölgeleri de etkinleştirmesi gerekecektir)" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "(The game will need to enable bloom as well)" +msgstr "(Oyunun gölgeleri de etkinleştirmesi gerekecektir)" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "(Oyunun gölgeleri de etkinleştirmesi gerekecektir)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "(Sistem dilini kullan)" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "Erişilebilirlik" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "Sohbet" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "Temizle" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "Kontroller" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "Devre dışı" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "Etkin" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "Genel" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "Hareket" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "Sonuç yok" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default" +msgstr "Ayarı öntanımlıya sıfırla" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "Ayarı öntanımlı değere sıfırla ($1)" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "Ara" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "Gelişmiş ayarları göster" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "Teknik adları göster" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Touchscreen layout" +msgstr "Dokunmatik ekran" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "pause_menu" +msgstr "Duraklat menüsünde FPS" + +#: builtin/common/settings/settingtypes.lua +msgid "Client Mods" +msgstr "İstemci Modları" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "İçerik: Oyunlar" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "İçerik: Modlar" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "(Oyunun gölgeleri de etkinleştirmesi gerekecektir)" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "Özel" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "Dinamik gölgeler" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "Yüksek" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "Düşük" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "Orta" + +#: builtin/common/settings/shadows_component.lua +#, fuzzy +msgid "Very High" +msgstr "Çok Yüksek" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "Çok Düşük" + #: builtin/fstk/ui.lua msgid "" msgstr "" @@ -160,11 +405,10 @@ msgstr "$1 indiriliyor..." #: builtin/mainmenu/content/dlg_contentdb.lua msgid "All" -msgstr "" +msgstr "Hepsi" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "Geri" @@ -179,7 +423,7 @@ msgstr "İndiriliyor..." #: builtin/mainmenu/content/dlg_contentdb.lua msgid "Featured" -msgstr "" +msgstr "Özellikler" #: builtin/mainmenu/content/dlg_contentdb.lua msgid "Games" @@ -201,11 +445,6 @@ msgstr "Modlar" msgid "No packages could be retrieved" msgstr "Paket alınamadı" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "Sonuç yok" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "Güncelleme yok" @@ -251,18 +490,6 @@ msgstr "Zaten kuruldu" msgid "Base Game:" msgstr "Yerel oyun:" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "İptal" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -270,7 +497,7 @@ msgstr "Gereklilikler:" #: builtin/mainmenu/content/dlg_install.lua msgid "Error getting dependencies for package $1" -msgstr "" +msgstr "$1 paketin bağımlılığını alırken hata oluştu" #: builtin/mainmenu/content/dlg_install.lua msgid "Install" @@ -316,16 +543,15 @@ msgstr "Sunucu Açıklaması" #: builtin/mainmenu/content/dlg_package.lua msgid "Donate" -msgstr "" +msgstr "Bağış Yap" #: builtin/mainmenu/content/dlg_package.lua msgid "Forum Topic" -msgstr "" +msgstr "Forum Başlığı" #: builtin/mainmenu/content/dlg_package.lua -#, fuzzy msgid "Information" -msgstr "Bilgi:" +msgstr "Bilgilendirme" #: builtin/mainmenu/content/dlg_package.lua #, fuzzy @@ -334,15 +560,15 @@ msgstr "$1 kur" #: builtin/mainmenu/content/dlg_package.lua msgid "Issue Tracker" -msgstr "" +msgstr "Sorun Gözlemcisi" #: builtin/mainmenu/content/dlg_package.lua msgid "Source" -msgstr "" +msgstr "Kaynak" #: builtin/mainmenu/content/dlg_package.lua msgid "Translate" -msgstr "" +msgstr "Çevir" #: builtin/mainmenu/content/dlg_package.lua builtin/mainmenu/tab_content.lua msgid "Uninstall" @@ -390,6 +616,12 @@ msgstr "$1, bir $2 olarak kurulamadı" msgid "Unable to install a $1 as a texture pack" msgstr "$1 bir doku paketi olarak kurulamadı" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "(Etkinleştirildi, hata var)" @@ -454,12 +686,6 @@ msgstr "İsteğe bağlı bağımlılık yok" msgid "Optional dependencies:" msgstr "İsteğe bağlı bağımlılıklar:" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "Kaydet" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "Dünya:" @@ -610,11 +836,6 @@ msgstr "Nehirler" msgid "Sea level rivers" msgstr "Deniz seviyesi nehirleri" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "Tohum" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "Biyomlar arası yumuşak geçiş" @@ -757,8 +978,25 @@ msgid "" "This modpack has an explicit name given in its modpack.conf which will " "override any renaming here." msgstr "" -"Bu mod paketinin buradaki yeniden adlandırmayı geçersiz kılacak, modpack." -"conf dosyasında verilen açık bir adı var." +"Bu mod paketinin buradaki yeniden adlandırmayı geçersiz kılacak, " +"modpack.conf dosyasında verilen açık bir adı var." + +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "Hepsini etkinleştir" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" @@ -788,7 +1026,7 @@ msgstr "asla" msgid "Visit website" msgstr "siteyi ziyaret et" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "Ayarlar" @@ -802,230 +1040,6 @@ msgstr "" "Herkese açık sunucu listesini tekrar etkinleştirmeyi deneyin ve internet " "bağlantınızı gözden geçirin." -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "Gözat" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "Düzenle" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "Dizin seç" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "Dosya seç" - -#: builtin/mainmenu/settings/components.lua -#, fuzzy -msgid "Set" -msgstr "Seç" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(Ayarın verilen açıklaması yok)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "2D Gürültü" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "Aralılık" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "Oktavlar" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "Kaydırma" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "Süreklilik" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "Boyut" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "X yayılması" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "Y yayılması" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "Z yayılması" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "mutlak değer" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "öntanımlılar" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "rahat" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable automatic exposure as well)" -msgstr "(Oyunun gölgeleri de etkinleştirmesi gerekecektir)" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable bloom as well)" -msgstr "(Oyunun gölgeleri de etkinleştirmesi gerekecektir)" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "(Oyunun gölgeleri de etkinleştirmesi gerekecektir)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "(Sistem dilini kullan)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "Erişilebilirlik" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "Sohbet" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "Temizle" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "Kontroller" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "Devre dışı" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "Etkin" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "Genel" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "Hareket" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default" -msgstr "Ayarı öntanımlıya sıfırla" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "Ayarı öntanımlı değere sıfırla ($1)" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "Ara" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "Gelişmiş ayarları göster" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "Teknik adları göster" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "İstemci Modları" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "İçerik: Oyunlar" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "İçerik: Modlar" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "Etkin" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Shaders are disabled." -msgstr "Kamera güncelleme devre dışı" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "(Oyunun gölgeleri de etkinleştirmesi gerekecektir)" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "Özel" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "Dinamik gölgeler" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "Yüksek" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "Düşük" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "Orta" - -#: builtin/mainmenu/settings/shadows_component.lua -#, fuzzy -msgid "Very High" -msgstr "Çok Yüksek" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "Çok Düşük" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "Hakkında" @@ -1046,10 +1060,6 @@ msgstr "Çekirdek Geliştiriciler" msgid "Core Team" msgstr "Çekirdek Takım" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "Irrlicht aygıtı:" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "Kullanıcı Veri Dizinini Aç" @@ -1198,10 +1208,22 @@ msgstr "Oyun Başlat" msgid "You need to install a game before you can create a world." msgstr "Bir mod kurabilmeniz için önce bir oyun kurmanız gerekir" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "Uzak port" + #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "Adres" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "İstemci" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "Yaratıcı kip" @@ -1215,6 +1237,11 @@ msgstr "Hasar / Savaş (PvP)" msgid "Favorites" msgstr "Sık Kullanılanlar" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "Oyun" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "Uyumsuz Sunucular" @@ -1227,10 +1254,28 @@ msgstr "Oyuna Katıl" msgid "Login" msgstr "Giriş" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Number of mods: $1" +msgstr "Emerge iş sayısı" + +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Open server website" +msgstr "Adanmış sunucu adımı" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "Ping" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Public Servers" msgstr "Herkese Açık Sunucular" @@ -1316,23 +1361,6 @@ msgstr "" "\n" "Hata ayrıntıları için debug.txt dosyasına bakın." -#: src/client/game.cpp -msgid "- Mode: " -msgstr "- Kip: " - -#: src/client/game.cpp -msgid "- Public: " -msgstr "- Herkese Açık: " - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "- Savaş (PvP): " - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "- Sunucu Adı: " - #: src/client/game.cpp msgid "A serialization error occurred:" msgstr "Serileştirme hatası oluştu:" @@ -1342,6 +1370,11 @@ msgstr "Serileştirme hatası oluştu:" msgid "Access denied. Reason: %s" msgstr "Erişim reddedildi. Neden: %s" +#: src/client/game.cpp +#, fuzzy +msgid "All debug info hidden" +msgstr "Hata ayıklama bilgisi gösteriliyor" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "Kendiliğinden ileri devre dışı" @@ -1362,6 +1395,10 @@ msgstr "Blok sınırları geçerli blok için gösteriliyor" msgid "Block bounds shown for nearby blocks" msgstr "Blok sınırları yakındaki bloklar için gösteriliyor" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "Kamera güncelleme devre dışı" @@ -1375,10 +1412,6 @@ msgstr "Kamera güncelleme etkin" msgid "Can't show block bounds (disabled by game or mod)" msgstr "Blok sınırları gösterilemiyor ('basic_debug' ayrıcalığına ihtiyaç var)" -#: src/client/game.cpp -msgid "Change Password" -msgstr "Parola Değiştir" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "Sinematik kip devre dışı" @@ -1407,39 +1440,6 @@ msgstr "Bağlantı hatası (zaman aşımı?)" msgid "Connection failed for unknown reason" msgstr "Bilinmeyen bir nedenle bağlantı başarısız oldu" -#: src/client/game.cpp -msgid "Continue" -msgstr "Devam et" - -#: src/client/game.cpp -#, fuzzy -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" -"Öntanımlı Kontroller:\n" -"Tüm menüler gizli:\n" -"- tek tık: tuş etkin\n" -"- çift tık: yerleştir/kullan\n" -"- parmağı kaydır: etrafa bak\n" -"Menü/Envanter görünür:\n" -"- çift tık (dışarda):\n" -" -->kapat\n" -"- yığına dokun, bölmeye dokun:\n" -" --> yığını taşı\n" -"- dokun&sürükle, iki parmakla dokun\n" -" --> bölmeye tek bir öge yerleştir\n" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1453,31 +1453,15 @@ msgstr "İstemci yaratılıyor..." msgid "Creating server..." msgstr "Sunucu yaratılıyor..." -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "Hata ayıklama bilgisi ve profilci grafiği gizli" - #: src/client/game.cpp msgid "Debug info shown" msgstr "Hata ayıklama bilgisi gösteriliyor" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "Hata ayıklama bilgisi, profilci grafiği ve tel kafes gizli" - #: src/client/game.cpp #, c-format msgid "Error creating client: %s" msgstr "İstemci oluşturulurken hata: %s" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "Menüye Çık" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "Oyundan Çık" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "Hızlı kip devre dışı" @@ -1515,18 +1499,6 @@ msgstr "Sis etkin" msgid "Fog enabled by game or mod" msgstr "Yakınlaştırma şu anda oyun veya mod tarafından devre dışı" -#: src/client/game.cpp -msgid "Game info:" -msgstr "Oyun Bilgisi:" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "Oyun duraklatıldı" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "Sunucu barındırılıyor" - #: src/client/game.cpp msgid "Item definitions..." msgstr "Öge tanımları..." @@ -1563,14 +1535,6 @@ msgstr "Hayalet kipi etkin (not: 'hayalet' yetkisi yok)" msgid "Node definitions..." msgstr "Nod tanımları..." -#: src/client/game.cpp -msgid "Off" -msgstr "Kapalı" - -#: src/client/game.cpp -msgid "On" -msgstr "Açık" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "Eğim hareket kipi devre dışı" @@ -1583,38 +1547,22 @@ msgstr "Eğim hareket kipi etkin" msgid "Profiler graph shown" msgstr "Profilci grafiği gösteriliyor" -#: src/client/game.cpp -msgid "Remote server" -msgstr "Uzak sunucu" - #: src/client/game.cpp msgid "Resolving address..." msgstr "Adres çözümleniyor..." -#: src/client/game.cpp -msgid "Respawn" -msgstr "Yeniden Canlan" - #: src/client/game.cpp msgid "Shutting down..." msgstr "Kapatılıyor..." -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "Tek oyunculu" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "Ses Seviyesi" - #: src/client/game.cpp msgid "Sound muted" msgstr "Ses kısık" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "Ses sistemi devre dışı" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "Bu inşada ses sistemi desteklenmiyor" @@ -1692,18 +1640,116 @@ msgstr "Görüntüleme uzaklığı değişti: %d" msgid "Volume changed to %d%%" msgstr "Ses %d/100'e değişti" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "Telkafes gösteriliyor" -#: src/client/game.cpp -msgid "You died" -msgstr "Öldün" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "Yakınlaştırma şu anda oyun veya mod tarafından devre dışı" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "- Kip: " + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "- Herkese Açık: " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "- Savaş (PvP): " + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "- Sunucu Adı: " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "Parola Değiştir" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "Devam et" + +#: src/client/game_formspec.cpp +#, fuzzy +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" +"Öntanımlı Kontroller:\n" +"Tüm menüler gizli:\n" +"- tek tık: tuş etkin\n" +"- çift tık: yerleştir/kullan\n" +"- parmağı kaydır: etrafa bak\n" +"Menü/Envanter görünür:\n" +"- çift tık (dışarda):\n" +" -->kapat\n" +"- yığına dokun, bölmeye dokun:\n" +" --> yığını taşı\n" +"- dokun&sürükle, iki parmakla dokun\n" +" --> bölmeye tek bir öge yerleştir\n" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "Menüye Çık" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "Oyundan Çık" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "Oyun Bilgisi:" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "Oyun duraklatıldı" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "Sunucu barındırılıyor" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "Kapalı" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "Açık" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "Uzak sunucu" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "Yeniden Canlan" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "Ses Seviyesi" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "Öldün" + #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" msgstr "Sohbet şu anda oyun veya mod tarafından devre dışı" @@ -2033,8 +2079,9 @@ msgid "Failed to compile the \"%s\" shader." msgstr "Web sayfası açılamadı" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." -msgstr "" +#, fuzzy +msgid "GLSL is not supported by the driver" +msgstr "Bu inşada ses sistemi desteklenmiyor" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" #: src/content/mod_configuration.cpp @@ -2085,7 +2132,7 @@ msgstr "Kendiliğinden-ileri" msgid "Automatic jumping" msgstr "Kendiliğinden zıplama" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "Aux1" @@ -2097,7 +2144,7 @@ msgstr "Geri" msgid "Block bounds" msgstr "Blok sınırları" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "Kamera değiştir" @@ -2121,7 +2168,7 @@ msgstr "Sesi alçalt" msgid "Double tap \"jump\" to toggle fly" msgstr "\"zıpla\" ya çift dokunarak uçmayı aç/kapa" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "At" @@ -2137,11 +2184,11 @@ msgstr "Uzaklığı Azalt" msgid "Inc. volume" msgstr "Sesi yükselt" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "Envanter" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "Zıpla" @@ -2173,7 +2220,7 @@ msgstr "Sonraki öge" msgid "Prev. item" msgstr "Önceki öge" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "Uzaklık seçimi" @@ -2185,7 +2232,7 @@ msgstr "Sağ" msgid "Screenshot" msgstr "Ekran yakala" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "Sız" @@ -2193,15 +2240,15 @@ msgstr "Sız" msgid "Toggle HUD" msgstr "HUD'ı aç/kapa" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "Sohbet günlüğünü aç/kapa" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "Hızlıyı aç/kapa" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "Uçmayı aç/kapa" @@ -2209,11 +2256,11 @@ msgstr "Uçmayı aç/kapa" msgid "Toggle fog" msgstr "Sisi aç/kapa" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "Mini haritayı aç/kapa" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "Hayalet aç/kapa" @@ -2221,7 +2268,7 @@ msgstr "Hayalet aç/kapa" msgid "Toggle pitchmove" msgstr "Eğim hareketi aç/kapa" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "Yakınlaştır" @@ -2258,7 +2305,7 @@ msgstr "Eski Parola" msgid "Passwords do not match!" msgstr "Parolalar eşleşmiyor!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "Çıkış" @@ -2271,16 +2318,47 @@ msgstr "Ses Kısık" msgid "Sound Volume: %d%%" msgstr "Ses Seviyesi: %%%d" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Add button" +msgstr "Orta Tuş" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "Tamam!" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Remove" +msgstr "Uzak sunucu" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Joystick" msgstr "Joystick ID" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Toggle debug" msgstr "Sisi aç/kapa" @@ -2505,8 +2583,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" "3D desteği.\n" "Şu an desteklenen:\n" @@ -2571,10 +2648,6 @@ msgstr "Etkin blok uzaklığı" msgid "Active object send range" msgstr "Etkin nesne gönderme uzaklığı" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "Nodları kazarken parçacıklar ekler." - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2604,6 +2677,17 @@ msgstr "Yönetici adı" msgid "Advanced" msgstr "Gelişmiş" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +#, fuzzy +msgid "Allow clouds to look 3D instead of flat." +msgstr "Düz yerine 3D bulut görünümünü kullanın." + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "" @@ -3006,15 +3090,14 @@ msgstr "Bulut yarıçapı" msgid "Clouds" msgstr "Bulutlar" -#: src/settings_translation_file.cpp -#, fuzzy -msgid "Clouds are a client-side effect." -msgstr "Bulutlar istemci tarafı bir efekttir." - #: src/settings_translation_file.cpp msgid "Clouds in menu" msgstr "Ana menüde bulutlar" +#: src/settings_translation_file.cpp +msgid "Color depth for post-processing texture" +msgstr "" + #: src/settings_translation_file.cpp msgid "Colored fog" msgstr "Renkli sis" @@ -3038,7 +3121,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" "İçerik deposunda gizlemek için bayrakların virgülle ayrılmış listesi.\n" "\"nonfree\" Özgür Yazılım Vakfının tanımına göre 'özgür yazılım' olarak\n" @@ -3208,6 +3291,14 @@ msgstr "Hata ayıklama günlük düzeyi" msgid "Debugging" msgstr "Hata ayıklama" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "Adanmış sunucu adımı" @@ -3383,18 +3474,10 @@ msgstr "" "Çöller, np_biome bu değeri aştığında gerçekleşir.\n" "'Snowbiomes' bayrağı etkinleştirildiğinde, bu yok sayılır." -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "Blok animasyonlarını eşzamansız yap" - #: src/settings_translation_file.cpp msgid "Developer Options" msgstr "Geliştirici Seçenekleri" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "Kazı parçacıkları" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "Boş parolalara izin verme" @@ -3422,6 +3505,14 @@ msgstr "Uçma için zıplamaya çift dokun" msgid "Double-tapping the jump key toggles fly mode." msgstr "Zıplama tuşuna çift dokunmak uçma kipini açar/kapar." +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "Mapgen hata ayıklama bilgisini dökümle." @@ -3505,9 +3596,10 @@ msgid "" msgstr "" #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" "Renkli gölgeleri etkinleştir.\n" "Doğru ise yarı saydam düğümlerde renkli gölgeler oluşturur. Bu fazla kaynak " @@ -3593,10 +3685,10 @@ msgstr "" "Örneğin: 0 ise görüntü sallanması yok; 1.0 ise normal; 2.0 ise çift." #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" "IPv6 sunucu çalıştırmayı etkin/devre dışı kılar.\n" "Eğer bind_address ayarlı ise yok sayılır.\n" @@ -3619,13 +3711,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "Envanter ögelerinin animasyonunu etkinleştirir." -#: src/settings_translation_file.cpp -#, fuzzy -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "Yüz yönü döndürülmüş kafeslerin önbelleklenmesini etkinleştirir." - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -3960,10 +4045,6 @@ msgstr "Arayüz boyutlandırma" msgid "GUI scaling filter" msgstr "Arayüz boyutlandırma filtresi" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "Arayüz boyutlandırma filtresi txr2img" - #: src/settings_translation_file.cpp #, fuzzy msgid "Gamepads" @@ -4231,15 +4312,6 @@ msgstr "" "alçalma\n" "için kullanılır." -#: src/settings_translation_file.cpp -#, fuzzy -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" -"Sunucuya bağlanırken kayıt onayını etkinleştir.\n" -"Devre dışı bırakılırsa, yeni hesap kendiliğinden kaydedilir." - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -4263,6 +4335,16 @@ msgid "" "empty password." msgstr "Etkinleştirilirse, yeni oyuncular boş bir parola ile katılamaz." +#: src/settings_translation_file.cpp +#, fuzzy +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" +"Sunucuya bağlanırken kayıt onayını etkinleştir.\n" +"Devre dışı bırakılırsa, yeni hesap kendiliğinden kaydedilir." + #: src/settings_translation_file.cpp #, fuzzy msgid "" @@ -4385,11 +4467,6 @@ msgstr "Kayıt sırasında varlık yöntemlerini belgele." msgid "Interval of saving important changes in the world, stated in seconds." msgstr "Dünyadaki önemli değişiklikleri kaydetme aralığı, saniye cinsinden." -#: src/settings_translation_file.cpp -#, fuzzy -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "Günün saatini istemcilere gönderme aralığı." - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "Envanter ögeleri animasyonu" @@ -5106,10 +5183,6 @@ msgstr "" msgid "Maximum users" msgstr "Maksimum kullanıcı" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "Kafes önbelleği" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "Günün iletisi" @@ -5143,6 +5216,10 @@ msgstr "Her harita yığını için rastgele büyük mağara sayısının alt s msgid "Minimum limit of random number of small caves per mapchunk." msgstr "Her harita yığını için rastgele küçük mağara sayısının alt sınırı." +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "Mip eşleme" @@ -5239,9 +5316,10 @@ msgstr "" "- v7'nin isteğe bağlı yüzenkaraları (öntanımlı olarak devre dışı)." #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" "Oyuncunun adı.\n" @@ -5766,17 +5844,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -6027,16 +6107,6 @@ msgstr "" msgid "Shader path" msgstr "Gölgeleme konumu" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "Gölgelemeler" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "Gölge filtresi kalitesi" @@ -6222,10 +6292,9 @@ msgstr "" #: src/settings_translation_file.cpp #, fuzzy msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" "Yumuşak gölge yarıçapı boyutunu ayarla.\n" "Daha düşük değerler daha keskin, daha büyük değerler daha yumuşak gölgeler " @@ -6605,10 +6674,6 @@ msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "" "Yeni bir Dünya başlatıldığında, milisaat cinsinden (0-23999), günün saati." -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "Zaman gönderme aralığı" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "Zaman hızı" @@ -6677,6 +6742,10 @@ msgstr "Opak sıvılar" msgid "Transparency Sorting Distance" msgstr "" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "Ağaçlar gürültüsü" @@ -6726,12 +6795,16 @@ msgid "Undersampling" msgstr "Aşağı örnekleme" #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Undersampling is similar to using a lower screen resolution, but it applies\n" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" "Alt örnekleme, daha düşük bir ekran çözünürlüğü kullanmaya benzer, ancak\n" "GUI'yi koruyarak, yalnızca oyun dünyasına uygulanır.\n" @@ -6759,17 +6832,15 @@ msgstr "Zindanların üst Y sınırı." msgid "Upper Y limit of floatlands." msgstr "Yüzenkaraların üst Y sınırı." -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "Düz yerine 3D bulut görünümünü kullanın." - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "Ana menü arka planı için bir bulut animasyonu kullan." #: src/settings_translation_file.cpp #, fuzzy -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "Dokulara bir açıdan bakarken anisotropik filtreleme kullan." #: src/settings_translation_file.cpp @@ -7032,27 +7103,15 @@ msgstr "" "yazılım ile filtrelenmesi gerekir, ama bazı görüntüler doğrudan\n" "donanımda üretilir (ör: envanterdeki nodlar için dokuya-işleme)." -#: src/settings_translation_file.cpp -msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" -"gui_scaling_filter_txr2img true (doğru) olduğunda, görüntüleri\n" -"boyutlandırmak için donanımdan yazılıma kopyala. False (yanlış) ise,\n" -"dokuları donanımdan geri indirmeyi düzgün desteklemeyen video\n" -"sürücüleri için, eski boyutlandırma yöntemini kullan." - #: src/settings_translation_file.cpp #, fuzzy msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -7077,12 +7136,6 @@ msgstr "" "Ad etiketi arka planlarının öntanımlı olarak gösterilip gösterilmeyileceği.\n" "Modlar yine de bir arka plan ayarlayabilir." -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" -"Harita bloğu başına nod doku animasyonlarının eşzamansız yapılıp " -"yapılmayacağı." - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -7111,9 +7164,9 @@ msgid "Whether to fog out the end of the visible area." msgstr "Görünebilir alanın sonunun sislendirilip sislendirilmeyeceği." #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -7298,6 +7351,9 @@ msgstr "cURL paralel sınırı" #~ "Yerel bir sunucu başlatmak için bunu boş bırakın.\n" #~ "Ana menüdeki adres alanının bu ayarı geçersiz kılacağını unutmayın." +#~ msgid "Adds particles when digging a node." +#~ msgstr "Nodları kazarken parçacıklar ekler." + #~ msgid "" #~ "Adjust dpi configuration to your screen (non X11/Android only) e.g. for " #~ "4k screens." @@ -7424,6 +7480,10 @@ msgstr "cURL paralel sınırı" #~ msgid "Clean transparent textures" #~ msgstr "Saydam dokuları temizle" +#, fuzzy +#~ msgid "Clouds are a client-side effect." +#~ msgstr "Bulutlar istemci tarafı bir efekttir." + #~ msgid "Command key" #~ msgstr "Komut tuşu" @@ -7517,9 +7577,15 @@ msgstr "cURL paralel sınırı" #~ msgid "Darkness sharpness" #~ msgstr "Karanlık keskinliği" +#~ msgid "Debug info and profiler graph hidden" +#~ msgstr "Hata ayıklama bilgisi ve profilci grafiği gizli" + #~ msgid "Debug info toggle key" #~ msgstr "Hata ayıklama bilgisi açma/kapama tuşu" +#~ msgid "Debug info, profiler graph, and wireframe hidden" +#~ msgstr "Hata ayıklama bilgisi, profilci grafiği ve tel kafes gizli" + #~ msgid "Dec. volume key" #~ msgstr "Ses alçaltma tuşu" @@ -7566,9 +7632,15 @@ msgstr "cURL paralel sınırı" #~ "sıvılarını tanımlayın ve bulun.\n" #~ "Büyük mağaralarda lav üst sınırının Y'si." +#~ msgid "Desynchronize block animation" +#~ msgstr "Blok animasyonlarını eşzamansız yap" + #~ msgid "Dig key" #~ msgstr "Kazma tuşu" +#~ msgid "Digging particles" +#~ msgstr "Kazı parçacıkları" + #~ msgid "Disable anticheat" #~ msgstr "Hile önleme devre dışı" @@ -7594,6 +7666,10 @@ msgstr "cURL paralel sınırı" #~ msgid "Dynamic shadows:" #~ msgstr "Dinamik gölgeler: " +#, fuzzy +#~ msgid "Enable" +#~ msgstr "Etkin" + #~ msgid "Enable VBO" #~ msgstr "VBO'yu etkinleştir" @@ -7628,6 +7704,12 @@ msgstr "cURL paralel sınırı" #~ "veya kendiliğinden üretilmesi gerekir\n" #~ "Gölgelemelerin etkin olmasını gerektirir." +#, fuzzy +#~ msgid "" +#~ "Enables caching of facedir rotated meshes.\n" +#~ "This is only effective with shaders disabled." +#~ msgstr "Yüz yönü döndürülmüş kafeslerin önbelleklenmesini etkinleştirir." + #~ msgid "Enables filmic tone mapping" #~ msgstr "Filmsel ton eşlemeyi etkinleştirir" @@ -7670,9 +7752,6 @@ msgstr "cURL paralel sınırı" #~ "Deneysel seçenek, 0'dan daha büyük bir sayıya ayarlandığında\n" #~ "bloklar arasında görünür boşluklara neden olabilir." -#~ msgid "FPS in pause menu" -#~ msgstr "Duraklat menüsünde FPS" - #~ msgid "FSAA" #~ msgstr "FSAA" @@ -7759,8 +7838,8 @@ msgstr "cURL paralel sınırı" #~ msgid "Full screen BPP" #~ msgstr "Tam ekran BPP" -#~ msgid "Game" -#~ msgstr "Oyun" +#~ msgid "GUI scaling filter txr2img" +#~ msgstr "Arayüz boyutlandırma filtresi txr2img" #~ msgid "Gamma" #~ msgstr "Gama" @@ -7923,659 +8002,666 @@ msgstr "cURL paralel sınırı" #~ msgid "Instrumentation" #~ msgstr "Belgeleme" +#, fuzzy +#~ msgid "Interval of sending time of day to clients, stated in seconds." +#~ msgstr "Günün saatini istemcilere gönderme aralığı." + #~ msgid "Invalid gamespec." #~ msgstr "Geçersiz oyun özellikleri." #~ msgid "Inventory key" #~ msgstr "Envanter tuşu" +#~ msgid "Irrlicht device:" +#~ msgstr "Irrlicht aygıtı:" + #~ msgid "Jump key" #~ msgstr "Zıplama tuşu" #~ msgid "" #~ "Key for decreasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Görüntüleme uzaklığını azaltma tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for decreasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Ses alçaltma tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for digging.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kazma tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for dropping the currently selected item.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "O anki seçili ögeyi atma tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Görüntüleme uzaklığını artırma tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Ses yükseltme tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for jumping.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Zıplama tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving fast in fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Hızlı kipte hızlı hareket tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player backward.\n" #~ "Will also disable autoforward, when active.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Oyuncuyu geriye hareket ettirme tuşu.\n" #~ "Etkinken, kendiliğinden ileriyi de devre dışı kılar\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player forward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Oyuncuyu ileri hareket ettirme tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player left.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Oyuncuyu sola hareket ettirme tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player right.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Oyuncuyu sağa hareket ettirme tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for muting the game.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Ses kısma tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Komut yazmak için sohbet penceresini açma tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type local commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Yerel komutlar yazmak için sohbet penceresini açma tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Sohbet penceresini açma tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the inventory.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Envanteri açma tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for placing.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Yerleştirme tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 11th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "11. hotbar bölmesini seçme tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 12th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "12. hotbar bölmesini seçme tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 13th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "13. hotbar bölmesini seçme tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 14th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "14. hotbar bölmesini seçme tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 15th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "15. hotbar bölmesini seçme tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 16th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "16. hotbar bölmesini seçme tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 17th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "17. hotbar bölmesini seçme tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 18th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "18. hotbar bölmesini seçme tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 19th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "19. hotbar bölmesini seçme tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 20th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "20. hotbar bölmesini seçme tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 21st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "21. hotbar bölmesini seçme tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 22nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "22. hotbar bölmesini seçme tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 23rd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "23. hotbar bölmesini seçme tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 24th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "24. hotbar bölmesini seçme tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 25th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "25. hotbar bölmesini seçme tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 26th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "26. hotbar bölmesini seçme tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 27th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "27. hotbar bölmesini seçme tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 28th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "28. hotbar bölmesini seçme tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 29th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "29. hotbar bölmesini seçme tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 30th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "30. hotbar bölmesini seçme tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 31st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "31. hotbar bölmesini seçme tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 32nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "32. hotbar bölmesini seçme tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the eighth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "8. hotbar bölmesini seçme tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the fifth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "5. hotbar bölmesini seçme tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the first hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "1. hotbar bölmesini seçme tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the fourth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "4. hotbar bölmesini seçme tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the next item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Hotbar'da sonraki ögeyi seçme tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the ninth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "9. hotbar bölmesini seçme tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the previous item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Hotbar'da önceki ögeyi seçme tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the second hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "2. hotbar bölmesini seçme tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the seventh hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "7. hotbar bölmesini seçme tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the sixth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "6. hotbar bölmesini seçme tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the tenth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "10. hotbar bölmesini seçme tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the third hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "3. hotbar bölmesini seçme tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for sneaking.\n" #~ "Also used for climbing down and descending in water if aux1_descends is " #~ "disabled.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Sızma tuşu.\n" #~ "Aynı zamanda aşağı inmek ve, aux1_descends kapalı ise, suda alçalmak için " #~ "kullanılır.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for switching between first- and third-person camera.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Birinci ve üçüncü kişi kamerası arası geçiş tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for taking screenshots.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Ekran yakalama tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling autoforward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kendiliğinden ileriyi açma/kapama tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling cinematic mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Sinematik kipi açma/kapama tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling display of minimap.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Mini harita gösterme/gizleme tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Hızlı kipi açma/kapama tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling flying.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Uçma açma/kapama tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling noclip mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Hayalet kipi açma/kapama tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling pitch move mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Eğim hareket kipi açma/kapama tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the camera update. Only used for development\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Kamera güncelleme açma/kapama tuşu. Yalnızca geliştirme için kullanılır.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of chat.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Sohbet gösterme/gizleme tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of debug info.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Hata ayıklama bilgisi gösterme/gizleme tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of fog.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Sis gösterme/gizleme tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the HUD.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "HUD gösterme/gizleme tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the large chat console.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Büyük sohbet konsolunu gösterme/gizleme tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the profiler. Used for development.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Profilciyi gösterme/gizleme tuşu. Geliştirme için kullanılır.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling unlimited view range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Sınırsız görüş uzaklığı açma/kapama tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key to use view zoom when possible.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Mümkün olduğunda görünüm yakınlaştırmayı kullanma tuşu.\n" -#~ "Bakın: http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Bakın: http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Keybindings. (If this menu screws up, remove stuff from minetest.conf)" @@ -8640,6 +8726,9 @@ msgstr "cURL paralel sınırı" #~ msgid "Menus" #~ msgstr "Menüler" +#~ msgid "Mesh cache" +#~ msgstr "Kafes önbelleği" + #~ msgid "Minimap" #~ msgstr "Mini harita" @@ -8854,6 +8943,9 @@ msgstr "cURL paralel sınırı" #~ "anlamına gelir, ancak daha fazla kaynak tüketir.\n" #~ "En düşük değer 0,001 saniye, en yüksek değer 0,2 saniyedir" +#~ msgid "Shaders" +#~ msgstr "Gölgelemeler" + #~ msgid "Shaders (experimental)" #~ msgstr "Gölgelendirme (deneysel)" @@ -8871,6 +8963,10 @@ msgstr "cURL paralel sınırı" #~ "artırabilir.\n" #~ "Bu yalnızca OpenGL video arka ucu ile çalışır." +#, fuzzy +#~ msgid "Shaders are disabled." +#~ msgstr "Kamera güncelleme devre dışı" + #~ msgid "Shadow limit" #~ msgstr "Gölge sınırı" @@ -8902,6 +8998,9 @@ msgstr "cURL paralel sınırı" #~ msgid "Smooths rotation of camera. 0 to disable." #~ msgstr "Kamera dönüşünü yumuşatır. 0 devre dışı bırakır." +#~ msgid "Sound system is disabled" +#~ msgstr "Ses sistemi devre dışı" + #~ msgid "Special" #~ msgstr "Özel" @@ -8945,6 +9044,9 @@ msgstr "cURL paralel sınırı" #~ msgid "This font will be used for certain languages." #~ msgstr "Belirli diller için bu yazı tipi kullanılacak." +#~ msgid "Time send interval" +#~ msgstr "Zaman gönderme aralığı" + #~ msgid "To enable shaders the OpenGL driver needs to be used." #~ msgstr "OpenGL sürücüleri seçilmeden gölgelemeler etkinleştirilemez." @@ -9049,6 +9151,17 @@ msgstr "cURL paralel sınırı" #~ msgid "Waving water" #~ msgstr "Dalgalanan su" +#~ msgid "" +#~ "When gui_scaling_filter_txr2img is true, copy those images\n" +#~ "from hardware to software for scaling. When false, fall back\n" +#~ "to the old scaling method, for video drivers that don't\n" +#~ "properly support downloading textures back from hardware." +#~ msgstr "" +#~ "gui_scaling_filter_txr2img true (doğru) olduğunda, görüntüleri\n" +#~ "boyutlandırmak için donanımdan yazılıma kopyala. False (yanlış) ise,\n" +#~ "dokuları donanımdan geri indirmeyi düzgün desteklemeyen video\n" +#~ "sürücüleri için, eski boyutlandırma yöntemini kullan." + #~ msgid "" #~ "Whether FreeType fonts are used, requires FreeType support to be compiled " #~ "in.\n" @@ -9061,6 +9174,12 @@ msgstr "cURL paralel sınırı" #~ msgid "Whether dungeons occasionally project from the terrain." #~ msgstr "Zindanların bazen araziden yansıyıp yansımayacağı." +#~ msgid "" +#~ "Whether node texture animations should be desynchronized per mapblock." +#~ msgstr "" +#~ "Harita bloğu başına nod doku animasyonlarının eşzamansız yapılıp " +#~ "yapılmayacağı." + #~ msgid "Whether to allow players to damage and kill each other." #~ msgstr "" #~ "Oyuncuların birbirini öldürmesine veya zarar vermesine izin verilip " diff --git a/po/tt/luanti.po b/po/tt/luanti.po index 4d09d8023..fe4b60abd 100644 --- a/po/tt/luanti.po +++ b/po/tt/luanti.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: minetest\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" "PO-Revision-Date: 2023-10-29 05:22+0000\n" "Last-Translator: Timur Seber \n" "Language-Team: Tatar ] [-t]" msgstr "[all | <команда>]" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "Карап чыгу" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "Төзәтү" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "Каталогны сайлау" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "Файлны сайлау" + +#: builtin/common/settings/components.lua +msgid "Set" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "Баш тарту" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "Октавлар" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "Саклау" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +#, fuzzy +msgid "Chat" +msgstr "Чат" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "Чистарту" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Enabled" +msgstr "$1 (Кабызылган)" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "Эзләү" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Touchscreen layout" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "pause_menu" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Client Mods" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "Үзгә" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "Урта" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "" + #: builtin/fstk/ui.lua msgid "" msgstr "<мөмкин түгел>" @@ -163,7 +403,6 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "" @@ -199,11 +438,6 @@ msgstr "Модлар" msgid "No packages could be retrieved" msgstr "" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "Яңартулар юк" @@ -248,18 +482,6 @@ msgstr "" msgid "Base Game:" msgstr "" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "Баш тарту" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua #, fuzzy @@ -384,6 +606,12 @@ msgstr "" msgid "Unable to install a $1 as a texture pack" msgstr "" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "" @@ -447,12 +675,6 @@ msgstr "" msgid "Optional dependencies:" msgstr "" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "Саклау" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "Дөнья:" @@ -603,11 +825,6 @@ msgstr "Елгалар" msgid "Sea level rivers" msgstr "" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "" @@ -743,6 +960,23 @@ msgid "" "override any renaming here." msgstr "" +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "Барысын да кабызу" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "" @@ -767,7 +1001,7 @@ msgstr "Беркайчан да" msgid "Visit website" msgstr "Вебсайтны карау" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "Көйләүләр" @@ -779,226 +1013,6 @@ msgstr "" msgid "Try reenabling public serverlist and check your internet connection." msgstr "" -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "Карап чыгу" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "Төзәтү" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "Каталогны сайлау" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "Файлны сайлау" - -#: builtin/mainmenu/settings/components.lua -msgid "Set" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "Октавлар" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -#, fuzzy -msgid "Chat" -msgstr "Чат" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "Чистарту" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Enabled" -msgstr "$1 (Кабызылган)" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "Эзләү" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "Барысын да кабызу" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "Shaders are disabled." -msgstr "" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "Үзгә" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "Урта" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "Хакында" @@ -1019,10 +1033,6 @@ msgstr "" msgid "Core Team" msgstr "" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "Irrlicht җиһазы:" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "" @@ -1169,11 +1179,22 @@ msgstr "" msgid "You need to install a game before you can create a world." msgstr "" +#: builtin/mainmenu/tab_online.lua +msgid "Add favorite" +msgstr "" + #: builtin/mainmenu/tab_online.lua #, fuzzy msgid "Address" msgstr "Адрес" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "Клиент" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "" @@ -1187,6 +1208,11 @@ msgstr "" msgid "Favorites" msgstr "" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "Уеннар" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "" @@ -1199,10 +1225,26 @@ msgstr "" msgid "Login" msgstr "Керү" +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +msgid "Open server website" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "Пинг" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Public Servers" msgstr "" @@ -1285,24 +1327,6 @@ msgid "" "Check debug.txt for details." msgstr "" -#: src/client/game.cpp -#, fuzzy -msgid "- Mode: " -msgstr "- Режим: " - -#: src/client/game.cpp -msgid "- Public: " -msgstr "" - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "" - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "- Сервер исеме: " - #: src/client/game.cpp msgid "A serialization error occurred:" msgstr "Сериалештерү хатасы килеп чыкты:" @@ -1312,6 +1336,10 @@ msgstr "Сериалештерү хатасы килеп чыкты:" msgid "Access denied. Reason: %s" msgstr "" +#: src/client/game.cpp +msgid "All debug info hidden" +msgstr "" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "" @@ -1332,6 +1360,10 @@ msgstr "" msgid "Block bounds shown for nearby blocks" msgstr "" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "" @@ -1344,10 +1376,6 @@ msgstr "" msgid "Can't show block bounds (disabled by game or mod)" msgstr "" -#: src/client/game.cpp -msgid "Change Password" -msgstr "" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "" @@ -1376,26 +1404,6 @@ msgstr "" msgid "Connection failed for unknown reason" msgstr "" -#: src/client/game.cpp -msgid "Continue" -msgstr "Дәвам итү" - -#: src/client/game.cpp -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1409,31 +1417,15 @@ msgstr "" msgid "Creating server..." msgstr "" -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "" - #: src/client/game.cpp msgid "Debug info shown" msgstr "" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "" - #: src/client/game.cpp #, c-format msgid "Error creating client: %s" msgstr "" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "Менюга чыгу" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "Уеннан чыгу" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "" @@ -1470,18 +1462,6 @@ msgstr "" msgid "Fog enabled by game or mod" msgstr "" -#: src/client/game.cpp -msgid "Game info:" -msgstr "" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "" - #: src/client/game.cpp msgid "Item definitions..." msgstr "" @@ -1518,14 +1498,6 @@ msgstr "" msgid "Node definitions..." msgstr "" -#: src/client/game.cpp -msgid "Off" -msgstr "Сүнгән" - -#: src/client/game.cpp -msgid "On" -msgstr "Кабынган" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "" @@ -1538,38 +1510,22 @@ msgstr "" msgid "Profiler graph shown" msgstr "" -#: src/client/game.cpp -msgid "Remote server" -msgstr "" - #: src/client/game.cpp msgid "Resolving address..." msgstr "" -#: src/client/game.cpp -msgid "Respawn" -msgstr "Тергезелергә" - #: src/client/game.cpp msgid "Shutting down..." msgstr "" -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "Тавыш көче" - #: src/client/game.cpp msgid "Sound muted" msgstr "" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "" @@ -1641,18 +1597,104 @@ msgstr "" msgid "Volume changed to %d%%" msgstr "" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "" -#: src/client/game.cpp -msgid "You died" -msgstr "Сез үлдегез" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "" +#: src/client/game_formspec.cpp +#, fuzzy +msgid "- Mode: " +msgstr "- Режим: " + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "" + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "" + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "- Сервер исеме: " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "Дәвам итү" + +#: src/client/game_formspec.cpp +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "Менюга чыгу" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "Уеннан чыгу" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "Сүнгән" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "Кабынган" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "Тергезелергә" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "Тавыш көче" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "Сез үлдегез" + #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" msgstr "" @@ -1985,7 +2027,7 @@ msgid "Failed to compile the \"%s\" shader." msgstr "" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." +msgid "GLSL is not supported by the driver" msgstr "" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" @@ -2033,7 +2075,7 @@ msgstr "" msgid "Automatic jumping" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp #, fuzzy msgid "Aux1" msgstr "Aux1" @@ -2046,7 +2088,7 @@ msgstr "Кирегә" msgid "Block bounds" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "" @@ -2071,7 +2113,7 @@ msgstr "" msgid "Double tap \"jump\" to toggle fly" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "" @@ -2087,11 +2129,11 @@ msgstr "" msgid "Inc. volume" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "Инвентарь" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "" @@ -2123,7 +2165,7 @@ msgstr "" msgid "Prev. item" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "" @@ -2135,7 +2177,7 @@ msgstr "" msgid "Screenshot" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "" @@ -2143,15 +2185,15 @@ msgstr "" msgid "Toggle HUD" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "" @@ -2159,11 +2201,11 @@ msgstr "" msgid "Toggle fog" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "" @@ -2171,7 +2213,7 @@ msgstr "" msgid "Toggle pitchmove" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "" @@ -2207,7 +2249,7 @@ msgstr "Иске серсүз" msgid "Passwords do not match!" msgstr "" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "Чыгу" @@ -2220,15 +2262,44 @@ msgstr "" msgid "Sound Volume: %d%%" msgstr "Тавыш көче: %d%%" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +msgid "Add button" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "Әзер!" + +#: src/gui/touchscreeneditor.cpp +msgid "Remove" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp msgid "Joystick" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Toggle debug" msgstr "" @@ -2424,8 +2495,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" #: src/settings_translation_file.cpp @@ -2478,10 +2548,6 @@ msgstr "" msgid "Active object send range" msgstr "" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "" - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2504,6 +2570,16 @@ msgstr "" msgid "Advanced" msgstr "Өстәмә" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Allow clouds to look 3D instead of flat." +msgstr "" + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "" @@ -2875,11 +2951,11 @@ msgid "Clouds" msgstr "Болытлар" #: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." +msgid "Clouds in menu" msgstr "" #: src/settings_translation_file.cpp -msgid "Clouds in menu" +msgid "Color depth for post-processing texture" msgstr "" #: src/settings_translation_file.cpp @@ -2904,7 +2980,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" #: src/settings_translation_file.cpp @@ -3039,6 +3115,14 @@ msgstr "" msgid "Debugging" msgstr "Хата табу" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "" @@ -3190,18 +3274,10 @@ msgid "" "When the 'snowbiomes' flag is enabled, this is ignored." msgstr "" -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "" - #: src/settings_translation_file.cpp msgid "Developer Options" msgstr "" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "" @@ -3229,6 +3305,14 @@ msgstr "" msgid "Double-tapping the jump key toggles fly mode." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "" @@ -3303,8 +3387,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" #: src/settings_translation_file.cpp @@ -3377,8 +3461,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" #: src/settings_translation_file.cpp @@ -3393,12 +3476,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "" - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -3701,10 +3778,6 @@ msgstr "" msgid "GUI scaling filter" msgstr "" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "" - #: src/settings_translation_file.cpp msgid "Gamepads" msgstr "" @@ -3931,12 +4004,6 @@ msgid "" "descending." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -3955,6 +4022,13 @@ msgid "" "empty password." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4049,10 +4123,6 @@ msgstr "" msgid "Interval of saving important changes in the world, stated in seconds." msgstr "" -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "" - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "" @@ -4671,10 +4741,6 @@ msgstr "" msgid "Maximum users" msgstr "" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "" @@ -4707,6 +4773,10 @@ msgstr "" msgid "Minimum limit of random number of small caves per mapchunk." msgstr "" +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "" @@ -4796,7 +4866,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" @@ -5236,17 +5306,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5439,16 +5511,6 @@ msgstr "" msgid "Shader path" msgstr "" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "" @@ -5610,10 +5672,9 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" #: src/settings_translation_file.cpp @@ -5892,10 +5953,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "" -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "" @@ -5954,6 +6011,10 @@ msgstr "" msgid "Transparency Sorting Distance" msgstr "" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "" @@ -6004,7 +6065,10 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" #: src/settings_translation_file.cpp @@ -6027,16 +6091,14 @@ msgstr "" msgid "Upper Y limit of floatlands." msgstr "" -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "" - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "" #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" #: src/settings_translation_file.cpp @@ -6273,20 +6335,12 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -6297,10 +6351,6 @@ msgid "" "Mods may still set a background." msgstr "" -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -6323,8 +6373,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -6463,6 +6512,13 @@ msgstr "" #~ msgid "Damage" #~ msgstr "Зыян" +#, fuzzy +#~ msgid "Enable" +#~ msgstr "Барысын да кабызу" + +#~ msgid "Irrlicht device:" +#~ msgstr "Irrlicht җиһазы:" + #, fuzzy #~ msgid "You died." #~ msgstr "Сез үлдегез" diff --git a/po/uk/luanti.po b/po/uk/luanti.po index 5a281c7ec..8f1d25a86 100644 --- a/po/uk/luanti.po +++ b/po/uk/luanti.po @@ -2,9 +2,9 @@ msgid "" msgstr "" "Project-Id-Version: Ukrainian (Minetest)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" -"PO-Revision-Date: 2024-11-04 01:00+0000\n" -"Last-Translator: Yof \n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" +"PO-Revision-Date: 2025-02-05 11:03+0000\n" +"Last-Translator: Тарас Арт \n" "Language-Team: Ukrainian \n" "Language: uk\n" @@ -13,7 +13,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\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" -"X-Generator: Weblate 5.8.2\n" +"X-Generator: Weblate 5.10-dev\n" #: builtin/client/chatcommands.lua msgid "Clear the out chat queue" @@ -78,6 +78,245 @@ msgstr "" msgid "[all | ] [-t]" msgstr "[all | <команда>] [-t]" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "Оглянути" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "Редагувати" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "Виберіть каталог" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "Виберіть файл" + +#: builtin/common/settings/components.lua +msgid "Set" +msgstr "Задати" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(не задані описи налаштувань)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "2D-шум" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "Скасувати" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "Порожнистість" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "Октави" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "Зсув" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "Постійність" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "Зберегти" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "Шкала" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "Зерно" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "Поширення за X" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "Поширення за Y" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "Поширення за Z" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "Абс. величина" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "За замовчанням" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "полегшений" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "(В грі також буде потрібно увімкнути автоматичні тіні)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "(В грі також потрібно увімкнути розмиття)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "(В грі також потрібно увімкнути об'ємне освітлення)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "(Використувати мову системи)" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "Доступність" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "Авто" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "Чат" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "Очистити" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "Керування" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "Вимкнено" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "Увімкнено" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "Загальне" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "Пересування" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "Немає результатів" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default" +msgstr "Відновити типове налаштування" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "Відновити типове налаштування ($1)" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "Пошук" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "Просунуті налаштування" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "Показувати технічні назви" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Touchscreen layout" +msgstr "Сенсорний екран" + +#: builtin/common/settings/dlg_settings.lua +msgid "pause_menu" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +msgid "Client Mods" +msgstr "Клієнтські моди" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "Вміст: Ігри" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "Вміст: Моди" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "(грі також буде потрібно увімкнути тіні)" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "Користувацький" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "Динамічні тіні" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "Високий" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "Низький" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "Середній" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "Дуже високий" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "Дуже низький" + #: builtin/fstk/ui.lua msgid "" msgstr "<немає доступних>" @@ -164,7 +403,6 @@ msgstr "Все" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "Назад" @@ -178,7 +416,7 @@ msgstr "Завантаження..." #: builtin/mainmenu/content/dlg_contentdb.lua msgid "Featured" -msgstr "" +msgstr "Рекомендовано" #: builtin/mainmenu/content/dlg_contentdb.lua msgid "Games" @@ -200,11 +438,6 @@ msgstr "Моди" msgid "No packages could be retrieved" msgstr "Не вдалося отримати пакунки" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "Нічого не знайдено" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "Немає оновлень" @@ -249,18 +482,6 @@ msgstr "Вже встановлено" msgid "Base Game:" msgstr "Основна гра:" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "Скасувати" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -328,15 +549,15 @@ msgstr "Встановити [$1]" #: builtin/mainmenu/content/dlg_package.lua msgid "Issue Tracker" -msgstr "" +msgstr "Трекер Проблем" #: builtin/mainmenu/content/dlg_package.lua msgid "Source" -msgstr "" +msgstr "Джерело" #: builtin/mainmenu/content/dlg_package.lua msgid "Translate" -msgstr "" +msgstr "Перекласти" #: builtin/mainmenu/content/dlg_package.lua builtin/mainmenu/tab_content.lua msgid "Uninstall" @@ -347,17 +568,16 @@ msgid "Update" msgstr "Оновити" #: builtin/mainmenu/content/dlg_package.lua -#, fuzzy msgid "Website" msgstr "Відвідати сайт" #: builtin/mainmenu/content/dlg_package.lua msgid "by $1 — $2 downloads — +$3 / $4 / -$5" -msgstr "" +msgstr "Зроблено $1 — $2 загрузок — +$3 / $4 / -$5" #: builtin/mainmenu/content/pkgmgr.lua msgid "$1 (Enabled)" -msgstr "$1 (увімкнено)" +msgstr "$1 (увімкненно)" #: builtin/mainmenu/content/pkgmgr.lua msgid "$1 mods" @@ -383,9 +603,15 @@ msgstr "Не вдалося встановити $1 як $2" msgid "Unable to install a $1 as a texture pack" msgstr "Не вдалося встановити $1 як набір текстур" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" -msgstr "(Увімкнено, є помилка)" +msgstr "(Увімкненно, є помилка)" #: builtin/mainmenu/dlg_config_world.lua msgid "(Unsatisfied)" @@ -425,7 +651,7 @@ msgstr "Мод:" #: builtin/mainmenu/dlg_config_world.lua msgid "No (optional) dependencies" -msgstr "Відсутні (необовʼязкові) залежності" +msgstr "Відсутні (необов'язкові) залежності" #: builtin/mainmenu/dlg_config_world.lua msgid "No game description provided." @@ -433,7 +659,7 @@ msgstr "Опис гри відсутній." #: builtin/mainmenu/dlg_config_world.lua msgid "No hard dependencies" -msgstr "Без обовʼязкових залежностей" +msgstr "Без обов'язкових залежностей" #: builtin/mainmenu/dlg_config_world.lua msgid "No modpack description provided." @@ -441,17 +667,11 @@ msgstr "Опис пакмода відсутній." #: builtin/mainmenu/dlg_config_world.lua msgid "No optional dependencies" -msgstr "Відсутні необовʼязкові залежності" +msgstr "Відсутні необов'язкові залежності" #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Optional dependencies:" -msgstr "Необовʼязкові залежності:" - -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "Зберегти" +msgstr "Необов'язкові залежності:" #: builtin/mainmenu/dlg_config_world.lua msgid "World:" @@ -459,7 +679,7 @@ msgstr "Світ:" #: builtin/mainmenu/dlg_config_world.lua msgid "enabled" -msgstr "увімкнено" +msgstr "увімкненно" #: builtin/mainmenu/dlg_create_world.lua msgid "A world named \"$1\" already exists" @@ -467,7 +687,7 @@ msgstr "Світ з назвою \"$1\" вже існує" #: builtin/mainmenu/dlg_create_world.lua msgid "Additional terrain" -msgstr "Додаткова місцевість" +msgstr "Додатковий ландшафт" #: builtin/mainmenu/dlg_create_world.lua src/settings_translation_file.cpp msgid "Altitude chill" @@ -487,7 +707,7 @@ msgstr "Біоми" #: builtin/mainmenu/dlg_create_world.lua msgid "Caverns" -msgstr "Каверни" +msgstr "Печери" #: builtin/mainmenu/dlg_create_world.lua msgid "Caves" @@ -503,7 +723,7 @@ msgstr "Декорації" #: builtin/mainmenu/dlg_create_world.lua msgid "Desert temples" -msgstr "Храми пустель" +msgstr "Пустельні храми" #: builtin/mainmenu/dlg_create_world.lua msgid "Development Test is meant for developers." @@ -523,7 +743,7 @@ msgstr "Підземелля" #: builtin/mainmenu/dlg_create_world.lua msgid "Flat terrain" -msgstr "Рівна місцевість" +msgstr "Рівний ландшафт" #: builtin/mainmenu/dlg_create_world.lua msgid "Floating landmasses in the sky" @@ -605,11 +825,6 @@ msgstr "Річки" msgid "Sea level rivers" msgstr "Річки на рівні моря" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "Зерно" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "Плавний перехід між біомами" @@ -694,7 +909,7 @@ msgstr "Назва відсутня" #: builtin/mainmenu/dlg_register.lua builtin/mainmenu/tab_local.lua #: builtin/mainmenu/tab_online.lua msgid "Name" -msgstr "Ім'я" +msgstr "Назва" #: builtin/mainmenu/dlg_register.lua builtin/mainmenu/tab_local.lua #: builtin/mainmenu/tab_online.lua @@ -707,21 +922,19 @@ msgstr "Паролі не збігаються" #: builtin/mainmenu/dlg_register.lua builtin/mainmenu/tab_online.lua msgid "Register" -msgstr "Реєстрація" +msgstr "Зареєструватися" #: builtin/mainmenu/dlg_reinstall_mtg.lua msgid "Dismiss" msgstr "Відмовитись" #: builtin/mainmenu/dlg_reinstall_mtg.lua -#, fuzzy msgid "" "For a long time, Luanti shipped with a default game called \"Minetest " "Game\". Since version 5.8.0, Luanti ships without a default game." msgstr "" -"Довгий час, рушій Minetest встановлювався разом зі звичайною грою під назвою " -"\"Minetest Game\". З версії 5.8.0, Minetest встановлювається без звичайної " -"гри." +"Довгий час, рушій Luanti встановлювався разом зі звичайною грою під назвою " +"\"Minetest Game\". З версії 5.8.0, Luanti встановлювається без звичайної гри." #: builtin/mainmenu/dlg_reinstall_mtg.lua msgid "" @@ -754,6 +967,23 @@ msgid "" msgstr "" "Цей пакмод має явну назву в modpack.conf, на що не вплине перейменування." +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "Увімкнути все" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "Доступна нова версія $1" @@ -782,7 +1012,7 @@ msgstr "Ніколи" msgid "Visit website" msgstr "Відвідати сайт" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "Налаштування" @@ -796,231 +1026,9 @@ msgstr "" "Спробуйте оновити список публічних серверів та перевірте своє Інтернет-" "з'єднання." -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "Оглянути" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "Редагувати" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "Виберіть каталог" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "Виберіть файл" - -#: builtin/mainmenu/settings/components.lua -msgid "Set" -msgstr "Задати" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(не задані описи налаштувань)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "2D-шум" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "Порожнистість" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "Октави" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "Зсув" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "Постійність" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "Шкала" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "Поширення за X" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "Поширення за Y" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "Поширення за Z" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "Абс. величина" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "За замовчанням" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "полегшений" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable automatic exposure as well)" -msgstr "(грі також буде потрібно увімкнути тіні)" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable bloom as well)" -msgstr "(грі також буде потрібно увімкнути тіні)" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "(грі також буде потрібно увімкнути тіні)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "(Використувати мову системи)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "Доступність" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "Чат" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "Очистити" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "Керування" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "Вимкнено" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "Увімкнено" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "Загальне" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "Рух" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default" -msgstr "Відновити типове налаштування" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "Відновити типове налаштування ($1)" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "Пошук" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "Просунуті налаштування" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "Показувати технічні назви" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "Клієнтські моди" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "Вміст: Ігри" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "Вміст: Моди" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "Увімкнено" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Shaders are disabled." -msgstr "Оновлення камери вимкнено" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "(грі також буде потрібно увімкнути тіні)" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "Користувацький" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "Динамічні тіні" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "Високий" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "Низький" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "Середній" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "Дуже високий" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "Дуже низький" - #: builtin/mainmenu/tab_about.lua msgid "About" -msgstr "Про рушій" +msgstr "Деталі" #: builtin/mainmenu/tab_about.lua msgid "Active Contributors" @@ -1038,10 +1046,6 @@ msgstr "Основні розробники" msgid "Core Team" msgstr "Основна команда" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "Пристрій Irrlicht:" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "Відкрити каталог користувацьких даних" @@ -1143,17 +1147,16 @@ msgid "Install games from ContentDB" msgstr "Встановити ігри з ContentDB" #: builtin/mainmenu/tab_local.lua -#, fuzzy msgid "Luanti doesn't come with a game by default." -msgstr "Minetest більше не встановлювається з грою." +msgstr "Luanti більше не стоїть по замовчуванню." #: builtin/mainmenu/tab_local.lua -#, fuzzy msgid "" "Luanti is a game-creation platform that allows you to play many different " "games." msgstr "" -"Minetest – це ігрова платформа, що дозволяє вам грати у багато різних ігор." +"Luanti– це ігрова платформа для створення модифікацій, що дозволяє вам грати " +"у багато різних ігор." #: builtin/mainmenu/tab_local.lua msgid "New" @@ -1191,10 +1194,22 @@ msgstr "Почати гру" msgid "You need to install a game before you can create a world." msgstr "Вам потрібно встановити гру перед ти, як створювати світ." +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "Видалити улюблений" + #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "Адреса" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "Клієнт" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "Творчий режим" @@ -1208,6 +1223,11 @@ msgstr "Пошкодження / PvP" msgid "Favorites" msgstr "Відібрані" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "Гра" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "Несумісні сервери" @@ -1220,10 +1240,28 @@ msgstr "Долучитися до гри" msgid "Login" msgstr "Логін" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Number of mods: $1" +msgstr "Кількість потоків підвантаження" + +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Open server website" +msgstr "Крок виділеного серверу" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "Затримка" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Public Servers" msgstr "Публічні сервери" @@ -1308,23 +1346,6 @@ msgstr "" "\n" "Подробиці у файлі debug.txt." -#: src/client/game.cpp -msgid "- Mode: " -msgstr "- Режим: " - -#: src/client/game.cpp -msgid "- Public: " -msgstr "- Публічний: " - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "- ГпГ (бої): " - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "- Назва сервера: " - #: src/client/game.cpp msgid "A serialization error occurred:" msgstr "Трапилася помилка серіалізації:" @@ -1334,6 +1355,11 @@ msgstr "Трапилася помилка серіалізації:" msgid "Access denied. Reason: %s" msgstr "Доступ відхилено. Причина: %s" +#: src/client/game.cpp +#, fuzzy +msgid "All debug info hidden" +msgstr "Інформація для налагодження увімкнена" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "Автоматичний рух вперед вимкнено" @@ -1354,6 +1380,10 @@ msgstr "Межі показуються у поточного блоку" msgid "Block bounds shown for nearby blocks" msgstr "Межі показуються у близьких блоків" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "Оновлення камери вимкнено" @@ -1366,10 +1396,6 @@ msgstr "Оновлення камери увімкнено" msgid "Can't show block bounds (disabled by game or mod)" msgstr "Неможливо показати межі блоків (вимкнено грою або модом)" -#: src/client/game.cpp -msgid "Change Password" -msgstr "Змінити пароль" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "Кінорежим вимкнено" @@ -1398,38 +1424,6 @@ msgstr "Помилка зʼєднання (час вийшов?)" msgid "Connection failed for unknown reason" msgstr "Невдале зʼєднання з невідомих причин" -#: src/client/game.cpp -msgid "Continue" -msgstr "Продовжити" - -#: src/client/game.cpp -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" -"Керування:\n" -"Коли немає відкритих меню:\n" -"- проведення пальцем: роззирнутися\n" -"- дотик: встановити/вдарити/використати\n" -"- довгий дотик: копати/використати\n" -"У відкритому меню або інвертарі:\n" -"- подвійний дотик (поза межами):\n" -" --> закрити\n" -"- доторкання купи, доторкання комірки\n" -" --> перемістити купу\n" -"- доторкання і перетягування, дотик другим пальцем\n" -" --> помістити один предмет у комірку\n" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1443,31 +1437,15 @@ msgstr "Створення клієнта..." msgid "Creating server..." msgstr "Створення сервера..." -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "Відомості налагодження та графік профайлера приховано" - #: src/client/game.cpp msgid "Debug info shown" msgstr "Інформація для налагодження увімкнена" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "Відомості налагодження, графік профайлера й каркас приховано" - #: src/client/game.cpp #, c-format msgid "Error creating client: %s" msgstr "Помилка створення клієнта: %s" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "Вихід у меню" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "Вихід із гри" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "Швидкий рух вимкнено" @@ -1504,18 +1482,6 @@ msgstr "Туман увімкнено" msgid "Fog enabled by game or mod" msgstr "Туман увімкнено грою або модом" -#: src/client/game.cpp -msgid "Game info:" -msgstr "Інформація про гру:" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "Гра на паузі" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "Сервер (хост)" - #: src/client/game.cpp msgid "Item definitions..." msgstr "Визначення предметів..." @@ -1552,14 +1518,6 @@ msgstr "Прохід крізь стіни увімкнено (немає доз msgid "Node definitions..." msgstr "Визначення блоків..." -#: src/client/game.cpp -msgid "Off" -msgstr "Вимк." - -#: src/client/game.cpp -msgid "On" -msgstr "Увім." - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "Осьовий політ вимкнено" @@ -1572,38 +1530,22 @@ msgstr "Осьовий політ увімкнено" msgid "Profiler graph shown" msgstr "Графік профайлера відображено" -#: src/client/game.cpp -msgid "Remote server" -msgstr "Віддалений сервер" - #: src/client/game.cpp msgid "Resolving address..." msgstr "Отримання адреси..." -#: src/client/game.cpp -msgid "Respawn" -msgstr "Відродитися" - #: src/client/game.cpp msgid "Shutting down..." msgstr "Вимкнення..." -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "Одиночна гра" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "Гучність звуку" - #: src/client/game.cpp msgid "Sound muted" msgstr "Звук вимкнено" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "Систему звуку вимкнено" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "Система звуку не підтримується у цій збірці" @@ -1675,18 +1617,116 @@ msgstr "Видимість змінено до %d, але обмежено до msgid "Volume changed to %d%%" msgstr "Гучність звуку змінено на %d%%" +#: src/client/game.cpp +#, fuzzy +msgid "Wireframe not supported by video driver" +msgstr "Відтінювачі увімкнені, але GLSL не підтримується драйвером." + #: src/client/game.cpp msgid "Wireframe shown" msgstr "Показ трикутників" -#: src/client/game.cpp -msgid "You died" -msgstr "Ви загинули" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "Наближення (бінокль) вимкнено грою або модифікацією" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "- Режим: " + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "- Публічний: " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "- ГпГ (бої): " + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "- Назва сервера: " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "Змінити пароль" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "Продовжити" + +#: src/client/game_formspec.cpp +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" +"Керування:\n" +"Коли немає відкритих меню:\n" +"- проведення пальцем: роззирнутися\n" +"- дотик: встановити/вдарити/використати\n" +"- довгий дотик: копати/використати\n" +"У відкритому меню або інвертарі:\n" +"- подвійний дотик (поза межами):\n" +" --> закрити\n" +"- доторкання купи, доторкання комірки\n" +" --> перемістити купу\n" +"- доторкання і перетягування, дотик другим пальцем\n" +" --> помістити один предмет у комірку\n" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "Вихід у меню" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "Вихід із гри" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "Інформація про гру:" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "Гра на паузі" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "Сервер (хост)" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "Вимк." + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "Увім." + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "Віддалений сервер" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "Відродитися" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "Гучність звуку" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "Ви загинули" + #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" msgstr "Чат зараз вимкнено грою або модом" @@ -2013,7 +2053,8 @@ msgid "Failed to compile the \"%s\" shader." msgstr "Не вдалося скомпілювати шейдер \"%s\"." #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." +#, fuzzy +msgid "GLSL is not supported by the driver" msgstr "Відтінювачі увімкнені, але GLSL не підтримується драйвером." #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" @@ -2065,7 +2106,7 @@ msgstr "Автохід" msgid "Automatic jumping" msgstr "Автоматичне перестрибування" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "Aux1" @@ -2077,7 +2118,7 @@ msgstr "Назад" msgid "Block bounds" msgstr "Межі блоків" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "Змінити камеру" @@ -2101,7 +2142,7 @@ msgstr "Зменшити звук" msgid "Double tap \"jump\" to toggle fly" msgstr "Подвійний стрибок вмикає політ" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "Викинути" @@ -2117,11 +2158,11 @@ msgstr "Збільш. видимість" msgid "Inc. volume" msgstr "Збільшити звук" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "Інвентар" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "Стрибок" @@ -2153,7 +2194,7 @@ msgstr "Наступний предмет" msgid "Prev. item" msgstr "Попередній предмет" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "Вибір діапазону" @@ -2165,7 +2206,7 @@ msgstr "Праворуч" msgid "Screenshot" msgstr "Знімок екрана" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "Крастися" @@ -2173,15 +2214,15 @@ msgstr "Крастися" msgid "Toggle HUD" msgstr "Увімкнути HUD" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "Увімкнути журнал чату" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "Прискорення" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "Політ" @@ -2189,11 +2230,11 @@ msgstr "Політ" msgid "Toggle fog" msgstr "Увімкнути туман" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "Увімкнути мінімапу" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "Прохід крізь стіни" @@ -2201,7 +2242,7 @@ msgstr "Прохід крізь стіни" msgid "Toggle pitchmove" msgstr "Увімкнути висотний рух" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "Збільшити" @@ -2237,7 +2278,7 @@ msgstr "Старий пароль" msgid "Passwords do not match!" msgstr "Паролі не збігаються!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "Вихід" @@ -2250,38 +2291,68 @@ msgstr "Звук вимкнено" msgid "Sound Volume: %d%%" msgstr "Гучність звуку: %d%%" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp #, fuzzy -msgid "Joystick" -msgstr "ІД джойстика" +msgid "Add button" +msgstr "Середня кнопка" -#: src/gui/touchcontrols.cpp -msgid "Overflow menu" +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "Готово!" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Remove" +msgstr "Віддалений сервер" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" msgstr "" -#: src/gui/touchcontrols.cpp -#, fuzzy +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp +msgid "Joystick" +msgstr "Джойстик" + +#: src/gui/touchscreenlayout.cpp +msgid "Overflow menu" +msgstr "Переповнене меню" + +#: src/gui/touchscreenlayout.cpp msgid "Toggle debug" -msgstr "Увімкнути туман" +msgstr "Увімкнути налагодження" #: src/network/clientpackethandler.cpp msgid "" "Another client is connected with this name. If your client closed " "unexpectedly, try again in a minute." msgstr "" +"Інший пристрій вже підключений з таким іменем. · · Якщо ваш пристрій " +"неочікувано закрився, повторіть спробу через хвилину." #: src/network/clientpackethandler.cpp msgid "Empty passwords are disallowed. Set a password and try again." -msgstr "" +msgstr "Порожні паролі не дозволені. · ·Створіть пароль і спробуйте знову." #: src/network/clientpackethandler.cpp msgid "Internal server error" -msgstr "" +msgstr "Внутрішня помилка сервера" #: src/network/clientpackethandler.cpp -#, fuzzy msgid "Invalid password" -msgstr "Старий пароль" +msgstr "Введіть пароль" #. ~ DO NOT TRANSLATE THIS LITERALLY! #. This is a special string which needs to contain the translation's @@ -2304,46 +2375,48 @@ msgstr "Ім'я зайнято. Будь ласка, оберіть інше і #: src/network/clientpackethandler.cpp msgid "Player name contains disallowed characters" -msgstr "" +msgstr "Ім'я гравця містить заборонені символи" #: src/network/clientpackethandler.cpp -#, fuzzy msgid "Player name not allowed" -msgstr "Імʼя гравця задовге." +msgstr "Імʼя гравця не дозволене" #: src/network/clientpackethandler.cpp -#, fuzzy msgid "Server shutting down" -msgstr "Вимкнення..." +msgstr "Сервер вимикається" #: src/network/clientpackethandler.cpp msgid "" "The server has experienced an internal error. You will now be disconnected." -msgstr "" +msgstr "У сервера виникнула помилка · ·Ви будете відключенні." #: src/network/clientpackethandler.cpp msgid "The server is running in singleplayer mode. You cannot connect." -msgstr "" +msgstr "Сервер працює в одиночному режимі.· ·Ви не можете підключитися." #: src/network/clientpackethandler.cpp msgid "Too many users" -msgstr "" +msgstr "Забагато користувачів" #: src/network/clientpackethandler.cpp msgid "Unknown disconnect reason." -msgstr "" +msgstr "Невідома причина відключення." #: src/network/clientpackethandler.cpp msgid "" "Your client sent something the server didn't expect. Try reconnecting or " "updating your client." msgstr "" +"Ваш пристрій надіслав то, що сервер не очікував.· ·Спробуйте повторно " +"підключитись або обновити свій пристрій." #: src/network/clientpackethandler.cpp msgid "" "Your client's version is not supported.\n" "Please contact the server administrator." msgstr "" +"Версія вашого пристрою не підтримується.\n" +"Будь ласка, зв'яжіться з адміністратором сервера." #: src/server.cpp #, c-format @@ -2473,6 +2546,7 @@ msgid "3D noise that determines number of dungeons per mapchunk." msgstr "3D шум що визначає кількість підземель на фрагмент мапи." #: src/settings_translation_file.cpp +#, fuzzy msgid "" "3D support.\n" "Currently supported:\n" @@ -2481,8 +2555,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" "Підтримка 3D.\n" "Зараз підтримуються:\n" @@ -2547,10 +2620,6 @@ msgstr "Діапазон активних блоків" msgid "Active object send range" msgstr "Діапазон надсилання активних об'єктів" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "Додавати часточки при копанні блока." - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2581,6 +2650,17 @@ msgstr "Ім'я адміністратора" msgid "Advanced" msgstr "Додатково" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +#, fuzzy +msgid "Allow clouds to look 3D instead of flat." +msgstr "Використовувати об'ємні хмари замість плоских." + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "Дозволяє рідинам бути напівпрозорими." @@ -2633,11 +2713,11 @@ msgstr "Метод згладжування" #: src/settings_translation_file.cpp msgid "Anticheat flags" -msgstr "" +msgstr "Прапори Анти-чіта" #: src/settings_translation_file.cpp msgid "Anticheat movement tolerance" -msgstr "" +msgstr "Допуск руху Анти-чита" #: src/settings_translation_file.cpp msgid "Append item name" @@ -2671,7 +2751,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Apply specular shading to nodes." -msgstr "" +msgstr "Використовувати дзеркальне затемнення до блоків." #: src/settings_translation_file.cpp msgid "Arm inertia" @@ -2787,9 +2867,8 @@ msgid "Biome noise" msgstr "Шум біому" #: src/settings_translation_file.cpp -#, fuzzy msgid "Block bounds HUD radius" -msgstr "Межі блоків" +msgstr "Радіус HUD блока" #: src/settings_translation_file.cpp msgid "Block cull optimize distance" @@ -2978,14 +3057,14 @@ msgstr "Радіус хмар" msgid "Clouds" msgstr "Хмари" -#: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." -msgstr "Хмари є ефектом на боці клієнта." - #: src/settings_translation_file.cpp msgid "Clouds in menu" msgstr "Хмари в меню" +#: src/settings_translation_file.cpp +msgid "Color depth for post-processing texture" +msgstr "" + #: src/settings_translation_file.cpp msgid "Colored fog" msgstr "Кольоровий туман" @@ -3012,7 +3091,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" "Розділений комами перелік міток, які треба приховувати у репозиторії " "вмісту.\n" @@ -3184,6 +3263,14 @@ msgstr "Рівень журналу зневадження" msgid "Debugging" msgstr "Налагодження" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "Крок виділеного серверу" @@ -3227,7 +3314,6 @@ msgstr "" "диск, але також використовує більше ресурсів." #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Define the oldest clients allowed to connect.\n" "Older clients are compatible in the sense that they will not crash when " @@ -3246,7 +3332,7 @@ msgstr "" "очікуєте.\n" "Це дозволяє детальніший контроль, ніж strict_protocol_version_checking.\n" "Minetest все ще примушує свій внутрішній мінімум, і включення\n" -"strict_protocol_version_checking перевизначить це ефективно." +"strict_protocol_version_checking пере визначить це ефективно." #: src/settings_translation_file.cpp msgid "Defines areas where trees have apples." @@ -3359,18 +3445,10 @@ msgstr "" "Пустелі з'являються, коли np_biome перевищує це значення.\n" "Це ігнорується, коли мітку \"snowbiomes\" увімкнено." -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "Розсинхронізація анімації блоків" - #: src/settings_translation_file.cpp msgid "Developer Options" msgstr "Розробницькі налаштування" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "Часточки при копанні" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "Заборонити порожні паролі" @@ -3380,14 +3458,14 @@ msgid "Display Density Scaling Factor" msgstr "Масштабування щільності відображення" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Distance in nodes at which transparency depth sorting is enabled.\n" "Use this to limit the performance impact of transparency depth sorting.\n" "Set to 0 to disable it entirely." msgstr "" -"Відстань у блоках, на якій увімкнено розділення за глибиною прозорості\n" -"Користуйтейся цим для обмеження впливу розділення на продуктивність" +"Відстань у блоках, на якій увімкнено розділення за глибиною прозорості.\n" +"Користуйтеся цим для обмеження впливу розділення на продуктивність.\n" +"Встановіть на 0 для повного вимкнення." #: src/settings_translation_file.cpp msgid "Domain name of server, to be displayed in the serverlist." @@ -3401,6 +3479,14 @@ msgstr "Подвійне натискання стрибка для польот msgid "Double-tapping the jump key toggles fly mode." msgstr "Подвійне натискання кнопки стрибка вмикає режим польоту." +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "Записувати дані налагодження генератору світу." @@ -3418,9 +3504,8 @@ msgid "Dungeon noise" msgstr "Шум підземелля" #: src/settings_translation_file.cpp -#, fuzzy msgid "Effects" -msgstr "Графічні ефекти" +msgstr "Ефекти" #: src/settings_translation_file.cpp msgid "Enable Automatic Exposure" @@ -3485,9 +3570,10 @@ msgstr "" "імітуючи поведінку людського ока." #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" "Увімкнути кольорові тіні.\n" "Коли увімкнено, напівпрозорі блоки відкидують кольорові тіні. Це ресурсоємно." @@ -3527,11 +3613,8 @@ msgid "Enable random user input (only used for testing)." msgstr "Увімкнути випадкове введення користувача (тільки для тестування)." #: src/settings_translation_file.cpp -#, fuzzy msgid "Enable smooth lighting with simple ambient occlusion." -msgstr "" -"Увімкнути згладжене освітлення із простим навколишнім затіненням.\n" -"Вимикається для швидкості або іншого вигляду." +msgstr "Увімкнути згладжене освітлення із простим навколишнім затіненням." #: src/settings_translation_file.cpp msgid "Enable split login/register" @@ -3552,7 +3635,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Enable updates available indicator on content tab" -msgstr "" +msgstr "Ввімкнути індикатор доступних оновлень і вкладці \"контент\"" #: src/settings_translation_file.cpp msgid "" @@ -3574,10 +3657,10 @@ msgstr "" "Наприклад: 0 вимикає похитування, 1.0 для звичайного, 2.0 для подвійного." #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" "Увімкнути/вимкнути сервер IPv6.\n" "Ігнорується, якщо налаштовано bind_address.\n" @@ -3599,21 +3682,13 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "Дозволити анімацію предметів інвентаря." -#: src/settings_translation_file.cpp -#, fuzzy -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "Вмикає кешування мешів, яких повернули." - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "Вмикає зневадження й перевірку помилок у драйвері OpenGL." #: src/settings_translation_file.cpp -#, fuzzy msgid "Enables smooth scrolling." -msgstr "Увімкнути постобробку" +msgstr "Вмикає плавну прокрутку." #: src/settings_translation_file.cpp msgid "Enables the post processing pipeline." @@ -3626,6 +3701,11 @@ msgid "" "\"auto\" means that the touchscreen controls will be enabled and disabled\n" "automatically depending on the last used input method." msgstr "" +"Вмикає сенсорні елементи управління, дозволяючи вам грати в гру за допомогою " +"сенсору.\n" +"\"Auto\" означає, що сенсорні елементи управління будуть вмикатися і " +"вимикатися\n" +"В залежності від посліднього використовуваного методу." #: src/settings_translation_file.cpp msgid "" @@ -3942,10 +4022,6 @@ msgstr "Масштабування інтерфейсу" msgid "GUI scaling filter" msgstr "Фільтр масштабування інтерфейсу" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "Фільтр масштабування інтерфейсу txr2img" - #: src/settings_translation_file.cpp msgid "Gamepads" msgstr "Контролери" @@ -4193,6 +4269,9 @@ msgid "" "ContentDB to\n" "check for package updates when opening the mainmenu." msgstr "" +"Якщо ввімкненно і у вас встановленні пакети ContentDB, Luanti може " +"зв'язатись з ContentDB,\n" +"Щоб перевірити наявність оновлень пакетів при відкритті головного меню." #: src/settings_translation_file.cpp msgid "" @@ -4204,14 +4283,6 @@ msgstr "" "використано\n" "для спуска й підьйому." -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" -"Якщо увімкнено, реєстрація акаунта розділена від входу в інтерфейсі.\n" -"Якщо вимкнено, нові акаунти автоматично реєструватимуться при вході." - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -4236,6 +4307,16 @@ msgstr "" "Якщо увімкнено, гравці не зможуть під'єднатись без паролю або змінити його " "на порожній." +#: src/settings_translation_file.cpp +#, fuzzy +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" +"Якщо увімкнено, реєстрація акаунта розділена від входу в інтерфейсі.\n" +"Якщо вимкнено, нові акаунти автоматично реєструватимуться при вході." + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4324,7 +4405,6 @@ msgid "Instrument chat commands on registration." msgstr "Заміряти команди чату при реєстрації." #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Instrument global callback functions on registration.\n" "(anything you pass to a core.register_*() function)" @@ -4351,10 +4431,6 @@ msgstr "Замірювати методи сутностей при реєстр msgid "Interval of saving important changes in the world, stated in seconds." msgstr "Інтервал збереження важливих змін у світі, зазначається у секундах." -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "Інтервал надсилання частини дня клієнтам, зазначається у секундах." - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "Анімація предметів інвентаря" @@ -4509,7 +4585,7 @@ msgstr "Поріг озер" #: src/settings_translation_file.cpp msgid "Language" -msgstr "Мова" +msgstr "Мови" #: src/settings_translation_file.cpp msgid "Large cave depth" @@ -4532,7 +4608,6 @@ msgid "Leaves style" msgstr "Стиль листя" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Leaves style:\n" "- Fancy: all faces visible\n" @@ -4543,10 +4618,9 @@ msgstr "" "- Fancy: усі сторони видно\n" "- Simple: тільки зовнішні сторони, якщо використовуються зазначені " "special_tiles\n" -"- Opaque: вимкнути прозорість" +"- Opaque: вимкнута прозорість" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Length of a server tick (the interval at which everything is generally " "updated),\n" @@ -4557,7 +4631,9 @@ msgid "" msgstr "" "Довжина кроку серверу (інтервал, з яким все зазвичай оновлюються),\n" "зазначається у секундах.\n" -"Не застовується до сесій, які запущено з клієнтського меню." +"Не застосовується до сесій, які запущено з клієнтського меню.\n" +"Це нижня границя, тобто кроки серверу не можуть бути коротше за це\n" +"значення, але вони часто длініше." #: src/settings_translation_file.cpp msgid "Length of liquid waves." @@ -4674,9 +4750,8 @@ msgid "Liquid queue purge time" msgstr "Час очищення черги рідин" #: src/settings_translation_file.cpp -#, fuzzy msgid "Liquid reflections" -msgstr "Текучість рідини" +msgstr "Рефлексії рідини" #: src/settings_translation_file.cpp msgid "Liquid sinking" @@ -5012,6 +5087,10 @@ msgid "" "You generally don't need to change this, however busy servers may benefit " "from a higher number." msgstr "" +"Максимальна кількість пакетів, відправлених на крок відправки в коді низько " +"рівневої мережі.\n" +"За звичай це не потрібно міняти, однак для напружених серверів може бути " +"корисним." #: src/settings_translation_file.cpp msgid "Maximum number of players that can be connected simultaneously." @@ -5074,10 +5153,6 @@ msgstr "" msgid "Maximum users" msgstr "Найбільше користувачів" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "Кеш мешів" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "Повідомлення дня" @@ -5110,6 +5185,10 @@ msgstr "Мінимум випадкового числа великих пече msgid "Minimum limit of random number of small caves per mapchunk." msgstr "Мінімум випадкового числа малих печер на фрагмент мапи." +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "Mіп-текстурування" @@ -5203,9 +5282,10 @@ msgstr "" "- Необов'язкові висячі острови у v7 (вимкнено за замовчуванням)." #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" "Ім'я гравця.\n" @@ -5243,7 +5323,7 @@ msgstr "Підсвічувати блок" #: src/settings_translation_file.cpp msgid "Node specular" -msgstr "" +msgstr "Дзеркальний блок" #: src/settings_translation_file.cpp msgid "NodeTimer interval" @@ -5297,7 +5377,6 @@ msgid "Number of messages a player may send per 10 seconds." msgstr "Кількість повідомлень, які гравець може надіслати протягом 10 секунд." #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Number of threads to use for mesh generation.\n" "Value of 0 (default) will let Luanti autodetect the number of available " @@ -5335,18 +5414,16 @@ msgid "OpenGL debug" msgstr "Зневадження OpenGL" #: src/settings_translation_file.cpp -#, fuzzy msgid "Optimize GUI for touchscreens" -msgstr "Перехрестя для дотику" +msgstr "Оптимізує інтерфейс для дотику" #: src/settings_translation_file.cpp msgid "Optional override for chat weblink color." msgstr "Необов'язкове перевизначення кольору посилання у чаті." #: src/settings_translation_file.cpp -#, fuzzy msgid "Other Effects" -msgstr "Графічні ефекти" +msgstr "Інші ефекти" #: src/settings_translation_file.cpp msgid "" @@ -5460,7 +5537,6 @@ msgid "Prometheus listener address" msgstr "Адреса прослуховування Prometheus" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Prometheus listener address.\n" "If Luanti is compiled with ENABLE_PROMETHEUS option enabled,\n" @@ -5468,7 +5544,7 @@ msgid "" "Metrics can be fetched on http://127.0.0.1:30000/metrics" msgstr "" "Адреса прослуховування Prometheus.\n" -"Якщо Minetest скомпільовано з увімкненим ENABLE_PROMETHEUS,\n" +"Якщо Luanti скомпільовано з увімкненим ENABLE_PROMETHEUS,\n" "увімкається прослуховування метрик Prometheus за цією адресою.\n" "Метрики можна отримати на http://127.0.0.1:30000/metrics" @@ -5496,6 +5572,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Radius to use when the block bounds HUD feature is set to near blocks." msgstr "" +"Радіус, використаний, коли функція відображення кордонів блоків встановлена " +"на близькі блоки." #: src/settings_translation_file.cpp msgid "Raises terrain to make valleys around the rivers." @@ -5717,23 +5795,26 @@ msgid "See https://www.sqlite.org/pragma.html#pragma_synchronous" msgstr "Дивіться https://www.sqlite.org/pragma.html#pragma_synchronous" #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Select the antialiasing method to apply.\n" "\n" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5815,11 +5896,12 @@ msgid "" "Send names of online players to the serverlist. If disabled only the player " "count is revealed." msgstr "" +"Відправляти імена онлайн гравців і список сервера. Якщо цей параметр " +"відключений, відображається тільки кількість гравців." #: src/settings_translation_file.cpp -#, fuzzy msgid "Send player names to the server list" -msgstr "Оголошувати сервер до цього переліку серверів." +msgstr "Відправляти імена гравців до списку сервера" #: src/settings_translation_file.cpp msgid "Server" @@ -5847,6 +5929,8 @@ msgid "" "Flags are positive. Uncheck the flag to disable corresponding anticheat " "module." msgstr "" +"Конфігурація анти-чіта сервера.\n" +"Прапори позитивні. Зніміть їй, щоб відключити модуль анти-чіта." #: src/settings_translation_file.cpp msgid "Server description" @@ -5991,16 +6075,6 @@ msgstr "" msgid "Shader path" msgstr "Шлях до відтінювачів" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "Відтінювачі" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "Якість фільтру тіні" @@ -6072,7 +6146,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Simulate translucency when looking at foliage in the sunlight." -msgstr "" +msgstr "Імітувати прозорість при погляді на листя в сонячному світлі." #: src/settings_translation_file.cpp msgid "" @@ -6125,9 +6199,8 @@ msgid "Smooth lighting" msgstr "Згладжене освітлення" #: src/settings_translation_file.cpp -#, fuzzy msgid "Smooth scrolling" -msgstr "Згладжене освітлення" +msgstr "Плавна прокрутка" #: src/settings_translation_file.cpp msgid "" @@ -6154,9 +6227,8 @@ msgid "Sneaking speed, in nodes per second." msgstr "Швидкість підкрадання, в блоках в секунду." #: src/settings_translation_file.cpp -#, fuzzy msgid "Soft clouds" -msgstr "Обʼємні хмари" +msgstr "Об'ємні хмари" #: src/settings_translation_file.cpp msgid "Soft shadow radius" @@ -6193,11 +6265,11 @@ msgstr "" "предметів." #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" "Поширювати повне оновлення мапи тіней на дану кількість кадрів.\n" "Вищі значення можуть зробити тіні нестабльними, нижчі значення\n" @@ -6394,7 +6466,6 @@ msgstr "" "Шлях до файла відносно до вашого шляху світу, де зберігатимуться профайли." #: src/settings_translation_file.cpp -#, fuzzy msgid "" "The gesture for punching players/entities.\n" "This can be overridden by games and mods.\n" @@ -6407,14 +6478,14 @@ msgid "" "Combat is more or less impossible." msgstr "" "Жест, що означає удар по гравцю або сутності.\n" -"Це перевизначатися іграми або модами.\n" +"Це визначаться іграми або модами.\n" "\n" "* short_tap (короткий дотик)\n" "Простий у використанні й відомий за іншими іграми, які не повинні бути " "названі.\n" "\n" "* long_tap (довгий дотик)\n" -"Відомий за класичному мобільному управлінні Minetest.\n" +"Відомий за класичному мобільному управлінні Luanti.\n" "Бої більш-менш неможливі." #: src/settings_translation_file.cpp @@ -6477,7 +6548,6 @@ msgstr "" "Це повинно бути налаштовано разом з active_object_send_range_blocks." #: src/settings_translation_file.cpp -#, fuzzy msgid "" "The rendering back-end.\n" "Note: A restart is required after changing this!\n" @@ -6485,8 +6555,7 @@ msgid "" msgstr "" "Двигун промальовування.\n" "Примітка: після змінення цього потрібен перезапуск!\n" -"За замовчуванням OpenGL для ПК, й OGLES2 для Android.\n" -"Відтінювачі підтримуються усіма крім OGLES1." +"За замовчуванням OpenGL для настільних комп'ютерів, й OGLES2 для Android." #: src/settings_translation_file.cpp msgid "" @@ -6577,10 +6646,6 @@ msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "" "Частина дня, коли на новому світі грають вперше, у мілігодинах (0-23999)." -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "Період надсилання часу" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "Швидкість часу" @@ -6607,6 +6672,8 @@ msgid "" "Tolerance of movement cheat detector.\n" "Increase the value if players experience stuttery movement." msgstr "" +"Значення допустимості детектору читів на рух.\n" +"Збільште значення, якщо рух гравців занадто часто затримується." #: src/settings_translation_file.cpp msgid "Tooltip delay" @@ -6617,9 +6684,8 @@ msgid "Touchscreen" msgstr "Сенсорний екран" #: src/settings_translation_file.cpp -#, fuzzy msgid "Touchscreen controls" -msgstr "Поріг дотику" +msgstr "Сенсорне управління" #: src/settings_translation_file.cpp msgid "Touchscreen sensitivity" @@ -6634,7 +6700,6 @@ msgid "Tradeoffs for performance" msgstr "Домовленності для продуктивності" #: src/settings_translation_file.cpp -#, fuzzy msgid "Translucent foliage" msgstr "Напівпрозорі рідини" @@ -6646,6 +6711,11 @@ msgstr "Напівпрозорі рідини" msgid "Transparency Sorting Distance" msgstr "Дальність сортування за прозорістю" +#: src/settings_translation_file.cpp +#, fuzzy +msgid "Transparency Sorting Group by Buffers" +msgstr "Дальність сортування за прозорістю" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "Шум дерев" @@ -6687,13 +6757,12 @@ msgstr "" "продуктивністю." #: src/settings_translation_file.cpp -#, fuzzy msgid "" "URL to JSON file which provides information about the newest Luanti " "release.\n" "If this is empty the engine will never check for updates." msgstr "" -"URL до файлу JSON, що забезпечує інформацію про найновіший реліз Minetest\n" +"URL до файлу JSON, що забезпечує інформацію про найновіший реліз Luanti \n" "Якщо ще порожнє, рушій ніколи не перевірятиме оновлення." #: src/settings_translation_file.cpp @@ -6706,12 +6775,16 @@ msgid "Undersampling" msgstr "Субдискретизація" #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Undersampling is similar to using a lower screen resolution, but it applies\n" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" "Субдискретизація подібна використанню низької роздільності, але це\n" "застовується лише до світу гри, не доторкуючись графічного інтерфейсу.\n" @@ -6738,16 +6811,15 @@ msgstr "Максимальний Y підземель." msgid "Upper Y limit of floatlands." msgstr "Максимальний Y висячих островів." -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "Використовувати об'ємні хмари замість плоских." - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "Використовувати анімацію хмар для фону головного меню." #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +#, fuzzy +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" "Використовувати анізотропну фільтрацію при погляді на текстури під кутом." @@ -6791,7 +6863,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Use smooth cloud shading." -msgstr "" +msgstr "Використовує плавний шейдинг хмар." #: src/settings_translation_file.cpp msgid "" @@ -6999,13 +7071,16 @@ msgstr "Колір вебпосилання" #: src/settings_translation_file.cpp msgid "When enabled, liquid reflections are simulated." -msgstr "" +msgstr "При ввімкнені імітують рефлексії від рідини." #: src/settings_translation_file.cpp msgid "" "When enabled, the GUI is optimized to be more usable on touchscreens.\n" "Whether this is enabled by default depends on your hardware form-factor." msgstr "" +"Якщо увімкнено, інтерфейс оптимізується для більш зручного використання на " +"сенсорних екранах.\n" +"Розмір вашого пристрою визначає, чи буде це увімкнено за замовчуванням." #: src/settings_translation_file.cpp msgid "" @@ -7018,27 +7093,14 @@ msgstr "" "апаратно (наприклад render-to-texture для блоків у інвентарі)." #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" -"Коли gui_scaling_filter_txr2img увімкнено, копіювати ті зображення\n" -"від апаратного забезпечння до програмного для масштабування.\n" -"Коли вимкнено, повертатися до старого методу масштабування для " -"відеодрайверів,\n" -"які неправильно підтримують завантаження текстур назад з апаратного " -"забезпечення." - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -7064,11 +7126,6 @@ msgstr "" "Чи повинен фон напису з ім'ям бути відображеним за замовчуванням.\n" "Моди все ще можуть задати фон." -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" -"Чи повинні бути десинхронізованими анімації текстур блоків між блоками мапи." - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -7095,9 +7152,9 @@ msgid "Whether to fog out the end of the visible area." msgstr "Чи затуманювати кінець видимої області." #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -7126,14 +7183,14 @@ msgid "Window maximized" msgstr "Вікно розгорнуто" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Windows systems only: Start Luanti with the command line window in the " "background.\n" "Contains the same information as the file debug.txt (default name)." msgstr "" -"Тільки для Windows: запускати Minetest з вікном командного рядка позаду.\n" -"Містить таку ж саму інформацію, що й файл debug.txt (звичайна назва фалу)." +"Тільки для Windows: запускати Luanti з вікном командного рядка у фоновому " +"режимі.\n" +"Містить ту ж саму інформацію, що й файл debug.txt (назва за замовчуванням)." #: src/settings_translation_file.cpp msgid "" @@ -7229,11 +7286,11 @@ msgstr "cURL" #: src/settings_translation_file.cpp msgid "cURL file download timeout" -msgstr "Таймаут завантаження файлів через cURL" +msgstr "Час очікування завантаження файлів через cURL вийшов" #: src/settings_translation_file.cpp msgid "cURL interactive timeout" -msgstr "Час очікування під час взаємодії із cURL" +msgstr "Час очікування під час взаємодії із cURL вийшов" #: src/settings_translation_file.cpp msgid "cURL parallel limit" @@ -7289,6 +7346,9 @@ msgstr "Обмеження одночасних з'єднань cURL" #~ "Зауважте що поле адреси у головному меню має пріоритет над цим " #~ "налаштуванням." +#~ msgid "Adds particles when digging a node." +#~ msgstr "Додавати часточки при копанні блока." + #~ msgid "" #~ "Adjust dpi configuration to your screen (non X11/Android only) e.g. for " #~ "4k screens." @@ -7385,6 +7445,9 @@ msgstr "Обмеження одночасних з'єднань cURL" #~ msgid "Cinematic mode key" #~ msgstr "Клавіша кінорежиму" +#~ msgid "Clouds are a client-side effect." +#~ msgstr "Хмари є ефектом на боці клієнта." + #~ msgid "Command key" #~ msgstr "Клавіша команди" @@ -7463,9 +7526,15 @@ msgstr "Обмеження одночасних з'єднань cURL" #~ msgid "Damage enabled" #~ msgstr "Ушкодження ввімкнено" +#~ msgid "Debug info and profiler graph hidden" +#~ msgstr "Відомості налагодження та графік профайлера приховано" + #~ msgid "Debug info toggle key" #~ msgstr "Клавіша увімкнення даних налагодження" +#~ msgid "Debug info, profiler graph, and wireframe hidden" +#~ msgstr "Відомості налагодження, графік профайлера й каркас приховано" + #~ msgid "Dec. volume key" #~ msgstr "Клавіша зменш. гучності" @@ -7498,9 +7567,15 @@ msgstr "Обмеження одночасних з'єднань cURL" #~ msgid "Del. Favorite" #~ msgstr "Видалити зі закладок" +#~ msgid "Desynchronize block animation" +#~ msgstr "Розсинхронізація анімації блоків" + #~ msgid "Dig key" #~ msgstr "Клавіша Копати" +#~ msgid "Digging particles" +#~ msgstr "Часточки при копанні" + #~ msgid "Disable anticheat" #~ msgstr "Вимкнути античіт" @@ -7528,6 +7603,9 @@ msgstr "Обмеження одночасних з'єднань cURL" #~ msgid "Dynamic shadows:" #~ msgstr "Динамічні тіні:" +#~ msgid "Enable" +#~ msgstr "Увімкненно" + #~ msgid "Enable VBO" #~ msgstr "Увімкнути VBO" @@ -7547,6 +7625,13 @@ msgstr "Обмеження одночасних з'єднань cURL" #~ "Увімкнути об'єкти буферу вершин.\n" #~ "Це повинно значно покращити графічну продуктивність." +#~ msgid "" +#~ "Enables caching of facedir rotated meshes.\n" +#~ "This is only effective with shaders disabled." +#~ msgstr "" +#~ "Вмикає кешування повернутих сіток facedir.\n" +#~ "Це працює тільки якщо шейдери вимкненні." + #~ msgid "Enables minimap." #~ msgstr "Вмикає мінімапу." @@ -7599,8 +7684,8 @@ msgstr "Обмеження одночасних з'єднань cURL" #~ msgid "Forward key" #~ msgstr "Клавіша Вперед" -#~ msgid "Game" -#~ msgstr "Гра" +#~ msgid "GUI scaling filter txr2img" +#~ msgstr "Фільтр масштабування інтерфейсу txr2img" #~ msgid "Generate Normal Maps" #~ msgstr "Генерувати мапи нормалів" @@ -7728,266 +7813,272 @@ msgstr "Обмеження одночасних з'єднань cURL" #~ msgid "Install: file: \"$1\"" #~ msgstr "Встановлення: файл: \"$1\"" +#~ msgid "Interval of sending time of day to clients, stated in seconds." +#~ msgstr "Інтервал надсилання частини дня клієнтам, зазначається у секундах." + #~ msgid "Invalid gamespec." #~ msgstr "Помилкова конфігурація gamespec." #~ msgid "Inventory key" #~ msgstr "Клавіша інвентаря" +#~ msgid "Irrlicht device:" +#~ msgstr "Пристрій Irrlicht:" + #~ msgid "Jump key" #~ msgstr "Клавіша Стрибок" #~ msgid "" #~ "Key for decreasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша для зменшення видимості.\n" -#~ "Дивіться http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Дивіться http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for decreasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша для зменшення гучності.\n" -#~ "Дивіться http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Дивіться http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for digging.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша для копання.\n" -#~ "Дивіться http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Дивіться http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for dropping the currently selected item.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша для кидання поточного предмета.\n" -#~ "Дивіться http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Дивіться http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша для збільшення видимості.\n" -#~ "Дивіться http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Дивіться http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша для збільшення гучності.\n" -#~ "Дивіться http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Дивіться http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for jumping.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша для стрибання.\n" -#~ "Дивіться http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Дивіться http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving fast in fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша для швидкого руху у швидкому режимі.\n" -#~ "Дивіться http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Дивіться http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player forward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша для руху гравця вперед.\n" -#~ "Дивіться http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Дивіться http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player left.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша для руху гравця вліво.\n" -#~ "Дивіться http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Дивіться http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player right.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша для руху гравця вправо.\n" -#~ "Дивіться http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Дивіться http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for muting the game.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша для приглушення гри.\n" -#~ "Дивіться http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Дивіться http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша для відкривання вікна чату для введення команд.\n" -#~ "Дивіться http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Дивіться http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type local commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша для відкривання вікна чату для набирання локальних команд.\n" -#~ "Дивіться http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Дивіться http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша для відкривання вікна чату.\n" -#~ "Дивіться http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Дивіться http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the inventory.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша для відкривання інвентаря.\n" -#~ "Дивіться http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Дивіться http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for placing.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша покласти.\n" -#~ "Дивіться http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Дивіться http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 11th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша для вибору 11-го слоту швидкої панелі.\n" -#~ "Дивіться http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Дивіться http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 12th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша для вибору 12-го слоту швидкої панелі.\n" -#~ "Дивіться http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Дивіться http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 13th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша для вибору 13-го слоту швидкої панелі.\n" -#~ "Дивіться http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Дивіться http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 14th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша для вибору 14-го слоту швидкої панелі.\n" -#~ "Дивіться http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Дивіться http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 15th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша для вибору 15-го слоту швидкої панелі.\n" -#~ "Дивіться http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Дивіться http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 16th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша для вибору 16-го слоту швидкої панелі.\n" -#~ "Дивіться http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Дивіться http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 17th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша для вибору 17-го слоту швидкої панелі.\n" -#~ "Дивіться http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Дивіться http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 18th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша для вибору 18-го слоту швидкої панелі.\n" -#~ "Дивіться http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Дивіться http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 19th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша для вибору 19-го слоту швидкої панелі.\n" -#~ "Дивіться http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Дивіться http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 20th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша для вибору 20-го слоту швидкої панелі.\n" -#~ "Дивіться http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Дивіться http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the HUD.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "Клавіша ввімкнення відображення HUD.\n" -#~ "Дивіться http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "Дивіться http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Keybindings. (If this menu screws up, remove stuff from minetest.conf)" @@ -8041,6 +8132,9 @@ msgstr "Обмеження одночасних з'єднань cURL" #~ msgid "Menus" #~ msgstr "Меню" +#~ msgid "Mesh cache" +#~ msgstr "Кеш мешів" + #~ msgid "Minimap" #~ msgstr "Мінімапа" @@ -8175,6 +8269,9 @@ msgstr "Обмеження одночасних з'єднань cURL" #~ msgid "Server / Singleplayer" #~ msgstr "Сервер / Одиночна гра" +#~ msgid "Shaders" +#~ msgstr "Відтінювачі" + #~ msgid "Shaders (experimental)" #~ msgstr "Відтінювачі (експериментальне)" @@ -8189,6 +8286,16 @@ msgstr "Обмеження одночасних з'єднань cURL" #~ "Відтінювачі дозволяють просунуті визуальні ефекти й можуть збільшити\n" #~ "продуктивність на деяких відеокартах." +#~ msgid "" +#~ "Shaders are a fundamental part of rendering and enable advanced visual " +#~ "effects." +#~ msgstr "" +#~ "Шейдери є фундаментальною частиною рендерінга и забезпечує розширені " +#~ "візуальні ефекти." + +#~ msgid "Shaders are disabled." +#~ msgstr "Шейдери вимкнено." + #~ msgid "Simple Leaves" #~ msgstr "Просте листя" @@ -8204,6 +8311,9 @@ msgstr "Обмеження одночасних з'єднань cURL" #~ msgid "Smooth Lighting" #~ msgstr "Згладжене освітлення" +#~ msgid "Sound system is disabled" +#~ msgstr "Систему звуку вимкнено" + #~ msgid "Special" #~ msgstr "Спеціальна" @@ -8231,6 +8341,12 @@ msgstr "Обмеження одночасних з'єднань cURL" #~ msgid "The value must not be larger than $1." #~ msgstr "Значення має бути не більше $1." +#~ msgid "This is not a recommended configuration." +#~ msgstr "Ця конфігурація не рекомендується." + +#~ msgid "Time send interval" +#~ msgstr "Період надсилання часу" + #~ msgid "To enable shaders the OpenGL driver needs to be used." #~ msgstr "Для того, щоб увімкнути шейдери, потрібно мати драйвер OpenGL." @@ -8292,6 +8408,25 @@ msgstr "Обмеження одночасних з'єднань cURL" #~ msgid "Waving Plants" #~ msgstr "Коливати квіти" +#~ msgid "" +#~ "When gui_scaling_filter_txr2img is true, copy those images\n" +#~ "from hardware to software for scaling. When false, fall back\n" +#~ "to the old scaling method, for video drivers that don't\n" +#~ "properly support downloading textures back from hardware." +#~ msgstr "" +#~ "Коли gui_scaling_filter_txr2img увімкнено, копіювати ті зображення\n" +#~ "від апаратного забезпечння до програмного для масштабування.\n" +#~ "Коли вимкнено, повертатися до старого методу масштабування для " +#~ "відеодрайверів,\n" +#~ "які неправильно підтримують завантаження текстур назад з апаратного " +#~ "забезпечення." + +#~ msgid "" +#~ "Whether node texture animations should be desynchronized per mapblock." +#~ msgstr "" +#~ "Чи повинні бути десинхронізованими анімації текстур блоків між блоками " +#~ "мапи." + #~ msgid "X" #~ msgstr "Х" diff --git a/po/vi/luanti.po b/po/vi/luanti.po index c6b760ecb..a82cc82c5 100644 --- a/po/vi/luanti.po +++ b/po/vi/luanti.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Vietnamese (Minetest)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" "PO-Revision-Date: 2022-08-26 10:18+0000\n" "Last-Translator: Văn Chí \n" "Language-Team: Vietnamese ' to get more information, or '.help all' to list everything." msgstr "" -"Dùng '.help ' để có thêm thông tin về một câu lệnh hoặc dùng '." -"help all' để xem danh sách về những câu lệnh có sẵn." +"Dùng '.help ' để có thêm thông tin về một câu lệnh hoặc dùng " +"'.help all' để xem danh sách về những câu lệnh có sẵn." #: builtin/common/chatcommands.lua #, fuzzy msgid "[all | ] [-t]" msgstr "[all | ]" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "Duyệt" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "Chỉnh sửa" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "Chọn thư mục" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "Chọn tệp" + +#: builtin/common/settings/components.lua +msgid "Set" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(Không có mô tả về Cài đặt nào được đưa ra)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "Nhiễu 2D" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "Hủy" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "Khoảng cách" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "Quãng tám" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +#, fuzzy +msgid "Offset" +msgstr "Độ bù" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "Sự bền bỉ" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "Lưu" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "Tỉ lệ" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "Mã khởi tạo" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "Giá trị tuyệt đối" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "Mặc định" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "Nới lỏng" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "Trò chuyện" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "Xóa" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "Điều khiển" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "Đã vô hiệu" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "Đã kích hoạt" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Movement" +msgstr "Đi nhanh" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "Không có kết quả" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Reset setting to default" +msgstr "Phục hồi Cài đặt mặc định" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "Tìm kiếm" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "Hiển thị tên kỹ thuật" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Touchscreen layout" +msgstr "Độ nhạy chuột" + +#: builtin/common/settings/dlg_settings.lua +msgid "pause_menu" +msgstr "" + +#: builtin/common/settings/settingtypes.lua +#, fuzzy +msgid "Client Mods" +msgstr "Mod đã chọn" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "Nội dung: Trò chơi" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "Nội dung: Mod" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "Bóng kiểu động lực học" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "Cao" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "Thấp" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "Trung bình" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "Cực cao" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "Cực thấp" + #: builtin/fstk/ui.lua msgid "" msgstr "" @@ -165,7 +408,6 @@ msgstr "" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua #, fuzzy msgid "Back" msgstr "Lùi xuống" @@ -204,11 +446,6 @@ msgstr "Sửa đổi" msgid "No packages could be retrieved" msgstr "Không nhận được gói nào" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "Không có kết quả" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "Không có cập nhật mới" @@ -254,18 +491,6 @@ msgstr "Đã được cài đặt" msgid "Base Game:" msgstr "Trò chơi cơ bản:" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "Hủy" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -395,6 +620,12 @@ msgstr "Không thể cài đặt mod dưới dạng $1" msgid "Unable to install a $1 as a texture pack" msgstr "Không thể cài đặt $1 dưới dạng gói kết cấu" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "(Đã kích hoạt, có lỗi)" @@ -459,12 +690,6 @@ msgstr "Không có phần phụ thuộc tùy chọn nào" msgid "Optional dependencies:" msgstr "Phần phụ thuộc tùy chọn:" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "Lưu" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "Thế giới:" @@ -618,11 +843,6 @@ msgstr "Sông" msgid "Sea level rivers" msgstr "Sông theo mực nước biển" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "Mã khởi tạo" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "Chuyển đổi mượt mà giữa các quần xã" @@ -763,6 +983,23 @@ msgstr "" "Modpack này có một tên rõ ràng được đưa ra trong tệp modpack.conf của nó, " "tên này sẽ ghi đè bất kỳ sự đổi tên nào ở đây." +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "Kích hoạt tất cả" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "Phiên bản mới $1 hiện có sẵn" @@ -791,7 +1028,7 @@ msgstr "Không bao giờ" msgid "Visit website" msgstr "Truy cập website" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "Cài đặt" @@ -805,229 +1042,6 @@ msgstr "" "Hãy thử kích hoạt lại danh sách máy chủ công cộng và kiểm tra kết nối mạng " "của bạn." -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "Duyệt" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "Chỉnh sửa" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "Chọn thư mục" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "Chọn tệp" - -#: builtin/mainmenu/settings/components.lua -msgid "Set" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(Không có mô tả về Cài đặt nào được đưa ra)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "Nhiễu 2D" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "Khoảng cách" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "Quãng tám" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -#, fuzzy -msgid "Offset" -msgstr "Độ bù" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "Sự bền bỉ" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "Tỉ lệ" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "Giá trị tuyệt đối" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "Mặc định" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "Nới lỏng" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "Trò chuyện" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "Xóa" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "Điều khiển" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "Đã vô hiệu" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "Đã kích hoạt" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Movement" -msgstr "Đi nhanh" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "Reset setting to default" -msgstr "Phục hồi Cài đặt mặc định" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "Tìm kiếm" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "Hiển thị tên kỹ thuật" - -#: builtin/mainmenu/settings/settingtypes.lua -#, fuzzy -msgid "Client Mods" -msgstr "Mod đã chọn" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "Nội dung: Trò chơi" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "Nội dung: Mod" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "Đã kích hoạt" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Shaders are disabled." -msgstr "Cập nhật máy ảnh đã tắt" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "Bóng kiểu động lực học" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "Cao" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "Thấp" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "Trung bình" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "Cực cao" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "Cực thấp" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "Giới thiệu" @@ -1048,10 +1062,6 @@ msgstr "Các nhà phát triển cốt lõi" msgid "Core Team" msgstr "" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "Mở thư mục Dữ liệu người dùng" @@ -1201,10 +1211,22 @@ msgstr "Bắt đầu trò chơi" msgid "You need to install a game before you can create a world." msgstr "" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "Xóa yêu thích" + #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "Địa chỉ" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "Máy khách" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "Chế độ sáng tạo" @@ -1218,6 +1240,11 @@ msgstr "Sát thương / PvP" msgid "Favorites" msgstr "Yêu thích" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "Trò chơi" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "Máy chủ không tương thích" @@ -1230,10 +1257,26 @@ msgstr "Tham gia trò chơi" msgid "Login" msgstr "Đăng nhập" +#: builtin/mainmenu/tab_online.lua +msgid "Number of mods: $1" +msgstr "" + +#: builtin/mainmenu/tab_online.lua +msgid "Open server website" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "Ping" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Public Servers" msgstr "Máy chủ công cộng" @@ -1322,23 +1365,6 @@ msgstr "" "\n" "Hãy kiểm tra debug.txt để có thông tin chi tiết." -#: src/client/game.cpp -msgid "- Mode: " -msgstr "- Chế độ: " - -#: src/client/game.cpp -msgid "- Public: " -msgstr "- Công cộng: " - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "- PvP: " - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "- Tên máy chủ: " - #: src/client/game.cpp msgid "A serialization error occurred:" msgstr "Đã xảy ra lỗi tuần tự hóa:" @@ -1348,6 +1374,11 @@ msgstr "Đã xảy ra lỗi tuần tự hóa:" msgid "Access denied. Reason: %s" msgstr "Quyền truy cập bị từ chối với lý do: %s" +#: src/client/game.cpp +#, fuzzy +msgid "All debug info hidden" +msgstr "Thông tin gỡ lỗi đã hiển thị" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "Tự động chuyển tiếp bị tắt" @@ -1368,6 +1399,10 @@ msgstr "Đã hiển thị ranh giới hiển thị cho khối hiện tại" msgid "Block bounds shown for nearby blocks" msgstr "Đã hiển thị ranh giới cho các khối gần bạn" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "Cập nhật máy ảnh đã tắt" @@ -1381,10 +1416,6 @@ msgstr "Cập nhật máy ảnh đã bật" msgid "Can't show block bounds (disabled by game or mod)" msgstr "Không thể hiển thị ranh giới khối (bị tắt bởi mod hoặc trò chơi)" -#: src/client/game.cpp -msgid "Change Password" -msgstr "Đổi mật khẩu" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "Chế độ điện ảnh đã tắt" @@ -1414,39 +1445,6 @@ msgstr "Lỗi kết nối (hết thời gian chờ?)" msgid "Connection failed for unknown reason" msgstr "Kết nối không thành công vì lý do không xác định" -#: src/client/game.cpp -msgid "Continue" -msgstr "Tiếp tục" - -#: src/client/game.cpp -#, fuzzy -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" -"Điều khiển mặc định:\n" -"Khi menu không hiển thị:\n" -"- một lần nhấn: nút kích hoạt\n" -"- nhấn đúp: đặt khối / sử dụng\n" -"- trượt ngón tay: nhìn xung quanh\n" -"Khi Menu / Túi đồ hiển thị:\n" -"- nhấn đúp (bên ngoài):\n" -" -> đóng\n" -"- chạm ngăn xếp, chạm ô:\n" -" -> di chuyển ngăn xếp\n" -"- chạm và kéo, chạm vào ngón tay thứ 2\n" -" -> đặt một mục duy nhất vào vị trí\n" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1460,31 +1458,15 @@ msgstr "Đang tạo máy khách..." msgid "Creating server..." msgstr "Đang tạo máy chủ..." -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "Thông tin gỡ lỗi và biểu đồ hồ sơ đã ẩn" - #: src/client/game.cpp msgid "Debug info shown" msgstr "Thông tin gỡ lỗi đã hiển thị" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "Thông tin gỡ lỗi, biểu đồ hồ sơ và khung dây đã ẩn" - #: src/client/game.cpp #, c-format msgid "Error creating client: %s" msgstr "Đã xảy ra lỗi khi tạo máy khách: %s" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "Thoát ra màn hình chính" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "Thoát Minetest" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "Chế độ nhanh đã tắt" @@ -1522,18 +1504,6 @@ msgstr "Sương mù đã bật" msgid "Fog enabled by game or mod" msgstr "Thu phóng đã bị vô hiệu bởi trò chơi hoặc mod" -#: src/client/game.cpp -msgid "Game info:" -msgstr "Thông tin trò chơi:" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "Trò chơi đã được tạm dừng" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "Đang tải máy chủ" - #: src/client/game.cpp msgid "Item definitions..." msgstr "Định nghĩa vật phẩm..." @@ -1570,14 +1540,6 @@ msgstr "" msgid "Node definitions..." msgstr "" -#: src/client/game.cpp -msgid "Off" -msgstr "Tắt" - -#: src/client/game.cpp -msgid "On" -msgstr "Bật" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "" @@ -1590,38 +1552,22 @@ msgstr "" msgid "Profiler graph shown" msgstr "Biểu đồ hồ sơ đã hiện" -#: src/client/game.cpp -msgid "Remote server" -msgstr "Máy chủ từ xa" - #: src/client/game.cpp msgid "Resolving address..." msgstr "Đang giải mã địa chỉ..." -#: src/client/game.cpp -msgid "Respawn" -msgstr "Hồi sinh" - #: src/client/game.cpp msgid "Shutting down..." msgstr "Đang thoát..." -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "Chơi đơn" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "Âm lượng" - #: src/client/game.cpp msgid "Sound muted" msgstr "Đã tắt tiếng" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "Hệ thống âm thanh đã bị vô hiệu" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "Hệ thống âm thanh không được hỗ trợ trong bản dựng này" @@ -1695,18 +1641,116 @@ msgstr "Phạm vi nhìn được đặt thành %d" msgid "Volume changed to %d%%" msgstr "Âm lượng được đặt thành %d%%" +#: src/client/game.cpp +msgid "Wireframe not supported by video driver" +msgstr "" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "Hiện khung dây" -#: src/client/game.cpp -msgid "You died" -msgstr "Bạn đã bị chết" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "Thu phóng đã bị vô hiệu bởi trò chơi hoặc mod" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "- Chế độ: " + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "- Công cộng: " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "- PvP: " + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "- Tên máy chủ: " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "Đổi mật khẩu" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "Tiếp tục" + +#: src/client/game_formspec.cpp +#, fuzzy +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" +"Điều khiển mặc định:\n" +"Khi menu không hiển thị:\n" +"- một lần nhấn: nút kích hoạt\n" +"- nhấn đúp: đặt khối / sử dụng\n" +"- trượt ngón tay: nhìn xung quanh\n" +"Khi Menu / Túi đồ hiển thị:\n" +"- nhấn đúp (bên ngoài):\n" +" -> đóng\n" +"- chạm ngăn xếp, chạm ô:\n" +" -> di chuyển ngăn xếp\n" +"- chạm và kéo, chạm vào ngón tay thứ 2\n" +" -> đặt một mục duy nhất vào vị trí\n" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "Thoát ra màn hình chính" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "Thoát Minetest" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "Thông tin trò chơi:" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "Trò chơi đã được tạm dừng" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "Đang tải máy chủ" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "Tắt" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "Bật" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "Máy chủ từ xa" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "Hồi sinh" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "Âm lượng" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "Bạn đã bị chết" + #: src/client/gameui.cpp #, fuzzy msgid "Chat currently disabled by game or mod" @@ -2046,8 +2090,9 @@ msgid "Failed to compile the \"%s\" shader." msgstr "Đã xảy ra lỗi khi mở trang web" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." -msgstr "" +#, fuzzy +msgid "GLSL is not supported by the driver" +msgstr "Hệ thống âm thanh không được hỗ trợ trong bản dựng này" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" #: src/content/mod_configuration.cpp @@ -2095,7 +2140,7 @@ msgstr "Tự động tiến" msgid "Automatic jumping" msgstr "Tự động nhảy" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "Aux1" @@ -2107,7 +2152,7 @@ msgstr "Lùi xuống" msgid "Block bounds" msgstr "Ranh giới khối" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "Thay đổi camera" @@ -2131,7 +2176,7 @@ msgstr "Giảm âm lượng" msgid "Double tap \"jump\" to toggle fly" msgstr "Nhấn đúp nút \"nhảy\" để chuyển đổi chế độ bay" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "Thả" @@ -2147,11 +2192,11 @@ msgstr "Tăng phạm vi" msgid "Inc. volume" msgstr "Tăng âm lượng" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "Túi đồ" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "Nhảy" @@ -2183,7 +2228,7 @@ msgstr "Vật phẩm tiếp theo" msgid "Prev. item" msgstr "Vật phẩm trước" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "Lựa chọn phạm vi" @@ -2195,7 +2240,7 @@ msgstr "Sang phải" msgid "Screenshot" msgstr "Chụp màn hình" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "Đi rón rén" @@ -2203,15 +2248,15 @@ msgstr "Đi rón rén" msgid "Toggle HUD" msgstr "Chuyển đổi HUD" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "Chuyển đổi nhật kí trò chuyện" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "Chuyển đổi chạy nhanh" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "Chuyển đổi bay" @@ -2219,11 +2264,11 @@ msgstr "Chuyển đổi bay" msgid "Toggle fog" msgstr "Chuyển đổi sương mù" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "Chuyển đổi minimap" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "" @@ -2231,7 +2276,7 @@ msgstr "" msgid "Toggle pitchmove" msgstr "" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "Thu phóng" @@ -2268,7 +2313,7 @@ msgstr "Mật khẩu cũ" msgid "Passwords do not match!" msgstr "Mật khẩu không khớp!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "Thoát" @@ -2281,15 +2326,46 @@ msgstr "Đã tắt tiếng" msgid "Sound Volume: %d%%" msgstr "Âm lượng: %d%%" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Add button" +msgstr "Nút giữa" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "Đã xong!" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Remove" +msgstr "Máy chủ từ xa" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp msgid "Joystick" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" msgstr "" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Toggle debug" msgstr "Chuyển đổi sương mù" @@ -2494,8 +2570,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" #: src/settings_translation_file.cpp @@ -2550,10 +2625,6 @@ msgstr "" msgid "Active object send range" msgstr "" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "" - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "" @@ -2577,6 +2648,16 @@ msgstr "Tên quản trị viên" msgid "Advanced" msgstr "Nâng cao" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +msgid "Allow clouds to look 3D instead of flat." +msgstr "" + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "" @@ -2950,15 +3031,14 @@ msgstr "Bán kính mây" msgid "Clouds" msgstr "Mây" -#: src/settings_translation_file.cpp -#, fuzzy -msgid "Clouds are a client-side effect." -msgstr "Mây là một hiệu ứng ở máy khách." - #: src/settings_translation_file.cpp msgid "Clouds in menu" msgstr "Mây trong menu" +#: src/settings_translation_file.cpp +msgid "Color depth for post-processing texture" +msgstr "" + #: src/settings_translation_file.cpp msgid "Colored fog" msgstr "Sương mù có màu" @@ -2981,7 +3061,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" #: src/settings_translation_file.cpp @@ -3123,6 +3203,14 @@ msgstr "" msgid "Debugging" msgstr "Gỡ lỗi" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "" @@ -3283,18 +3371,10 @@ msgid "" "When the 'snowbiomes' flag is enabled, this is ignored." msgstr "" -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "Không đồng bộ hoạt ảnh khối" - #: src/settings_translation_file.cpp msgid "Developer Options" msgstr "Tùy chọn nhà phát triển" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "Hạt hiệu ứng khi đào" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "Không cho phép mật khẩu trống" @@ -3322,6 +3402,14 @@ msgstr "Nhấn đúp nút nhảy để bay" msgid "Double-tapping the jump key toggles fly mode." msgstr "Nhấn đúp phím nhảy để chuyển đổi chế độ bay." +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "" @@ -3402,8 +3490,8 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" #: src/settings_translation_file.cpp @@ -3483,8 +3571,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" #: src/settings_translation_file.cpp @@ -3499,12 +3586,6 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "Kích hoạt hoạt ảnh của các vật phẩm trong túi đồ." -#: src/settings_translation_file.cpp -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "" - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "" @@ -3810,10 +3891,6 @@ msgstr "" msgid "GUI scaling filter" msgstr "" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "" - #: src/settings_translation_file.cpp #, fuzzy msgid "Gamepads" @@ -4038,12 +4115,6 @@ msgid "" "descending." msgstr "" -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -4062,6 +4133,13 @@ msgid "" "empty password." msgstr "" +#: src/settings_translation_file.cpp +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4156,10 +4234,6 @@ msgstr "" msgid "Interval of saving important changes in the world, stated in seconds." msgstr "" -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "" - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "" @@ -4779,10 +4853,6 @@ msgstr "" msgid "Maximum users" msgstr "" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "" @@ -4815,6 +4885,10 @@ msgstr "" msgid "Minimum limit of random number of small caves per mapchunk." msgstr "" +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "" @@ -4905,7 +4979,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" @@ -5349,17 +5423,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5557,16 +5633,6 @@ msgstr "" msgid "Shader path" msgstr "" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "Trình đổ bóng" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "" @@ -5734,10 +5800,9 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" #: src/settings_translation_file.cpp @@ -6016,10 +6081,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "" -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "" @@ -6081,6 +6142,10 @@ msgstr "" msgid "Transparency Sorting Distance" msgstr "" +#: src/settings_translation_file.cpp +msgid "Transparency Sorting Group by Buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "" @@ -6131,7 +6196,10 @@ msgid "" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" #: src/settings_translation_file.cpp @@ -6154,16 +6222,14 @@ msgstr "" msgid "Upper Y limit of floatlands." msgstr "" -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "" - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "" #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "" #: src/settings_translation_file.cpp @@ -6406,20 +6472,12 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -6430,10 +6488,6 @@ msgid "" "Mods may still set a background." msgstr "" -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -6456,8 +6510,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -6665,6 +6718,10 @@ msgstr "Gặp giới hạn số lượng tệp tải xuống trong cURL" #~ msgid "Clean transparent textures" #~ msgstr "Xóa các kết cấu trong suốt" +#, fuzzy +#~ msgid "Clouds are a client-side effect." +#~ msgstr "Mây là một hiệu ứng ở máy khách." + #~ msgid "Command key" #~ msgstr "Phím lệnh" @@ -6715,9 +6772,15 @@ msgstr "Gặp giới hạn số lượng tệp tải xuống trong cURL" #~ msgid "Damage" #~ msgstr "Sát thương" +#~ msgid "Debug info and profiler graph hidden" +#~ msgstr "Thông tin gỡ lỗi và biểu đồ hồ sơ đã ẩn" + #~ msgid "Debug info toggle key" #~ msgstr "Phím chuyển đổi thông tin gỡ lỗi" +#~ msgid "Debug info, profiler graph, and wireframe hidden" +#~ msgstr "Thông tin gỡ lỗi, biểu đồ hồ sơ và khung dây đã ẩn" + #~ msgid "Dec. volume key" #~ msgstr "Phím giảm âm lượng" @@ -6731,9 +6794,15 @@ msgstr "Gặp giới hạn số lượng tệp tải xuống trong cURL" #~ "Trò chơi mặc định khi tạo thế giới mới.\n" #~ "Nó sẽ bị ghi đè khi tạo một thế giới từ màn hình chính." +#~ msgid "Desynchronize block animation" +#~ msgstr "Không đồng bộ hoạt ảnh khối" + #~ msgid "Dig key" #~ msgstr "Phím đào" +#~ msgid "Digging particles" +#~ msgstr "Hạt hiệu ứng khi đào" + #~ msgid "Disable anticheat" #~ msgstr "Vô hiệu trình chống gian lận" @@ -6756,6 +6825,10 @@ msgstr "Gặp giới hạn số lượng tệp tải xuống trong cURL" #~ msgid "Dynamic shadows:" #~ msgstr "Bóng kiểu động lực học:" +#, fuzzy +#~ msgid "Enable" +#~ msgstr "Đã kích hoạt" + #~ msgid "Enable creative mode for all players" #~ msgstr "Kích hoạt chế độ sáng tạo cho tất cả người chơi" @@ -6787,9 +6860,6 @@ msgstr "Gặp giới hạn số lượng tệp tải xuống trong cURL" #~ msgid "Flying" #~ msgstr "Bay" -#~ msgid "Game" -#~ msgstr "Trò chơi" - #, fuzzy #~ msgid "Hide: Temporary Settings" #~ msgstr "Cài đặt" @@ -6844,15 +6914,25 @@ msgstr "Gặp giới hạn số lượng tệp tải xuống trong cURL" #~ msgid "Screen:" #~ msgstr "Màn hình:" +#~ msgid "Shaders" +#~ msgstr "Trình đổ bóng" + #~ msgid "Shaders (experimental)" #~ msgstr "Trình đổ bóng (thử nghiệm)" #~ msgid "Shaders (unavailable)" #~ msgstr "Trình đổ bóng (không tồn tại)" +#, fuzzy +#~ msgid "Shaders are disabled." +#~ msgstr "Cập nhật máy ảnh đã tắt" + #~ msgid "Simple Leaves" #~ msgstr "Lá đơn giản" +#~ msgid "Sound system is disabled" +#~ msgstr "Hệ thống âm thanh đã bị vô hiệu" + #~ msgid "Texturing:" #~ msgstr "Kết cấu:" diff --git a/po/yue/luanti.po b/po/yue/luanti.po deleted file mode 100644 index 2671ce9f8..000000000 --- a/po/yue/luanti.po +++ /dev/null @@ -1,6399 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: minetest\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" -"PO-Revision-Date: 2023-12-03 17:17+0000\n" -"Last-Translator: Krock \n" -"Language-Team: Yue (Traditional) \n" -"Language: yue\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 5.3-dev\n" - -#: builtin/client/chatcommands.lua -msgid "Clear the out chat queue" -msgstr "" - -#: builtin/client/chatcommands.lua -msgid "Empty command." -msgstr "" - -#: builtin/client/chatcommands.lua -msgid "Exit to main menu" -msgstr "" - -#: builtin/client/chatcommands.lua -msgid "Invalid command: " -msgstr "" - -#: builtin/client/chatcommands.lua -msgid "Issued command: " -msgstr "" - -#: builtin/client/chatcommands.lua -msgid "List online players" -msgstr "" - -#: builtin/client/chatcommands.lua -msgid "Online players: " -msgstr "" - -#: builtin/client/chatcommands.lua -msgid "The out chat queue is now empty." -msgstr "" - -#: builtin/client/chatcommands.lua -msgid "This command is disabled by server." -msgstr "" - -#: builtin/common/chatcommands.lua -msgid "Available commands:" -msgstr "" - -#: builtin/common/chatcommands.lua -msgid "Available commands: " -msgstr "" - -#: builtin/common/chatcommands.lua -msgid "Command not available: " -msgstr "" - -#: builtin/common/chatcommands.lua -msgid "Get help for commands (-t: output in chat)" -msgstr "" - -#: builtin/common/chatcommands.lua -msgid "" -"Use '.help ' to get more information, or '.help all' to list everything." -msgstr "" - -#: builtin/common/chatcommands.lua -msgid "[all | ] [-t]" -msgstr "" - -#: builtin/fstk/ui.lua -msgid "" -msgstr "" - -#: builtin/fstk/ui.lua -msgid "An error occurred in a Lua script:" -msgstr "" - -#: builtin/fstk/ui.lua -msgid "An error occurred:" -msgstr "" - -#: builtin/fstk/ui.lua -msgid "Main menu" -msgstr "" - -#: builtin/fstk/ui.lua -msgid "OK" -msgstr "" - -#: builtin/fstk/ui.lua -msgid "Reconnect" -msgstr "" - -#: builtin/fstk/ui.lua -msgid "The server has requested a reconnect:" -msgstr "" - -#: builtin/mainmenu/common.lua -msgid "Protocol version mismatch. " -msgstr "" - -#: builtin/mainmenu/common.lua -msgid "Server enforces protocol version $1. " -msgstr "" - -#: builtin/mainmenu/common.lua -msgid "Server supports protocol versions between $1 and $2. " -msgstr "" - -#: builtin/mainmenu/common.lua -msgid "We only support protocol version $1." -msgstr "" - -#: builtin/mainmenu/common.lua -msgid "We support protocol versions between version $1 and $2." -msgstr "" - -#: builtin/mainmenu/content/contentdb.lua -msgid "Error installing \"$1\": $2" -msgstr "" - -#: builtin/mainmenu/content/contentdb.lua -msgid "Failed to download \"$1\"" -msgstr "" - -#: builtin/mainmenu/content/contentdb.lua -msgid "Failed to download $1" -msgstr "" - -#: builtin/mainmenu/content/contentdb.lua -msgid "" -"Failed to extract \"$1\" (insufficient disk space, unsupported file type or " -"broken archive)" -msgstr "" - -#: builtin/mainmenu/content/dlg_contentdb.lua -msgid "" -"$1 downloading,\n" -"$2 queued" -msgstr "" - -#: builtin/mainmenu/content/dlg_contentdb.lua -msgid "$1 downloading..." -msgstr "" - -#: builtin/mainmenu/content/dlg_contentdb.lua -msgid "All" -msgstr "" - -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Back" -msgstr "" - -#: builtin/mainmenu/content/dlg_contentdb.lua -msgid "ContentDB is not available when Luanti was compiled without cURL" -msgstr "" - -#: builtin/mainmenu/content/dlg_contentdb.lua -msgid "Downloading..." -msgstr "" - -#: builtin/mainmenu/content/dlg_contentdb.lua -msgid "Featured" -msgstr "" - -#: builtin/mainmenu/content/dlg_contentdb.lua -msgid "Games" -msgstr "" - -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_package.lua builtin/mainmenu/serverlistmgr.lua -#: src/client/game.cpp -msgid "Loading..." -msgstr "" - -#: builtin/mainmenu/content/dlg_contentdb.lua -msgid "Mods" -msgstr "" - -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/content/dlg_package.lua -msgid "No packages could be retrieved" -msgstr "" - -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "" - -#: builtin/mainmenu/content/dlg_contentdb.lua -msgid "No updates" -msgstr "" - -#: builtin/mainmenu/content/dlg_contentdb.lua -msgid "Queued" -msgstr "" - -#: builtin/mainmenu/content/dlg_contentdb.lua -msgid "Texture Packs" -msgstr "" - -#: builtin/mainmenu/content/dlg_contentdb.lua -msgid "The package $1 was not found." -msgstr "" - -#: builtin/mainmenu/content/dlg_contentdb.lua -msgid "Update All [$1]" -msgstr "" - -#: builtin/mainmenu/content/dlg_install.lua -msgid "$1 and $2 dependencies will be installed." -msgstr "" - -#: builtin/mainmenu/content/dlg_install.lua -msgid "$1 by $2" -msgstr "" - -#: builtin/mainmenu/content/dlg_install.lua -msgid "$1 required dependencies could not be found." -msgstr "" - -#: builtin/mainmenu/content/dlg_install.lua -msgid "$1 will be installed, and $2 dependencies will be skipped." -msgstr "" - -#: builtin/mainmenu/content/dlg_install.lua -msgid "Already installed" -msgstr "" - -#: builtin/mainmenu/content/dlg_install.lua -msgid "Base Game:" -msgstr "" - -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "" - -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua -msgid "Dependencies:" -msgstr "" - -#: builtin/mainmenu/content/dlg_install.lua -msgid "Error getting dependencies for package $1" -msgstr "" - -#: builtin/mainmenu/content/dlg_install.lua -msgid "Install" -msgstr "" - -#: builtin/mainmenu/content/dlg_install.lua -msgid "Install $1" -msgstr "" - -#: builtin/mainmenu/content/dlg_install.lua -msgid "Install missing dependencies" -msgstr "" - -#: builtin/mainmenu/content/dlg_install.lua -msgid "Not found" -msgstr "" - -#: builtin/mainmenu/content/dlg_install.lua -msgid "Please check that the base game is correct." -msgstr "" - -#: builtin/mainmenu/content/dlg_install.lua -msgid "You need to install a game before you can install a mod" -msgstr "" - -#: builtin/mainmenu/content/dlg_overwrite.lua -msgid "\"$1\" already exists. Would you like to overwrite it?" -msgstr "" - -#: builtin/mainmenu/content/dlg_overwrite.lua -msgid "Overwrite" -msgstr "" - -#: builtin/mainmenu/content/dlg_package.lua -msgid "ContentDB page" -msgstr "" - -#: builtin/mainmenu/content/dlg_package.lua -msgid "Description" -msgstr "" - -#: builtin/mainmenu/content/dlg_package.lua -msgid "Donate" -msgstr "" - -#: builtin/mainmenu/content/dlg_package.lua -msgid "Forum Topic" -msgstr "" - -#: builtin/mainmenu/content/dlg_package.lua -msgid "Information" -msgstr "" - -#: builtin/mainmenu/content/dlg_package.lua -msgid "Install [$1]" -msgstr "" - -#: builtin/mainmenu/content/dlg_package.lua -msgid "Issue Tracker" -msgstr "" - -#: builtin/mainmenu/content/dlg_package.lua -msgid "Source" -msgstr "" - -#: builtin/mainmenu/content/dlg_package.lua -msgid "Translate" -msgstr "" - -#: builtin/mainmenu/content/dlg_package.lua builtin/mainmenu/tab_content.lua -msgid "Uninstall" -msgstr "" - -#: builtin/mainmenu/content/dlg_package.lua builtin/mainmenu/tab_content.lua -msgid "Update" -msgstr "" - -#: builtin/mainmenu/content/dlg_package.lua -msgid "Website" -msgstr "" - -#: builtin/mainmenu/content/dlg_package.lua -msgid "by $1 — $2 downloads — +$3 / $4 / -$5" -msgstr "" - -#: builtin/mainmenu/content/pkgmgr.lua -msgid "$1 (Enabled)" -msgstr "" - -#: builtin/mainmenu/content/pkgmgr.lua -msgid "$1 mods" -msgstr "" - -#: builtin/mainmenu/content/pkgmgr.lua -msgid "Failed to install $1 to $2" -msgstr "" - -#: builtin/mainmenu/content/pkgmgr.lua -msgid "Install: Unable to find suitable folder name for $1" -msgstr "" - -#: builtin/mainmenu/content/pkgmgr.lua -msgid "Unable to find a valid mod, modpack, or game" -msgstr "" - -#: builtin/mainmenu/content/pkgmgr.lua -msgid "Unable to install a $1 as a $2" -msgstr "" - -#: builtin/mainmenu/content/pkgmgr.lua -msgid "Unable to install a $1 as a texture pack" -msgstr "" - -#: builtin/mainmenu/dlg_config_world.lua -msgid "(Enabled, has error)" -msgstr "" - -#: builtin/mainmenu/dlg_config_world.lua -msgid "(Unsatisfied)" -msgstr "" - -#: builtin/mainmenu/dlg_config_world.lua -msgid "Disable all" -msgstr "" - -#: builtin/mainmenu/dlg_config_world.lua -msgid "Disable modpack" -msgstr "" - -#: builtin/mainmenu/dlg_config_world.lua -msgid "Enable all" -msgstr "" - -#: builtin/mainmenu/dlg_config_world.lua -msgid "Enable modpack" -msgstr "" - -#: builtin/mainmenu/dlg_config_world.lua -msgid "" -"Failed to enable mod \"$1\" as it contains disallowed characters. Only " -"characters [a-z0-9_] are allowed." -msgstr "" - -#: builtin/mainmenu/dlg_config_world.lua -msgid "Find More Mods" -msgstr "" - -#: builtin/mainmenu/dlg_config_world.lua -msgid "Mod:" -msgstr "" - -#: builtin/mainmenu/dlg_config_world.lua -msgid "No (optional) dependencies" -msgstr "" - -#: builtin/mainmenu/dlg_config_world.lua -msgid "No game description provided." -msgstr "" - -#: builtin/mainmenu/dlg_config_world.lua -msgid "No hard dependencies" -msgstr "" - -#: builtin/mainmenu/dlg_config_world.lua -msgid "No modpack description provided." -msgstr "" - -#: builtin/mainmenu/dlg_config_world.lua -msgid "No optional dependencies" -msgstr "" - -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua -msgid "Optional dependencies:" -msgstr "" - -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "" - -#: builtin/mainmenu/dlg_config_world.lua -msgid "World:" -msgstr "" - -#: builtin/mainmenu/dlg_config_world.lua -msgid "enabled" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "A world named \"$1\" already exists" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Additional terrain" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua src/settings_translation_file.cpp -msgid "Altitude chill" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Altitude dry" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Biome blending" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Biomes" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Caverns" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Caves" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Create" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Decorations" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Desert temples" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Development Test is meant for developers." -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "" -"Different dungeon variant generated in desert biomes (only if dungeons " -"enabled)" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Dungeons" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Flat terrain" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Floating landmasses in the sky" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Floatlands (experimental)" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Generate non-fractal terrain: Oceans and underground" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Hills" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Humid rivers" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Increases humidity around rivers" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Install another game" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Lakes" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Low humidity and high heat causes shallow or dry rivers" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua src/settings_translation_file.cpp -msgid "Mapgen" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua src/settings_translation_file.cpp -msgid "Mapgen flags" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Mapgen-specific flags" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Mountains" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Mud flow" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Network of tunnels and caves" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "No game selected" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Reduces heat with altitude" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Reduces humidity with altitude" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Rivers" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Sea level rivers" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Smooth transition between biomes" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "" -"Structures appearing on the terrain (no effect on trees and jungle grass " -"created by v6)" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Structures appearing on the terrain, typically trees and plants" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Temperate, Desert" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Temperate, Desert, Jungle" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Temperate, Desert, Jungle, Tundra, Taiga" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Terrain surface erosion" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Trees and jungle grass" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Vary river depth" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "Very large caverns deep in the underground" -msgstr "" - -#: builtin/mainmenu/dlg_create_world.lua -msgid "World name" -msgstr "" - -#: builtin/mainmenu/dlg_delete_content.lua -msgid "Are you sure you want to delete \"$1\"?" -msgstr "" - -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/tab_local.lua -msgid "Delete" -msgstr "" - -#: builtin/mainmenu/dlg_delete_content.lua -msgid "pkgmgr: failed to delete \"$1\"" -msgstr "" - -#: builtin/mainmenu/dlg_delete_content.lua -msgid "pkgmgr: invalid path \"$1\"" -msgstr "" - -#: builtin/mainmenu/dlg_delete_world.lua -msgid "Delete World \"$1\"?" -msgstr "" - -#: builtin/mainmenu/dlg_register.lua src/gui/guiPasswordChange.cpp -msgid "Confirm Password" -msgstr "" - -#: builtin/mainmenu/dlg_register.lua -msgid "Joining $1" -msgstr "" - -#: builtin/mainmenu/dlg_register.lua -msgid "Missing name" -msgstr "" - -#: builtin/mainmenu/dlg_register.lua builtin/mainmenu/tab_local.lua -#: builtin/mainmenu/tab_online.lua -msgid "Name" -msgstr "" - -#: builtin/mainmenu/dlg_register.lua builtin/mainmenu/tab_local.lua -#: builtin/mainmenu/tab_online.lua -msgid "Password" -msgstr "" - -#: builtin/mainmenu/dlg_register.lua -msgid "Passwords do not match" -msgstr "" - -#: builtin/mainmenu/dlg_register.lua builtin/mainmenu/tab_online.lua -msgid "Register" -msgstr "" - -#: builtin/mainmenu/dlg_reinstall_mtg.lua -msgid "Dismiss" -msgstr "" - -#: builtin/mainmenu/dlg_reinstall_mtg.lua -msgid "" -"For a long time, Luanti shipped with a default game called \"Minetest " -"Game\". Since version 5.8.0, Luanti ships without a default game." -msgstr "" - -#: builtin/mainmenu/dlg_reinstall_mtg.lua -msgid "" -"If you want to continue playing in your Minetest Game worlds, you need to " -"reinstall Minetest Game." -msgstr "" - -#: builtin/mainmenu/dlg_reinstall_mtg.lua -msgid "Minetest Game is no longer installed by default" -msgstr "" - -#: builtin/mainmenu/dlg_reinstall_mtg.lua -msgid "Reinstall Minetest Game" -msgstr "" - -#: builtin/mainmenu/dlg_rename_modpack.lua -msgid "Accept" -msgstr "" - -#: builtin/mainmenu/dlg_rename_modpack.lua -msgid "Rename Modpack:" -msgstr "" - -#: builtin/mainmenu/dlg_rename_modpack.lua -msgid "" -"This modpack has an explicit name given in its modpack.conf which will " -"override any renaming here." -msgstr "" - -#: builtin/mainmenu/dlg_version_info.lua -msgid "A new $1 version is available" -msgstr "" - -#: builtin/mainmenu/dlg_version_info.lua -msgid "" -"Installed version: $1\n" -"New version: $2\n" -"Visit $3 to find out how to get the newest version and stay up to date with " -"features and bugfixes." -msgstr "" - -#: builtin/mainmenu/dlg_version_info.lua -msgid "Later" -msgstr "" - -#: builtin/mainmenu/dlg_version_info.lua -msgid "Never" -msgstr "" - -#: builtin/mainmenu/dlg_version_info.lua -msgid "Visit website" -msgstr "" - -#: builtin/mainmenu/init.lua -msgid "Settings" -msgstr "" - -#: builtin/mainmenu/serverlistmgr.lua -msgid "Public server list is disabled" -msgstr "" - -#: builtin/mainmenu/serverlistmgr.lua -msgid "Try reenabling public serverlist and check your internet connection." -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "" - -#: builtin/mainmenu/settings/components.lua -msgid "Set" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable automatic exposure as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable bloom as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "Enable" -msgstr "" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "Shaders are disabled." -msgstr "" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "" - -#: builtin/mainmenu/tab_about.lua -msgid "About" -msgstr "" - -#: builtin/mainmenu/tab_about.lua -msgid "Active Contributors" -msgstr "" - -#: builtin/mainmenu/tab_about.lua -msgid "Active renderer:" -msgstr "" - -#: builtin/mainmenu/tab_about.lua -msgid "Core Developers" -msgstr "" - -#: builtin/mainmenu/tab_about.lua -msgid "Core Team" -msgstr "" - -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "" - -#: builtin/mainmenu/tab_about.lua -msgid "Open User Data Directory" -msgstr "" - -#: builtin/mainmenu/tab_about.lua -msgid "" -"Opens the directory that contains user-provided worlds, games, mods,\n" -"and texture packs in a file manager / explorer." -msgstr "" - -#: builtin/mainmenu/tab_about.lua -msgid "Previous Contributors" -msgstr "" - -#: builtin/mainmenu/tab_about.lua -msgid "Previous Core Developers" -msgstr "" - -#: builtin/mainmenu/tab_about.lua -msgid "Share debug log" -msgstr "" - -#: builtin/mainmenu/tab_content.lua -msgid "Browse online content" -msgstr "" - -#: builtin/mainmenu/tab_content.lua -msgid "Browse online content [$1]" -msgstr "" - -#: builtin/mainmenu/tab_content.lua -msgid "Content" -msgstr "" - -#: builtin/mainmenu/tab_content.lua -msgid "Content [$1]" -msgstr "" - -#: builtin/mainmenu/tab_content.lua -msgid "Disable Texture Pack" -msgstr "" - -#: builtin/mainmenu/tab_content.lua -msgid "Installed Packages:" -msgstr "" - -#: builtin/mainmenu/tab_content.lua -msgid "No dependencies." -msgstr "" - -#: builtin/mainmenu/tab_content.lua -msgid "No package description available" -msgstr "" - -#: builtin/mainmenu/tab_content.lua -msgid "Rename" -msgstr "" - -#: builtin/mainmenu/tab_content.lua -msgid "Update available?" -msgstr "" - -#: builtin/mainmenu/tab_content.lua -msgid "Use Texture Pack" -msgstr "" - -#: builtin/mainmenu/tab_local.lua -msgid "Announce Server" -msgstr "" - -#: builtin/mainmenu/tab_local.lua -msgid "Bind Address" -msgstr "" - -#: builtin/mainmenu/tab_local.lua -msgid "Creative Mode" -msgstr "" - -#: builtin/mainmenu/tab_local.lua -msgid "Enable Damage" -msgstr "" - -#: builtin/mainmenu/tab_local.lua -msgid "Host Game" -msgstr "" - -#: builtin/mainmenu/tab_local.lua -msgid "Host Server" -msgstr "" - -#: builtin/mainmenu/tab_local.lua -msgid "Install a game" -msgstr "" - -#: builtin/mainmenu/tab_local.lua -msgid "Install games from ContentDB" -msgstr "" - -#: builtin/mainmenu/tab_local.lua -msgid "Luanti doesn't come with a game by default." -msgstr "" - -#: builtin/mainmenu/tab_local.lua -msgid "" -"Luanti is a game-creation platform that allows you to play many different " -"games." -msgstr "" - -#: builtin/mainmenu/tab_local.lua -msgid "New" -msgstr "" - -#: builtin/mainmenu/tab_local.lua -msgid "No world created or selected!" -msgstr "" - -#: builtin/mainmenu/tab_local.lua -msgid "Play Game" -msgstr "" - -#: builtin/mainmenu/tab_local.lua builtin/mainmenu/tab_online.lua -msgid "Port" -msgstr "" - -#: builtin/mainmenu/tab_local.lua -msgid "Select Mods" -msgstr "" - -#: builtin/mainmenu/tab_local.lua -msgid "Select World:" -msgstr "" - -#: builtin/mainmenu/tab_local.lua -msgid "Server Port" -msgstr "" - -#: builtin/mainmenu/tab_local.lua -msgid "Start Game" -msgstr "" - -#: builtin/mainmenu/tab_local.lua -msgid "You need to install a game before you can create a world." -msgstr "" - -#: builtin/mainmenu/tab_online.lua -msgid "Address" -msgstr "" - -#: builtin/mainmenu/tab_online.lua -msgid "Creative mode" -msgstr "" - -#. ~ PvP = Player versus Player -#: builtin/mainmenu/tab_online.lua -msgid "Damage / PvP" -msgstr "" - -#: builtin/mainmenu/tab_online.lua -msgid "Favorites" -msgstr "" - -#: builtin/mainmenu/tab_online.lua -msgid "Incompatible Servers" -msgstr "" - -#: builtin/mainmenu/tab_online.lua -msgid "Join Game" -msgstr "" - -#: builtin/mainmenu/tab_online.lua -msgid "Login" -msgstr "" - -#: builtin/mainmenu/tab_online.lua -msgid "Ping" -msgstr "" - -#: builtin/mainmenu/tab_online.lua -msgid "Public Servers" -msgstr "" - -#: builtin/mainmenu/tab_online.lua -msgid "Refresh" -msgstr "" - -#: builtin/mainmenu/tab_online.lua -msgid "Remove favorite" -msgstr "" - -#: builtin/mainmenu/tab_online.lua -msgid "Server Description" -msgstr "" - -#: src/client/client.cpp -msgid "Connection aborted (protocol error?)." -msgstr "" - -#: src/client/client.cpp src/client/game.cpp -msgid "Connection timed out." -msgstr "" - -#: src/client/client.cpp -msgid "Done!" -msgstr "" - -#: src/client/client.cpp -msgid "Initializing nodes" -msgstr "" - -#: src/client/client.cpp -msgid "Initializing nodes..." -msgstr "" - -#: src/client/client.cpp -msgid "Loading textures..." -msgstr "" - -#: src/client/client.cpp -msgid "Rebuilding shaders..." -msgstr "" - -#: src/client/clientlauncher.cpp -msgid "Could not find or load game: " -msgstr "" - -#: src/client/clientlauncher.cpp -msgid "Main Menu" -msgstr "" - -#: src/client/clientlauncher.cpp -msgid "No world selected and no address provided. Nothing to do." -msgstr "" - -#: src/client/clientlauncher.cpp -msgid "Player name too long." -msgstr "" - -#: src/client/clientlauncher.cpp -msgid "Please choose a name!" -msgstr "" - -#: src/client/clientlauncher.cpp -msgid "Provided password file failed to open: " -msgstr "" - -#: src/client/clientlauncher.cpp -msgid "Provided world path doesn't exist: " -msgstr "" - -#: src/client/clientmedia.cpp src/client/game.cpp -msgid "Media..." -msgstr "" - -#: src/client/game.cpp src/client/shader.cpp src/server.cpp -msgid "" -"\n" -"Check debug.txt for details." -msgstr "" - -#: src/client/game.cpp -msgid "- Mode: " -msgstr "" - -#: src/client/game.cpp -msgid "- Public: " -msgstr "" - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "" - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "" - -#: src/client/game.cpp -msgid "A serialization error occurred:" -msgstr "" - -#: src/client/game.cpp -#, c-format -msgid "Access denied. Reason: %s" -msgstr "" - -#: src/client/game.cpp -msgid "Automatic forward disabled" -msgstr "" - -#: src/client/game.cpp -msgid "Automatic forward enabled" -msgstr "" - -#: src/client/game.cpp -msgid "Block bounds hidden" -msgstr "" - -#: src/client/game.cpp -msgid "Block bounds shown for current block" -msgstr "" - -#: src/client/game.cpp -msgid "Block bounds shown for nearby blocks" -msgstr "" - -#: src/client/game.cpp -msgid "Camera update disabled" -msgstr "" - -#: src/client/game.cpp -msgid "Camera update enabled" -msgstr "" - -#: src/client/game.cpp -msgid "Can't show block bounds (disabled by game or mod)" -msgstr "" - -#: src/client/game.cpp -msgid "Change Password" -msgstr "" - -#: src/client/game.cpp -msgid "Cinematic mode disabled" -msgstr "" - -#: src/client/game.cpp -msgid "Cinematic mode enabled" -msgstr "" - -#: src/client/game.cpp -msgid "Client disconnected" -msgstr "" - -#: src/client/game.cpp -msgid "Client side scripting is disabled" -msgstr "" - -#: src/client/game.cpp -msgid "Connecting to server..." -msgstr "" - -#: src/client/game.cpp -msgid "Connection error (timed out?)" -msgstr "" - -#: src/client/game.cpp -msgid "Connection failed for unknown reason" -msgstr "" - -#: src/client/game.cpp -msgid "Continue" -msgstr "" - -#: src/client/game.cpp -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" - -#: src/client/game.cpp -#, c-format -msgid "Couldn't resolve address: %s" -msgstr "" - -#: src/client/game.cpp -msgid "Creating client..." -msgstr "" - -#: src/client/game.cpp -msgid "Creating server..." -msgstr "" - -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "" - -#: src/client/game.cpp -msgid "Debug info shown" -msgstr "" - -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "" - -#: src/client/game.cpp -#, c-format -msgid "Error creating client: %s" -msgstr "" - -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "" - -#: src/client/game.cpp -msgid "Fast mode disabled" -msgstr "" - -#: src/client/game.cpp -msgid "Fast mode enabled" -msgstr "" - -#: src/client/game.cpp -msgid "Fast mode enabled (note: no 'fast' privilege)" -msgstr "" - -#: src/client/game.cpp -msgid "Fly mode disabled" -msgstr "" - -#: src/client/game.cpp -msgid "Fly mode enabled" -msgstr "" - -#: src/client/game.cpp -msgid "Fly mode enabled (note: no 'fly' privilege)" -msgstr "" - -#: src/client/game.cpp -msgid "Fog disabled" -msgstr "" - -#: src/client/game.cpp -msgid "Fog enabled" -msgstr "" - -#: src/client/game.cpp -msgid "Fog enabled by game or mod" -msgstr "" - -#: src/client/game.cpp -msgid "Game info:" -msgstr "" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "" - -#: src/client/game.cpp -msgid "Item definitions..." -msgstr "" - -#: src/client/game.cpp -msgid "KiB/s" -msgstr "" - -#: src/client/game.cpp -msgid "MiB/s" -msgstr "" - -#: src/client/game.cpp -msgid "Minimap currently disabled by game or mod" -msgstr "" - -#: src/client/game.cpp -msgid "Multiplayer" -msgstr "" - -#: src/client/game.cpp -msgid "Noclip mode disabled" -msgstr "" - -#: src/client/game.cpp -msgid "Noclip mode enabled" -msgstr "" - -#: src/client/game.cpp -msgid "Noclip mode enabled (note: no 'noclip' privilege)" -msgstr "" - -#: src/client/game.cpp -msgid "Node definitions..." -msgstr "" - -#: src/client/game.cpp -msgid "Off" -msgstr "" - -#: src/client/game.cpp -msgid "On" -msgstr "" - -#: src/client/game.cpp -msgid "Pitch move mode disabled" -msgstr "" - -#: src/client/game.cpp -msgid "Pitch move mode enabled" -msgstr "" - -#: src/client/game.cpp -msgid "Profiler graph shown" -msgstr "" - -#: src/client/game.cpp -msgid "Remote server" -msgstr "" - -#: src/client/game.cpp -msgid "Resolving address..." -msgstr "" - -#: src/client/game.cpp -msgid "Respawn" -msgstr "" - -#: src/client/game.cpp -msgid "Shutting down..." -msgstr "" - -#: src/client/game.cpp -msgid "Singleplayer" -msgstr "" - -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "" - -#: src/client/game.cpp -msgid "Sound muted" -msgstr "" - -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "" - -#: src/client/game.cpp -msgid "Sound system is not supported on this build" -msgstr "" - -#: src/client/game.cpp -msgid "Sound unmuted" -msgstr "" - -#: src/client/game.cpp -#, c-format -msgid "The server is probably running a different version of %s." -msgstr "" - -#: src/client/game.cpp -#, c-format -msgid "Unable to connect to %s because IPv6 is disabled" -msgstr "" - -#: src/client/game.cpp -#, c-format -msgid "Unable to listen on %s because IPv6 is disabled" -msgstr "" - -#: src/client/game.cpp -msgid "Unlimited viewing range disabled" -msgstr "" - -#: src/client/game.cpp -msgid "Unlimited viewing range enabled" -msgstr "" - -#: src/client/game.cpp -msgid "Unlimited viewing range enabled, but forbidden by game or mod" -msgstr "" - -#: src/client/game.cpp -#, c-format -msgid "Viewing changed to %d (the minimum)" -msgstr "" - -#: src/client/game.cpp -#, c-format -msgid "Viewing changed to %d (the minimum), but limited to %d by game or mod" -msgstr "" - -#: src/client/game.cpp -#, c-format -msgid "Viewing range changed to %d" -msgstr "" - -#: src/client/game.cpp -#, c-format -msgid "Viewing range changed to %d (the maximum)" -msgstr "" - -#: src/client/game.cpp -#, c-format -msgid "" -"Viewing range changed to %d (the maximum), but limited to %d by game or mod" -msgstr "" - -#: src/client/game.cpp -#, c-format -msgid "Viewing range changed to %d, but limited to %d by game or mod" -msgstr "" - -#: src/client/game.cpp -#, c-format -msgid "Volume changed to %d%%" -msgstr "" - -#: src/client/game.cpp -msgid "Wireframe shown" -msgstr "" - -#: src/client/game.cpp -msgid "You died" -msgstr "" - -#: src/client/game.cpp -msgid "Zoom currently disabled by game or mod" -msgstr "" - -#: src/client/gameui.cpp -msgid "Chat currently disabled by game or mod" -msgstr "" - -#: src/client/gameui.cpp -msgid "Chat hidden" -msgstr "" - -#: src/client/gameui.cpp -msgid "Chat shown" -msgstr "" - -#: src/client/gameui.cpp -msgid "HUD hidden" -msgstr "" - -#: src/client/gameui.cpp -msgid "HUD shown" -msgstr "" - -#: src/client/gameui.cpp -msgid "Profiler hidden" -msgstr "" - -#: src/client/gameui.cpp -#, c-format -msgid "Profiler shown (page %d of %d)" -msgstr "" - -#: src/client/keycode.cpp -msgid "Apps" -msgstr "" - -#: src/client/keycode.cpp -msgid "Backspace" -msgstr "" - -#. ~ Usually paired with the Pause key -#: src/client/keycode.cpp -msgid "Break Key" -msgstr "" - -#: src/client/keycode.cpp -msgid "Caps Lock" -msgstr "" - -#: src/client/keycode.cpp -msgid "Clear Key" -msgstr "" - -#: src/client/keycode.cpp -msgid "Control Key" -msgstr "" - -#: src/client/keycode.cpp -msgid "Delete Key" -msgstr "" - -#: src/client/keycode.cpp -msgid "Down Arrow" -msgstr "" - -#: src/client/keycode.cpp -msgid "End" -msgstr "" - -#: src/client/keycode.cpp -msgid "Erase EOF" -msgstr "" - -#: src/client/keycode.cpp -msgid "Execute" -msgstr "" - -#: src/client/keycode.cpp -msgid "Help" -msgstr "" - -#: src/client/keycode.cpp -msgid "Home" -msgstr "" - -#: src/client/keycode.cpp -msgid "IME Accept" -msgstr "" - -#: src/client/keycode.cpp -msgid "IME Convert" -msgstr "" - -#: src/client/keycode.cpp -msgid "IME Escape" -msgstr "" - -#: src/client/keycode.cpp -msgid "IME Mode Change" -msgstr "" - -#: src/client/keycode.cpp -msgid "IME Nonconvert" -msgstr "" - -#: src/client/keycode.cpp -msgid "Insert" -msgstr "" - -#: src/client/keycode.cpp -msgid "Left Arrow" -msgstr "" - -#: src/client/keycode.cpp -msgid "Left Button" -msgstr "" - -#: src/client/keycode.cpp -msgid "Left Control" -msgstr "" - -#: src/client/keycode.cpp -msgid "Left Menu" -msgstr "" - -#: src/client/keycode.cpp -msgid "Left Shift" -msgstr "" - -#: src/client/keycode.cpp -msgid "Left Windows" -msgstr "" - -#. ~ Key name, common on Windows keyboards -#: src/client/keycode.cpp -msgid "Menu Key" -msgstr "" - -#: src/client/keycode.cpp -msgid "Middle Button" -msgstr "" - -#: src/client/keycode.cpp -msgid "Num Lock" -msgstr "" - -#: src/client/keycode.cpp -msgid "Numpad *" -msgstr "" - -#: src/client/keycode.cpp -msgid "Numpad +" -msgstr "" - -#: src/client/keycode.cpp -msgid "Numpad -" -msgstr "" - -#: src/client/keycode.cpp -msgid "Numpad ." -msgstr "" - -#: src/client/keycode.cpp -msgid "Numpad /" -msgstr "" - -#: src/client/keycode.cpp -msgid "Numpad 0" -msgstr "" - -#: src/client/keycode.cpp -msgid "Numpad 1" -msgstr "" - -#: src/client/keycode.cpp -msgid "Numpad 2" -msgstr "" - -#: src/client/keycode.cpp -msgid "Numpad 3" -msgstr "" - -#: src/client/keycode.cpp -msgid "Numpad 4" -msgstr "" - -#: src/client/keycode.cpp -msgid "Numpad 5" -msgstr "" - -#: src/client/keycode.cpp -msgid "Numpad 6" -msgstr "" - -#: src/client/keycode.cpp -msgid "Numpad 7" -msgstr "" - -#: src/client/keycode.cpp -msgid "Numpad 8" -msgstr "" - -#: src/client/keycode.cpp -msgid "Numpad 9" -msgstr "" - -#: src/client/keycode.cpp -msgid "OEM Clear" -msgstr "" - -#: src/client/keycode.cpp -msgid "Page Down" -msgstr "" - -#: src/client/keycode.cpp -msgid "Page Up" -msgstr "" - -#. ~ Usually paired with the Break key -#: src/client/keycode.cpp -msgid "Pause Key" -msgstr "" - -#: src/client/keycode.cpp -msgid "Play" -msgstr "" - -#. ~ "Print screen" key -#: src/client/keycode.cpp -msgid "Print" -msgstr "" - -#: src/client/keycode.cpp -msgid "Return Key" -msgstr "" - -#: src/client/keycode.cpp -msgid "Right Arrow" -msgstr "" - -#: src/client/keycode.cpp -msgid "Right Button" -msgstr "" - -#: src/client/keycode.cpp -msgid "Right Control" -msgstr "" - -#: src/client/keycode.cpp -msgid "Right Menu" -msgstr "" - -#: src/client/keycode.cpp -msgid "Right Shift" -msgstr "" - -#: src/client/keycode.cpp -msgid "Right Windows" -msgstr "" - -#: src/client/keycode.cpp -msgid "Scroll Lock" -msgstr "" - -#. ~ Key name -#: src/client/keycode.cpp -msgid "Select" -msgstr "" - -#: src/client/keycode.cpp -msgid "Shift Key" -msgstr "" - -#: src/client/keycode.cpp -msgid "Sleep" -msgstr "" - -#: src/client/keycode.cpp -msgid "Snapshot" -msgstr "" - -#: src/client/keycode.cpp -msgid "Space" -msgstr "" - -#: src/client/keycode.cpp -msgid "Tab" -msgstr "" - -#: src/client/keycode.cpp -msgid "Up Arrow" -msgstr "" - -#: src/client/keycode.cpp -msgid "X Button 1" -msgstr "" - -#: src/client/keycode.cpp -msgid "X Button 2" -msgstr "" - -#: src/client/keycode.cpp -msgid "Zoom Key" -msgstr "" - -#: src/client/minimap.cpp -msgid "Minimap hidden" -msgstr "" - -#: src/client/minimap.cpp -#, c-format -msgid "Minimap in radar mode, Zoom x%d" -msgstr "" - -#: src/client/minimap.cpp -#, c-format -msgid "Minimap in surface mode, Zoom x%d" -msgstr "" - -#: src/client/minimap.cpp -msgid "Minimap in texture mode" -msgstr "" - -#: src/client/shader.cpp -#, c-format -msgid "Failed to compile the \"%s\" shader." -msgstr "" - -#: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." -msgstr "" - -#. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" -#: src/content/mod_configuration.cpp -#, c-format -msgid "%s is missing:" -msgstr "" - -#: src/content/mod_configuration.cpp -msgid "" -"Install and enable the required mods, or disable the mods causing errors." -msgstr "" - -#: src/content/mod_configuration.cpp -msgid "" -"Note: this may be caused by a dependency cycle, in which case try updating " -"the mods." -msgstr "" - -#: src/content/mod_configuration.cpp -msgid "Some mods have unsatisfied dependencies:" -msgstr "" - -#: src/gui/guiChatConsole.cpp -msgid "Failed to open webpage" -msgstr "" - -#: src/gui/guiChatConsole.cpp -msgid "Opening webpage" -msgstr "" - -#: src/gui/guiFormSpecMenu.cpp -msgid "Proceed" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "\"Aux1\" = climb down" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Autoforward" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp src/settings_translation_file.cpp -msgid "Automatic jumping" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp -msgid "Aux1" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Backward" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Block bounds" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp -msgid "Change camera" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Command" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Console" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Dec. range" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Dec. volume" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Double tap \"jump\" to toggle fly" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp -msgid "Drop" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Forward" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Inc. range" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Inc. volume" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp -msgid "Inventory" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp -msgid "Jump" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Key already in use" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Keybindings." -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Left" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Local command" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Mute" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Next item" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Prev. item" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp -msgid "Range select" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Right" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Screenshot" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp -msgid "Sneak" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Toggle HUD" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp -msgid "Toggle chat log" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp -msgid "Toggle fast" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp -msgid "Toggle fly" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Toggle fog" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp -msgid "Toggle minimap" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp -msgid "Toggle noclip" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "Toggle pitchmove" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp -msgid "Zoom" -msgstr "" - -#: src/gui/guiKeyChangeMenu.cpp -msgid "press key" -msgstr "" - -#: src/gui/guiOpenURL.cpp -msgid "Open" -msgstr "" - -#: src/gui/guiOpenURL.cpp -msgid "Open URL?" -msgstr "" - -#: src/gui/guiOpenURL.cpp -msgid "Unable to open URL" -msgstr "" - -#: src/gui/guiPasswordChange.cpp -msgid "Change" -msgstr "" - -#: src/gui/guiPasswordChange.cpp -msgid "New Password" -msgstr "" - -#: src/gui/guiPasswordChange.cpp -msgid "Old Password" -msgstr "" - -#: src/gui/guiPasswordChange.cpp -msgid "Passwords do not match!" -msgstr "" - -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp -msgid "Exit" -msgstr "" - -#: src/gui/guiVolumeChange.cpp -msgid "Muted" -msgstr "" - -#: src/gui/guiVolumeChange.cpp -#, c-format -msgid "Sound Volume: %d%%" -msgstr "" - -#: src/gui/touchcontrols.cpp -msgid "Joystick" -msgstr "" - -#: src/gui/touchcontrols.cpp -msgid "Overflow menu" -msgstr "" - -#: src/gui/touchcontrols.cpp -msgid "Toggle debug" -msgstr "" - -#: src/network/clientpackethandler.cpp -msgid "" -"Another client is connected with this name. If your client closed " -"unexpectedly, try again in a minute." -msgstr "" - -#: src/network/clientpackethandler.cpp -msgid "Empty passwords are disallowed. Set a password and try again." -msgstr "" - -#: src/network/clientpackethandler.cpp -msgid "Internal server error" -msgstr "" - -#: src/network/clientpackethandler.cpp -msgid "Invalid password" -msgstr "" - -#. ~ DO NOT TRANSLATE THIS LITERALLY! -#. This is a special string which needs to contain the translation's -#. language code (e.g. "de" for German). -#: src/network/clientpackethandler.cpp src/script/lua_api/l_client.cpp -#: src/script/lua_api/l_mainmenu.cpp -msgid "LANG_CODE" -msgstr "yue_Hant" - -#: src/network/clientpackethandler.cpp -msgid "" -"Name is not registered. To create an account on this server, click 'Register'" -msgstr "" - -#: src/network/clientpackethandler.cpp -msgid "Name is taken. Please choose another name" -msgstr "" - -#: src/network/clientpackethandler.cpp -msgid "Player name contains disallowed characters" -msgstr "" - -#: src/network/clientpackethandler.cpp -msgid "Player name not allowed" -msgstr "" - -#: src/network/clientpackethandler.cpp -msgid "Server shutting down" -msgstr "" - -#: src/network/clientpackethandler.cpp -msgid "" -"The server has experienced an internal error. You will now be disconnected." -msgstr "" - -#: src/network/clientpackethandler.cpp -msgid "The server is running in singleplayer mode. You cannot connect." -msgstr "" - -#: src/network/clientpackethandler.cpp -msgid "Too many users" -msgstr "" - -#: src/network/clientpackethandler.cpp -msgid "Unknown disconnect reason." -msgstr "" - -#: src/network/clientpackethandler.cpp -msgid "" -"Your client sent something the server didn't expect. Try reconnecting or " -"updating your client." -msgstr "" - -#: src/network/clientpackethandler.cpp -msgid "" -"Your client's version is not supported.\n" -"Please contact the server administrator." -msgstr "" - -#: src/server.cpp -#, c-format -msgid "%s while shutting down: " -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"(X,Y,Z) offset of fractal from world center in units of 'scale'.\n" -"Can be used to move a desired point to (0, 0) to create a\n" -"suitable spawn point, or to allow 'zooming in' on a desired\n" -"point by increasing 'scale'.\n" -"The default is tuned for a suitable spawn point for Mandelbrot\n" -"sets with default parameters, it may need altering in other\n" -"situations.\n" -"Range roughly -2 to 2. Multiply by 'scale' for offset in nodes." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"(X,Y,Z) scale of fractal in nodes.\n" -"Actual fractal size will be 2 to 3 times larger.\n" -"These numbers can be made very large, the fractal does\n" -"not have to fit inside the world.\n" -"Increase these to 'zoom' into the detail of the fractal.\n" -"Default is for a vertically-squashed shape suitable for\n" -"an island, set all 3 numbers equal for the raw shape." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "2D noise that controls the shape/size of ridged mountains." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "2D noise that controls the shape/size of rolling hills." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "2D noise that controls the shape/size of step mountains." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "2D noise that controls the size/occurrence of ridged mountain ranges." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "2D noise that controls the size/occurrence of rolling hills." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "2D noise that controls the size/occurrence of step mountain ranges." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "2D noise that locates the river valleys and channels." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "3D" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "3D clouds" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "3D mode" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "3D mode parallax strength" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "3D noise defining giant caverns." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"3D noise defining mountain structure and height.\n" -"Also defines structure of floatland mountain terrain." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"3D noise defining structure of floatlands.\n" -"If altered from the default, the noise 'scale' (0.7 by default) may need\n" -"to be adjusted, as floatland tapering functions best when this noise has\n" -"a value range of approximately -2.0 to 2.0." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "3D noise defining structure of river canyon walls." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "3D noise defining terrain." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "3D noise for mountain overhangs, cliffs, etc. Usually small variations." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "3D noise that determines number of dungeons per mapchunk." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"3D support.\n" -"Currently supported:\n" -"- none: no 3d output.\n" -"- anaglyph: cyan/magenta color 3d.\n" -"- interlaced: odd/even line based polarization screen support.\n" -"- topbottom: split screen top/bottom.\n" -"- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"A chosen map seed for a new map, leave empty for random.\n" -"Will be overridden when creating a new world in the main menu." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "A message to be displayed to all clients when the server crashes." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "A message to be displayed to all clients when the server shuts down." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "ABM interval" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "ABM time budget" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Absolute limit of queued blocks to emerge" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Acceleration in air" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Acceleration of gravity, in nodes per second per second." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Active Block Modifiers" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Active block management interval" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Active block range" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Active object send range" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Adjust the detected display density, used for scaling UI elements." -msgstr "" - -#: src/settings_translation_file.cpp -#, c-format -msgid "" -"Adjusts the density of the floatland layer.\n" -"Increase value to increase density. Can be positive or negative.\n" -"Value = 0.0: 50% of volume is floatland.\n" -"Value = 2.0 (can be higher depending on 'mgv7_np_floatland', always test\n" -"to be sure) creates a solid floatland layer." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Admin name" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Advanced" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Allows liquids to be translucent." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Alters the light curve by applying 'gamma correction' to it.\n" -"Higher values make middle and lower light levels brighter.\n" -"Value '1.0' leaves the light curve unaltered.\n" -"This only has significant effect on daylight and artificial\n" -"light, it has very little effect on natural night light." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Always fly fast" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Ambient occlusion gamma" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Amplifies the valleys." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Anisotropic filtering" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Announce server" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Announce to this serverlist." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Anti-aliasing scale" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Antialiasing method" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Anticheat flags" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Anticheat movement tolerance" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Append item name" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Append item name to tooltip." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Apple trees noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Apply dithering to reduce color banding artifacts.\n" -"Dithering significantly increases the size of losslessly-compressed\n" -"screenshots and it works incorrectly if the display or operating system\n" -"performs additional dithering or if the color channels are not quantized\n" -"to 8 bits.\n" -"With OpenGL ES, dithering only works if the shader supports high\n" -"floating-point precision and it may have a higher performance impact." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Apply specular shading to nodes." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Arm inertia" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Arm inertia, gives a more realistic movement of\n" -"the arm when the camera moves." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Ask to reconnect after crash" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"At this distance the server will aggressively optimize which blocks are sent " -"to\n" -"clients.\n" -"Small values potentially improve performance a lot, at the expense of " -"visible\n" -"rendering glitches (some blocks might not be rendered correctly in caves).\n" -"Setting this to a value greater than max_block_send_distance disables this\n" -"optimization.\n" -"Stated in MapBlocks (16 nodes)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"At this distance the server will perform a simpler and cheaper occlusion " -"check.\n" -"Smaller values potentially improve performance, at the expense of " -"temporarily visible\n" -"rendering glitches (missing blocks).\n" -"This is especially useful for very large viewing range (upwards of 500).\n" -"Stated in MapBlocks (16 nodes)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Audio" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Automatically jump up single-node obstacles." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Automatically report to the serverlist." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Autoscaling mode" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Aux1 key for climbing/descending" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Base ground level" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Base terrain height." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Base texture size" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Basic privileges" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Beach noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Beach noise threshold" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Bilinear filtering" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Bind address" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Biome API" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Biome noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Block bounds HUD radius" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Block cull optimize distance" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Block send optimize distance" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Bobbing" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Bold and italic font path" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Bold and italic monospace font path" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Bold font path" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Bold monospace font path" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Build inside player" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Builtin" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Camera" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Camera smoothing" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Camera smoothing in cinematic mode" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Cave noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Cave noise #1" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Cave noise #2" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Cave width" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Cave1 noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Cave2 noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Cavern limit" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Cavern noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Cavern taper" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Cavern threshold" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Cavern upper limit" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Center of light curve boost range.\n" -"Where 0.0 is minimum light level, 1.0 is maximum light level." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Chat command time message threshold" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Chat commands" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Chat font size" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Chat log level" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Chat message count limit" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Chat message format" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Chat message kick threshold" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Chat message max length" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Chat weblinks" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Chunk size" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Clickable weblinks (middle-click or Ctrl+left-click) enabled in chat console " -"output." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Client" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Client Mesh Chunksize" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Client and Server" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Client modding" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Client side modding restrictions" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Client-side Modding" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Client-side node lookup range restriction" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Climbing speed" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Cloud radius" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Clouds" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Clouds in menu" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Colored fog" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Colored shadows" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Comma-separated list of AL and ALC extensions that should not be used.\n" -"Useful for testing. See al_extensions.[h,cpp] for details." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Comma-separated list of flags to hide in the content repository.\n" -"\"nonfree\" can be used to hide packages which do not qualify as 'free " -"software',\n" -"as defined by the Free Software Foundation.\n" -"You can also specify content ratings.\n" -"These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Comma-separated list of mods that are allowed to access HTTP APIs, which\n" -"allow them to upload and download data to/from the internet." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Comma-separated list of trusted mods that are allowed to access insecure\n" -"functions even when mod security is on (via request_insecure_environment())." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Compression level to use when saving mapblocks to disk.\n" -"-1 - use default compression level\n" -"0 - least compression, fastest\n" -"9 - best compression, slowest" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Compression level to use when sending mapblocks to the client.\n" -"-1 - use default compression level\n" -"0 - least compression, fastest\n" -"9 - best compression, slowest" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Connect glass" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Connect to external media server" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Connects glass if supported by node." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Console alpha" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Console color" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Console height" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Content Repository" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "ContentDB Flag Blacklist" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "ContentDB Max Concurrent Downloads" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "ContentDB URL" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Controls length of day/night cycle.\n" -"Examples:\n" -"72 = 20min, 360 = 4min, 1 = 24hour, 0 = day/night/whatever stays unchanged." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Controls sinking speed in liquid when idling. Negative values will cause\n" -"you to rise instead." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Controls steepness/depth of lake depressions." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Controls steepness/height of hills." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Controls width of tunnels, a smaller value creates wider tunnels.\n" -"Value >= 10.0 completely disables generation of tunnels and avoids the\n" -"intensive noise calculations." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Crash message" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Crosshair alpha" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Crosshair alpha (opaqueness, between 0 and 255).\n" -"This also applies to the object crosshair." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Crosshair color" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Crosshair color (R,G,B).\n" -"Also controls the object crosshair color" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Debug log file size threshold" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Debug log level" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Debugging" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Dedicated server step" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Default acceleration" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Default maximum number of forceloaded mapblocks.\n" -"Set this to -1 to disable the limit." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Default password" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Default privileges" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Default report format" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Default stack size" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Define shadow filtering quality.\n" -"This simulates the soft shadows effect by applying a PCF or Poisson disk\n" -"but also uses more resources." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Define the oldest clients allowed to connect.\n" -"Older clients are compatible in the sense that they will not crash when " -"connecting\n" -"to new servers, but they may not support all new features that you are " -"expecting.\n" -"This allows for more fine-grained control than " -"strict_protocol_version_checking.\n" -"Luanti still enforces its own internal minimum, and enabling\n" -"strict_protocol_version_checking will effectively override this." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Defines areas where trees have apples." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Defines areas with sandy beaches." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Defines distribution of higher terrain and steepness of cliffs." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Defines distribution of higher terrain." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Defines full size of caverns, smaller values create larger caverns." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Defines large-scale river channel structure." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Defines location and terrain of optional hills and lakes." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Defines the base ground level." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Defines the depth of the river channel." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Defines the maximal player transfer distance in blocks (0 = unlimited)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Defines the size of the sampling grid for FSAA and SSAA antialiasing " -"methods.\n" -"Value of 2 means taking 2x2 = 4 samples." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Defines the width of the river channel." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Defines the width of the river valley." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Defines tree areas and tree density." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Delay between mesh updates on the client in ms. Increasing this will slow\n" -"down the rate of mesh updates, thus reducing jitter on slower clients." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Delay in sending blocks after building" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Delay showing tooltips, stated in milliseconds." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Deprecated Lua API handling" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Depth below which you'll find giant caverns." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Depth below which you'll find large caves." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Description of server, to be displayed when players join and in the " -"serverlist." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Desert noise threshold" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Deserts occur when np_biome exceeds this value.\n" -"When the 'snowbiomes' flag is enabled, this is ignored." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Developer Options" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Disallow empty passwords" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Display Density Scaling Factor" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Distance in nodes at which transparency depth sorting is enabled.\n" -"Use this to limit the performance impact of transparency depth sorting.\n" -"Set to 0 to disable it entirely." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Domain name of server, to be displayed in the serverlist." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Double tap jump for fly" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Double-tapping the jump key toggles fly mode." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Dump the mapgen debug information." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Dungeon maximum Y" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Dungeon minimum Y" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Dungeon noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Effects" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enable Automatic Exposure" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enable Bloom" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enable Bloom Debug" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enable Debanding" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Enable IPv6 support (for both client and server).\n" -"Required for IPv6 connections to work at all." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Enable Lua modding support on client.\n" -"This support is experimental and API can change." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Enable Poisson disk filtering.\n" -"On true uses Poisson disk to make \"soft shadows\". Otherwise uses PCF " -"filtering." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enable Post Processing" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enable Raytraced Culling" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Enable automatic exposure correction\n" -"When enabled, the post-processing engine will\n" -"automatically adjust to the brightness of the scene,\n" -"simulating the behavior of human eye." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enable console window" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enable joysticks" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enable joysticks. Requires a restart to take effect" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enable mod channels support." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enable mod security" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enable mouse wheel (scroll) for item selection in hotbar." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enable random mod loading (mainly used for testing)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enable random user input (only used for testing)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enable smooth lighting with simple ambient occlusion." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enable split login/register" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Enable to disallow old clients from connecting.\n" -"Older clients are compatible in the sense that they will not crash when " -"connecting\n" -"to new servers, but they may not support all new features that you are " -"expecting." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enable updates available indicator on content tab" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Enable usage of remote media server (if provided by server).\n" -"Remote servers offer a significantly faster way to download media (e.g. " -"textures)\n" -"when connecting to the server." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Enable view bobbing and amount of view bobbing.\n" -"For example: 0 for no view bobbing; 1.0 for normal; 2.0 for double." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Enables Hable's 'Uncharted 2' filmic tone mapping.\n" -"Simulates the tone curve of photographic film and how this approximates the\n" -"appearance of high dynamic range images. Mid-range contrast is slightly\n" -"enhanced, highlights and shadows are gradually compressed." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enables animation of inventory items." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enables debug and error-checking in the OpenGL driver." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enables smooth scrolling." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Enables the post processing pipeline." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Enables the touchscreen controls, allowing you to play the game with a " -"touchscreen.\n" -"\"auto\" means that the touchscreen controls will be enabled and disabled\n" -"automatically depending on the last used input method." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Enables tradeoffs that reduce CPU load or increase rendering performance\n" -"at the expense of minor visual glitches that do not impact game playability." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Engine Profiler" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Engine profiling data print interval" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Entity methods" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Exponent of the floatland tapering. Alters the tapering behavior.\n" -"Value = 1.0 creates a uniform, linear tapering.\n" -"Values > 1.0 create a smooth tapering suitable for the default separated\n" -"floatlands.\n" -"Values < 1.0 (for example 0.25) create a more defined surface level with\n" -"flatter lowlands, suitable for a solid floatland layer." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Exposure compensation" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "FPS" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "FPS when unfocused or paused" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Factor noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Fall bobbing factor" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Fallback font path" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Fast mode acceleration" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Fast mode speed" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Field of view" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Field of view in degrees." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"File in client/serverlist/ that contains your favorite servers displayed in " -"the\n" -"Multiplayer Tab." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Filler depth" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Filler depth noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Filmic tone mapping" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Filtering and Antialiasing" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "First of 4 2D noises that together define hill/mountain range height." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "First of two 3D noises that together define tunnels." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Fixed map seed" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Fixed virtual joystick" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Fixes the position of virtual joystick.\n" -"If disabled, virtual joystick will center to first-touch's position." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Floatland density" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Floatland maximum Y" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Floatland minimum Y" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Floatland noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Floatland taper exponent" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Floatland tapering distance" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Floatland water level" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Fog" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Fog start" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Font" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Font bold by default" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Font italic by default" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Font shadow" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Font shadow alpha" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Font size" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Font size divisible by" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Font size of the default font where 1 unit = 1 pixel at 96 DPI" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Font size of the monospace font where 1 unit = 1 pixel at 96 DPI" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Font size of the recent chat text and chat prompt in point (pt).\n" -"Value 0 will use the default font size." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"For pixel-style fonts that do not scale well, this ensures that font sizes " -"used\n" -"with this font will always be divisible by this value, in pixels. For " -"instance,\n" -"a pixel font 16 pixels tall should have this set to 16, so it will only ever " -"be\n" -"sized 16, 32, 48, etc., so a mod requesting a size of 25 will get 32." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Format of player chat messages. The following strings are valid " -"placeholders:\n" -"@name, @message, @timestamp (optional)" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Format of screenshots." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Formspec Full-Screen Background Color" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Formspec Full-Screen Background Opacity" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Formspec full-screen background color (R,G,B)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Formspec full-screen background opacity (between 0 and 255)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Fourth of 4 2D noises that together define hill/mountain range height." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Fractal type" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Fraction of the visible distance at which fog starts to be rendered" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"From how far blocks are generated for clients, stated in mapblocks (16 " -"nodes)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"From how far blocks are sent to clients, stated in mapblocks (16 nodes)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"From how far clients know about objects, stated in mapblocks (16 nodes).\n" -"\n" -"Setting this larger than active_block_range will also cause the server\n" -"to maintain active objects up to this distance in the direction the\n" -"player is looking. (This can avoid mobs suddenly disappearing from view)" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Full screen" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Fullscreen mode." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "GUI" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "GUI scaling" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "GUI scaling filter" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Gamepads" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Global callbacks" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Global map generation attributes.\n" -"In Mapgen v6 the 'decorations' flag controls all decorations except trees\n" -"and jungle grass, in all other mapgens this flag controls all decorations." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Gradient of light curve at maximum light level.\n" -"Controls the contrast of the highest light levels." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Gradient of light curve at minimum light level.\n" -"Controls the contrast of the lowest light levels." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Graphics" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Graphics and Audio" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Gravity" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Ground level" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Ground noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "HTTP mods" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "HUD" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "HUD scaling" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Handling for deprecated Lua API calls:\n" -"- none: Do not log deprecated calls\n" -"- log: mimic and log backtrace of deprecated call (default).\n" -"- error: abort on usage of deprecated call (suggested for mod developers)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Have the profiler instrument itself:\n" -"* Instrument an empty function.\n" -"This estimates the overhead, that instrumentation is adding (+1 function " -"call).\n" -"* Instrument the sampler being used to update the statistics." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Heat blend noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Heat noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Height component of the initial window size." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Height noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Height select noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Hill steepness" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Hill threshold" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Hilliness1 noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Hilliness2 noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Hilliness3 noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Hilliness4 noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Homepage of server, to be displayed in the serverlist." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Horizontal acceleration in air when jumping or falling,\n" -"in nodes per second per second." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Horizontal and vertical acceleration in fast mode,\n" -"in nodes per second per second." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Horizontal and vertical acceleration on ground or when climbing,\n" -"in nodes per second per second." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Hotbar: Enable mouse wheel for selection" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Hotbar: Invert mouse wheel direction" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "How deep to make rivers." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"How fast liquid waves will move. Higher = faster.\n" -"If negative, liquid waves will move backwards." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"How long the server will wait before unloading unused mapblocks, stated in " -"seconds.\n" -"Higher value is smoother, but will use more RAM." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"How much you are slowed down when moving inside a liquid.\n" -"Decrease this to increase liquid resistance to movement." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "How wide to make rivers." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Humidity blend noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Humidity noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Humidity variation for biomes." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "IPv6" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "IPv6 server" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"If FPS would go higher than this, limit it by sleeping\n" -"to not waste CPU power for no benefit." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"If disabled, \"Aux1\" key is used to fly fast if both fly and fast mode are\n" -"enabled." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"If enabled and you have ContentDB packages installed, Luanti may contact " -"ContentDB to\n" -"check for package updates when opening the mainmenu." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"If enabled, \"Aux1\" key instead of \"Sneak\" key is used for climbing down " -"and\n" -"descending." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"If enabled, actions are recorded for rollback.\n" -"This option is only read when server starts." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"If enabled, invalid world data won't cause the server to shut down.\n" -"Only enable this if you know what you are doing." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"If enabled, players cannot join without a password or change theirs to an " -"empty password." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"If enabled, the server will perform map block occlusion culling based on\n" -"on the eye position of the player. This can reduce the number of blocks\n" -"sent to the client by 50-80%. Clients will no longer receive most\n" -"invisible blocks, so that the utility of noclip mode is reduced." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"If enabled, you can place nodes at the position (feet + eye level) where you " -"stand.\n" -"This is helpful when working with nodeboxes in small areas." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"If the CSM restriction for node range is enabled, get_node calls are " -"limited\n" -"to this distance from the player to the node." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"If the execution of a chat command takes longer than this specified time in\n" -"seconds, add the time information to the chat command message" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"If the file size of debug.txt exceeds the number of megabytes specified in\n" -"this setting when it is opened, the file is moved to debug.txt.1,\n" -"deleting an older debug.txt.1 if it exists.\n" -"debug.txt is only moved if this setting is positive." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "If this is set, players will always (re)spawn at the given position." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Ignore world errors" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "In-game chat console background alpha (opaqueness, between 0 and 255)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "In-game chat console background color (R,G,B)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "In-game chat console height, between 0.1 (10%) and 1.0 (100%)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Initial vertical speed when jumping, in nodes per second." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Instrument builtin.\n" -"This is usually only needed by core/builtin contributors" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Instrument chat commands on registration." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Instrument global callback functions on registration.\n" -"(anything you pass to a core.register_*() function)" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Instrument the action function of Active Block Modifiers on registration." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Instrument the action function of Loading Block Modifiers on registration." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Instrument the methods of entities on registration." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Interval of saving important changes in the world, stated in seconds." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Inventory items animations" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Invert mouse" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Invert mouse wheel (scroll) direction for item selection in hotbar." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Invert vertical mouse movement." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Italic font path" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Italic monospace font path" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Item entity TTL" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Iterations" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Iterations of the recursive function.\n" -"Increasing this increases the amount of fine detail, but also\n" -"increases processing load.\n" -"At iterations = 20 this mapgen has a similar load to mapgen V7." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Joystick ID" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Joystick button repetition interval" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Joystick dead zone" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Joystick frustum sensitivity" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Joystick type" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Julia set only.\n" -"W component of hypercomplex constant.\n" -"Alters the shape of the fractal.\n" -"Has no effect on 3D fractals.\n" -"Range roughly -2 to 2." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Julia set only.\n" -"X component of hypercomplex constant.\n" -"Alters the shape of the fractal.\n" -"Range roughly -2 to 2." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Julia set only.\n" -"Y component of hypercomplex constant.\n" -"Alters the shape of the fractal.\n" -"Range roughly -2 to 2." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Julia set only.\n" -"Z component of hypercomplex constant.\n" -"Alters the shape of the fractal.\n" -"Range roughly -2 to 2." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Julia w" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Julia x" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Julia y" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Julia z" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Jumping speed" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Keyboard and Mouse" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Kick players who sent more than X messages per 10 seconds." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Lake steepness" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Lake threshold" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Language" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Large cave depth" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Large cave maximum number" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Large cave minimum number" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Large cave proportion flooded" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Leaves style" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Leaves style:\n" -"- Fancy: all faces visible\n" -"- Simple: only outer faces\n" -"- Opaque: disable transparency" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Length of a server tick (the interval at which everything is generally " -"updated),\n" -"stated in seconds.\n" -"Does not apply to sessions hosted from the client menu.\n" -"This is a lower bound, i.e. server steps may not be shorter than this, but\n" -"they are often longer." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Length of liquid waves." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Length of time between Active Block Modifier (ABM) execution cycles, stated " -"in seconds." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Length of time between NodeTimer execution cycles, stated in seconds." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Length of time between active block management cycles, stated in seconds." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Level of logging to be written to debug.txt:\n" -"- (no logging)\n" -"- none (messages with no level)\n" -"- error\n" -"- warning\n" -"- action\n" -"- info\n" -"- verbose\n" -"- trace" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Light curve boost" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Light curve boost center" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Light curve boost spread" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Light curve gamma" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Light curve high gradient" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Light curve low gradient" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Lighting" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Limit of map generation, in nodes, in all 6 directions from (0, 0, 0).\n" -"Only mapchunks completely within the mapgen limit are generated.\n" -"Value is stored per-world." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Limits number of parallel HTTP requests. Affects:\n" -"- Media fetch if server uses remote_media setting.\n" -"- Serverlist download and server announcement.\n" -"- Downloads performed by main menu (e.g. mod manager).\n" -"Only has an effect if compiled with cURL." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Liquid fluidity" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Liquid fluidity smoothing" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Liquid loop max" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Liquid queue purge time" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Liquid reflections" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Liquid sinking" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Liquid update interval in seconds." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Liquid update tick" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Load the game profiler" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Load the game profiler to collect game profiling data.\n" -"Provides a /profiler command to access the compiled profile.\n" -"Useful for mod developers and server operators." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Loading Block Modifiers" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Lower Y limit of dungeons." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Lower Y limit of floatlands." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Main menu script" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Make fog and sky colors depend on daytime (dawn/sunset) and view direction." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Map Compression Level for Disk Storage" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Map Compression Level for Network Transfer" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Map directory" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Map generation attributes specific to Mapgen Carpathian." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Map generation attributes specific to Mapgen Flat.\n" -"Occasional lakes and hills can be added to the flat world." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Map generation attributes specific to Mapgen Fractal.\n" -"'terrain' enables the generation of non-fractal terrain:\n" -"ocean, islands and underground." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Map generation attributes specific to Mapgen Valleys.\n" -"'altitude_chill': Reduces heat with altitude.\n" -"'humid_rivers': Increases humidity around rivers.\n" -"'vary_river_depth': If enabled, low humidity and high heat causes rivers\n" -"to become shallower and occasionally dry.\n" -"'altitude_dry': Reduces humidity with altitude." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Map generation attributes specific to Mapgen v5." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Map generation attributes specific to Mapgen v6.\n" -"The 'snowbiomes' flag enables the new 5 biome system.\n" -"When the 'snowbiomes' flag is enabled jungles are automatically enabled and\n" -"the 'jungles' flag is ignored.\n" -"The 'temples' flag disables generation of desert temples. Normal dungeons " -"will appear instead." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Map generation attributes specific to Mapgen v7.\n" -"'ridges': Rivers.\n" -"'floatlands': Floating land masses in the atmosphere.\n" -"'caverns': Giant caves deep underground." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Map generation limit" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Map save interval" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Map shadows update frames" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapblock limit" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapblock mesh generation delay" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapblock mesh generation threads" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapblock unload timeout" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapgen Carpathian" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapgen Carpathian specific flags" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapgen Flat" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapgen Flat specific flags" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapgen Fractal" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapgen Fractal specific flags" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapgen V5" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapgen V5 specific flags" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapgen V6" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapgen V6 specific flags" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapgen V7" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapgen V7 specific flags" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapgen Valleys" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapgen Valleys specific flags" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapgen debug" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mapgen name" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Max block generate distance" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Max block send distance" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Max liquids processed per step." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Max. clearobjects extra blocks" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Max. packets per iteration" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Maximum FPS" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Maximum FPS when the window is not focused, or when the game is paused." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Maximum distance to render shadows." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Maximum forceloaded blocks" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Maximum hotbar width" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Maximum limit of random number of large caves per mapchunk." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Maximum limit of random number of small caves per mapchunk." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Maximum liquid resistance. Controls deceleration when entering liquid at\n" -"high speed." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Maximum number of blocks that are simultaneously sent per client.\n" -"The maximum total count is calculated dynamically:\n" -"max_total = ceil((#clients + max_users) * per_client / 4)" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Maximum number of blocks that can be queued for loading." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Maximum number of blocks to be queued that are to be generated.\n" -"This limit is enforced per player." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Maximum number of blocks to be queued that are to be loaded from file.\n" -"This limit is enforced per player." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Maximum number of concurrent downloads. Downloads exceeding this limit will " -"be queued.\n" -"This should be lower than curl_parallel_limit." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Maximum number of mapblocks for client to be kept in memory.\n" -"Set to -1 for unlimited amount." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Maximum number of packets sent per send step in the low-level networking " -"code.\n" -"You generally don't need to change this, however busy servers may benefit " -"from a higher number." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Maximum number of players that can be connected simultaneously." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Maximum number of recent chat messages to show" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Maximum number of statically stored objects in a block." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Maximum objects per block" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Maximum proportion of current window to be used for hotbar.\n" -"Useful if there's something to be displayed right or left of hotbar." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Maximum simultaneous block sends per client" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Maximum size of the outgoing chat queue" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Maximum size of the outgoing chat queue.\n" -"0 to disable queueing and -1 to make the queue size unlimited." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Maximum time a file download (e.g. a mod download) may take, stated in " -"milliseconds." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Maximum time an interactive request (e.g. server list fetch) may take, " -"stated in milliseconds." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Maximum users" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Message of the day" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Message of the day displayed to players connecting." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Method used to highlight selected object." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Minimal level of logging to be written to chat." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Minimap scan height" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Minimum dig repetition interval" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Minimum limit of random number of large caves per mapchunk." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Minimum limit of random number of small caves per mapchunk." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mipmapping" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Miscellaneous" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mod Profiler" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mod Security" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mod channels" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Modifies the size of the HUD elements." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Monospace font path" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Monospace font size" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Monospace font size divisible by" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mountain height noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mountain noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mountain variation noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mountain zero level" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mouse sensitivity" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mouse sensitivity multiplier." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Movement threshold" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mud noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Multiplier for fall bobbing.\n" -"For example: 0 for no view bobbing; 1.0 for normal; 2.0 for double." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Mute sound" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Name of map generator to be used when creating a new world.\n" -"Creating a world in the main menu will override this.\n" -"Current mapgens in a highly unstable state:\n" -"- The optional floatlands of v7 (disabled by default)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" -"When starting from the main menu, this is overridden." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Name of the server, to be displayed when players join and in the serverlist." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Network port to listen (UDP).\n" -"This value will be overridden when starting from the main menu." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Networking" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "New users need to input this password." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Node and Entity Highlighting" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Node highlighting" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Node specular" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "NodeTimer interval" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Noises" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Number of emerge threads" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Number of emerge threads to use.\n" -"Value 0:\n" -"- Automatic selection. The number of emerge threads will be\n" -"- 'number of processors - 2', with a lower limit of 1.\n" -"Any other value:\n" -"- Specifies the number of emerge threads, with a lower limit of 1.\n" -"WARNING: Increasing the number of emerge threads increases engine mapgen\n" -"speed, but this may harm game performance by interfering with other\n" -"processes, especially in singleplayer and/or when running Lua code in\n" -"'on_generated'. For many users the optimum setting may be '1'." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Number of extra blocks that can be loaded by /clearobjects at once.\n" -"This is a trade-off between SQLite transaction overhead and\n" -"memory consumption (4096=100MB, as a rule of thumb)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Number of messages a player may send per 10 seconds." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Number of threads to use for mesh generation.\n" -"Value of 0 (default) will let Luanti autodetect the number of available " -"threads." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Occlusion Culler" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Occlusion Culling" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Opaqueness (alpha) of the shadow behind the default font, between 0 and 255." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Open the pause menu when the window's focus is lost. Does not pause if a " -"formspec is\n" -"open." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "OpenGL debug" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Optimize GUI for touchscreens" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Optional override for chat weblink color." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Other Effects" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Path of the fallback font. Must be a TrueType font.\n" -"This font will be used for certain languages or if the default font is " -"unavailable." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Path to save screenshots at. Can be an absolute or relative path.\n" -"The folder will be created if it doesn't already exist." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Path to shader directory. If no path is defined, default location will be " -"used." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Path to the default font. Must be a TrueType font.\n" -"The fallback font will be used if the font cannot be loaded." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Path to the monospace font. Must be a TrueType font.\n" -"This font is used for e.g. the console and profiler screen." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Pause on lost window focus" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Per-player limit of queued blocks load from disk" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Per-player limit of queued blocks to generate" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Physics" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Place repetition interval" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Player transfer distance" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Poisson filtering" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Post Processing" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Prevent digging and placing from repeating when holding the respective " -"buttons.\n" -"Enable this when you dig or place too often by accident.\n" -"On touchscreens, this only affects digging." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Prevent mods from doing insecure things like running shell commands." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Print the engine's profiling data in regular intervals (in seconds).\n" -"0 = disable. Useful for developers." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Privileges that players with basic_privs can grant" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Profiler" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Prometheus listener address" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Prometheus listener address.\n" -"If Luanti is compiled with ENABLE_PROMETHEUS option enabled,\n" -"enable metrics listener for Prometheus on that address.\n" -"Metrics can be fetched on http://127.0.0.1:30000/metrics" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Proportion of large caves that contain liquid." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Protocol version minimum" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Punch gesture" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Radius of cloud area stated in number of 64 node cloud squares.\n" -"Values larger than 26 will start to produce sharp cutoffs at cloud area " -"corners." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Radius to use when the block bounds HUD feature is set to near blocks." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Raises terrain to make valleys around the rivers." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Random input" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Random mod load order" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Recent Chat Messages" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Regular font path" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Remember screen size" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Remote media" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Remove color codes from incoming chat messages\n" -"Use this to stop players from being able to use color in their messages" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Replaces the default main menu with a custom one." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Report path" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Restricts the access of certain client-side functions on servers.\n" -"Combine the byteflags below to restrict client-side features, or set to 0\n" -"for no restrictions:\n" -"LOAD_CLIENT_MODS: 1 (disable loading client-provided mods)\n" -"CHAT_MESSAGES: 2 (disable send_chat_message call client-side)\n" -"READ_ITEMDEFS: 4 (disable get_item_def call client-side)\n" -"READ_NODEDEFS: 8 (disable get_node_def call client-side)\n" -"LOOKUP_NODES_LIMIT: 16 (limits get_node call client-side to\n" -"csm_restriction_noderange)\n" -"READ_PLAYERINFO: 32 (disable get_player_names call client-side)" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Ridge mountain spread noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Ridge noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Ridge underwater noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Ridged mountain size noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "River channel depth" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "River channel width" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "River depth" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "River noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "River size" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "River valley width" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Rollback recording" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Rolling hill size noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Rolling hills spread noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Safe digging and placing" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Sandy beaches occur when np_beach exceeds this value." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Save the map received by the client on disk." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Save window size automatically when modified.\n" -"If true, screen size is saved in screen_w and screen_h, and whether the " -"window\n" -"is maximized is stored in window_maximized.\n" -"(Autosaving window_maximized only works if compiled with SDL.)" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Saving map received from server" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Scale GUI by a user specified value.\n" -"Use a nearest-neighbor-anti-alias filter to scale the GUI.\n" -"This will smooth over some of the rough edges, and blend\n" -"pixels when scaling down, at the cost of blurring some\n" -"edge pixels when images are scaled by non-integer sizes." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Screen" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Screen height" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Screen width" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Screenshot folder" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Screenshot format" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Screenshot quality" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Screenshot quality. Only used for JPEG format.\n" -"1 means worst quality; 100 means best quality.\n" -"Use 0 for default quality." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Screenshots" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Seabed noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Second of 4 2D noises that together define hill/mountain range height." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Second of two 3D noises that together define tunnels." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "See https://www.sqlite.org/pragma.html#pragma_synchronous" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Select the antialiasing method to apply.\n" -"\n" -"* None - No antialiasing (default)\n" -"\n" -"* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" -"A.K.A multi-sample antialiasing (MSAA)\n" -"Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" -"\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" -"Applies a post-processing filter to detect and smoothen high-contrast " -"edges.\n" -"Provides balance between speed and image quality.\n" -"\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" -"Renders higher-resolution image of the scene, then scales down to reduce\n" -"the aliasing effects. This is the slowest and the most accurate method." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Selection box border color (R,G,B)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Selection box color" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Selection box width" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Selects one of 18 fractal types.\n" -"1 = 4D \"Roundy\" Mandelbrot set.\n" -"2 = 4D \"Roundy\" Julia set.\n" -"3 = 4D \"Squarry\" Mandelbrot set.\n" -"4 = 4D \"Squarry\" Julia set.\n" -"5 = 4D \"Mandy Cousin\" Mandelbrot set.\n" -"6 = 4D \"Mandy Cousin\" Julia set.\n" -"7 = 4D \"Variation\" Mandelbrot set.\n" -"8 = 4D \"Variation\" Julia set.\n" -"9 = 3D \"Mandelbrot/Mandelbar\" Mandelbrot set.\n" -"10 = 3D \"Mandelbrot/Mandelbar\" Julia set.\n" -"11 = 3D \"Christmas Tree\" Mandelbrot set.\n" -"12 = 3D \"Christmas Tree\" Julia set.\n" -"13 = 3D \"Mandelbulb\" Mandelbrot set.\n" -"14 = 3D \"Mandelbulb\" Julia set.\n" -"15 = 3D \"Cosine Mandelbulb\" Mandelbrot set.\n" -"16 = 3D \"Cosine Mandelbulb\" Julia set.\n" -"17 = 4D \"Mandelbulb\" Mandelbrot set.\n" -"18 = 4D \"Mandelbulb\" Julia set." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Send names of online players to the serverlist. If disabled only the player " -"count is revealed." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Send player names to the server list" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Server" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Server Gameplay" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Server Security" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Server URL" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Server address" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Server anticheat configuration.\n" -"Flags are positive. Uncheck the flag to disable corresponding anticheat " -"module." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Server description" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Server name" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Server port" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Server-side occlusion culling" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Server/Env Performance" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Serverlist URL" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Serverlist and MOTD" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Serverlist file" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Set the default tilt of Sun/Moon orbit in degrees.\n" -"Games may change orbit tilt via API.\n" -"Value of 0 means no tilt / vertical orbit." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Set the exposure compensation in EV units.\n" -"Value of 0.0 (default) means no exposure compensation.\n" -"Range: from -1 to 1.0" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Set the language. By default, the system language is used.\n" -"A restart is required after changing this." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Set the maximum length of a chat message (in characters) sent by clients." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Set the shadow strength gamma.\n" -"Adjusts the intensity of in-game dynamic shadows.\n" -"Lower value means lighter shadows, higher value means darker shadows." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Set the soft shadow radius size.\n" -"Lower values mean sharper shadows, bigger values mean softer shadows.\n" -"Minimum value: 1.0; maximum value: 15.0" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Set to true to enable Shadow Mapping." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Set to true to enable bloom effect.\n" -"Bright colors will bleed over the neighboring objects." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Set to true to enable volumetric lighting effect (a.k.a. \"Godrays\")." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Set to true to enable waving leaves." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Set to true to enable waving liquids (like water)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Set to true to enable waving plants." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Set to true to render debugging breakdown of the bloom effect.\n" -"In debug mode, the screen is split into 4 quadrants:\n" -"top-left - processed base image, top-right - final image\n" -"bottom-left - raw base image, bottom-right - bloom texture." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Sets shadow texture quality to 32 bits.\n" -"On false, 16 bits texture will be used.\n" -"This can cause much more artifacts in the shadow." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Shader path" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Shadow filter quality" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Shadow map max distance in nodes to render shadows" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Shadow map texture in 32 bits" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Shadow map texture size" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Shadow offset (in pixels) of the default font. If 0, then shadow will not be " -"drawn." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Shadow strength gamma" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Show debug info" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Show entity selection boxes" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Show entity selection boxes\n" -"A restart is required after changing this." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Show name tag backgrounds by default" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Shutdown message" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Side length of a cube of map blocks that the client will consider together\n" -"when generating meshes.\n" -"Larger values increase the utilization of the GPU by reducing the number of\n" -"draw calls, benefiting especially high-end GPUs.\n" -"Systems with a low-end GPU (or no GPU) would benefit from smaller values." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Simulate translucency when looking at foliage in the sunlight." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Size of mapchunks generated by mapgen, stated in mapblocks (16 nodes).\n" -"WARNING: There is no benefit, and there are several dangers, in\n" -"increasing this value above 5.\n" -"Reducing this value increases cave and dungeon density.\n" -"Altering this value is for special usage, leaving it unchanged is\n" -"recommended." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Sky Body Orbit Tilt" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Slice w" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Slope and fill work together to modify the heights." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Small cave maximum number" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Small cave minimum number" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Small-scale humidity variation for blending biomes on borders." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Small-scale temperature variation for blending biomes on borders." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Smooth lighting" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Smooth scrolling" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Smooths rotation of camera when in cinematic mode, 0 to disable. Enter " -"cinematic mode by using the key set in Controls." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Smooths rotation of camera, also called look or mouse smoothing. 0 to " -"disable." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Sneaking speed" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Sneaking speed, in nodes per second." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Soft clouds" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Soft shadow radius" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Sound" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Sound Extensions Blacklist" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Specifies URL from which client fetches media instead of using UDP.\n" -"$filename should be accessible from $remote_media$filename via cURL\n" -"(obviously, remote_media should end with a slash).\n" -"Files that are not present will be fetched the usual way." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Specifies the default stack size of nodes, items and tools.\n" -"Note that mods or games may explicitly set a stack for certain (or all) " -"items." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Spread a complete update of shadow map over given number of frames.\n" -"Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Spread of light curve boost range.\n" -"Controls the width of the range to be boosted.\n" -"Standard deviation of the light curve boost Gaussian." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Static spawn point" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Steepness noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Step mountain size noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Step mountain spread noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Strength of 3D mode parallax." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Strength of light curve boost.\n" -"The 3 'boost' parameters define a range of the light\n" -"curve that is boosted in brightness." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Strict protocol checking" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Strip color codes" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Surface level of optional water placed on a solid floatland layer.\n" -"Water is disabled by default and will only be placed if this value is set\n" -"to above 'mgv7_floatland_ymax' - 'mgv7_floatland_taper' (the start of the\n" -"upper tapering).\n" -"***WARNING, POTENTIAL DANGER TO WORLDS AND SERVER PERFORMANCE***:\n" -"When enabling water placement, floatlands must be configured and tested\n" -"to be a solid layer by setting 'mgv7_floatland_density' to 2.0 (or other\n" -"required value depending on 'mgv7_np_floatland'), to avoid\n" -"server-intensive extreme water flow and to avoid vast flooding of the\n" -"world surface below." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Synchronous SQLite" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Temperature variation for biomes." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Terrain alternative noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Terrain base noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Terrain height" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Terrain higher noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Terrain noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Terrain noise threshold for hills.\n" -"Controls proportion of world area covered by hills.\n" -"Adjust towards 0.0 for a larger proportion." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Terrain noise threshold for lakes.\n" -"Controls proportion of world area covered by lakes.\n" -"Adjust towards 0.0 for a larger proportion." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Terrain persistence noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Texture size to render the shadow map on.\n" -"This must be a power of two.\n" -"Bigger numbers create better shadows but it is also more expensive." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Textures on a node may be aligned either to the node or to the world.\n" -"The former mode suits better things like machines, furniture, etc., while\n" -"the latter makes stairs and microblocks fit surroundings better.\n" -"However, as this possibility is new, thus may not be used by older servers,\n" -"this option allows enforcing it for certain node types. Note though that\n" -"that is considered EXPERIMENTAL and may not work properly." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "The URL for the content repository" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "The dead zone of the joystick" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"The default format in which profiles are being saved,\n" -"when calling `/profiler save [format]` without format." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"The delay in milliseconds after which a touch interaction is considered a " -"long tap." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"The file path relative to your world path in which profiles will be saved to." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"The gesture for punching players/entities.\n" -"This can be overridden by games and mods.\n" -"\n" -"* short_tap\n" -"Easy to use and well-known from other games that shall not be named.\n" -"\n" -"* long_tap\n" -"Known from the classic Luanti mobile controls.\n" -"Combat is more or less impossible." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "The identifier of the joystick to use" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"The length in pixels after which a touch interaction is considered movement." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"The maximum height of the surface of waving liquids.\n" -"4.0 = Wave height is two nodes.\n" -"0.0 = Wave doesn't move at all.\n" -"Default is 1.0 (1/2 node)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"The minimum time in seconds it takes between digging nodes when holding\n" -"the dig button." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "The network interface that the server listens on." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"The privileges that new users automatically get.\n" -"See /privs in game for a full list on your server and mod configuration." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"The radius of the volume of blocks around every player that is subject to " -"the\n" -"active block stuff, stated in mapblocks (16 nodes).\n" -"In active blocks objects are loaded and ABMs run.\n" -"This is also the minimum range in which active objects (mobs) are " -"maintained.\n" -"This should be configured together with active_object_send_range_blocks." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"The rendering back-end.\n" -"Note: A restart is required after changing this!\n" -"OpenGL is the default for desktop, and OGLES2 for Android." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"The sensitivity of the joystick axes for moving the\n" -"in-game view frustum around." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"The strength (darkness) of node ambient-occlusion shading.\n" -"Lower is darker, Higher is lighter. The valid range of values for this\n" -"setting is 0.25 to 4.0 inclusive. If the value is out of range it will be\n" -"set to the nearest valid value." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"The time (in seconds) that the liquids queue may grow beyond processing\n" -"capacity until an attempt is made to decrease its size by dumping old queue\n" -"items. A value of 0 disables the functionality." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"The time budget allowed for ABMs to execute on each step\n" -"(as a fraction of the ABM Interval)" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"The time in seconds it takes between repeated events\n" -"when holding down a joystick button combination." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"The time in seconds it takes between repeated node placements when holding\n" -"the place button." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "The type of joystick" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"The vertical distance over which heat drops by 20 if 'altitude_chill' is\n" -"enabled. Also, the vertical distance over which humidity drops by 10 if\n" -"'altitude_dry' is enabled." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Third of 4 2D noises that together define hill/mountain range height." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Threshold for long taps" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Time in seconds for item entity (dropped items) to live.\n" -"Setting it to -1 disables the feature." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Time of day when a new world is started, in millihours (0-23999)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Time speed" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Timeout for client to remove unused map data from memory, in seconds." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"To reduce lag, block transfers are slowed down when a player is building " -"something.\n" -"This determines how long they are slowed down after placing or removing a " -"node." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Tolerance of movement cheat detector.\n" -"Increase the value if players experience stuttery movement." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Tooltip delay" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Touchscreen" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Touchscreen controls" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Touchscreen sensitivity" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Touchscreen sensitivity multiplier." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Tradeoffs for performance" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Translucent foliage" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Translucent liquids" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Transparency Sorting Distance" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Trees noise" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Trilinear filtering" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"True = 256\n" -"False = 128\n" -"Usable to make minimap smoother on slower machines." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Trusted mods" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Type of occlusion_culler\n" -"\n" -"\"loops\" is the legacy algorithm with nested loops and O(n³) complexity\n" -"\"bfs\" is the new algorithm based on breadth-first-search and side culling\n" -"\n" -"This setting should only be changed if you have performance problems." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"URL to JSON file which provides information about the newest Luanti " -"release.\n" -"If this is empty the engine will never check for updates." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "URL to the server list displayed in the Multiplayer Tab." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Undersampling" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Undersampling is similar to using a lower screen resolution, but it applies\n" -"to the game world only, keeping the GUI intact.\n" -"It should give a significant performance boost at the cost of less detailed " -"image.\n" -"Higher values result in a less detailed image." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Unlimited player transfer distance" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Unload unused server data" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Update information URL" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Upper Y limit of dungeons." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Upper Y limit of floatlands." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Use a cloud animation for the main menu background." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Use bilinear filtering when scaling textures." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Use crosshair for touch screen" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Use crosshair to select object instead of whole screen.\n" -"If enabled, a crosshair will be shown and will be used for selecting object." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Use mipmaps when scaling textures. May slightly increase performance,\n" -"especially when using a high-resolution texture pack.\n" -"Gamma-correct downscaling is not supported." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Use raytraced occlusion culling in the new culler.\n" -"This flag enables use of raytraced occlusion culling test for\n" -"client mesh sizes smaller than 4x4x4 map blocks." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Use smooth cloud shading." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Use trilinear filtering when scaling textures.\n" -"If both bilinear and trilinear filtering are enabled, trilinear filtering\n" -"is applied." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Use virtual joystick to trigger \"Aux1\" button.\n" -"If enabled, virtual joystick will also tap \"Aux1\" button when out of main " -"circle." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "User Interfaces" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "VSync" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Valley depth" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Valley fill" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Valley profile" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Valley slope" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Variation of biome filler depth." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Variation of maximum mountain height (in nodes)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Variation of number of caves." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Variation of terrain vertical scale.\n" -"When noise is < -0.55 terrain is near-flat." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Varies depth of biome surface nodes." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Varies roughness of terrain.\n" -"Defines the 'persistence' value for terrain_base and terrain_alt noises." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Varies steepness of cliffs." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Vertical climbing speed, in nodes per second." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Vertical screen synchronization. Your system may still force VSync on even " -"if this is disabled." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Video driver" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "View bobbing factor" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "View distance in nodes." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Viewing range" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Virtual joystick triggers Aux1 button" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Volume" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Volume multiplier when the window is unfocused." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Volume of all sounds.\n" -"Requires the sound system to be enabled." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Volume when unfocused" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Volumetric lighting" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"W coordinate of the generated 3D slice of a 4D fractal.\n" -"Determines which 3D slice of the 4D shape is generated.\n" -"Alters the shape of the fractal.\n" -"Has no effect on 3D fractals.\n" -"Range roughly -2 to 2." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Walking and flying speed, in nodes per second." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Walking speed" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Walking, flying and climbing speed in fast mode, in nodes per second." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Water level" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Water surface level of the world." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Waving Nodes" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Waving leaves" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Waving liquids" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Waving liquids wave height" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Waving liquids wave speed" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Waving liquids wavelength" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Waving plants" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Weblink color" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "When enabled, liquid reflections are simulated." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When enabled, the GUI is optimized to be more usable on touchscreens.\n" -"Whether this is enabled by default depends on your hardware form-factor." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When gui_scaling_filter is true, all GUI images need to be\n" -"filtered in software, but some images are generated directly\n" -"to hardware (e.g. render-to-texture for nodes in inventory)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" -"This is also used as the base node texture size for world-aligned\n" -"texture autoscaling." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Whether name tag backgrounds should be shown by default.\n" -"Mods may still set a background." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Whether players are shown to clients without any range limit.\n" -"Deprecated, use the setting player_transfer_distance instead." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Whether the window is maximized." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Whether to ask clients to reconnect after a (Lua) crash.\n" -"Set this to true if your server is set up to restart automatically." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Whether to fog out the end of the visible area." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" -"In-game, you can toggle the mute state with the mute key or by using the\n" -"pause menu." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Whether to show the client debug info (has the same effect as hitting F5)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Width component of the initial window size." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Width of the selection box lines around nodes." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Window maximized" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Windows systems only: Start Luanti with the command line window in the " -"background.\n" -"Contains the same information as the file debug.txt (default name)." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"World directory (everything in the world is stored here).\n" -"Not needed if starting from the main menu." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "World start time" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"World-aligned textures may be scaled to span several nodes. However,\n" -"the server may not send the scale you want, especially if you use\n" -"a specially-designed texture pack; with this option, the client tries\n" -"to determine the scale automatically basing on the texture size.\n" -"See also texture_min_size.\n" -"Warning: This option is EXPERIMENTAL!" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "World-aligned textures mode" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Y of flat ground." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Y of mountain density gradient zero level. Used to shift mountains " -"vertically." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Y of upper limit of large caves." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Y-distance over which caverns expand to full size." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "" -"Y-distance over which floatlands taper from full density to nothing.\n" -"Tapering starts at this distance from the Y limit.\n" -"For a solid floatland layer, this controls the height of hills/mountains.\n" -"Must be less than or equal to half the distance between the Y limits." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Y-level of average terrain surface." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Y-level of cavern upper limit." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Y-level of higher terrain that creates cliffs." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Y-level of lower terrain and seabed." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "Y-level of seabed." -msgstr "" - -#: src/settings_translation_file.cpp -msgid "cURL" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "cURL file download timeout" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "cURL interactive timeout" -msgstr "" - -#: src/settings_translation_file.cpp -msgid "cURL parallel limit" -msgstr "" diff --git a/po/zh_CN/luanti.po b/po/zh_CN/luanti.po index 6fdf6bbec..62d828f3f 100644 --- a/po/zh_CN/luanti.po +++ b/po/zh_CN/luanti.po @@ -2,9 +2,9 @@ msgid "" msgstr "" "Project-Id-Version: Chinese (Simplified) (Minetest)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" -"PO-Revision-Date: 2024-11-01 22:24+0000\n" -"Last-Translator: y5nw \n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" +"PO-Revision-Date: 2025-01-17 17:24+0000\n" +"Last-Translator: Poesty Li \n" "Language-Team: Chinese (Simplified Han script) \n" "Language: zh_CN\n" @@ -12,7 +12,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 5.8.2-dev\n" +"X-Generator: Weblate 5.10-dev\n" #: builtin/client/chatcommands.lua msgid "Clear the out chat queue" @@ -77,6 +77,249 @@ msgstr "" msgid "[all | ] [-t]" msgstr "[all | <命令>] [-t]" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "浏览" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "编辑" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "选择目录" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "选择文件" + +#: builtin/common/settings/components.lua +msgid "Set" +msgstr "设置" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(没有关于此设置的信息)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "2D 噪声" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "取消" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "空白" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "八音" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "补偿" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "持续性" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "保存" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "比例" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "种子" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "x 点差" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "y 点差" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "z 点差" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "绝对值" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "默认值" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "缓解" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "(The game will need to enable automatic exposure as well)" +msgstr "(子游戏需要支持阴影才能生效)" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "(The game will need to enable bloom as well)" +msgstr "(子游戏需要支持阴影才能生效)" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "(子游戏需要支持阴影才能生效)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "(使用系统语言)" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "辅助功能" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "自动" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "聊天" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "Clear键" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "控制" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "禁用" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "启用" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "通用" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "移动" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "无结果" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default" +msgstr "恢复默认设置" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "恢复默认设置 ($1)" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "搜索" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "显示高级设置" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "显示高级名称" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Touchscreen layout" +msgstr "触摸屏" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "pause_menu" +msgstr "暂停菜单 FPS" + +#: builtin/common/settings/settingtypes.lua +msgid "Client Mods" +msgstr "客户端 Mods" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "内容:子游戏" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "内容:模组" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "(子游戏需要支持阴影才能生效)" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "自定义" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "动态阴影" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "高" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "低" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "中" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "极高" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "极低" + #: builtin/fstk/ui.lua msgid "" msgstr "<无可用命令>" @@ -158,11 +401,10 @@ msgstr "正在下载 $1…" #: builtin/mainmenu/content/dlg_contentdb.lua msgid "All" -msgstr "" +msgstr "全部" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "后退" @@ -177,7 +419,7 @@ msgstr "下载中..." #: builtin/mainmenu/content/dlg_contentdb.lua msgid "Featured" -msgstr "" +msgstr "特性" #: builtin/mainmenu/content/dlg_contentdb.lua msgid "Games" @@ -199,11 +441,6 @@ msgstr "Mod" msgid "No packages could be retrieved" msgstr "无法检索任何包" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "无结果" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "没有更新" @@ -249,18 +486,6 @@ msgstr "已安装" msgid "Base Game:" msgstr "基础游戏:" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "取消" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" @@ -313,11 +538,11 @@ msgstr "描述" #: builtin/mainmenu/content/dlg_package.lua msgid "Donate" -msgstr "" +msgstr "捐赠" #: builtin/mainmenu/content/dlg_package.lua msgid "Forum Topic" -msgstr "" +msgstr "论坛主题" #: builtin/mainmenu/content/dlg_package.lua #, fuzzy @@ -331,7 +556,7 @@ msgstr "安装$1" #: builtin/mainmenu/content/dlg_package.lua msgid "Issue Tracker" -msgstr "" +msgstr "问题跟踪器" #: builtin/mainmenu/content/dlg_package.lua msgid "Source" @@ -355,7 +580,7 @@ msgstr "网站" #: builtin/mainmenu/content/dlg_package.lua msgid "by $1 — $2 downloads — +$3 / $4 / -$5" -msgstr "" +msgstr "由 $1 — $2 次下载 — +$3 / $4 / -$5" #: builtin/mainmenu/content/pkgmgr.lua msgid "$1 (Enabled)" @@ -385,6 +610,12 @@ msgstr "无法将$1 作为 $2 安装为mod" msgid "Unable to install a $1 as a texture pack" msgstr "无法将$1安装为材质包" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "(已启用,出错)" @@ -447,12 +678,6 @@ msgstr "无可选依赖项" msgid "Optional dependencies:" msgstr "可选依赖项:" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "保存" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "世界:" @@ -503,7 +728,7 @@ msgstr "装饰" #: builtin/mainmenu/dlg_create_world.lua msgid "Desert temples" -msgstr "" +msgstr "沙漠神庙" #: builtin/mainmenu/dlg_create_world.lua msgid "Development Test is meant for developers." @@ -513,7 +738,7 @@ msgstr "开发测试版适用于开发者。" msgid "" "Different dungeon variant generated in desert biomes (only if dungeons " "enabled)" -msgstr "" +msgstr "在沙漠生物群落中生成的不同地牢变体(仅在启用地牢时)" #: builtin/mainmenu/dlg_create_world.lua msgid "Dungeons" @@ -603,11 +828,6 @@ msgstr "河流" msgid "Sea level rivers" msgstr "海平面河流" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "种子" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "生物群落之间的平滑过渡" @@ -715,8 +935,8 @@ msgid "" "For a long time, Luanti shipped with a default game called \"Minetest " "Game\". Since version 5.8.0, Luanti ships without a default game." msgstr "" -"一直以来,Luanti 游戏引擎默认自带了“Minetest Game”这个子游戏。但是从 5.8.0 " -"版本起,Luanti 不再自带任何子游戏。" +"一直以来,Luanti 游戏引擎默认自带了“Minetest Game”这个子游戏。但是从 5.8.0 版" +"本起,Luanti 不再自带任何子游戏。" #: builtin/mainmenu/dlg_reinstall_mtg.lua msgid "" @@ -749,6 +969,23 @@ msgid "" msgstr "" "此整合包在它的 modpack.conf 中有一个明确的名称,它将覆盖这里的任何重命名。" +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "全部启用" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "有新的 $1 版本可用" @@ -776,7 +1013,7 @@ msgstr "从不" msgid "Visit website" msgstr "访问网站" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "设置" @@ -788,228 +1025,6 @@ msgstr "已禁用公共服务器列表" msgid "Try reenabling public serverlist and check your internet connection." msgstr "请尝试重新启用公共服务器列表并检查您的网络连接。" -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "浏览" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "编辑" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "选择目录" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "选择文件" - -#: builtin/mainmenu/settings/components.lua -msgid "Set" -msgstr "设置" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(没有关于此设置的信息)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "2D 噪声" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "空白" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "八音" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "补偿" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "持续性" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "比例" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "x 点差" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "y 点差" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "z 点差" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "绝对值" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "默认值" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "缓解" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable automatic exposure as well)" -msgstr "(子游戏需要支持阴影才能生效)" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable bloom as well)" -msgstr "(子游戏需要支持阴影才能生效)" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "(子游戏需要支持阴影才能生效)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "(使用系统语言)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "辅助功能" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "聊天" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "Clear键" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "控制" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "禁用" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "启用" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "通用" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "移动" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default" -msgstr "恢复默认设置" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "恢复默认设置 ($1)" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "搜索" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "显示高级设置" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "显示高级名称" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "客户端 Mods" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "内容:子游戏" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "内容:模组" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "启用" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Shaders are disabled." -msgstr "已禁用镜头更新" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "(子游戏需要支持阴影才能生效)" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "自定义" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "动态阴影" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "高" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "低" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "中" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "极高" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "极低" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "关于" @@ -1030,10 +1045,6 @@ msgstr "核心开发者" msgid "Core Team" msgstr "核心团队" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "Irrlicht 渲染设备:" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "打开用户数据目录" @@ -1143,7 +1154,7 @@ msgstr "Luanti 不自带任何子游戏。" msgid "" "Luanti is a game-creation platform that allows you to play many different " "games." -msgstr "" +msgstr "Luanti 是一方游戏创作平台,可让你游玩各类游戏。" #: builtin/mainmenu/tab_local.lua msgid "New" @@ -1181,10 +1192,22 @@ msgstr "启动游戏" msgid "You need to install a game before you can create a world." msgstr "您需要先安装一个子游戏才能创建新的世界。" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "移除收藏" + #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "地址" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "客户端" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "创造模式" @@ -1198,6 +1221,11 @@ msgstr "伤害 / PvP" msgid "Favorites" msgstr "我的收藏" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "子游戏" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "不兼容的服务器" @@ -1210,10 +1238,28 @@ msgstr "加入游戏" msgid "Login" msgstr "登录" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Number of mods: $1" +msgstr "生产线程数" + +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Open server website" +msgstr "专用服务器步骤" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "ping值" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Public Servers" msgstr "公开服务器" @@ -1298,23 +1344,6 @@ msgstr "" "\n" "查看 debug.txt 以获得详细信息。" -#: src/client/game.cpp -msgid "- Mode: " -msgstr "- 模式: " - -#: src/client/game.cpp -msgid "- Public: " -msgstr "- 公共服务器: " - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "- 玩家对战: " - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "- 服务器名称: " - #: src/client/game.cpp msgid "A serialization error occurred:" msgstr "序列化发生了错误:" @@ -1324,6 +1353,11 @@ msgstr "序列化发生了错误:" msgid "Access denied. Reason: %s" msgstr "访问被拒绝。原因:%s" +#: src/client/game.cpp +#, fuzzy +msgid "All debug info hidden" +msgstr "调试信息已显示" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "自动前进已禁用" @@ -1344,6 +1378,10 @@ msgstr "已为当前方块描边" msgid "Block bounds shown for nearby blocks" msgstr "已为周围方块描边" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "已禁用镜头更新" @@ -1356,10 +1394,6 @@ msgstr "已启用镜头更新" msgid "Can't show block bounds (disabled by game or mod)" msgstr "无法显示方块边界(已被子游戏或者 Mod 禁用)" -#: src/client/game.cpp -msgid "Change Password" -msgstr "更改密码" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "电影模式已禁用" @@ -1388,39 +1422,6 @@ msgstr "连接出错(超时?)" msgid "Connection failed for unknown reason" msgstr "连接失败,原因不明" -#: src/client/game.cpp -msgid "Continue" -msgstr "继续" - -#: src/client/game.cpp -#, fuzzy -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" -"控制指南:\n" -"菜单不可见时:\n" -"- 长安: 挖/按压/使用\n" -"- 单击: 放置/使用\n" -"- 滑动手指: 环顾四周\n" -"菜单/物品栏可见时:\n" -"- 双击 (界面区域外):\n" -" --> 关闭\n" -"- 点击物品, 然后点击栏位:\n" -" --> 移动一组物品\n" -"- 点击物品并拖动, 然后另一手指点击\n" -" --> 移动一个物品\n" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1434,31 +1435,15 @@ msgstr "正在建立客户端..." msgid "Creating server..." msgstr "建立服务器...." -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "调试信息和性能分析图已隐藏" - #: src/client/game.cpp msgid "Debug info shown" msgstr "调试信息已显示" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "调试信息、性能分析图和线框已隐藏" - #: src/client/game.cpp #, c-format msgid "Error creating client: %s" msgstr "创建客户端出错:%s" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "退出至菜单" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "退出至操作系统" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "快速模式已禁用" @@ -1496,18 +1481,6 @@ msgstr "雾气已启用" msgid "Fog enabled by game or mod" msgstr "雾被当前子游戏或 mod 启用" -#: src/client/game.cpp -msgid "Game info:" -msgstr "游戏信息:" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "游戏暂停" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "建立服务器" - #: src/client/game.cpp msgid "Item definitions..." msgstr "物品定义..." @@ -1544,14 +1517,6 @@ msgstr "穿墙模式已启用 (注:无 'noclip' 权限)" msgid "Node definitions..." msgstr "方块定义..." -#: src/client/game.cpp -msgid "Off" -msgstr "关" - -#: src/client/game.cpp -msgid "On" -msgstr "开" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "俯仰移动模式已禁用" @@ -1564,38 +1529,22 @@ msgstr "俯仰移动模式已启用" msgid "Profiler graph shown" msgstr "性能分析图已显示" -#: src/client/game.cpp -msgid "Remote server" -msgstr "远程服务器" - #: src/client/game.cpp msgid "Resolving address..." msgstr "正在解析地址..." -#: src/client/game.cpp -msgid "Respawn" -msgstr "重生" - #: src/client/game.cpp msgid "Shutting down..." msgstr "关闭中..." -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "单人游戏" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "音量" - #: src/client/game.cpp msgid "Sound muted" msgstr "已静音" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "声音系统已禁用" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "此编译版本不支持声音系统" @@ -1667,18 +1616,117 @@ msgstr "视野范围已改变至 %d,但是被子游戏或 Mod 限制为 %d" msgid "Volume changed to %d%%" msgstr "音量改到%d1%%2" +#: src/client/game.cpp +#, fuzzy +msgid "Wireframe not supported by video driver" +msgstr "着色器已启用,但是驱动程序不支持 GLSL。" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "线框已显示" -#: src/client/game.cpp -msgid "You died" -msgstr "您已死亡" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "缩放被当前子游戏或 mod 禁用" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "- 模式: " + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "- 公共服务器: " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "- 玩家对战: " + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "- 服务器名称: " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "更改密码" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "继续" + +#: src/client/game_formspec.cpp +#, fuzzy +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" +"控制指南:\n" +"菜单不可见时:\n" +"- 长安: 挖/按压/使用\n" +"- 单击: 放置/使用\n" +"- 滑动手指: 环顾四周\n" +"菜单/物品栏可见时:\n" +"- 双击 (界面区域外):\n" +" --> 关闭\n" +"- 点击物品, 然后点击栏位:\n" +" --> 移动一组物品\n" +"- 点击物品并拖动, 然后另一手指点击\n" +" --> 移动一个物品\n" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "退出至菜单" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "退出至操作系统" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "游戏信息:" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "游戏暂停" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "建立服务器" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "关" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "开" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "远程服务器" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "重生" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "音量" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "您已死亡" + #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" msgstr "无法聊天:可能原因:被游戏或mod禁用" @@ -2006,7 +2054,7 @@ msgstr "无法编译“%s”着色器。" #: src/client/shader.cpp #, fuzzy -msgid "Shaders are enabled but GLSL is not supported by the driver." +msgid "GLSL is not supported by the driver" msgstr "着色器已启用,但是驱动程序不支持 GLSL。" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" @@ -2054,7 +2102,7 @@ msgstr "自动向前" msgid "Automatic jumping" msgstr "自动跳跃" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "Aux1" @@ -2066,7 +2114,7 @@ msgstr "向后" msgid "Block bounds" msgstr "地图块边界" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "改变相机" @@ -2090,7 +2138,7 @@ msgstr "减小音量" msgid "Double tap \"jump\" to toggle fly" msgstr "连按两次“跳”启用/禁用飞行模式" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "丢弃" @@ -2106,11 +2154,11 @@ msgstr "增加可视范围" msgid "Inc. volume" msgstr "增大音量" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "物品栏" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "跳" @@ -2142,7 +2190,7 @@ msgstr "下一个" msgid "Prev. item" msgstr "上一个物品" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "选择范围" @@ -2154,7 +2202,7 @@ msgstr "向右" msgid "Screenshot" msgstr "截图" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "潜行" @@ -2162,15 +2210,15 @@ msgstr "潜行" msgid "Toggle HUD" msgstr "启用/禁用HUD" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "启用/禁用聊天记录" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "启用/禁用快速模式" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "启用/禁用飞行模式" @@ -2178,11 +2226,11 @@ msgstr "启用/禁用飞行模式" msgid "Toggle fog" msgstr "启用/禁用雾" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "启用/禁用小地图" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "启用/禁用穿墙模式" @@ -2190,7 +2238,7 @@ msgstr "启用/禁用穿墙模式" msgid "Toggle pitchmove" msgstr "启用/禁用仰角移动模式" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "缩放" @@ -2226,7 +2274,7 @@ msgstr "旧密码" msgid "Passwords do not match!" msgstr "密码不匹配!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "退出" @@ -2239,16 +2287,47 @@ msgstr "静音" msgid "Sound Volume: %d%%" msgstr "音量:%d%%" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Add button" +msgstr "中键" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "完成!" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Remove" +msgstr "远程服务器" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Joystick" msgstr "摇杆 ID" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp msgid "Overflow menu" -msgstr "" +msgstr "溢出菜单" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreenlayout.cpp #, fuzzy msgid "Toggle debug" msgstr "启用/禁用雾" @@ -2257,15 +2336,15 @@ msgstr "启用/禁用雾" msgid "" "Another client is connected with this name. If your client closed " "unexpectedly, try again in a minute." -msgstr "" +msgstr "另一个客户端消耗此名称连接。如果您的客户端意外关闭,请一分钟后重试。" #: src/network/clientpackethandler.cpp msgid "Empty passwords are disallowed. Set a password and try again." -msgstr "" +msgstr "不允许使用空密码。请设置密码并重试。" #: src/network/clientpackethandler.cpp msgid "Internal server error" -msgstr "" +msgstr "内部服务器错误" #: src/network/clientpackethandler.cpp #, fuzzy @@ -2307,25 +2386,25 @@ msgstr "服务器正在关闭" #: src/network/clientpackethandler.cpp msgid "" "The server has experienced an internal error. You will now be disconnected." -msgstr "" +msgstr "服务器遇到内部错误。您将被断开连接。" #: src/network/clientpackethandler.cpp msgid "The server is running in singleplayer mode. You cannot connect." -msgstr "" +msgstr "服务器正在单人游戏模式下运行。您无法连接。" #: src/network/clientpackethandler.cpp msgid "Too many users" -msgstr "" +msgstr "用户过多" #: src/network/clientpackethandler.cpp msgid "Unknown disconnect reason." -msgstr "" +msgstr "未知断开连接原因。" #: src/network/clientpackethandler.cpp msgid "" "Your client sent something the server didn't expect. Try reconnecting or " "updating your client." -msgstr "" +msgstr "您的客户端发送了服务器未预期的内容。请尝试重新连接或更新您的客户端。" #: src/network/clientpackethandler.cpp msgid "" @@ -2463,6 +2542,7 @@ msgid "3D noise that determines number of dungeons per mapchunk." msgstr "确定每个地图块的地窖数量的3D噪声。" #: src/settings_translation_file.cpp +#, fuzzy msgid "" "3D support.\n" "Currently supported:\n" @@ -2471,8 +2551,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" "3D 支持。\n" "目前已支持:\n" @@ -2536,10 +2615,6 @@ msgstr "活动方块范围" msgid "Active object send range" msgstr "活动目标发送范围" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "挖方块时添加粒子。" - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "调整检测到的显示密度,用来缩放 UI 元素。" @@ -2568,9 +2643,20 @@ msgid "Advanced" msgstr "高级" #: src/settings_translation_file.cpp -msgid "Allows liquids to be translucent." +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." msgstr "" +#: src/settings_translation_file.cpp +#, fuzzy +msgid "Allow clouds to look 3D instead of flat." +msgstr "使用 3D 云彩,而不是看起来是平面的。" + +#: src/settings_translation_file.cpp +msgid "Allows liquids to be translucent." +msgstr "允许液体呈现半透明效果。" + #: src/settings_translation_file.cpp msgid "" "Alters the light curve by applying 'gamma correction' to it.\n" @@ -2619,11 +2705,11 @@ msgstr "抗锯齿方法" #: src/settings_translation_file.cpp msgid "Anticheat flags" -msgstr "" +msgstr "反作弊标志" #: src/settings_translation_file.cpp msgid "Anticheat movement tolerance" -msgstr "" +msgstr "反作弊移动容忍度" #: src/settings_translation_file.cpp msgid "Append item name" @@ -2647,10 +2733,15 @@ msgid "" "With OpenGL ES, dithering only works if the shader supports high\n" "floating-point precision and it may have a higher performance impact." msgstr "" +"应用抖动以减少颜色带状伪影。\n" +"抖动会显著增加无损压缩的截图的大小,并且如果显示器或操作系统进行额外的抖动," +"或颜色通道没有量化到 8 位,则会造成错误工作。\n" +"在 OpenGL ES 中,抖动仅在着色器支持高浮点精度时有效,并且可能会产生更高的性能" +"影响。" #: src/settings_translation_file.cpp msgid "Apply specular shading to nodes." -msgstr "" +msgstr "对节点应用高光阴影。" #: src/settings_translation_file.cpp msgid "Arm inertia" @@ -2963,14 +3054,14 @@ msgstr "云半径" msgid "Clouds" msgstr "云彩" -#: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." -msgstr "云是客户端效果。" - #: src/settings_translation_file.cpp msgid "Clouds in menu" msgstr "主菜单显示云彩" +#: src/settings_translation_file.cpp +msgid "Color depth for post-processing texture" +msgstr "" + #: src/settings_translation_file.cpp msgid "Colored fog" msgstr "彩色雾" @@ -2984,6 +3075,8 @@ msgid "" "Comma-separated list of AL and ALC extensions that should not be used.\n" "Useful for testing. See al_extensions.[h,cpp] for details." msgstr "" +"不应使用的 AL 和 ALC 扩展的逗号分隔列表。\n" +"对测试很有用。请参阅 al_extensions.[h,cpp] 获取详细信息。" #: src/settings_translation_file.cpp #, fuzzy @@ -2994,7 +3087,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" "逗号分隔用于在仓库中隐藏内容的标签列表。\n" "\"nonfree\"可用于隐藏根据自由软件基金会\n" @@ -3159,6 +3252,14 @@ msgstr "调试日志级别" msgid "Debugging" msgstr "调试" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "专用服务器步骤" @@ -3325,18 +3426,10 @@ msgstr "" "当np_biome超过该值时将产生沙漠。\n" "当‘snowbiomes’启用时,该项将被忽略。" -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "去同步块动画" - #: src/settings_translation_file.cpp msgid "Developer Options" msgstr "开发者选项" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "挖掘粒子效果" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "禁止使用空密码" @@ -3367,6 +3460,14 @@ msgstr "双击“跳跃”键飞行" msgid "Double-tapping the jump key toggles fly mode." msgstr "连按两次“跳跃”键启用/禁用飞行模式。" +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "转储地图生成器调试信息。" @@ -3452,9 +3553,10 @@ msgstr "" "模拟人眼的行为。" #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" "启用彩色阴影。\n" "在半透明节点上投射彩色阴影。会消耗很多的资源。" @@ -3517,7 +3619,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Enable updates available indicator on content tab" -msgstr "" +msgstr "在内容标签上启用可用更新指示器" #: src/settings_translation_file.cpp msgid "" @@ -3539,10 +3641,10 @@ msgstr "" "例如:0是不摇动;1.0正常摇动;2.0双倍。" #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" "允许/禁止运行 IPv6 服务器。\n" "如果设置了 bind_address 则本项被忽略。\n" @@ -3564,16 +3666,9 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "启用物品清单动画。" -#: src/settings_translation_file.cpp -#, fuzzy -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "启用翻转网状物facedir的缓存。" - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." -msgstr "" +msgstr "在 OpenGL 驱动程序中启用调试和错误检查。" #: src/settings_translation_file.cpp #, fuzzy @@ -3582,7 +3677,7 @@ msgstr "后期处理" #: src/settings_translation_file.cpp msgid "Enables the post processing pipeline." -msgstr "" +msgstr "启用后处理管道。" #: src/settings_translation_file.cpp msgid "" @@ -3591,6 +3686,8 @@ msgid "" "\"auto\" means that the touchscreen controls will be enabled and disabled\n" "automatically depending on the last used input method." msgstr "" +"启用触摸屏控制,允许您通过触摸屏玩游戏。\n" +"“自动”意味着触摸屏控件将根据上次使用的输入方法自动启用和禁用。" #: src/settings_translation_file.cpp msgid "" @@ -3896,10 +3993,6 @@ msgstr "GUI缩放" msgid "GUI scaling filter" msgstr "GUI缩放过滤器" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "GUI缩放过滤器 txr2img" - #: src/settings_translation_file.cpp msgid "Gamepads" msgstr "游戏手柄" @@ -4144,6 +4237,8 @@ msgid "" "ContentDB to\n" "check for package updates when opening the mainmenu." msgstr "" +"如果启用并且您安装了 ContentDB 包,Luanti 可能会在打开主菜单时联系 ContentDB " +"检查包更新。" #: src/settings_translation_file.cpp msgid "" @@ -4154,14 +4249,6 @@ msgstr "" "如果启用,“Aux1”键将代替潜行键的向下攀爬和\n" "下降。" -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" -"如果启用,帐户注册与 UI 中的登录是分开的。\n" -"如果禁用,新帐户将在登录时自动注册。" - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -4184,6 +4271,16 @@ msgid "" "empty password." msgstr "如果启用,玩家将无法在没有密码的情况下加入或修改密码为空密码。" +#: src/settings_translation_file.cpp +#, fuzzy +msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" +"如果启用,帐户注册与 UI 中的登录是分开的。\n" +"如果禁用,新帐户将在登录时自动注册。" + #: src/settings_translation_file.cpp msgid "" "If enabled, the server will perform map block occlusion culling based on\n" @@ -4297,10 +4394,6 @@ msgstr "注册时计数实体的方法。" msgid "Interval of saving important changes in the world, stated in seconds." msgstr "保存世界重要变化的时间间隔,以秒为单位。" -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "一天中向客户端发送时间的间隔,以秒为单位。" - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "物品清单物品动画" @@ -4945,6 +5038,8 @@ msgid "" "You generally don't need to change this, however busy servers may benefit " "from a higher number." msgstr "" +"低级网络代码中每个发送步骤发送的最大数据包数量。\n" +"您通常不需要更改此设置,但繁忙的服务器可能会受益于更高的数量。" #: src/settings_translation_file.cpp msgid "Maximum number of players that can be connected simultaneously." @@ -5002,10 +5097,6 @@ msgstr "交互式请求(例如服务器列表获取)可能需要的最长时 msgid "Maximum users" msgstr "最大用户数" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "Mesh 缓存" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "今日消息" @@ -5039,6 +5130,10 @@ msgstr "每个地图块的随机大型洞穴数的上限。" msgid "Minimum limit of random number of small caves per mapchunk." msgstr "每个地图块的随机大型洞穴数的下限。" +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "Mip 贴图" @@ -5133,9 +5228,10 @@ msgstr "" "- v7悬空岛(默认禁用)。" #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" "玩家名称。\n" @@ -5173,7 +5269,7 @@ msgstr "方块高亮" #: src/settings_translation_file.cpp msgid "Node specular" -msgstr "" +msgstr "节点高光" #: src/settings_translation_file.cpp msgid "NodeTimer interval" @@ -5405,7 +5501,7 @@ msgstr "最低协议版本" #: src/settings_translation_file.cpp msgid "Punch gesture" -msgstr "" +msgstr "打击手势" #: src/settings_translation_file.cpp msgid "" @@ -5418,7 +5514,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Radius to use when the block bounds HUD feature is set to near blocks." -msgstr "" +msgstr "当块范围 HUD 功能设置为接近块时使用的半径。" #: src/settings_translation_file.cpp msgid "Raises terrain to make valleys around the rivers." @@ -5646,17 +5742,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5767,7 +5865,7 @@ msgid "" "Server anticheat configuration.\n" "Flags are positive. Uncheck the flag to disable corresponding anticheat " "module." -msgstr "" +msgstr "服务器反作弊配置。标志是正数。取消选中标志以禁用相应的反作弊模块。" #: src/settings_translation_file.cpp msgid "Server description" @@ -5869,7 +5967,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Set to true to enable volumetric lighting effect (a.k.a. \"Godrays\")." -msgstr "" +msgstr "设置为true以启用体积光效(即“神光”)。" #: src/settings_translation_file.cpp msgid "Set to true to enable waving leaves." @@ -5909,16 +6007,6 @@ msgstr "" msgid "Shader path" msgstr "着色器路径" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "着色器" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "阴影过滤质量" @@ -5985,7 +6073,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Simulate translucency when looking at foliage in the sunlight." -msgstr "" +msgstr "在阳光下观看树叶时模拟半透明效果。" #: src/settings_translation_file.cpp msgid "" @@ -6101,11 +6189,11 @@ msgstr "" "请注意,mod或游戏可能会为某些(或所有)项目明确设置堆栈。" #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" "把完整地更新一次阴影贴图这项任务分配给多少帧去完成。\n" "较高的值可能会使阴影滞后,较低的值\n" @@ -6282,7 +6370,7 @@ msgstr "" msgid "" "The delay in milliseconds after which a touch interaction is considered a " "long tap." -msgstr "" +msgstr "触碰交互后认为是长按的延迟(以毫秒为单位)。" #: src/settings_translation_file.cpp msgid "" @@ -6301,6 +6389,15 @@ msgid "" "Known from the classic Luanti mobile controls.\n" "Combat is more or less impossible." msgstr "" +"击打玩家/实体的手势。\n" +"这可以被子游戏和 Mod 覆盖。\n" +"\n" +"* 短按\n" +"易于使用,并且在其它不可说的游戏中广为人知。\n" +"\n" +"* 长按\n" +"来自经典的Luanti移动控制。\n" +"战斗或多或少是不可能的。" #: src/settings_translation_file.cpp msgid "The identifier of the joystick to use" @@ -6447,7 +6544,7 @@ msgstr "定义tunnels的最初2个3D噪音。" #: src/settings_translation_file.cpp msgid "Threshold for long taps" -msgstr "" +msgstr "长按的阈值" #: src/settings_translation_file.cpp msgid "" @@ -6461,10 +6558,6 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "一天中开始一个新世界的时间,以毫小时为单位(0-23999)。" -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "发送间隔时间" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "速度时间" @@ -6488,6 +6581,8 @@ msgid "" "Tolerance of movement cheat detector.\n" "Increase the value if players experience stuttery movement." msgstr "" +"动作作弊检测器的容差。\n" +"如果玩家体验到卡顿移动,请增加值。" #: src/settings_translation_file.cpp msgid "Tooltip delay" @@ -6527,6 +6622,11 @@ msgstr "半透明液体" msgid "Transparency Sorting Distance" msgstr "透明度排序距离" +#: src/settings_translation_file.cpp +#, fuzzy +msgid "Transparency Sorting Group by Buffers" +msgstr "透明度排序距离" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "树木噪声" @@ -6584,12 +6684,16 @@ msgid "Undersampling" msgstr "欠采样" #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Undersampling is similar to using a lower screen resolution, but it applies\n" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" "欠采样类似于使用较低的屏幕分辨率,但是它适用\n" "仅限于游戏世界,保持GUI完整。\n" @@ -6616,16 +6720,15 @@ msgstr "地窖的Y值上限。" msgid "Upper Y limit of floatlands." msgstr "悬空岛的Y值上限。" -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "使用 3D 云彩,而不是看起来是平面的。" - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "主菜单背景使用云动画。" #: src/settings_translation_file.cpp -msgid "Use anisotropic filtering when looking at textures from an angle." +#, fuzzy +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "缩放材质时使用三线过滤。" #: src/settings_translation_file.cpp @@ -6666,7 +6769,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Use smooth cloud shading." -msgstr "" +msgstr "使用平滑云阴影。" #: src/settings_translation_file.cpp msgid "" @@ -6783,7 +6886,7 @@ msgstr "音量" #: src/settings_translation_file.cpp msgid "Volume multiplier when the window is unfocused." -msgstr "" +msgstr "窗口失去焦点时的音量倍增器。" #: src/settings_translation_file.cpp msgid "" @@ -6871,13 +6974,15 @@ msgstr "网页链接颜色" #: src/settings_translation_file.cpp msgid "When enabled, liquid reflections are simulated." -msgstr "" +msgstr "启用时,会模拟液体反射。" #: src/settings_translation_file.cpp msgid "" "When enabled, the GUI is optimized to be more usable on touchscreens.\n" "Whether this is enabled by default depends on your hardware form-factor." msgstr "" +"启用时,GUI优化为在触摸屏上更易于使用。\n" +"是否默认启用取决于您的硬件外形尺寸。" #: src/settings_translation_file.cpp msgid "" @@ -6890,25 +6995,14 @@ msgstr "" "硬件(例如,库存中材质的渲染到纹理)。" #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" -"当gui_scaling_filter_txr2img为 true 时,复制这些图像\n" -"从硬件到软件进行扩展。 当 false 时,回退\n" -"到旧的缩放方法,对于不\n" -"正确支持从硬件下载纹理。" - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -6929,10 +7023,6 @@ msgstr "" "无论默认情况下应显示名称标签背景.\n" "模组都可能仍然设置一个背景." -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "方块材质动画是否应按地图块同步,否则取消同步。" - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -6958,9 +7048,9 @@ msgid "Whether to fog out the end of the visible area." msgstr "是否让雾出现在可视范围末端。" #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -7146,6 +7236,9 @@ msgstr "cURL 并发限制" #~ "留空则启动一个本地服务器。\n" #~ "注意,主菜单的地址栏将会覆盖这里的设置。" +#~ msgid "Adds particles when digging a node." +#~ msgstr "挖方块时添加粒子。" + #~ msgid "" #~ "Adjust dpi configuration to your screen (non X11/Android only) e.g. for " #~ "4k screens." @@ -7266,6 +7359,9 @@ msgstr "cURL 并发限制" #~ msgid "Clean transparent textures" #~ msgstr "干净透明材质" +#~ msgid "Clouds are a client-side effect." +#~ msgstr "云是客户端效果。" + #~ msgid "Command key" #~ msgstr "命令键" @@ -7359,9 +7455,15 @@ msgstr "cURL 并发限制" #~ msgid "Darkness sharpness" #~ msgstr "地图生成器平面湖坡度" +#~ msgid "Debug info and profiler graph hidden" +#~ msgstr "调试信息和性能分析图已隐藏" + #~ msgid "Debug info toggle key" #~ msgstr "调试信息启用/禁用键" +#~ msgid "Debug info, profiler graph, and wireframe hidden" +#~ msgstr "调试信息、性能分析图和线框已隐藏" + #~ msgid "Dec. volume key" #~ msgstr "音量减小键" @@ -7415,9 +7517,15 @@ msgstr "cURL 并发限制" #~ msgid "Del. Favorite" #~ msgstr "删除收藏项" +#~ msgid "Desynchronize block animation" +#~ msgstr "去同步块动画" + #~ msgid "Dig key" #~ msgstr "挖掘键" +#~ msgid "Digging particles" +#~ msgstr "挖掘粒子效果" + #~ msgid "Disable anticheat" #~ msgstr "禁用反作弊" @@ -7442,6 +7550,10 @@ msgstr "cURL 并发限制" #~ msgid "Dynamic shadows:" #~ msgstr "动态阴影:" +#, fuzzy +#~ msgid "Enable" +#~ msgstr "启用" + #~ msgid "Enable VBO" #~ msgstr "启用 VBO" @@ -7475,6 +7587,12 @@ msgstr "cURL 并发限制" #~ "否则将自动生成法线。\n" #~ "需要启用着色器。" +#, fuzzy +#~ msgid "" +#~ "Enables caching of facedir rotated meshes.\n" +#~ "This is only effective with shaders disabled." +#~ msgstr "启用翻转网状物facedir的缓存。" + #~ msgid "Enables filmic tone mapping" #~ msgstr "启用电影基调映射" @@ -7523,9 +7641,6 @@ msgstr "cURL 并发限制" #~ "实验性选项,设为大于 0 的数字时可能导致\n" #~ "块之间出现可见空间。" -#~ msgid "FPS in pause menu" -#~ msgstr "暂停菜单 FPS" - #~ msgid "FSAA" #~ msgstr "FSAA" @@ -7602,8 +7717,8 @@ msgstr "cURL 并发限制" #~ msgid "Full screen BPP" #~ msgstr "全屏 BPP" -#~ msgid "Game" -#~ msgstr "子游戏" +#~ msgid "GUI scaling filter txr2img" +#~ msgstr "GUI缩放过滤器 txr2img" #~ msgid "Gamma" #~ msgstr "伽马" @@ -7763,658 +7878,664 @@ msgstr "cURL 并发限制" #~ msgid "Instrumentation" #~ msgstr "计数器" +#~ msgid "Interval of sending time of day to clients, stated in seconds." +#~ msgstr "一天中向客户端发送时间的间隔,以秒为单位。" + #~ msgid "Invalid gamespec." #~ msgstr "非法游戏信息。" #~ msgid "Inventory key" #~ msgstr "物品清单键" +#~ msgid "Irrlicht device:" +#~ msgstr "Irrlicht 渲染设备:" + #~ msgid "Jump key" #~ msgstr "跳跃键" #~ msgid "" #~ "Key for decreasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "视野缩小键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for decreasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "音量减小键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for digging.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "挖掘键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for dropping the currently selected item.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "丢弃所选物品键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "视野扩大键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "音量增大键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for jumping.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "跳跃键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving fast in fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "快速模式快速移动键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player backward.\n" #~ "Will also disable autoforward, when active.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "后退键。\n" #~ "在按下时也会取消自动前进。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player forward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "前进键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player left.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "左方向键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player right.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "右方向键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for muting the game.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "静音键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "打开聊天窗口输入命令键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type local commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "打开聊天窗口输入本地命令键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "打开聊天窗口键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the inventory.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "打开物品清单键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for placing.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "放置键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 11th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "选择快捷栏第11个位置键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 12th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "选择快捷栏第12个位置键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 13th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "选择快捷栏第13个位置键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 14th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "选择快捷栏第14个位置键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 15th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "选择快捷栏第15个位置键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 16th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "选择快捷栏第16个位置键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 17th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "选择快捷栏第17个位置键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 18th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "选择快捷栏第18个位置键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 19th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "选择快捷栏第19个位置键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 20th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "选择快捷栏第20个位置键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 21st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "选择快捷栏第21个位置键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 22nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "选择快捷栏第22个位置键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 23rd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "选择快捷栏第23个位置键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 24th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "选择快捷栏第24个位置键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 25th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "选择快捷栏第25个位置键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 26th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "选择快捷栏第26个位置键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 27th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "选择快捷栏第27个位置键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 28th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "选择快捷栏第28个位置键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 29th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "选择快捷栏第29个位置键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 30th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "选择快捷栏第30个位置键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 31st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "选择快捷栏第31个位置键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 32nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "选择快捷栏第32个位置键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the eighth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "选择快捷栏第8个位置键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the fifth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "选择快捷栏第5个位置键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the first hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "选择快捷栏第1个位置键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the fourth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "选择快捷栏第4个位置键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the next item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "选择快捷栏下一个位置键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the ninth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "选择快捷栏第9个位置键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the previous item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "选择快捷栏上一个位置键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the second hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "选择快捷栏第2个位置键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the seventh hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "选择快捷栏第7个位置键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the sixth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "选择快捷栏第6个位置键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the tenth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "选择快捷栏第10个位置键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the third hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "选择快捷栏第3个位置键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for sneaking.\n" #~ "Also used for climbing down and descending in water if aux1_descends is " #~ "disabled.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "下蹲键。\n" #~ "若aux1_descends禁用,也可用于向下攀爬、在水中向下游。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for switching between first- and third-person camera.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "第一人称第三人称镜头切换键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for taking screenshots.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "截屏键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling autoforward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "启用/禁用自动前进键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling cinematic mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "启用/禁用电影模式键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling display of minimap.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "启用/禁用小地图键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "启用/禁用快速移动键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling flying.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "启用/禁用飞行键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling noclip mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "启用/禁用穿墙模式键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling pitch move mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "启用/禁用俯仰移动模式键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the camera update. Only used for development\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "启用/禁用相机更新键。仅用于开发。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of chat.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "启用/禁用聊天显示键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of debug info.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "启用/禁用调试信息键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of fog.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "启用/禁用雾显示键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the HUD.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "启用/禁用HUD显示键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the large chat console.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "启用/禁用大型聊天控制台显示键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the profiler. Used for development.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "启用/禁用性能分析图显示键。仅用于开发。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling unlimited view range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "启用/禁用无限视野键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key to use view zoom when possible.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "启用/禁用缩放(如有可能)键。\n" -#~ "见http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "见http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Keybindings. (If this menu screws up, remove stuff from minetest.conf)" @@ -8482,6 +8603,9 @@ msgstr "cURL 并发限制" #~ msgid "Menus" #~ msgstr "菜单" +#~ msgid "Mesh cache" +#~ msgstr "Mesh 缓存" + #~ msgid "Minimap" #~ msgstr "小地图" @@ -8693,6 +8817,9 @@ msgstr "cURL 并发限制" #~ "较低的值意味着阴影和贴图更新更快,但会消耗更多资源。\n" #~ "最小值 0.001 秒 最大值 0.2 秒" +#~ msgid "Shaders" +#~ msgstr "着色器" + #~ msgid "Shaders (experimental)" #~ msgstr "着色器(实验性)" @@ -8709,6 +8836,15 @@ msgstr "cURL 并发限制" #~ "性能。\n" #~ "仅用于OpenGL视频后端。" +#~ msgid "" +#~ "Shaders are a fundamental part of rendering and enable advanced visual " +#~ "effects." +#~ msgstr "着色器是渲染的基本部分,能够启用高级视觉效果。" + +#, fuzzy +#~ msgid "Shaders are disabled." +#~ msgstr "已禁用镜头更新" + #, fuzzy #~ msgid "Shadow limit" #~ msgstr "地图块限制" @@ -8739,6 +8875,9 @@ msgstr "cURL 并发限制" #~ msgid "Smooths rotation of camera. 0 to disable." #~ msgstr "让旋转摄影机时较流畅。设为 0 以停用。" +#~ msgid "Sound system is disabled" +#~ msgstr "声音系统已禁用" + #~ msgid "Special" #~ msgstr "特殊" @@ -8779,6 +8918,12 @@ msgstr "cURL 并发限制" #~ msgid "This font will be used for certain languages." #~ msgstr "用于特定语言的字体。" +#~ msgid "This is not a recommended configuration." +#~ msgstr "不推荐使用该配置。" + +#~ msgid "Time send interval" +#~ msgstr "发送间隔时间" + #~ msgid "To enable shaders the OpenGL driver needs to be used." #~ msgstr "启用着色器需要使用OpenGL驱动。" @@ -8849,6 +8994,21 @@ msgstr "cURL 并发限制" #~ msgid "Waving water" #~ msgstr "摇动水" +#~ msgid "" +#~ "When gui_scaling_filter_txr2img is true, copy those images\n" +#~ "from hardware to software for scaling. When false, fall back\n" +#~ "to the old scaling method, for video drivers that don't\n" +#~ "properly support downloading textures back from hardware." +#~ msgstr "" +#~ "当gui_scaling_filter_txr2img为 true 时,复制这些图像\n" +#~ "从硬件到软件进行扩展。 当 false 时,回退\n" +#~ "到旧的缩放方法,对于不\n" +#~ "正确支持从硬件下载纹理。" + +#~ msgid "" +#~ "Whether node texture animations should be desynchronized per mapblock." +#~ msgstr "方块材质动画是否应按地图块同步,否则取消同步。" + #~ msgid "X" #~ msgstr "X" diff --git a/po/zh_TW/luanti.po b/po/zh_TW/luanti.po index 0cf2409c6..264a0e3eb 100644 --- a/po/zh_TW/luanti.po +++ b/po/zh_TW/luanti.po @@ -2,17 +2,17 @@ msgid "" msgstr "" "Project-Id-Version: Chinese (Traditional) (Minetest)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-28 19:57+0100\n" -"PO-Revision-Date: 2024-08-20 10:09+0000\n" -"Last-Translator: hugoalh \n" -"Language-Team: Chinese (Traditional) \n" +"POT-Creation-Date: 2025-02-09 13:23+0100\n" +"PO-Revision-Date: 2025-01-16 13:00+0000\n" +"Last-Translator: reimu105 \n" +"Language-Team: Chinese (Traditional Han script) \n" "Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 5.7\n" +"X-Generator: Weblate 5.10-dev\n" #: builtin/client/chatcommands.lua msgid "Clear the out chat queue" @@ -75,6 +75,246 @@ msgstr "使用「.help 」來取得更多資訊,或使用「.help all」 msgid "[all | ] [-t]" msgstr "[all | <指令>] [-t]" +#: builtin/common/settings/components.lua +msgid "Browse" +msgstr "瀏覽" + +#: builtin/common/settings/components.lua +msgid "Edit" +msgstr "編輯" + +#: builtin/common/settings/components.lua +msgid "Select directory" +msgstr "選擇目錄" + +#: builtin/common/settings/components.lua +msgid "Select file" +msgstr "選擇檔案" + +#: builtin/common/settings/components.lua +msgid "Set" +msgstr "設定" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "(No description of setting given)" +msgstr "(未提供設定描述)" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "2D Noise" +msgstr "二維雜訊值" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/content/dlg_install.lua +#: builtin/mainmenu/content/dlg_overwrite.lua +#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua +#: builtin/mainmenu/dlg_delete_content.lua +#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua +#: builtin/mainmenu/dlg_rename_modpack.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/guiOpenURL.cpp src/gui/guiPasswordChange.cpp +msgid "Cancel" +msgstr "取消" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Lacunarity" +msgstr "空隙" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Octaves" +msgstr "八音" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Offset" +msgstr "補償" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Persistence" +msgstr "持續性" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_config_world.lua src/gui/guiKeyChangeMenu.cpp +msgid "Save" +msgstr "儲存" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: src/settings_translation_file.cpp +msgid "Scale" +msgstr "規模" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +#: builtin/mainmenu/dlg_create_world.lua +msgid "Seed" +msgstr "種子碼" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "X spread" +msgstr "X 點差" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Y spread" +msgstr "Y 點差" + +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "Z spread" +msgstr "Z 點差" + +#. ~ "absvalue" is a noise parameter flag. +#. It is short for "absolute value". +#. It can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "absvalue" +msgstr "絕對值" + +#. ~ "defaults" is a noise parameter flag. +#. It describes the default processing options +#. for noise settings in the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "defaults" +msgstr "預設值" + +#. ~ "eased" is a noise parameter flag. +#. It is used to make the map smoother and +#. can be enabled in noise settings in +#. the settings menu. +#: builtin/common/settings/dlg_change_mapgen_flags.lua +msgid "eased" +msgstr "緩解 (eased)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable automatic exposure as well)" +msgstr "(遊戲也需要啟用自動曝光)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable bloom as well)" +msgstr "(遊戲還需要啟用陰影)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(The game will need to enable volumetric lighting as well)" +msgstr "(遊戲還需要啟用陰影)" + +#: builtin/common/settings/dlg_settings.lua +msgid "(Use system language)" +msgstr "(使用系統語言)" + +#: builtin/common/settings/dlg_settings.lua +msgid "Accessibility" +msgstr "無障礙" + +#: builtin/common/settings/dlg_settings.lua +msgid "Auto" +msgstr "自動" + +#: builtin/common/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp +#: src/gui/touchscreenlayout.cpp src/settings_translation_file.cpp +msgid "Chat" +msgstr "聊天" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Clear" +msgstr "清除" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "Controls" +msgstr "控制" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/common/settings/shadows_component.lua +msgid "Disabled" +msgstr "已停用" + +#: builtin/common/settings/dlg_settings.lua +msgid "Enabled" +msgstr "已啟用" + +#: builtin/common/settings/dlg_settings.lua src/settings_translation_file.cpp +msgid "General" +msgstr "通用" + +#: builtin/common/settings/dlg_settings.lua +msgid "Movement" +msgstr "移動" + +#: builtin/common/settings/dlg_settings.lua +#: builtin/mainmenu/content/dlg_contentdb.lua +msgid "No results" +msgstr "無結果" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default" +msgstr "還原至預設值" + +#: builtin/common/settings/dlg_settings.lua +msgid "Reset setting to default ($1)" +msgstr "將設定重設為預設值 ($1)" + +#: builtin/common/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua +msgid "Search" +msgstr "搜尋" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show advanced settings" +msgstr "顯示進階設定" + +#: builtin/common/settings/dlg_settings.lua +msgid "Show technical names" +msgstr "顯示技術名稱" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "Touchscreen layout" +msgstr "觸控螢幕" + +#: builtin/common/settings/dlg_settings.lua +#, fuzzy +msgid "pause_menu" +msgstr "在暫停選單中的 FPS" + +#: builtin/common/settings/settingtypes.lua +msgid "Client Mods" +msgstr "客戶端模組" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Games" +msgstr "內容:遊戲" + +#: builtin/common/settings/settingtypes.lua +msgid "Content: Mods" +msgstr "內容:模組" + +#: builtin/common/settings/shadows_component.lua +msgid "(The game will need to enable shadows as well)" +msgstr "(遊戲還需要啟用陰影)" + +#: builtin/common/settings/shadows_component.lua +msgid "Custom" +msgstr "自定" + +#: builtin/common/settings/shadows_component.lua +#: src/settings_translation_file.cpp +msgid "Dynamic shadows" +msgstr "動態陰影" + +#: builtin/common/settings/shadows_component.lua +msgid "High" +msgstr "高" + +#: builtin/common/settings/shadows_component.lua +msgid "Low" +msgstr "低" + +#: builtin/common/settings/shadows_component.lua +msgid "Medium" +msgstr "中" + +#: builtin/common/settings/shadows_component.lua +msgid "Very High" +msgstr "超高" + +#: builtin/common/settings/shadows_component.lua +msgid "Very Low" +msgstr "很低" + #: builtin/fstk/ui.lua msgid "" msgstr "<沒有可用的>" @@ -155,16 +395,14 @@ msgstr "正在下載 $1..." #: builtin/mainmenu/content/dlg_contentdb.lua msgid "All" -msgstr "" +msgstr "全部" #: builtin/mainmenu/content/dlg_contentdb.lua #: builtin/mainmenu/content/dlg_package.lua -#: builtin/mainmenu/settings/dlg_settings.lua msgid "Back" msgstr "返回" #: builtin/mainmenu/content/dlg_contentdb.lua -#, fuzzy msgid "ContentDB is not available when Luanti was compiled without cURL" msgstr "在沒有 cURL 的情況下編譯 Minetest 時,ContentDB 不可用" @@ -174,7 +412,7 @@ msgstr "正在下載..." #: builtin/mainmenu/content/dlg_contentdb.lua msgid "Featured" -msgstr "" +msgstr "特性" #: builtin/mainmenu/content/dlg_contentdb.lua msgid "Games" @@ -196,11 +434,6 @@ msgstr "模組" msgid "No packages could be retrieved" msgstr "無法取得套件" -#: builtin/mainmenu/content/dlg_contentdb.lua -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "No results" -msgstr "無結果" - #: builtin/mainmenu/content/dlg_contentdb.lua msgid "No updates" msgstr "無更新" @@ -210,7 +443,6 @@ msgid "Queued" msgstr "已排程" #: builtin/mainmenu/content/dlg_contentdb.lua -#, fuzzy msgid "Texture Packs" msgstr "材質包" @@ -246,27 +478,14 @@ msgstr "已安裝" msgid "Base Game:" msgstr "主遊戲:" -#: builtin/mainmenu/content/dlg_install.lua -#: builtin/mainmenu/content/dlg_overwrite.lua -#: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/dlg_delete_content.lua -#: builtin/mainmenu/dlg_delete_world.lua builtin/mainmenu/dlg_register.lua -#: builtin/mainmenu/dlg_rename_modpack.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp src/gui/guiOpenURL.cpp -#: src/gui/guiPasswordChange.cpp -msgid "Cancel" -msgstr "取消" - #: builtin/mainmenu/content/dlg_install.lua #: builtin/mainmenu/dlg_config_world.lua builtin/mainmenu/tab_content.lua msgid "Dependencies:" msgstr "相依元件:" #: builtin/mainmenu/content/dlg_install.lua -#, fuzzy msgid "Error getting dependencies for package $1" -msgstr "獲取套件的相依元件時發生錯誤" +msgstr "取得軟體包 $1 的依賴項時出錯" #: builtin/mainmenu/content/dlg_install.lua msgid "Install" @@ -301,44 +520,40 @@ msgid "Overwrite" msgstr "覆蓋" #: builtin/mainmenu/content/dlg_package.lua -#, fuzzy msgid "ContentDB page" msgstr "ContentDB網址" #: builtin/mainmenu/content/dlg_package.lua -#, fuzzy msgid "Description" msgstr "伺服器描述" #: builtin/mainmenu/content/dlg_package.lua msgid "Donate" -msgstr "" +msgstr "捐贈" #: builtin/mainmenu/content/dlg_package.lua msgid "Forum Topic" -msgstr "" +msgstr "論壇主題" #: builtin/mainmenu/content/dlg_package.lua -#, fuzzy msgid "Information" -msgstr "資訊:" +msgstr "資訊" #: builtin/mainmenu/content/dlg_package.lua -#, fuzzy msgid "Install [$1]" msgstr "安裝 $1" #: builtin/mainmenu/content/dlg_package.lua msgid "Issue Tracker" -msgstr "" +msgstr "問題追蹤器" #: builtin/mainmenu/content/dlg_package.lua msgid "Source" -msgstr "" +msgstr "原始碼" #: builtin/mainmenu/content/dlg_package.lua msgid "Translate" -msgstr "" +msgstr "翻譯" #: builtin/mainmenu/content/dlg_package.lua builtin/mainmenu/tab_content.lua msgid "Uninstall" @@ -349,13 +564,12 @@ msgid "Update" msgstr "更新" #: builtin/mainmenu/content/dlg_package.lua -#, fuzzy msgid "Website" -msgstr "造訪網站" +msgstr "網站" #: builtin/mainmenu/content/dlg_package.lua msgid "by $1 — $2 downloads — +$3 / $4 / -$5" -msgstr "" +msgstr "按 $1 — $2 下載 — +$3 / $4 / -$5" #: builtin/mainmenu/content/pkgmgr.lua msgid "$1 (Enabled)" @@ -385,6 +599,12 @@ msgstr "無法將 $1 安裝為 $2" msgid "Unable to install a $1 as a texture pack" msgstr "無法將 $1 安裝為材質包" +#: builtin/mainmenu/dlg_clients_list.lua +msgid "" +"This is the list of clients connected to\n" +"$1" +msgstr "" + #: builtin/mainmenu/dlg_config_world.lua msgid "(Enabled, has error)" msgstr "(已啓用,有錯誤)" @@ -448,12 +668,6 @@ msgstr "沒有可選相依元件" msgid "Optional dependencies:" msgstr "可選相依元件:" -#: builtin/mainmenu/dlg_config_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/gui/guiKeyChangeMenu.cpp -msgid "Save" -msgstr "儲存" - #: builtin/mainmenu/dlg_config_world.lua msgid "World:" msgstr "世界:" @@ -604,11 +818,6 @@ msgstr "河流" msgid "Sea level rivers" msgstr "生成在海平面的河流" -#: builtin/mainmenu/dlg_create_world.lua -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Seed" -msgstr "種子碼" - #: builtin/mainmenu/dlg_create_world.lua msgid "Smooth transition between biomes" msgstr "生態域之間的平穩過渡" @@ -711,13 +920,12 @@ msgid "Dismiss" msgstr "忽略" #: builtin/mainmenu/dlg_reinstall_mtg.lua -#, fuzzy msgid "" "For a long time, Luanti shipped with a default game called \"Minetest " "Game\". Since version 5.8.0, Luanti ships without a default game." msgstr "" -"長期以來,Minetest 引擎附帶了一個名為「Minetest Game」的預設遊戲。 自 " -"Minetest 5.8.0 起,Minetest 不再提供預設遊戲。" +"長期以來,Luanti 都附帶一款名為「Minetest Game」的預設遊戲。自 5.8.0 版本以" +"來,Luanti 不再提供預設遊戲。" #: builtin/mainmenu/dlg_reinstall_mtg.lua msgid "" @@ -748,6 +956,23 @@ msgid "" "override any renaming here." msgstr "此模組包有在其 modpack.conf 提供明確的名稱,會覆蓋此處的任何重新命名。" +#: builtin/mainmenu/dlg_server_list_mods.lua +#, fuzzy +msgid "Expand all" +msgstr "全部啟用" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "Group by prefix" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses a game called $2 and the following mods:" +msgstr "" + +#: builtin/mainmenu/dlg_server_list_mods.lua +msgid "The $1 server uses the following mods:" +msgstr "" + #: builtin/mainmenu/dlg_version_info.lua msgid "A new $1 version is available" msgstr "一個新的 $1 版本可用" @@ -775,7 +1000,7 @@ msgstr "永不" msgid "Visit website" msgstr "造訪網站" -#: builtin/mainmenu/init.lua +#: builtin/mainmenu/init.lua src/client/game_formspec.cpp msgid "Settings" msgstr "設定" @@ -787,228 +1012,6 @@ msgstr "已停用公開伺服器列表" msgid "Try reenabling public serverlist and check your internet connection." msgstr "請嘗試重新啟用公共伺服器清單並檢查您的網際網路連線。" -#: builtin/mainmenu/settings/components.lua -msgid "Browse" -msgstr "瀏覽" - -#: builtin/mainmenu/settings/components.lua -msgid "Edit" -msgstr "編輯" - -#: builtin/mainmenu/settings/components.lua -msgid "Select directory" -msgstr "選擇目錄" - -#: builtin/mainmenu/settings/components.lua -msgid "Select file" -msgstr "選擇檔案" - -#: builtin/mainmenu/settings/components.lua -msgid "Set" -msgstr "設定" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "(No description of setting given)" -msgstr "(未提供設定描述)" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "2D Noise" -msgstr "二維雜訊值" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Lacunarity" -msgstr "空隙" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Octaves" -msgstr "八音" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Offset" -msgstr "補償" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Persistence" -msgstr "持續性" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -#: src/settings_translation_file.cpp -msgid "Scale" -msgstr "規模" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "X spread" -msgstr "X 點差" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Y spread" -msgstr "Y 點差" - -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "Z spread" -msgstr "Z 點差" - -#. ~ "absvalue" is a noise parameter flag. -#. It is short for "absolute value". -#. It can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "absvalue" -msgstr "絕對值" - -#. ~ "defaults" is a noise parameter flag. -#. It describes the default processing options -#. for noise settings in the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "defaults" -msgstr "預設值" - -#. ~ "eased" is a noise parameter flag. -#. It is used to make the map smoother and -#. can be enabled in noise settings in -#. the settings menu. -#: builtin/mainmenu/settings/dlg_change_mapgen_flags.lua -msgid "eased" -msgstr "緩解 (eased)" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable automatic exposure as well)" -msgstr "(遊戲還需要啟用陰影)" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable bloom as well)" -msgstr "(遊戲還需要啟用陰影)" - -#: builtin/mainmenu/settings/dlg_settings.lua -#, fuzzy -msgid "(The game will need to enable volumetric lighting as well)" -msgstr "(遊戲還需要啟用陰影)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "(Use system language)" -msgstr "(使用系統語言)" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Accessibility" -msgstr "無障礙" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Auto" -msgstr "" - -#: builtin/mainmenu/settings/dlg_settings.lua src/gui/guiKeyChangeMenu.cpp -#: src/gui/touchcontrols.cpp src/settings_translation_file.cpp -msgid "Chat" -msgstr "聊天" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Clear" -msgstr "清除" - -#: builtin/mainmenu/settings/dlg_settings.lua src/client/game.cpp -#: src/settings_translation_file.cpp -msgid "Controls" -msgstr "控制" - -#: builtin/mainmenu/settings/dlg_settings.lua -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Disabled" -msgstr "已停用" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Enabled" -msgstr "已啟用" - -#: builtin/mainmenu/settings/dlg_settings.lua src/settings_translation_file.cpp -msgid "General" -msgstr "通用" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Movement" -msgstr "移動" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default" -msgstr "還原至預設值" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Reset setting to default ($1)" -msgstr "將設定重設為預設值 ($1)" - -#: builtin/mainmenu/settings/dlg_settings.lua builtin/mainmenu/tab_online.lua -msgid "Search" -msgstr "搜尋" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show advanced settings" -msgstr "顯示進階設定" - -#: builtin/mainmenu/settings/dlg_settings.lua -msgid "Show technical names" -msgstr "顯示技術名稱" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Client Mods" -msgstr "客戶端模組" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Games" -msgstr "內容:遊戲" - -#: builtin/mainmenu/settings/settingtypes.lua -msgid "Content: Mods" -msgstr "內容:模組" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Enable" -msgstr "已啟用" - -#: builtin/mainmenu/settings/shader_warning_component.lua -#, fuzzy -msgid "Shaders are disabled." -msgstr "已停用相機更新" - -#: builtin/mainmenu/settings/shader_warning_component.lua -msgid "This is not a recommended configuration." -msgstr "" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "(The game will need to enable shadows as well)" -msgstr "(遊戲還需要啟用陰影)" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Custom" -msgstr "自定" - -#: builtin/mainmenu/settings/shadows_component.lua -#: src/settings_translation_file.cpp -msgid "Dynamic shadows" -msgstr "動態陰影" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "High" -msgstr "高" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Low" -msgstr "低" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Medium" -msgstr "中" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very High" -msgstr "超高" - -#: builtin/mainmenu/settings/shadows_component.lua -msgid "Very Low" -msgstr "很低" - #: builtin/mainmenu/tab_about.lua msgid "About" msgstr "關於" @@ -1029,10 +1032,6 @@ msgstr "核心開發者" msgid "Core Team" msgstr "核心團隊" -#: builtin/mainmenu/tab_about.lua -msgid "Irrlicht device:" -msgstr "照明設備:" - #: builtin/mainmenu/tab_about.lua msgid "Open User Data Directory" msgstr "打開用戶資料目錄" @@ -1134,16 +1133,14 @@ msgid "Install games from ContentDB" msgstr "從 ContentDB 安裝遊戲" #: builtin/mainmenu/tab_local.lua -#, fuzzy msgid "Luanti doesn't come with a game by default." -msgstr "預設不再安裝 Minetest 遊戲。" +msgstr "Luanti 預設不附遊戲。" #: builtin/mainmenu/tab_local.lua -#, fuzzy msgid "" "Luanti is a game-creation platform that allows you to play many different " "games." -msgstr "Minetest 是一個遊戲創建平台,可以讓你遊玩許多不同的遊戲。" +msgstr "Luanti 是一個遊戲創作平台,可以讓您玩許多不同的遊戲。" #: builtin/mainmenu/tab_local.lua msgid "New" @@ -1181,10 +1178,22 @@ msgstr "開始遊戲" msgid "You need to install a game before you can create a world." msgstr "您需要先安裝遊戲才能安裝模組。" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Add favorite" +msgstr "移除收藏" + #: builtin/mainmenu/tab_online.lua msgid "Address" msgstr "地址" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "" +"Clients:\n" +"$1" +msgstr "用戶端" + #: builtin/mainmenu/tab_online.lua msgid "Creative mode" msgstr "創造模式" @@ -1198,6 +1207,11 @@ msgstr "傷害/PvP" msgid "Favorites" msgstr "收藏" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Game: $1" +msgstr "遊戲" + #: builtin/mainmenu/tab_online.lua msgid "Incompatible Servers" msgstr "不相容的伺服器" @@ -1210,10 +1224,28 @@ msgstr "加入遊戲" msgid "Login" msgstr "登入" +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Number of mods: $1" +msgstr "出現的執行緒數" + +#: builtin/mainmenu/tab_online.lua +#, fuzzy +msgid "Open server website" +msgstr "專用伺服器步驟" + #: builtin/mainmenu/tab_online.lua msgid "Ping" msgstr "Ping" +#: builtin/mainmenu/tab_online.lua +msgid "" +"Possible filters\n" +"game:\n" +"mod:\n" +"player:" +msgstr "" + #: builtin/mainmenu/tab_online.lua msgid "Public Servers" msgstr "公開伺服器" @@ -1298,23 +1330,6 @@ msgstr "" "\n" "檢視 debug.txt 以取得更多資訊。" -#: src/client/game.cpp -msgid "- Mode: " -msgstr "- 模式: " - -#: src/client/game.cpp -msgid "- Public: " -msgstr "- 公開: " - -#. ~ PvP = Player versus Player -#: src/client/game.cpp -msgid "- PvP: " -msgstr "- PvP: " - -#: src/client/game.cpp -msgid "- Server Name: " -msgstr "- 伺服器名稱: " - #: src/client/game.cpp msgid "A serialization error occurred:" msgstr "序列化時發生錯誤:" @@ -1324,6 +1339,11 @@ msgstr "序列化時發生錯誤:" msgid "Access denied. Reason: %s" msgstr "存取被拒絕。原因︰%s" +#: src/client/game.cpp +#, fuzzy +msgid "All debug info hidden" +msgstr "已顯示除錯資訊" + #: src/client/game.cpp msgid "Automatic forward disabled" msgstr "已停用自動前進" @@ -1344,6 +1364,10 @@ msgstr "區塊邊界顯示目前區塊" msgid "Block bounds shown for nearby blocks" msgstr "區塊邊界顯示鄰接區塊" +#: src/client/game.cpp +msgid "Bounding boxes shown" +msgstr "" + #: src/client/game.cpp msgid "Camera update disabled" msgstr "已停用相機更新" @@ -1356,10 +1380,6 @@ msgstr "已啟用相機更新" msgid "Can't show block bounds (disabled by game or mod)" msgstr "無法顯示區塊邊界(被遊戲或模組停用)" -#: src/client/game.cpp -msgid "Change Password" -msgstr "變更密碼" - #: src/client/game.cpp msgid "Cinematic mode disabled" msgstr "電影模式已停用" @@ -1388,38 +1408,6 @@ msgstr "連線錯誤(逾時?)" msgid "Connection failed for unknown reason" msgstr "連線失敗,原因不明" -#: src/client/game.cpp -msgid "Continue" -msgstr "繼續" - -#: src/client/game.cpp -msgid "" -"Controls:\n" -"No menu open:\n" -"- slide finger: look around\n" -"- tap: place/punch/use (default)\n" -"- long tap: dig/use (default)\n" -"Menu/inventory open:\n" -"- double tap (outside):\n" -" --> close\n" -"- touch stack, touch slot:\n" -" --> move stack\n" -"- touch&drag, tap 2nd finger\n" -" --> place single item to slot\n" -msgstr "" -"控制:\n" -"沒有開啟的選單:\n" -"- 滑動手指:環顧四周\n" -"- 點擊:放置/打擊/使用(預設)\n" -"- 長按:挖掘/使用(預設)\n" -"開啟的選單/物品欄:\n" -"- 點擊兩次(外面):\n" -" --> 關閉\n" -"- 碰觸堆疊,碰觸欄位:\n" -" --> 移動堆疊\n" -"- 碰觸並拖曳,以第二隻手指點擊\n" -" --> 放置單一物品至欄位\n" - #: src/client/game.cpp #, c-format msgid "Couldn't resolve address: %s" @@ -1433,31 +1421,15 @@ msgstr "正在建立用戶端..." msgid "Creating server..." msgstr "正在建立伺服器..." -#: src/client/game.cpp -msgid "Debug info and profiler graph hidden" -msgstr "已隱藏除錯資訊及分析圖" - #: src/client/game.cpp msgid "Debug info shown" msgstr "已顯示除錯資訊" -#: src/client/game.cpp -msgid "Debug info, profiler graph, and wireframe hidden" -msgstr "已隱藏除錯資訊、分析圖及線框" - #: src/client/game.cpp #, c-format msgid "Error creating client: %s" msgstr "建立用戶端時發生錯誤:%s" -#: src/client/game.cpp -msgid "Exit to Menu" -msgstr "離開,回到選單" - -#: src/client/game.cpp -msgid "Exit to OS" -msgstr "離開,回到作業系統" - #: src/client/game.cpp msgid "Fast mode disabled" msgstr "快速模式已停用" @@ -1494,18 +1466,6 @@ msgstr "已啟用霧氣" msgid "Fog enabled by game or mod" msgstr "霧已由遊戲或模組啟用" -#: src/client/game.cpp -msgid "Game info:" -msgstr "遊戲資訊:" - -#: src/client/game.cpp -msgid "Game paused" -msgstr "遊戲暫停" - -#: src/client/game.cpp -msgid "Hosting server" -msgstr "正在主持伺服器" - #: src/client/game.cpp msgid "Item definitions..." msgstr "定義物品..." @@ -1542,14 +1502,6 @@ msgstr "穿牆模式已啟用(註:沒有「noclip」權限)" msgid "Node definitions..." msgstr "節點定義..." -#: src/client/game.cpp -msgid "Off" -msgstr "關閉" - -#: src/client/game.cpp -msgid "On" -msgstr "開啟" - #: src/client/game.cpp msgid "Pitch move mode disabled" msgstr "俯仰移動模式已停用" @@ -1562,38 +1514,22 @@ msgstr "俯仰移動模式已啟用" msgid "Profiler graph shown" msgstr "已顯示分析圖" -#: src/client/game.cpp -msgid "Remote server" -msgstr "遠端伺服器" - #: src/client/game.cpp msgid "Resolving address..." msgstr "正在解析地址……" -#: src/client/game.cpp -msgid "Respawn" -msgstr "重生" - #: src/client/game.cpp msgid "Shutting down..." msgstr "正在關閉..." -#: src/client/game.cpp +#: src/client/game.cpp src/client/game_formspec.cpp msgid "Singleplayer" msgstr "單人遊戲" -#: src/client/game.cpp -msgid "Sound Volume" -msgstr "音量" - #: src/client/game.cpp msgid "Sound muted" msgstr "已靜音" -#: src/client/game.cpp -msgid "Sound system is disabled" -msgstr "聲音系統已被禁用" - #: src/client/game.cpp msgid "Sound system is not supported on this build" msgstr "此編譯版本不支持聲音系統" @@ -1665,18 +1601,116 @@ msgstr "觀看範圍改為 %d,但被遊戲或模組限制為 %d" msgid "Volume changed to %d%%" msgstr "音量已調整為 %d%%" +#: src/client/game.cpp +#, fuzzy +msgid "Wireframe not supported by video driver" +msgstr "著色器已啟用,但是驅動程式不支援 GLSL。" + #: src/client/game.cpp msgid "Wireframe shown" msgstr "已顯示線框" -#: src/client/game.cpp -msgid "You died" -msgstr "您已死亡" - #: src/client/game.cpp msgid "Zoom currently disabled by game or mod" msgstr "遠近調整目前已被遊戲或模組停用" +#: src/client/game_formspec.cpp +msgid "- Mode: " +msgstr "- 模式: " + +#: src/client/game_formspec.cpp +msgid "- Public: " +msgstr "- 公開: " + +#. ~ PvP = Player versus Player +#: src/client/game_formspec.cpp +msgid "- PvP: " +msgstr "- PvP: " + +#: src/client/game_formspec.cpp +msgid "- Server Name: " +msgstr "- 伺服器名稱: " + +#: src/client/game_formspec.cpp +msgid "Change Password" +msgstr "變更密碼" + +#: src/client/game_formspec.cpp +msgid "Continue" +msgstr "繼續" + +#: src/client/game_formspec.cpp +msgid "" +"Controls:\n" +"No menu open:\n" +"- slide finger: look around\n" +"- tap: place/punch/use (default)\n" +"- long tap: dig/use (default)\n" +"Menu/inventory open:\n" +"- double tap (outside):\n" +" --> close\n" +"- touch stack, touch slot:\n" +" --> move stack\n" +"- touch&drag, tap 2nd finger\n" +" --> place single item to slot\n" +msgstr "" +"控制:\n" +"沒有開啟的選單:\n" +"- 滑動手指:環顧四周\n" +"- 點擊:放置/打擊/使用(預設)\n" +"- 長按:挖掘/使用(預設)\n" +"開啟的選單/物品欄:\n" +"- 點擊兩次(外面):\n" +" --> 關閉\n" +"- 碰觸堆疊,碰觸欄位:\n" +" --> 移動堆疊\n" +"- 碰觸並拖曳,以第二隻手指點擊\n" +" --> 放置單一物品至欄位\n" + +#: src/client/game_formspec.cpp +msgid "Exit to Menu" +msgstr "離開,回到選單" + +#: src/client/game_formspec.cpp +msgid "Exit to OS" +msgstr "離開,回到作業系統" + +#: src/client/game_formspec.cpp +msgid "Game info:" +msgstr "遊戲資訊:" + +#: src/client/game_formspec.cpp +msgid "Game paused" +msgstr "遊戲暫停" + +#: src/client/game_formspec.cpp +msgid "Hosting server" +msgstr "正在主持伺服器" + +#: src/client/game_formspec.cpp +msgid "Off" +msgstr "關閉" + +#: src/client/game_formspec.cpp +msgid "On" +msgstr "開啟" + +#: src/client/game_formspec.cpp +msgid "Remote server" +msgstr "遠端伺服器" + +#: src/client/game_formspec.cpp +msgid "Respawn" +msgstr "重生" + +#: src/client/game_formspec.cpp +msgid "Sound Volume" +msgstr "音量" + +#: src/client/game_formspec.cpp +msgid "You died" +msgstr "您已死亡" + #: src/client/gameui.cpp msgid "Chat currently disabled by game or mod" msgstr "聊天目前已被遊戲或模組停用" @@ -1716,9 +1750,8 @@ msgstr "退格鍵" #. ~ Usually paired with the Pause key #: src/client/keycode.cpp -#, fuzzy msgid "Break Key" -msgstr "潛行按鍵" +msgstr "取消鍵" #: src/client/keycode.cpp msgid "Caps Lock" @@ -1908,9 +1941,8 @@ msgid "Print" msgstr "列印" #: src/client/keycode.cpp -#, fuzzy msgid "Return Key" -msgstr "Return" +msgstr "返回鍵" #: src/client/keycode.cpp msgid "Right Arrow" @@ -1978,9 +2010,8 @@ msgid "X Button 2" msgstr "X 按鈕 2" #: src/client/keycode.cpp -#, fuzzy msgid "Zoom Key" -msgstr "遠近調整" +msgstr "縮放鍵" #: src/client/minimap.cpp msgid "Minimap hidden" @@ -2006,7 +2037,8 @@ msgid "Failed to compile the \"%s\" shader." msgstr "無法編譯「%s」著色器。" #: src/client/shader.cpp -msgid "Shaders are enabled but GLSL is not supported by the driver." +#, fuzzy +msgid "GLSL is not supported by the driver" msgstr "著色器已啟用,但是驅動程式不支援 GLSL。" #. ~ Error when a mod is missing dependencies. Ex: "Mod Title is missing: mod1, mod2, mod3" @@ -2054,7 +2086,7 @@ msgstr "自動前進" msgid "Automatic jumping" msgstr "自動跳躍" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Aux1" msgstr "Aux1" @@ -2066,7 +2098,7 @@ msgstr "後退" msgid "Block bounds" msgstr "區塊邊界" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Change camera" msgstr "變更相機" @@ -2090,7 +2122,7 @@ msgstr "降低音量" msgid "Double tap \"jump\" to toggle fly" msgstr "輕擊兩次「跳躍」以切換成飛行" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Drop" msgstr "丟棄" @@ -2106,11 +2138,11 @@ msgstr "提高視野" msgid "Inc. volume" msgstr "提高音量" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Inventory" msgstr "物品欄" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Jump" msgstr "跳躍" @@ -2142,7 +2174,7 @@ msgstr "下一個物品" msgid "Prev. item" msgstr "上一個物品" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Range select" msgstr "選擇範圍" @@ -2154,7 +2186,7 @@ msgstr "右" msgid "Screenshot" msgstr "螢幕擷取" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Sneak" msgstr "潛行" @@ -2162,15 +2194,15 @@ msgstr "潛行" msgid "Toggle HUD" msgstr "切換 HUD" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle chat log" msgstr "切換聊天記錄" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fast" msgstr "切換快速模式" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle fly" msgstr "切換飛行模式" @@ -2178,11 +2210,11 @@ msgstr "切換飛行模式" msgid "Toggle fog" msgstr "切換霧氣" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle minimap" msgstr "切換迷你地圖" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Toggle noclip" msgstr "切換穿牆模式" @@ -2190,7 +2222,7 @@ msgstr "切換穿牆模式" msgid "Toggle pitchmove" msgstr "切換 Pitch 移動模式" -#: src/gui/guiKeyChangeMenu.cpp src/gui/touchcontrols.cpp +#: src/gui/guiKeyChangeMenu.cpp src/gui/touchscreenlayout.cpp msgid "Zoom" msgstr "遠近調整" @@ -2226,7 +2258,7 @@ msgstr "舊密碼" msgid "Passwords do not match!" msgstr "密碼不符合!" -#: src/gui/guiVolumeChange.cpp src/gui/touchcontrols.cpp +#: src/gui/guiVolumeChange.cpp src/gui/touchscreenlayout.cpp msgid "Exit" msgstr "離開" @@ -2239,38 +2271,66 @@ msgstr "已靜音" msgid "Sound Volume: %d%%" msgstr "音量:%d%%" -#: src/gui/touchcontrols.cpp +#: src/gui/touchscreeneditor.cpp #, fuzzy -msgid "Joystick" -msgstr "搖桿 ID" +msgid "Add button" +msgstr "中鍵" -#: src/gui/touchcontrols.cpp -msgid "Overflow menu" +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Done" +msgstr "完成!" + +#: src/gui/touchscreeneditor.cpp +#, fuzzy +msgid "Remove" +msgstr "遠端伺服器" + +#: src/gui/touchscreeneditor.cpp +msgid "Reset" msgstr "" -#: src/gui/touchcontrols.cpp -#, fuzzy +#: src/gui/touchscreeneditor.cpp +msgid "Start dragging a button to add. Tap outside to cancel." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap a button to select it. Drag a button to move it." +msgstr "" + +#: src/gui/touchscreeneditor.cpp +msgid "Tap outside to deselect." +msgstr "" + +#: src/gui/touchscreenlayout.cpp +msgid "Joystick" +msgstr "搖桿" + +#: src/gui/touchscreenlayout.cpp +msgid "Overflow menu" +msgstr "溢出選單" + +#: src/gui/touchscreenlayout.cpp msgid "Toggle debug" -msgstr "切換霧氣" +msgstr "切換偵錯" #: src/network/clientpackethandler.cpp msgid "" "Another client is connected with this name. If your client closed " "unexpectedly, try again in a minute." -msgstr "" +msgstr "另一個用戶端已與該名稱連線。 如果您的客戶端意外關閉,請稍後再試。" #: src/network/clientpackethandler.cpp msgid "Empty passwords are disallowed. Set a password and try again." -msgstr "" +msgstr "不允許使用空密碼。 設定密碼並重試。" #: src/network/clientpackethandler.cpp msgid "Internal server error" -msgstr "" +msgstr "伺服器內部錯誤" #: src/network/clientpackethandler.cpp -#, fuzzy msgid "Invalid password" -msgstr "舊密碼" +msgstr "密碼無效" #. ~ DO NOT TRANSLATE THIS LITERALLY! #. This is a special string which needs to contain the translation's @@ -2291,46 +2351,46 @@ msgstr "名字已被佔用。 請選擇其他名稱" #: src/network/clientpackethandler.cpp msgid "Player name contains disallowed characters" -msgstr "" +msgstr "玩家名稱包含不允許的字符" #: src/network/clientpackethandler.cpp -#, fuzzy msgid "Player name not allowed" -msgstr "玩家名稱太長。" +msgstr "玩家名稱不被接受" #: src/network/clientpackethandler.cpp -#, fuzzy msgid "Server shutting down" -msgstr "正在關閉..." +msgstr "正在關閉" #: src/network/clientpackethandler.cpp msgid "" "The server has experienced an internal error. You will now be disconnected." -msgstr "" +msgstr "伺服器遇到內部錯誤。 您現在將斷開連線。" #: src/network/clientpackethandler.cpp msgid "The server is running in singleplayer mode. You cannot connect." -msgstr "" +msgstr "伺服器正在單人模式下運作。 您無法連線。" #: src/network/clientpackethandler.cpp msgid "Too many users" -msgstr "" +msgstr "用戶太多" #: src/network/clientpackethandler.cpp msgid "Unknown disconnect reason." -msgstr "" +msgstr "未知的斷開原因。" #: src/network/clientpackethandler.cpp msgid "" "Your client sent something the server didn't expect. Try reconnecting or " "updating your client." -msgstr "" +msgstr "您的客戶端發送了伺服器意想不到的內容。 嘗試重新連線或更新您的客戶端。" #: src/network/clientpackethandler.cpp msgid "" "Your client's version is not supported.\n" "Please contact the server administrator." msgstr "" +"伺服器不支援這個客戶端版本。\n" +"請聯絡管理員。" #: src/server.cpp #, c-format @@ -2460,6 +2520,7 @@ msgid "3D noise that determines number of dungeons per mapchunk." msgstr "決定每個地圖區塊中地城數量的 3D 雜訊值。" #: src/settings_translation_file.cpp +#, fuzzy msgid "" "3D support.\n" "Currently supported:\n" @@ -2468,8 +2529,7 @@ msgid "" "- interlaced: odd/even line based polarization screen support.\n" "- topbottom: split screen top/bottom.\n" "- sidebyside: split screen side by side.\n" -"- crossview: Cross-eyed 3d\n" -"Note that the interlaced mode requires shaders to be enabled." +"- crossview: Cross-eyed 3d" msgstr "" "3D 支援。\n" "目前已支援:\n" @@ -2533,10 +2593,6 @@ msgstr "活動區塊範圍" msgid "Active object send range" msgstr "活動目標傳送範圍" -#: src/settings_translation_file.cpp -msgid "Adds particles when digging a node." -msgstr "當挖掘節點時加入一些粒子。" - #: src/settings_translation_file.cpp msgid "Adjust the detected display density, used for scaling UI elements." msgstr "調整偵測到的顯示密度,用來縮放 UI 元件。" @@ -2550,11 +2606,11 @@ msgid "" "Value = 2.0 (can be higher depending on 'mgv7_np_floatland', always test\n" "to be sure) creates a solid floatland layer." msgstr "" -"調整浮空島層的密度。\n" -"增加數值以增加密度。可以是正值或負值。\n" -"值 = 0.0:50% 的體積是浮空島。\n" -"值 = 2.0(可以更高,取決於「mgv7_np_floatland」,總是進行測試以確定)建立一個" -"堅固的浮空島層。" +"調整懸空島層的密度。\n" +"增加值,就增加密度。可以是正值或負值。\n" +"值等於 0.0, 容積的 50% 是懸空島。\n" +"值等於 2.0,(值可以更高,取決於“mgv7_np_floatland”,但一定要測試確定)\n" +"建立一個密實的懸空島層。" #: src/settings_translation_file.cpp msgid "Admin name" @@ -2564,6 +2620,17 @@ msgstr "管理員名稱" msgid "Advanced" msgstr "進階" +#: src/settings_translation_file.cpp +msgid "" +"All mesh buffers with less than this number of vertices will be merged\n" +"during map rendering. This improves rendering performance." +msgstr "" + +#: src/settings_translation_file.cpp +#, fuzzy +msgid "Allow clouds to look 3D instead of flat." +msgstr "使用 3D 立體而非扁平的雲朵外觀。" + #: src/settings_translation_file.cpp msgid "Allows liquids to be translucent." msgstr "允許液體呈半透明狀。" @@ -2616,11 +2683,11 @@ msgstr "反鋸齒" #: src/settings_translation_file.cpp msgid "Anticheat flags" -msgstr "" +msgstr "反作弊標誌" #: src/settings_translation_file.cpp msgid "Anticheat movement tolerance" -msgstr "" +msgstr "反作弊動作容忍度" #: src/settings_translation_file.cpp msgid "Append item name" @@ -2644,10 +2711,17 @@ msgid "" "With OpenGL ES, dithering only works if the shader supports high\n" "floating-point precision and it may have a higher performance impact." msgstr "" +"應用抖動來減少色帶偽影。\n" +"抖動顯著增加了無損壓縮的大小\n" +"螢幕截圖,如果顯示器或作業系統出現問題,則無法正常運作\n" +"執行額外的抖動或顏色通道未量化\n" +"至 8 位元。\n" +"對於 OpenGL ES,抖動僅在著色器支援高\n" +"浮點精度,它可能會對性能產生更高的影響。" #: src/settings_translation_file.cpp msgid "Apply specular shading to nodes." -msgstr "" +msgstr "將鏡面著色應用於節點。" #: src/settings_translation_file.cpp msgid "Arm inertia" @@ -2666,7 +2740,6 @@ msgid "Ask to reconnect after crash" msgstr "詢問是否在當機後重新連線" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "At this distance the server will aggressively optimize which blocks are sent " "to\n" @@ -2678,17 +2751,15 @@ msgid "" "optimization.\n" "Stated in MapBlocks (16 nodes)." msgstr "" -"在這個距離上,伺服器將積極優化發送到哪些區塊\n" +"在這個距離下,伺服器將積極優化將哪些區塊發送到\n" "客戶。\n" -"小值可能會大大提高效能,但會犧牲可見的效能\n" -"渲染故障(某些方塊不會在水下和洞穴中渲染,\n" -"以及有時在陸地上)。\n" -"將其設為大於 max_block_send_distance 的值會停用此功能\n" +"較小的值可能會大大提高效能,但代價是可見的\n" +"渲染故障(洞穴中的某些區塊可能無法正確渲染)。\n" +"將其設為大於 max_block_send_distance 的值將停用此功能\n" "最佳化.\n" -"以地圖塊(16 個節點)表示。" +"在 MapBlocks (16 個節點) 中說明。" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "At this distance the server will perform a simpler and cheaper occlusion " "check.\n" @@ -2698,13 +2769,10 @@ msgid "" "This is especially useful for very large viewing range (upwards of 500).\n" "Stated in MapBlocks (16 nodes)." msgstr "" -"在這個距離上,伺服器將積極優化發送到哪些區塊\n" -"客戶。\n" +"在這個距離上,伺服器將積極優化發送到哪些區塊客戶。\n" "小值可能會大大提高效能,但會犧牲可見的效能\n" -"渲染故障(某些方塊不會在水下和洞穴中渲染,\n" -"以及有時在陸地上)。\n" -"將其設為大於 max_block_send_distance 的值會停用此功能\n" -"最佳化.\n" +"渲染故障(某些方塊不會在水下和洞穴中渲染,以及有時在陸地上)。\n" +"將其設為大於 max_block_send_distance 的值會停用此功能最佳化.\n" "以地圖塊(16 個節點)表示。" #: src/settings_translation_file.cpp @@ -2768,14 +2836,12 @@ msgid "Biome noise" msgstr "生物雜訊" #: src/settings_translation_file.cpp -#, fuzzy msgid "Block bounds HUD radius" -msgstr "區塊邊界" +msgstr "區塊邊界HUD半徑" #: src/settings_translation_file.cpp -#, fuzzy msgid "Block cull optimize distance" -msgstr "區塊傳送最佳化距離" +msgstr "區塊剔除優化距離" #: src/settings_translation_file.cpp msgid "Block send optimize distance" @@ -2959,14 +3025,14 @@ msgstr "雲朵範圍" msgid "Clouds" msgstr "雲朵" -#: src/settings_translation_file.cpp -msgid "Clouds are a client-side effect." -msgstr "雲朵是用戶端的特效。" - #: src/settings_translation_file.cpp msgid "Clouds in menu" msgstr "選單中的雲朵" +#: src/settings_translation_file.cpp +msgid "Color depth for post-processing texture" +msgstr "" + #: src/settings_translation_file.cpp msgid "Colored fog" msgstr "彩色迷霧" @@ -2992,7 +3058,7 @@ msgid "" "as defined by the Free Software Foundation.\n" "You can also specify content ratings.\n" "These flags are independent from Luanti versions,\n" -"so see a full list at https://content.minetest.net/help/content_flags/" +"so see a full list at https://content.luanti.org/help/content_flags/" msgstr "" "逗號分隔用於在倉庫中隱藏內容的標籤清單。\n" "\"nonfree\"可用於隱藏根據自由軟體基金會\n" @@ -3157,6 +3223,14 @@ msgstr "除錯記錄等級" msgid "Debugging" msgstr "调试" +#: src/settings_translation_file.cpp +msgid "" +"Decide the color depth of the texture used for the post-processing " +"pipeline.\n" +"Reducing this can improve performance, but some effects (e.g. debanding)\n" +"require more than 8 bits to work." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dedicated server step" msgstr "專用伺服器步驟" @@ -3200,7 +3274,6 @@ msgstr "" "但也使用更多的資源。" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Define the oldest clients allowed to connect.\n" "Older clients are compatible in the sense that they will not crash when " @@ -3326,18 +3399,10 @@ msgstr "" "當 np_biome 超過此值時,會產生沙漠。\n" "當啟用新的生物群系統'snowbiomes'時,這個將會被忽略。" -#: src/settings_translation_file.cpp -msgid "Desynchronize block animation" -msgstr "異步化方塊動畫" - #: src/settings_translation_file.cpp msgid "Developer Options" msgstr "開發者選項" -#: src/settings_translation_file.cpp -msgid "Digging particles" -msgstr "挖掘粒子" - #: src/settings_translation_file.cpp msgid "Disallow empty passwords" msgstr "不允許空密碼" @@ -3347,14 +3412,14 @@ msgid "Display Density Scaling Factor" msgstr "顯示密度縮放因子" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Distance in nodes at which transparency depth sorting is enabled.\n" "Use this to limit the performance impact of transparency depth sorting.\n" "Set to 0 to disable it entirely." msgstr "" -"啟用透明度深度排序的節點距離\n" -"使用它來限制透明度深度排序對效能的影響" +"啟用透明度深度排序的節點距離。\n" +"使用它來限制透明度深度排序對效能的影響。\n" +"設定為 0 以完全停用它。" #: src/settings_translation_file.cpp msgid "Domain name of server, to be displayed in the serverlist." @@ -3368,6 +3433,14 @@ msgstr "輕擊兩次跳躍以飛行" msgid "Double-tapping the jump key toggles fly mode." msgstr "輕擊兩次跳躍鍵以切換成飛行模式。" +#: src/settings_translation_file.cpp +msgid "" +"Draw transparency sorted triangles grouped by their mesh buffers.\n" +"This breaks transparency sorting between mesh buffers, but avoids " +"situations\n" +"where transparency sorting would be very slow otherwise." +msgstr "" + #: src/settings_translation_file.cpp msgid "Dump the mapgen debug information." msgstr "轉儲地圖生成器調試資訊。" @@ -3385,7 +3458,6 @@ msgid "Dungeon noise" msgstr "地城雜訊" #: src/settings_translation_file.cpp -#, fuzzy msgid "Effects" msgstr "圖形效果" @@ -3402,9 +3474,8 @@ msgid "Enable Bloom Debug" msgstr "啟用泛光調試" #: src/settings_translation_file.cpp -#, fuzzy msgid "Enable Debanding" -msgstr "啟用傷害" +msgstr "啟用解頻" #: src/settings_translation_file.cpp msgid "" @@ -3452,9 +3523,10 @@ msgstr "" "模擬人眼的行為。" #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"Enable colored shadows.\n" -"On true translucent nodes cast colored shadows. This is expensive." +"Enable colored shadows for transculent nodes.\n" +"This is expensive." msgstr "" "啟用彩色陰影。\n" "在真正的半透明節點上投射彩色陰影。 這很貴。" @@ -3492,11 +3564,8 @@ msgid "Enable random user input (only used for testing)." msgstr "啟用隨機使用者輸入(僅供測試使用)。" #: src/settings_translation_file.cpp -#, fuzzy msgid "Enable smooth lighting with simple ambient occlusion." -msgstr "" -"啟用包含簡易環境光遮蔽的平滑光。\n" -"停用以取得速度或不同的外觀。" +msgstr "啟用簡單的環境光遮蔽來實現平滑的照明。" #: src/settings_translation_file.cpp msgid "Enable split login/register" @@ -3516,7 +3585,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Enable updates available indicator on content tab" -msgstr "" +msgstr "在內容標籤上啟用可用更新指示器" #: src/settings_translation_file.cpp msgid "" @@ -3538,10 +3607,10 @@ msgstr "" "舉例來說:設為 0 就不會有視野晃動;1.0 是一般情況;2.0 為雙倍。" #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Enable/disable running an IPv6 server.\n" -"Ignored if bind_address is set.\n" -"Needs enable_ipv6 to be enabled." +"Ignored if bind_address is set." msgstr "" "啟用/停用執行 IPv6 伺服器。\n" "當 bind_address 被設定時將會被忽略。\n" @@ -3563,21 +3632,13 @@ msgstr "" msgid "Enables animation of inventory items." msgstr "啟用物品欄物品動畫。" -#: src/settings_translation_file.cpp -#, fuzzy -msgid "" -"Enables caching of facedir rotated meshes.\n" -"This is only effective with shaders disabled." -msgstr "啟用面旋轉方向的網格快取。" - #: src/settings_translation_file.cpp msgid "Enables debug and error-checking in the OpenGL driver." msgstr "啟用在 OpenGL 驅動程式中偵錯和錯誤檢查。" #: src/settings_translation_file.cpp -#, fuzzy msgid "Enables smooth scrolling." -msgstr "啟用後製處理" +msgstr "實現平滑滾動。" #: src/settings_translation_file.cpp msgid "Enables the post processing pipeline." @@ -3590,6 +3651,9 @@ msgid "" "\"auto\" means that the touchscreen controls will be enabled and disabled\n" "automatically depending on the last used input method." msgstr "" +"啟用觸控螢幕控制,讓您可以使用觸控螢幕玩遊戲。\n" +"“auto”表示將啟用和停用觸控螢幕控件\n" +"自動根據上次使用的輸入法。" #: src/settings_translation_file.cpp msgid "" @@ -3897,10 +3961,6 @@ msgstr "圖形使用者介面縮放比例" msgid "GUI scaling filter" msgstr "圖形使用者介面縮放過濾器" -#: src/settings_translation_file.cpp -msgid "GUI scaling filter txr2img" -msgstr "圖形使用者介面縮放比例過濾器 txr2img" - #: src/settings_translation_file.cpp msgid "Gamepads" msgstr "遊戲手把" @@ -4147,6 +4207,8 @@ msgid "" "ContentDB to\n" "check for package updates when opening the mainmenu." msgstr "" +"如果啟用並且您安裝了 ContentDB 軟體包,Luanti 可能會聯絡 ContentDB 以\n" +"開啟主選單時檢查軟體包更新。" #: src/settings_translation_file.cpp msgid "" @@ -4157,14 +4219,6 @@ msgstr "" "如果啟用,「Aux1」鍵將取代潛行鍵的向下攀爬和\n" "下降。" -#: src/settings_translation_file.cpp -msgid "" -"If enabled, account registration is separate from login in the UI.\n" -"If disabled, new accounts will be registered automatically when logging in." -msgstr "" -"連線到伺服器時啟用註冊確認。\n" -"如果停用,會自動註冊新的帳號。" - #: src/settings_translation_file.cpp msgid "" "If enabled, actions are recorded for rollback.\n" @@ -4190,6 +4244,15 @@ msgstr "如果啟用,玩家在沒有密碼的情況下無法加入或將密碼 #: src/settings_translation_file.cpp #, fuzzy msgid "" +"If enabled, server account registration is separate from login in the UI.\n" +"If disabled, connecting to a server will automatically register a new " +"account." +msgstr "" +"連線到伺服器時啟用註冊確認。\n" +"如果停用,會自動註冊新的帳號。" + +#: src/settings_translation_file.cpp +msgid "" "If enabled, the server will perform map block occlusion culling based on\n" "on the eye position of the player. This can reduce the number of blocks\n" "sent to the client by 50-80%. Clients will no longer receive most\n" @@ -4275,7 +4338,6 @@ msgid "Instrument chat commands on registration." msgstr "分析登錄的聊天指令。" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Instrument global callback functions on registration.\n" "(anything you pass to a core.register_*() function)" @@ -4301,10 +4363,6 @@ msgstr "分析登錄的實體方法。" msgid "Interval of saving important changes in the world, stated in seconds." msgstr "儲存世界中的重要變更的間隔,以秒計。" -#: src/settings_translation_file.cpp -msgid "Interval of sending time of day to clients, stated in seconds." -msgstr "向客戶端發送一天中的時間間隔,以秒為單位。" - #: src/settings_translation_file.cpp msgid "Inventory items animations" msgstr "物品欄物品動畫" @@ -4480,7 +4538,6 @@ msgid "Leaves style" msgstr "樹葉樣式" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Leaves style:\n" "- Fancy: all faces visible\n" @@ -4493,7 +4550,6 @@ msgstr "" "- 不透明:停用透明度" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Length of a server tick (the interval at which everything is generally " "updated),\n" @@ -4502,9 +4558,11 @@ msgid "" "This is a lower bound, i.e. server steps may not be shorter than this, but\n" "they are often longer." msgstr "" -"伺服器週期的長度(通常會更新所有內容的時間間隔),\n" +"伺服器時鐘週期(通常會更新所有內容的間隔),\n" "以秒為單位。\n" -"不適用於從用戶端選單託管的工作階段。" +"不適用於從客戶端選單託管的會話。\n" +"這是一個下限,即伺服器步驟可能不會比這更短,但是\n" +"它們通常更長。" #: src/settings_translation_file.cpp msgid "Length of liquid waves." @@ -4616,9 +4674,8 @@ msgid "Liquid queue purge time" msgstr "液體佇列清除時間" #: src/settings_translation_file.cpp -#, fuzzy msgid "Liquid reflections" -msgstr "液體流動性" +msgstr "液體反射" #: src/settings_translation_file.cpp msgid "Liquid sinking" @@ -4722,7 +4779,6 @@ msgid "Map generation attributes specific to Mapgen v5." msgstr "Mapgen v5 特有的地圖生成屬性。" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Map generation attributes specific to Mapgen v6.\n" "The 'snowbiomes' flag enables the new 5 biome system.\n" @@ -4732,9 +4788,10 @@ msgid "" "will appear instead." msgstr "" "Mapgen v6 特有的地圖生成屬性。\n" -"「雪生物群落」標誌啟用新的 5 個生物群落系統。\n" -"當「雪生物群落」標誌啟用時,叢林會自動啟用並且\n" -"'jungles' 標誌被忽略。" +"「snowbiomes」標誌啟用了新的 5 個生物群系系統。\n" +"當啟用「雪地生物群系」標誌時,叢林將自動啟用,並且\n" +"‘叢林’標誌被忽略。\n" +"「寺廟」標誌禁止生成沙漠寺廟。此時將出現普通地牢。" #: src/settings_translation_file.cpp msgid "" @@ -4777,14 +4834,12 @@ msgid "Mapblock unload timeout" msgstr "地圖區塊卸除逾時" #: src/settings_translation_file.cpp -#, fuzzy msgid "Mapgen Carpathian" -msgstr "地圖產生器分形" +msgstr "地圖生成器Carpathian" #: src/settings_translation_file.cpp -#, fuzzy msgid "Mapgen Carpathian specific flags" -msgstr "Mapgen flat 特別旗標" +msgstr "地圖產生器Carpathian標籤" #: src/settings_translation_file.cpp msgid "Mapgen Flat" @@ -4799,13 +4854,12 @@ msgid "Mapgen Fractal" msgstr "地圖產生器分形" #: src/settings_translation_file.cpp -#, fuzzy msgid "Mapgen Fractal specific flags" -msgstr "Mapgen flat 特別旗標" +msgstr "地圖產生器Fractal標籤" #: src/settings_translation_file.cpp msgid "Mapgen V5" -msgstr "Mapgen V5" +msgstr "地圖產生器 v5" #: src/settings_translation_file.cpp msgid "Mapgen V5 specific flags" @@ -4813,7 +4867,7 @@ msgstr "Mapgen V5 特別旗標" #: src/settings_translation_file.cpp msgid "Mapgen V6" -msgstr "Mapgen V6" +msgstr "地圖產生器 v6" #: src/settings_translation_file.cpp msgid "Mapgen V6 specific flags" @@ -4821,7 +4875,7 @@ msgstr "Mapgen V6 特別旗標" #: src/settings_translation_file.cpp msgid "Mapgen V7" -msgstr "Mapgen V7" +msgstr "地圖產生器 v7" #: src/settings_translation_file.cpp msgid "Mapgen V7 specific flags" @@ -4832,9 +4886,8 @@ msgid "Mapgen Valleys" msgstr "Mapgen 山谷" #: src/settings_translation_file.cpp -#, fuzzy msgid "Mapgen Valleys specific flags" -msgstr "Mapgen flat 特別旗標" +msgstr "地圖產生器Valleys標籤" #: src/settings_translation_file.cpp msgid "Mapgen debug" @@ -4923,13 +4976,12 @@ msgstr "" "此限制是針對每個玩家強制執行的。" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Maximum number of blocks to be queued that are to be loaded from file.\n" "This limit is enforced per player." msgstr "" -"可被放進佇列內等待從檔案載入的最大區塊數。\n" -"將其設定留空則會自動選擇適當的值。" +"排隊並從文件加載的最大區塊數。\n" +"此限制針對每個玩家強制執行。" #: src/settings_translation_file.cpp msgid "" @@ -4955,6 +5007,8 @@ msgid "" "You generally don't need to change this, however busy servers may benefit " "from a higher number." msgstr "" +"低階網路程式碼中每個發送步驟發送的最大資料包數。\n" +"您通常不需要更改此值,但是繁忙的伺服器可能會受益於更高的數字。" #: src/settings_translation_file.cpp msgid "Maximum number of players that can be connected simultaneously." @@ -5012,10 +5066,6 @@ msgstr "交互請求(例如伺服器清單取得)可能花費的最長時間 msgid "Maximum users" msgstr "最多使用者" -#: src/settings_translation_file.cpp -msgid "Mesh cache" -msgstr "網狀快取" - #: src/settings_translation_file.cpp msgid "Message of the day" msgstr "每日訊息" @@ -5048,6 +5098,10 @@ msgstr "每個地圖區塊的大型洞穴隨機數量的最小限制。" msgid "Minimum limit of random number of small caves per mapchunk." msgstr "每個地圖區塊的小洞穴隨機數量的最小限制。" +#: src/settings_translation_file.cpp +msgid "Minimum vertex count for mesh buffers" +msgstr "" + #: src/settings_translation_file.cpp msgid "Mipmapping" msgstr "映射貼圖" @@ -5069,9 +5123,8 @@ msgid "Mod channels" msgstr "模組頻道" #: src/settings_translation_file.cpp -#, fuzzy msgid "Modifies the size of the HUD elements." -msgstr "修改 hudbar 元素的大小。" +msgstr "修改HUD元素的大小。" #: src/settings_translation_file.cpp msgid "Monospace font path" @@ -5098,9 +5151,8 @@ msgid "Mountain variation noise" msgstr "山變異 雜訊" #: src/settings_translation_file.cpp -#, fuzzy msgid "Mountain zero level" -msgstr "山雜訊" +msgstr "山起點高度" #: src/settings_translation_file.cpp msgid "Mouse sensitivity" @@ -5143,9 +5195,10 @@ msgstr "" "- v7 的可選浮動區域(預設為停用)。" #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Name of the player.\n" -"When running a server, clients connecting with this name are admins.\n" +"When running a server, a client connecting with this name is admin.\n" "When starting from the main menu, this is overridden." msgstr "" "玩家名稱。\n" @@ -5183,7 +5236,7 @@ msgstr "突顯節點" #: src/settings_translation_file.cpp msgid "Node specular" -msgstr "" +msgstr "節點鏡面反射" #: src/settings_translation_file.cpp msgid "NodeTimer interval" @@ -5222,7 +5275,6 @@ msgstr "" "'on_generate'。 對於許多用戶來說,最佳設定可能是“1”。" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Number of extra blocks that can be loaded by /clearobjects at once.\n" "This is a trade-off between SQLite transaction overhead and\n" @@ -5237,7 +5289,6 @@ msgid "Number of messages a player may send per 10 seconds." msgstr "玩家每 10 秒能傳送的訊息量。" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Number of threads to use for mesh generation.\n" "Value of 0 (default) will let Luanti autodetect the number of available " @@ -5251,7 +5302,6 @@ msgid "Occlusion Culler" msgstr "剔除閉塞" #: src/settings_translation_file.cpp -#, fuzzy msgid "Occlusion Culling" msgstr "伺服器端遮擋剔除" @@ -5274,7 +5324,6 @@ msgid "OpenGL debug" msgstr "OpenGL 偵錯" #: src/settings_translation_file.cpp -#, fuzzy msgid "Optimize GUI for touchscreens" msgstr "使用十字準線觸控螢幕" @@ -5283,9 +5332,8 @@ msgid "Optional override for chat weblink color." msgstr "聊天網站連結顏色的可選覆蓋。" #: src/settings_translation_file.cpp -#, fuzzy msgid "Other Effects" -msgstr "圖形效果" +msgstr "其他效果" #: src/settings_translation_file.cpp msgid "" @@ -5351,7 +5399,6 @@ msgid "Player transfer distance" msgstr "玩家傳送距離" #: src/settings_translation_file.cpp -#, fuzzy msgid "Poisson filtering" msgstr "雙線性過濾器" @@ -5395,17 +5442,16 @@ msgid "Prometheus listener address" msgstr "Prometheus 監聽器位址" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Prometheus listener address.\n" "If Luanti is compiled with ENABLE_PROMETHEUS option enabled,\n" "enable metrics listener for Prometheus on that address.\n" "Metrics can be fetched on http://127.0.0.1:30000/metrics" msgstr "" -"Prometheus 監聽器地址。\n" -"如果Minetest在編輯時啓用了ENABLE_PROMETHEUS選項,\n" -"在該地址上為 Prometheus 啓用指標偵聽器。\n" -"可以從 http://127.0.0.1:30000/metrics 獲取指標" +"Prometheus 監聽器位址。\n" +"如果 Luanti 在編譯時啟用了 ENABLE_PROMETHEUS 選項,\n" +"在該位址上啟用 Prometheus 的指標監聽器。\n" +"指標可從http://127.0.0.1:30000/metrics" #: src/settings_translation_file.cpp msgid "Proportion of large caves that contain liquid." @@ -5430,7 +5476,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Radius to use when the block bounds HUD feature is set to near blocks." -msgstr "" +msgstr "當區塊邊界 HUD 功能設定為靠近區塊時使用的半徑。" #: src/settings_translation_file.cpp msgid "Raises terrain to make valleys around the rivers." @@ -5657,17 +5703,19 @@ msgid "" "* None - No antialiasing (default)\n" "\n" "* FSAA - Hardware-provided full-screen antialiasing\n" -"(incompatible with Post Processing and Undersampling)\n" "A.K.A multi-sample antialiasing (MSAA)\n" "Smoothens out block edges but does not affect the insides of textures.\n" -"A restart is required to change this option.\n" "\n" -"* FXAA - Fast approximate antialiasing (requires shaders)\n" +"If Post Processing is disabled, changing FSAA requires a restart.\n" +"Also, if Post Processing is disabled, FSAA will not work together with\n" +"undersampling or a non-default \"3d_mode\" setting.\n" +"\n" +"* FXAA - Fast approximate antialiasing\n" "Applies a post-processing filter to detect and smoothen high-contrast " "edges.\n" "Provides balance between speed and image quality.\n" "\n" -"* SSAA - Super-sampling antialiasing (requires shaders)\n" +"* SSAA - Super-sampling antialiasing\n" "Renders higher-resolution image of the scene, then scales down to reduce\n" "the aliasing effects. This is the slowest and the most accurate method." msgstr "" @@ -5675,7 +5723,8 @@ msgstr "" "\n" "* 無 - 無抗鋸齒(預設)\n" "\n" -"* FSAA - 硬體提供的全螢幕抗鋸齒(與著色器不相容)\n" +"* FSAA - 硬體提供的全螢幕抗鋸齒\n" +"(與著色器不相容)\n" "又稱多樣本抗鋸齒 (MSAA)\n" "平滑塊邊緣,但不影響紋理的內部。\n" "需要重新啟動才能變更此選項。\n" @@ -5701,7 +5750,6 @@ msgid "Selection box width" msgstr "寬度選取框" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Selects one of 18 fractal types.\n" "1 = 4D \"Roundy\" Mandelbrot set.\n" @@ -5723,36 +5771,35 @@ msgid "" "17 = 4D \"Mandelbulb\" Mandelbrot set.\n" "18 = 4D \"Mandelbulb\" Julia set." msgstr "" -"從 9 種公式裡選取 18 種碎形。\n" -"1 = 4D \"Roundy\" mandelbrot set.\n" -"2 = 4D \"Roundy\" julia set.\n" -"3 = 4D \"Squarry\" mandelbrot set.\n" -"4 = 4D \"Squarry\" julia set.\n" -"5 = 4D \"Mandy Cousin\" mandelbrot set.\n" -"6 = 4D \"Mandy Cousin\" julia set.\n" -"7 = 4D \"Variation\" mandelbrot set.\n" -"8 = 4D \"Variation\" julia set.\n" -"9 = 3D \"Mandelbrot/Mandelbar\" mandelbrot set.\n" -"10 = 3D \"Mandelbrot/Mandelbar\" julia set.\n" -"11 = 3D \"Christmas Tree\" mandelbrot set.\n" -"12 = 3D \"Christmas Tree\" julia set.\n" -"13 = 3D \"Mandelbulb\" mandelbrot set.\n" -"14 = 3D \"Mandelbulb\" julia set.\n" -"15 = 3D \"Cosine Mandelbulb\" mandelbrot set.\n" -"16 = 3D \"Cosine Mandelbulb\" julia set.\n" -"17 = 4D \"Mandelbulb\" mandelbrot set.\n" -"18 = 4D \"Mandelbulb\" julia set." +"從 9 種公式選取 18 種分形。\n" +"1 = 4D \"Roundy\" 曼德布羅特集.\n" +"2 = 4D \"Roundy\" 朱利亞集.\n" +"3 = 4D \"Squarry\" 曼德布羅特集.\n" +"4 = 4D \"Squarry\" 朱利亞集.\n" +"5 = 4D \"Mandy Cousin\" 曼德布羅特集.\n" +"6 = 4D \"Mandy Cousin\" 朱利亞集.\n" +"7 = 4D \"Variation\" 曼德布羅特集.\n" +"8 = 4D \"Variation\" 朱利亞集.\n" +"9 = 3D \"Mandelbrot/Mandelbar\" 曼德布羅特集.\n" +"10 = 3D \"Mandelbrot/Mandelbar\" 朱利亞集.\n" +"11 = 3D \"Christmas Tree\" 曼德布羅特集合.\n" +"12 = 3D \"Christmas Tree\" 朱利亞集.\n" +"13 = 3D \"Mandelbulb\" 曼德布羅特集.\n" +"14 = 3D \"Mandelbulb\" 朱利亞集.\n" +"15 = 3D \"Cosine Mandelbulb\" 曼德布羅特集.\n" +"16 = 3D \"Cosine Mandelbulb\" 朱利亞集.\n" +"17 = 4D \"Mandelbulb\" 曼德布羅特集.\n" +"18 = 4D \"Mandelbulb\" 朱利亞集." #: src/settings_translation_file.cpp msgid "" "Send names of online players to the serverlist. If disabled only the player " "count is revealed." -msgstr "" +msgstr "將線上玩家的名字傳送到伺服器清單。如果停用,則僅顯示玩家計數。" #: src/settings_translation_file.cpp -#, fuzzy msgid "Send player names to the server list" -msgstr "公佈至此伺服器清單。" +msgstr "將玩家名稱傳送到伺服器列表" #: src/settings_translation_file.cpp msgid "Server" @@ -5780,6 +5827,8 @@ msgid "" "Flags are positive. Uncheck the flag to disable corresponding anticheat " "module." msgstr "" +"伺服器反作弊配置。\n" +"標誌為正。取消選取該標誌可停用對應的反作弊模組。" #: src/settings_translation_file.cpp msgid "Server description" @@ -5920,16 +5969,6 @@ msgstr "" msgid "Shader path" msgstr "著色器路徑" -#: src/settings_translation_file.cpp -msgid "Shaders" -msgstr "著色器" - -#: src/settings_translation_file.cpp -msgid "" -"Shaders are a fundamental part of rendering and enable advanced visual " -"effects." -msgstr "" - #: src/settings_translation_file.cpp msgid "Shadow filter quality" msgstr "陰影濾鏡質量" @@ -5996,7 +6035,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Simulate translucency when looking at foliage in the sunlight." -msgstr "" +msgstr "模擬在陽光下觀察樹葉時的半透明度。" #: src/settings_translation_file.cpp msgid "" @@ -6047,17 +6086,15 @@ msgid "Smooth lighting" msgstr "平滑光" #: src/settings_translation_file.cpp -#, fuzzy msgid "Smooth scrolling" -msgstr "平滑光" +msgstr "平滑滾動" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Smooths rotation of camera when in cinematic mode, 0 to disable. Enter " "cinematic mode by using the key set in Controls." msgstr "" -"在電影模式下平滑相機的旋轉,0 表示停用。 使用“更改鍵”中設定的鍵進入電影模式。" +"在電影模式下平滑相機的旋轉,0 為停用。使用控制中設定的按鍵進入電影模式。" #: src/settings_translation_file.cpp msgid "" @@ -6074,9 +6111,8 @@ msgid "Sneaking speed, in nodes per second." msgstr "潛行速度,以方塊每秒為單位。" #: src/settings_translation_file.cpp -#, fuzzy msgid "Soft clouds" -msgstr "3D 雲朵" +msgstr "柔軟的雲" #: src/settings_translation_file.cpp msgid "Soft shadow radius" @@ -6087,9 +6123,8 @@ msgid "Sound" msgstr "聲音" #: src/settings_translation_file.cpp -#, fuzzy msgid "Sound Extensions Blacklist" -msgstr "ContentDB 旗標黑名單列表" +msgstr "聲音擴展黑名單" #: src/settings_translation_file.cpp msgid "" @@ -6113,11 +6148,11 @@ msgstr "" "請注意,模組或遊戲可能會明確為某些(或所有)項目設定堆疊。" #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"Spread a complete update of shadow map over given number of frames.\n" +"Spread a complete update of the shadow map over a given number of frames.\n" "Higher values might make shadows laggy, lower values\n" -"will consume more resources.\n" -"Minimum value: 1; maximum value: 16" +"will consume more resources." msgstr "" "在給定數量的幀上傳播陰影貼圖的完整更新。\n" "較高的值可能會使陰影滯後,較低的值\n" @@ -6313,16 +6348,24 @@ msgid "" "Known from the classic Luanti mobile controls.\n" "Combat is more or less impossible." msgstr "" +"玩家的打擊/實體手勢。\n" +"這可以被遊戲和模組覆蓋。\n" +"\n" +"* 短接\n" +"易於使用,並且比其他不願透露姓名的遊戲更出名。\n" +"\n" +"*長按\n" +"以經典的 Luanti 行動控製而聞名。\n" +"戰鬥幾乎是不可能的。" #: src/settings_translation_file.cpp msgid "The identifier of the joystick to use" msgstr "要使用的搖桿的識別碼" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "The length in pixels after which a touch interaction is considered movement." -msgstr "觸控螢幕互動開始所需的長度(以像素為單位)。" +msgstr "觸控互動被視為移動的長度(以像素為單位)。" #: src/settings_translation_file.cpp msgid "" @@ -6337,13 +6380,12 @@ msgstr "" "預設值為 1.0(1/2 節點)。" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "The minimum time in seconds it takes between digging nodes when holding\n" "the dig button." msgstr "" -"按住時重複放置節點之間所花費的時間(以秒為單位)\n" -"地點按鈕。" +"持有挖礦節點之間所需的最短時間(秒)\n" +"挖掘按鈕。" #: src/settings_translation_file.cpp msgid "The network interface that the server listens on." @@ -6374,16 +6416,14 @@ msgstr "" "這應該與 active_object_send_range_blocks 一起配置。" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "The rendering back-end.\n" "Note: A restart is required after changing this!\n" "OpenGL is the default for desktop, and OGLES2 for Android." msgstr "" "渲染後端。\n" -"注意:修改後需要重啟!\n" -"OpenGL 是桌面的預設設置,Android 的預設設定是 OGLES2。\n" -"OpenGL 和 OGLES2(實驗性)支援著色器。" +"注意:更改後需要重新啟動!\n" +"OpenGL 是桌面的預設設置,OGLES2 是 Android 的預設設定。" #: src/settings_translation_file.cpp msgid "" @@ -6473,18 +6513,13 @@ msgstr "" msgid "Time of day when a new world is started, in millihours (0-23999)." msgstr "一天中開始新世界的時間,以毫秒為單位 (0-23999)。" -#: src/settings_translation_file.cpp -msgid "Time send interval" -msgstr "時間傳送間隔" - #: src/settings_translation_file.cpp msgid "Time speed" msgstr "時間速度" #: src/settings_translation_file.cpp -#, fuzzy msgid "Timeout for client to remove unused map data from memory, in seconds." -msgstr "用戶端從記憶體移除未使用的地圖資料的逾時時間。" +msgstr "客戶端從記憶體中刪除未使用的地圖資料的逾時時間(以秒為單位)。" #: src/settings_translation_file.cpp msgid "" @@ -6501,6 +6536,8 @@ msgid "" "Tolerance of movement cheat detector.\n" "Increase the value if players experience stuttery movement." msgstr "" +"運作作弊偵測器的容忍度。\n" +"如果玩家遇到動作不順暢的情況,請增加該數值。" #: src/settings_translation_file.cpp msgid "Tooltip delay" @@ -6511,9 +6548,8 @@ msgid "Touchscreen" msgstr "觸控螢幕" #: src/settings_translation_file.cpp -#, fuzzy msgid "Touchscreen controls" -msgstr "海灘雜訊閾值" +msgstr "觸控螢幕控制" #: src/settings_translation_file.cpp msgid "Touchscreen sensitivity" @@ -6528,9 +6564,8 @@ msgid "Tradeoffs for performance" msgstr "性能的權衡" #: src/settings_translation_file.cpp -#, fuzzy msgid "Translucent foliage" -msgstr "半透明液體" +msgstr "半透明的樹葉" #: src/settings_translation_file.cpp msgid "Translucent liquids" @@ -6540,6 +6575,11 @@ msgstr "半透明液體" msgid "Transparency Sorting Distance" msgstr "透明分選距離" +#: src/settings_translation_file.cpp +#, fuzzy +msgid "Transparency Sorting Group by Buffers" +msgstr "透明分選距離" + #: src/settings_translation_file.cpp msgid "Trees noise" msgstr "樹林雜訊" @@ -6579,14 +6619,13 @@ msgstr "" "僅當出現效能問題時才應變更此設定。" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "URL to JSON file which provides information about the newest Luanti " "release.\n" "If this is empty the engine will never check for updates." msgstr "" -"JSON 檔案的網址,提供有關最新 Minetest 版本的資訊\n" -"如果這是空的,引擎將永遠不會檢查更新。" +"提供有關最新 Luanti 版本資訊的 JSON 檔案的 URL。\n" +"如果此處為空,引擎將永遠不會檢查更新。" #: src/settings_translation_file.cpp msgid "URL to the server list displayed in the Multiplayer Tab." @@ -6597,12 +6636,16 @@ msgid "Undersampling" msgstr "欠取樣" #: src/settings_translation_file.cpp +#, fuzzy msgid "" "Undersampling is similar to using a lower screen resolution, but it applies\n" "to the game world only, keeping the GUI intact.\n" "It should give a significant performance boost at the cost of less detailed " "image.\n" -"Higher values result in a less detailed image." +"Higher values result in a less detailed image.\n" +"Note: Undersampling is currently not supported if the \"3d_mode\" setting is " +"set\n" +"to a non-default value." msgstr "" "欠採樣與使用較低的螢幕解析度類似,但它適用\n" "僅適用於遊戲世界,保持 GUI 完整。\n" @@ -6629,23 +6672,20 @@ msgstr "地下城的 Y 值上限。" msgid "Upper Y limit of floatlands." msgstr "懸空島的 Y 上限。" -#: src/settings_translation_file.cpp -msgid "Use 3D cloud look instead of flat." -msgstr "使用 3D 立體而非扁平的雲朵外觀。" - #: src/settings_translation_file.cpp msgid "Use a cloud animation for the main menu background." msgstr "在主選單的背景使用雲朵動畫。" #: src/settings_translation_file.cpp #, fuzzy -msgid "Use anisotropic filtering when looking at textures from an angle." +msgid "" +"Use anisotropic filtering when looking at textures from an angle.\n" +"This provides a significant improvement when used together with mipmapping." msgstr "當從某個角度觀看時啟用各向異性過濾。" #: src/settings_translation_file.cpp -#, fuzzy msgid "Use bilinear filtering when scaling textures." -msgstr "當縮放材質時使用三線性過濾。" +msgstr "縮放紋理時使用雙線性過濾。" #: src/settings_translation_file.cpp msgid "Use crosshair for touch screen" @@ -6681,7 +6721,7 @@ msgstr "" #: src/settings_translation_file.cpp msgid "Use smooth cloud shading." -msgstr "" +msgstr "使用平滑的雲陰影。" #: src/settings_translation_file.cpp msgid "" @@ -6694,14 +6734,13 @@ msgstr "" "被應用。" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Use virtual joystick to trigger \"Aux1\" button.\n" "If enabled, virtual joystick will also tap \"Aux1\" button when out of main " "circle." msgstr "" -"(Android) 使用虛擬搖桿觸發 \"Aux1\" 按鍵。\n" -"如果啟用,虛擬搖桿在離開主圓圈時也會觸發 \"Aux1\" 按鍵。" +"使用虛擬操縱桿觸發“Aux1”按鈕。\n" +"如果啟用,虛擬操縱桿在離開主圈時也會點選「Aux1」按鈕。" #: src/settings_translation_file.cpp msgid "User Interfaces" @@ -6720,9 +6759,8 @@ msgid "Valley fill" msgstr "山谷填充" #: src/settings_translation_file.cpp -#, fuzzy msgid "Valley profile" -msgstr "山谷分析" +msgstr "山谷概況" #: src/settings_translation_file.cpp msgid "Valley slope" @@ -6811,14 +6849,12 @@ msgstr "" "需要啟用音響系統。" #: src/settings_translation_file.cpp -#, fuzzy msgid "Volume when unfocused" -msgstr "遊戲暫停時最高 FPS" +msgstr "不聚焦時的音量" #: src/settings_translation_file.cpp -#, fuzzy msgid "Volumetric lighting" -msgstr "平滑光" +msgstr "體積照明" #: src/settings_translation_file.cpp msgid "" @@ -6867,14 +6903,12 @@ msgid "Waving liquids" msgstr "波動的液體" #: src/settings_translation_file.cpp -#, fuzzy msgid "Waving liquids wave height" -msgstr "波動的水高度" +msgstr "波浪液體波高" #: src/settings_translation_file.cpp -#, fuzzy msgid "Waving liquids wave speed" -msgstr "波動的水速度" +msgstr "波動液體波速" #: src/settings_translation_file.cpp msgid "Waving liquids wavelength" @@ -6890,13 +6924,15 @@ msgstr "網路連結顏色" #: src/settings_translation_file.cpp msgid "When enabled, liquid reflections are simulated." -msgstr "" +msgstr "啟用後,將模擬液體反射。" #: src/settings_translation_file.cpp msgid "" "When enabled, the GUI is optimized to be more usable on touchscreens.\n" "Whether this is enabled by default depends on your hardware form-factor." msgstr "" +"啟用後,GUI 經過最佳化,在觸控螢幕上更可用。\n" +"預設是否啟用取決於您的硬體外形尺寸。" #: src/settings_translation_file.cpp msgid "" @@ -6909,25 +6945,14 @@ msgstr "" "硬體(例如在物品欄中節點的繪圖至材質)。" #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"When gui_scaling_filter_txr2img is true, copy those images\n" -"from hardware to software for scaling. When false, fall back\n" -"to the old scaling method, for video drivers that don't\n" -"properly support downloading textures back from hardware." -msgstr "" -"當 gui_scaling_filter_txr2img 被設定為真,複製這些圖片\n" -"從硬體到軟體以供縮放。當為假時,退回\n" -"至舊的縮放方法,供從硬體下載材質回\n" -"來軟體支援不佳的顯示卡驅動程式使用。" - -#: src/settings_translation_file.cpp -msgid "" -"When using bilinear/trilinear/anisotropic filters, low-resolution textures\n" -"can be blurred, so automatically upscale them with nearest-neighbor\n" -"interpolation to preserve crisp pixels. This sets the minimum texture size\n" -"for the upscaled textures; higher values look sharper, but require more\n" -"memory. Powers of 2 are recommended. This setting is ONLY applied if\n" -"bilinear/trilinear/anisotropic filtering is enabled.\n" +"When using bilinear/trilinear filtering, low-resolution textures\n" +"can be blurred, so this option automatically upscales them to preserve\n" +"crisp pixels. This defines the minimum texture size for the upscaled " +"textures;\n" +"higher values look sharper, but require more memory.\n" +"This setting is ONLY applied if any of the mentioned filters are enabled.\n" "This is also used as the base node texture size for world-aligned\n" "texture autoscaling." msgstr "" @@ -6948,10 +6973,6 @@ msgstr "" "預設是否應顯示名稱標籤背景。\n" "模組可能仍會設定背景。" -#: src/settings_translation_file.cpp -msgid "Whether node texture animations should be desynchronized per mapblock." -msgstr "是否每個地圖區塊的節點材質動畫可以不同步。" - #: src/settings_translation_file.cpp msgid "" "Whether players are shown to clients without any range limit.\n" @@ -6977,9 +6998,9 @@ msgid "Whether to fog out the end of the visible area." msgstr "是否將可視區域外模糊。" #: src/settings_translation_file.cpp +#, fuzzy msgid "" -"Whether to mute sounds. You can unmute sounds at any time, unless the\n" -"sound system is disabled (enable_sound=false).\n" +"Whether to mute sounds. You can unmute sounds at any time.\n" "In-game, you can toggle the mute state with the mute key or by using the\n" "pause menu." msgstr "" @@ -6994,12 +7015,10 @@ msgid "" msgstr "是否顯示用戶端除錯資訊(與按下 F5 有同樣的效果)。" #: src/settings_translation_file.cpp -#, fuzzy msgid "Width component of the initial window size." -msgstr "初始視窗大小的寬度元素。" +msgstr "初始視窗大小的寬度元件。" #: src/settings_translation_file.cpp -#, fuzzy msgid "Width of the selection box lines around nodes." msgstr "選取框在節點周邊的選取框線。" @@ -7008,14 +7027,13 @@ msgid "Window maximized" msgstr "視窗最大化" #: src/settings_translation_file.cpp -#, fuzzy msgid "" "Windows systems only: Start Luanti with the command line window in the " "background.\n" "Contains the same information as the file debug.txt (default name)." msgstr "" -"僅 Windows 系統:以在背景的命令列視窗啟動 Minetest。\n" -"包含與 debug.txt(預設名稱)檔案相同的的資訊。" +"僅限 Windows 系統:在背景使用命令列視窗啟動 Luanti。\n" +"包含與檔案 debug.txt(預設名稱)相同的資訊。" #: src/settings_translation_file.cpp msgid "" @@ -7060,9 +7078,8 @@ msgid "" msgstr "Y 山體密度梯度為0級。 用於垂直移動山脈。" #: src/settings_translation_file.cpp -#, fuzzy msgid "Y of upper limit of large caves." -msgstr "大型偽隨機洞穴的 Y 上限。" +msgstr "大型隨機洞穴的Y軸最大值." #: src/settings_translation_file.cpp msgid "Y-distance over which caverns expand to full size." @@ -7089,12 +7106,10 @@ msgid "Y-level of cavern upper limit." msgstr "洞穴上限的 Y 高度。" #: src/settings_translation_file.cpp -#, fuzzy msgid "Y-level of higher terrain that creates cliffs." -msgstr "較低地形與湖底的 Y 高度。" +msgstr "形成懸崖的更高地形的Y座標。" #: src/settings_translation_file.cpp -#, fuzzy msgid "Y-level of lower terrain and seabed." msgstr "較低地形與湖底的 Y 高度。" @@ -7167,6 +7182,9 @@ msgstr "cURL 並行限制" #~ "把這個留空以啟動本機伺服器。\n" #~ "注意在主選單中的地址欄會覆寫這個設定。" +#~ msgid "Adds particles when digging a node." +#~ msgstr "當挖掘節點時加入一些粒子。" + #~ msgid "" #~ "Adjust dpi configuration to your screen (non X11/Android only) e.g. for " #~ "4k screens." @@ -7263,6 +7281,9 @@ msgstr "cURL 並行限制" #~ msgid "Clean transparent textures" #~ msgstr "清除透明材質" +#~ msgid "Clouds are a client-side effect." +#~ msgstr "雲朵是用戶端的特效。" + #~ msgid "Command key" #~ msgstr "指令按鍵" @@ -7356,9 +7377,15 @@ msgstr "cURL 並行限制" #~ msgid "Darkness sharpness" #~ msgstr "湖泊坡度" +#~ msgid "Debug info and profiler graph hidden" +#~ msgstr "已隱藏除錯資訊及分析圖" + #~ msgid "Debug info toggle key" #~ msgstr "除錯資訊切換按鍵" +#~ msgid "Debug info, profiler graph, and wireframe hidden" +#~ msgstr "已隱藏除錯資訊、分析圖及線框" + #~ msgid "Dec. volume key" #~ msgstr "音量減少鍵" @@ -7412,9 +7439,15 @@ msgstr "cURL 並行限制" #~ msgid "Del. Favorite" #~ msgstr "刪除收藏" +#~ msgid "Desynchronize block animation" +#~ msgstr "異步化方塊動畫" + #~ msgid "Dig key" #~ msgstr "挖掘鍵" +#~ msgid "Digging particles" +#~ msgstr "挖掘粒子" + #~ msgid "Disable anticheat" #~ msgstr "停用反作弊" @@ -7439,6 +7472,9 @@ msgstr "cURL 並行限制" #~ msgid "Dynamic shadows:" #~ msgstr "動態陰影:" +#~ msgid "Enable" +#~ msgstr "啟用" + #~ msgid "Enable VBO" #~ msgstr "啟用 VBO" @@ -7471,6 +7507,13 @@ msgstr "cURL 並行限制" #~ "或是自動生成。\n" #~ "必須啟用著色器。" +#~ msgid "" +#~ "Enables caching of facedir rotated meshes.\n" +#~ "This is only effective with shaders disabled." +#~ msgstr "" +#~ "啟用 facedir 旋轉網格的快取。\n" +#~ "這僅在禁用著色器時才有效。" + #~ msgid "Enables filmic tone mapping" #~ msgstr "啟用電影色調映射" @@ -7506,9 +7549,6 @@ msgstr "cURL 並行限制" #~ "實驗性選項,當設定到大於零的值時\n" #~ "也許會造成在方塊間有視覺空隙。" -#~ msgid "FPS in pause menu" -#~ msgstr "在暫停選單中的 FPS" - #~ msgid "FSAA" #~ msgstr "FSAA" @@ -7584,8 +7624,8 @@ msgstr "cURL 並行限制" #~ msgid "Full screen BPP" #~ msgstr "全螢幕 BPP" -#~ msgid "Game" -#~ msgstr "遊戲" +#~ msgid "GUI scaling filter txr2img" +#~ msgstr "圖形使用者介面縮放比例過濾器 txr2img" #~ msgid "Gamma" #~ msgstr "Gamma" @@ -7740,661 +7780,667 @@ msgstr "cURL 並行限制" #~ msgid "Instrumentation" #~ msgstr "儀表" +#~ msgid "Interval of sending time of day to clients, stated in seconds." +#~ msgstr "向客戶端發送一天中的時間間隔,以秒為單位。" + #~ msgid "Invalid gamespec." #~ msgstr "遊戲規格無效。" #~ msgid "Inventory key" #~ msgstr "物品欄按鍵" +#~ msgid "Irrlicht device:" +#~ msgstr "照明設備:" + #~ msgid "Jump key" #~ msgstr "跳躍鍵" #~ msgid "" #~ "Key for decreasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "降低視野範圍的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for decreasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "降低音量的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for digging.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "跳躍的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for dropping the currently selected item.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "丟棄目前選定物品的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the viewing range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "增加視野範圍的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for increasing the volume.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "增加音量的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for jumping.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "跳躍的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving fast in fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "在快速模式中快速移動的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for moving the player backward.\n" #~ "Will also disable autoforward, when active.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "將玩家往後方移動的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player forward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "將玩家往前方移動的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player left.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "將玩家往左方移動的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for moving the player right.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "將玩家往右方移動的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for muting the game.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "遊戲靜音的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "開啟對話視窗以供輸入指令的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window to type local commands.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "開啟對話視窗以供輸入本機指令的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the chat window.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "開啟對話視窗的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for opening the inventory.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "開啟物品欄的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for placing.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "跳躍的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 11th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "選取快捷列中第 11 個槽的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 12th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "選取快捷列中第 12 個槽的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 13th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "選取快捷列中第 13 個槽的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 14th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "選取快捷列中第 14 個槽的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 15th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "選取快捷列中第 15 個槽的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 16th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "選取快捷列中第 16 個槽的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 17th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "選取快捷列中第 17 個槽的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 18th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "選取快捷列中第 18 個槽的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 19th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "選取快捷列中第 19 個槽的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 20th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "選取快捷列中第 20 個槽的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 21st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "選取快捷列中第 21 個槽的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 22nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "選取快捷列中第 22 個槽的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 23rd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "選取快捷列中第 23 個槽的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 24th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "選取快捷列中第 24 個槽的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 25th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "選取快捷列中第 25 個槽的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 26th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "選取快捷列中第 26 個槽的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 27th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "選取快捷列中第 27 個槽的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 28th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "選取快捷列中第 28 個槽的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 29th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "選取快捷列中第 29 個槽的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 30th hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "選取快捷列中第 30 個槽的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 31st hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "選取快捷列中第 31 個槽的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the 32nd hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "選取快捷列中第 32 個槽的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the eighth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "選取快捷列中第 8 個槽的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the fifth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "選取快捷列中第 5 個槽的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the first hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "選取快捷列中第 1 個槽的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the fourth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "選取快捷列中第 4 個槽的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the next item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "在快捷列選取下一個物品的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the ninth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "選取快捷列中第 9 個槽的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the previous item in the hotbar.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "在快捷列選取上一個物品的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the second hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "選取快捷列中第 2 個槽的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the seventh hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "選取快捷列中第 7 個槽的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the sixth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "選取快捷列中第 6 個槽的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the tenth hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "選取快捷列中第 10 個槽的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for selecting the third hotbar slot.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "選取快捷列中第 3 個槽的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for sneaking.\n" #~ "Also used for climbing down and descending in water if aux1_descends is " #~ "disabled.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "潛行的按鍵。\n" #~ "若 aux1_ 降低停用時,也會用於向下攀爬與在水中下潛。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for switching between first- and third-person camera.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "用來切換第一與第三人稱視角的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for taking screenshots.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "拍攝螢幕截圖的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #, fuzzy #~ msgid "" #~ "Key for toggling autoforward.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "切換自動奔跑的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling cinematic mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "切換電影模式的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling display of minimap.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "切換顯示迷你地圖的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling fast mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "切換快速模式的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling flying.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "切換飛行的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling noclip mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "切換穿牆模式的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling pitch move mode.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "切換 Pitch Move 模式的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the camera update. Only used for development\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "切換視角更新的按鍵。僅對開發有用。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of chat.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "用來切換聊天顯示的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of debug info.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "切換顯示除錯資訊的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of fog.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "切換顯示霧氣的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the HUD.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "切換顯示 HUD 的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the large chat console.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "切換顯示大聊天終端機的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling the display of the profiler. Used for development.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "切換顯示輪廓的按鍵。對開發有用。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key for toggling unlimited view range.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "切換無限視野的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Key to use view zoom when possible.\n" -#~ "See http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "See http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgstr "" #~ "當可能時用來縮放的按鍵。\n" -#~ "請見 http://irrlicht.sourceforge.net/docu/namespaceirr." -#~ "html#a54da2a0e231901735e3da1b0edf72eb3" +#~ "請見 http://irrlicht.sourceforge.net/docu/" +#~ "namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3" #~ msgid "" #~ "Keybindings. (If this menu screws up, remove stuff from minetest.conf)" @@ -8465,6 +8511,9 @@ msgstr "cURL 並行限制" #~ msgid "Menus" #~ msgstr "選單" +#~ msgid "Mesh cache" +#~ msgstr "網狀快取" + #~ msgid "Minimap" #~ msgstr "迷你地圖" @@ -8654,6 +8703,9 @@ msgstr "cURL 並行限制" #~ msgid "Server / Singleplayer" #~ msgstr "伺服器/單人遊戲" +#~ msgid "Shaders" +#~ msgstr "著色器" + #~ msgid "Shaders (experimental)" #~ msgstr "著色器(實驗性)" @@ -8668,6 +8720,14 @@ msgstr "cURL 並行限制" #~ "著色器允許實現高級視覺效果,\n" #~ "並可能提高某些顯示卡的性能。" +#~ msgid "" +#~ "Shaders are a fundamental part of rendering and enable advanced visual " +#~ "effects." +#~ msgstr "著色器是渲染的基本部分,可實現高級視覺效果。" + +#~ msgid "Shaders are disabled." +#~ msgstr "已停用相機更新。" + #~ msgid "Shadow limit" #~ msgstr "陰影限制" @@ -8698,6 +8758,9 @@ msgstr "cURL 並行限制" #~ msgid "Smooths rotation of camera. 0 to disable." #~ msgstr "讓旋轉攝影機時較流暢。設為 0 以停用。" +#~ msgid "Sound system is disabled" +#~ msgstr "聲音系統已被禁用" + #~ msgid "Special" #~ msgstr "特殊" @@ -8739,6 +8802,12 @@ msgstr "cURL 並行限制" #~ msgid "This font will be used for certain languages." #~ msgstr "這個字型將會被用於特定的語言。" +#~ msgid "This is not a recommended configuration." +#~ msgstr "不建議使用該配置。" + +#~ msgid "Time send interval" +#~ msgstr "時間傳送間隔" + #~ msgid "To enable shaders the OpenGL driver needs to be used." #~ msgstr "要啟用著色器,必須使用 OpenGL 驅動程式。" @@ -8822,6 +8891,17 @@ msgstr "cURL 並行限制" #~ msgid "Waving water" #~ msgstr "波動的水" +#~ msgid "" +#~ "When gui_scaling_filter_txr2img is true, copy those images\n" +#~ "from hardware to software for scaling. When false, fall back\n" +#~ "to the old scaling method, for video drivers that don't\n" +#~ "properly support downloading textures back from hardware." +#~ msgstr "" +#~ "當 gui_scaling_filter_txr2img 被設定為真,複製這些圖片\n" +#~ "從硬體到軟體以供縮放。當為假時,退回\n" +#~ "至舊的縮放方法,供從硬體下載材質回\n" +#~ "來軟體支援不佳的顯示卡驅動程式使用。" + #, fuzzy #~ msgid "" #~ "Whether FreeType fonts are used, requires FreeType support to be compiled " @@ -8829,6 +8909,10 @@ msgstr "cURL 並行限制" #~ "If disabled, bitmap and XML vectors fonts are used instead." #~ msgstr "是否使用 freetype 字型,需要將 freetype 支援編譯進來。" +#~ msgid "" +#~ "Whether node texture animations should be desynchronized per mapblock." +#~ msgstr "是否每個地圖區塊的節點材質動畫可以不同步。" + #~ msgid "Whether to allow players to damage and kill each other." #~ msgstr "是否允許玩家傷害並殺害其他人。" diff --git a/src/activeobjectmgr.h b/src/activeobjectmgr.h index a9b007018..952d812ef 100644 --- a/src/activeobjectmgr.h +++ b/src/activeobjectmgr.h @@ -39,7 +39,7 @@ public: for (auto &it : m_active_objects.iter()) { if (!it.second) continue; - m_active_objects.remove(it.first); + removeObject(it.first); } } while (!m_active_objects.empty()); } diff --git a/src/benchmark/benchmark_activeobjectmgr.cpp b/src/benchmark/benchmark_activeobjectmgr.cpp index d9036c632..23a712af6 100644 --- a/src/benchmark/benchmark_activeobjectmgr.cpp +++ b/src/benchmark/benchmark_activeobjectmgr.cpp @@ -105,7 +105,11 @@ void benchGetObjectsInArea(Catch::Benchmark::Chronometer &meter) TEST_CASE("ActiveObjectMgr") { BENCH_INSIDE_RADIUS(200) BENCH_INSIDE_RADIUS(1450) + BENCH_INSIDE_RADIUS(10000) BENCH_IN_AREA(200) BENCH_IN_AREA(1450) + BENCH_IN_AREA(10000) } + +// TODO benchmark active object manager update costs diff --git a/src/client/CMakeLists.txt b/src/client/CMakeLists.txt index c17148a35..b11e6ee6f 100644 --- a/src/client/CMakeLists.txt +++ b/src/client/CMakeLists.txt @@ -56,6 +56,7 @@ set(client_SRCS ${CMAKE_CURRENT_SOURCE_DIR}/hud.cpp ${CMAKE_CURRENT_SOURCE_DIR}/imagefilters.cpp ${CMAKE_CURRENT_SOURCE_DIR}/inputhandler.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/item_visuals_manager.cpp ${CMAKE_CURRENT_SOURCE_DIR}/joystick_controller.cpp ${CMAKE_CURRENT_SOURCE_DIR}/keycode.cpp ${CMAKE_CURRENT_SOURCE_DIR}/localplayer.cpp diff --git a/src/client/camera.cpp b/src/client/camera.cpp index 4abe062d7..dfa2649ed 100644 --- a/src/client/camera.cpp +++ b/src/client/camera.cpp @@ -26,12 +26,18 @@ #include #include -#define CAMERA_OFFSET_STEP 200 +static constexpr f32 CAMERA_OFFSET_STEP = 200; + #define WIELDMESH_OFFSET_X 55.0f #define WIELDMESH_OFFSET_Y -35.0f #define WIELDMESH_AMPLITUDE_X 7.0f #define WIELDMESH_AMPLITUDE_Y 10.0f +static const char *setting_names[] = { + "view_bobbing_amount", "fov", "arm_inertia", + "show_nametag_backgrounds", +}; + Camera::Camera(MapDrawControl &draw_control, Client *client, RenderingEngine *rendering_engine): m_draw_control(draw_control), m_client(client), @@ -53,27 +59,36 @@ Camera::Camera(MapDrawControl &draw_control, Client *client, RenderingEngine *re m_wieldnode->setItem(ItemStack(), m_client); m_wieldnode->drop(); // m_wieldmgr grabbed it - /* TODO: Add a callback function so these can be updated when a setting - * changes. At this point in time it doesn't matter (e.g. /set - * is documented to change server settings only) - * - * TODO: Local caching of settings is not optimal and should at some stage + m_nametags.clear(); + + readSettings(); + for (auto name : setting_names) + g_settings->registerChangedCallback(name, settingChangedCallback, this); +} + +void Camera::settingChangedCallback(const std::string &name, void *data) +{ + static_cast(data)->readSettings(); +} + +void Camera::readSettings() +{ + /* TODO: Local caching of settings is not optimal and should at some stage * be updated to use a global settings object for getting thse values * (as opposed to the this local caching). This can be addressed in * a later release. */ - m_cache_fall_bobbing_amount = g_settings->getFloat("fall_bobbing_amount", 0.0f, 100.0f); m_cache_view_bobbing_amount = g_settings->getFloat("view_bobbing_amount", 0.0f, 7.9f); // 45 degrees is the lowest FOV that doesn't cause the server to treat this // as a zoom FOV and load world beyond the set server limits. m_cache_fov = g_settings->getFloat("fov", 45.0f, 160.0f); m_arm_inertia = g_settings->getBool("arm_inertia"); - m_nametags.clear(); m_show_nametag_backgrounds = g_settings->getBool("show_nametag_backgrounds"); } Camera::~Camera() { + g_settings->deregisterAllChangedCallbacks(this); m_wieldmgr->drop(); } @@ -114,19 +129,13 @@ inline f32 my_modf(f32 x) void Camera::step(f32 dtime) { - if(m_view_bobbing_fall > 0) - { - m_view_bobbing_fall -= 3 * dtime; - if(m_view_bobbing_fall <= 0) - m_view_bobbing_fall = -1; // Mark the effect as finished - } - bool was_under_zero = m_wield_change_timer < 0; m_wield_change_timer = MYMIN(m_wield_change_timer + dtime, 0.125); if (m_wield_change_timer >= 0 && was_under_zero) { m_wieldnode->setItem(m_wield_item_next, m_client); - m_wieldnode->setNodeLightColor(m_player_light_color); + m_wieldnode->setLightColorAndAnimation(m_player_light_color, + m_client->getAnimationTime()); } if (m_view_bobbing_state != 0) @@ -281,6 +290,20 @@ void Camera::addArmInertia(f32 player_yaw) } } +void Camera::updateOffset() +{ + v3f cp = m_camera_position / BS; + + // Update offset if too far away from the center of the map + m_camera_offset = v3s16( + floorf(cp.X / CAMERA_OFFSET_STEP) * CAMERA_OFFSET_STEP, + floorf(cp.Y / CAMERA_OFFSET_STEP) * CAMERA_OFFSET_STEP, + floorf(cp.Z / CAMERA_OFFSET_STEP) * CAMERA_OFFSET_STEP + ); + + // No need to update m_cameranode as that will be done before the next render. +} + void Camera::update(LocalPlayer* player, f32 frametime, f32 tool_reload_ratio) { // Get player position @@ -321,30 +344,13 @@ void Camera::update(LocalPlayer* player, f32 frametime, f32 tool_reload_ratio) // Get camera tilt timer (hurt animation) float cameratilt = fabs(fabs(player->hurt_tilt_timer-0.75)-0.75); - // Fall bobbing animation - float fall_bobbing = 0; - if(player->camera_impact >= 1 && m_camera_mode < CAMERA_MODE_THIRD) - { - if(m_view_bobbing_fall == -1) // Effect took place and has finished - player->camera_impact = m_view_bobbing_fall = 0; - else if(m_view_bobbing_fall == 0) // Initialize effect - m_view_bobbing_fall = 1; - - // Convert 0 -> 1 to 0 -> 1 -> 0 - fall_bobbing = m_view_bobbing_fall < 0.5 ? m_view_bobbing_fall * 2 : -(m_view_bobbing_fall - 0.5) * 2 + 1; - // Smoothen and invert the above - fall_bobbing = sin(fall_bobbing * 0.5 * M_PI) * -1; - // Amplify according to the intensity of the impact - if (player->camera_impact > 0.0f) - fall_bobbing *= (1 - rangelim(50 / player->camera_impact, 0, 1)) * 5; - - fall_bobbing *= m_cache_fall_bobbing_amount; - } - // Calculate and translate the head SceneNode offsets { v3f eye_offset = player->getEyeOffset(); switch(m_camera_mode) { + case CAMERA_MODE_ANY: + assert(false); + break; case CAMERA_MODE_FIRST: eye_offset += player->eye_offset_first; break; @@ -359,13 +365,14 @@ void Camera::update(LocalPlayer* player, f32 frametime, f32 tool_reload_ratio) } // Set head node transformation - eye_offset.Y += cameratilt * -player->hurt_tilt_strength + fall_bobbing; + eye_offset.Y += cameratilt * -player->hurt_tilt_strength; m_headnode->setPosition(eye_offset); m_headnode->setRotation(v3f(pitch, 0, cameratilt * player->hurt_tilt_strength)); m_headnode->updateAbsolutePosition(); } + // Compute relative camera position and target v3f rel_cam_pos = v3f(0,0,0); v3f rel_cam_target = v3f(0,0,1); @@ -397,12 +404,11 @@ void Camera::update(LocalPlayer* player, f32 frametime, f32 tool_reload_ratio) v3f abs_cam_up = m_headnode->getAbsoluteTransformation() .rotateAndScaleVect(rel_cam_up); - // Separate camera position for calculation - v3f my_cp = m_camera_position; - // Reposition the camera for third person view if (m_camera_mode > CAMERA_MODE_FIRST) { + v3f my_cp = m_camera_position; + if (m_camera_mode == CAMERA_MODE_THIRD_FRONT) m_camera_direction *= -1; @@ -434,27 +440,19 @@ void Camera::update(LocalPlayer* player, f32 frametime, f32 tool_reload_ratio) // If node blocks camera position don't move y to heigh if (abort && my_cp.Y > player_position.Y+BS*2) my_cp.Y = player_position.Y+BS*2; + + // update the camera position in third-person mode to render blocks behind player + // and correctly apply liquid post FX. + m_camera_position = my_cp; } - // Update offset if too far away from the center of the map - m_camera_offset.X += CAMERA_OFFSET_STEP* - (((s16)(my_cp.X/BS) - m_camera_offset.X)/CAMERA_OFFSET_STEP); - m_camera_offset.Y += CAMERA_OFFSET_STEP* - (((s16)(my_cp.Y/BS) - m_camera_offset.Y)/CAMERA_OFFSET_STEP); - m_camera_offset.Z += CAMERA_OFFSET_STEP* - (((s16)(my_cp.Z/BS) - m_camera_offset.Z)/CAMERA_OFFSET_STEP); - // Set camera node transformation - m_cameranode->setPosition(my_cp-intToFloat(m_camera_offset, BS)); - m_cameranode->updateAbsolutePosition(); + m_cameranode->setPosition(m_camera_position - intToFloat(m_camera_offset, BS)); m_cameranode->setUpVector(abs_cam_up); - // *100.0 helps in large map coordinates - m_cameranode->setTarget(my_cp-intToFloat(m_camera_offset, BS) + 100 * m_camera_direction); - - // update the camera position in third-person mode to render blocks behind player - // and correctly apply liquid post FX. - if (m_camera_mode != CAMERA_MODE_FIRST) - m_camera_position = my_cp; + m_cameranode->updateAbsolutePosition(); + // *100 helps in large map coordinates + m_cameranode->setTarget(m_camera_position - intToFloat(m_camera_offset, BS) + + 100 * m_camera_direction); /* * Apply server-sent FOV, instantaneous or smooth transition. @@ -540,7 +538,8 @@ void Camera::update(LocalPlayer* player, f32 frametime, f32 tool_reload_ratio) m_wieldnode->setRotation(wield_rotation); m_player_light_color = player->light_color; - m_wieldnode->setNodeLightColor(m_player_light_color); + m_wieldnode->setLightColorAndAnimation(m_player_light_color, + m_client->getAnimationTime()); // Set render distance updateViewingRange(); diff --git a/src/client/camera.h b/src/client/camera.h index 3715bebad..49e07d4ee 100644 --- a/src/client/camera.h +++ b/src/client/camera.h @@ -57,8 +57,6 @@ struct Nametag } }; -enum CameraMode {CAMERA_MODE_FIRST, CAMERA_MODE_THIRD, CAMERA_MODE_THIRD_FRONT}; - /* Client camera class, manages the player and camera scene nodes, the viewing distance and performs view bobbing etc. It also displays the wielded tool in front of the @@ -70,6 +68,9 @@ public: Camera(MapDrawControl &draw_control, Client *client, RenderingEngine *rendering_engine); ~Camera(); + static void settingChangedCallback(const std::string &name, void *data); + void readSettings(); + // Get camera scene node. // It has the eye transformation, pitch and view bobbing applied. inline scene::ICameraSceneNode* getCameraNode() const @@ -147,6 +148,9 @@ public: // Update the camera from the local player's position. void update(LocalPlayer* player, f32 frametime, f32 tool_reload_ratio); + // Adjust the camera offset when needed + void updateOffset(); + // Update render distance void updateViewingRange(); @@ -163,7 +167,8 @@ public: void drawWieldedTool(irr::core::matrix4* translation=NULL); // Toggle the current camera mode - void toggleCameraMode() { + void toggleCameraMode() + { if (m_camera_mode == CAMERA_MODE_FIRST) m_camera_mode = CAMERA_MODE_THIRD; else if (m_camera_mode == CAMERA_MODE_THIRD) @@ -179,7 +184,7 @@ public: } //read the current camera mode - inline CameraMode getCameraMode() + inline CameraMode getCameraMode() const { return m_camera_mode; } @@ -251,8 +256,6 @@ private: s32 m_view_bobbing_state = 0; // Speed of view bobbing animation f32 m_view_bobbing_speed = 0.0f; - // Fall view bobbing - f32 m_view_bobbing_fall = 0.0f; // Digging animation frame (0 <= m_digging_anim < 1) f32 m_digging_anim = 0.0f; @@ -267,7 +270,6 @@ private: CameraMode m_camera_mode = CAMERA_MODE_FIRST; - f32 m_cache_fall_bobbing_amount; f32 m_cache_view_bobbing_amount; bool m_arm_inertia; diff --git a/src/client/client.cpp b/src/client/client.cpp index b709f8cbf..1859356b9 100644 --- a/src/client/client.cpp +++ b/src/client/client.cpp @@ -9,6 +9,7 @@ #include #include #include "client.h" +#include "client/fontengine.h" #include "network/clientopcodes.h" #include "network/connection.h" #include "network/networkpacket.h" @@ -52,6 +53,7 @@ #include "translation.h" #include "content/mod_configuration.h" #include "mapnode.h" +#include "item_visuals_manager.h" extern gui::IGUIEnvironment* guienv; @@ -94,6 +96,7 @@ Client::Client( ISoundManager *sound, MtEventManager *event, RenderingEngine *rendering_engine, + ItemVisualsManager *item_visuals_manager, ELoginRegister allow_login_or_register ): m_tsrc(tsrc), @@ -103,6 +106,7 @@ Client::Client( m_sound(sound), m_event(event), m_rendering_engine(rendering_engine), + m_item_visuals_manager(item_visuals_manager), m_mesh_update_manager(std::make_unique(this)), m_env( make_irr(this, rendering_engine, control, 666), @@ -345,6 +349,8 @@ Client::~Client() // cleanup 3d model meshes on client shutdown m_rendering_engine->cleanupMeshCache(); + m_item_visuals_manager->clear(); + guiScalingCacheClear(); delete m_minimap; @@ -361,10 +367,12 @@ Client::~Client() for (auto &csp : m_sounds_client_to_server) m_sound->freeId(csp.first); m_sounds_client_to_server.clear(); + + // Go back to our mainmenu fonts + g_fontengine->clearMediaFonts(); } -void Client::connect(const Address &address, const std::string &address_name, - bool is_local_server) +void Client::connect(const Address &address, const std::string &address_name) { if (m_con) { // can't do this if the connection has entered auth phase @@ -385,7 +393,7 @@ void Client::connect(const Address &address, const std::string &address_name, m_con->Connect(address); - initLocalMapSaving(address, m_address_name, is_local_server); + initLocalMapSaving(address, m_address_name); } void Client::step(float dtime) @@ -394,11 +402,7 @@ void Client::step(float dtime) if (dtime > DTIME_LIMIT) dtime = DTIME_LIMIT; - m_animation_time += dtime; - if(m_animation_time > 60.0) - m_animation_time -= 60.0; - - m_time_of_day_update_timer += dtime; + m_animation_time = fmodf(m_animation_time + dtime, 60.0f); ReceiveAll(); @@ -446,20 +450,43 @@ void Client::step(float dtime) /* Run Map's timers and unload unused data */ - const float map_timer_and_unload_dtime = 5.25; + constexpr float map_timer_and_unload_dtime = 5.25f; + constexpr s32 mapblock_limit_enforce_distance = 200; if(m_map_timer_and_unload_interval.step(dtime, map_timer_and_unload_dtime)) { std::vector deleted_blocks; + + // Determine actual block limit to use + const s32 configured_limit = g_settings->getS32("client_mapblock_limit"); + s32 mapblock_limit; + if (configured_limit < 0) { + mapblock_limit = -1; + } else { + s32 view_range = g_settings->getS16("viewing_range"); + // Up to a certain limit we want to guarantee that the client can keep + // a full 360° view loaded in memory without blocks vanishing behind + // the players back. + // We use a sphere volume to approximate this. In practice far less + // blocks will be needed due to occlusion/culling. + float blocks_range = ceilf(std::min(mapblock_limit_enforce_distance, view_range) + / (float) MAP_BLOCKSIZE); + mapblock_limit = (4.f/3.f) * M_PI * powf(blocks_range, 3); + assert(mapblock_limit > 0); + mapblock_limit = std::max(mapblock_limit, configured_limit); + if (mapblock_limit > std::max(configured_limit, m_mapblock_limit_logged)) { + infostream << "Client: using block limit of " << mapblock_limit + << " rather than configured " << configured_limit + << " due to view range." << std::endl; + m_mapblock_limit_logged = mapblock_limit; + } + } + m_env.getMap().timerUpdate(map_timer_and_unload_dtime, std::max(g_settings->getFloat("client_unload_unused_data_timeout"), 0.0f), - g_settings->getS32("client_mapblock_limit"), - &deleted_blocks); + mapblock_limit, &deleted_blocks); - /* - Send info to server - NOTE: This loop is intentionally iterated the way it is. - */ + // Send info to server - std::vector::iterator i = deleted_blocks.begin(); + auto i = deleted_blocks.begin(); std::vector sendlist; for(;;) { if(sendlist.size() == 255 || i == deleted_blocks.end()) { @@ -564,7 +591,8 @@ void Client::step(float dtime) std::vector minimap_mapblocks; bool do_mapper_update = true; - MapSector *sector = m_env.getMap().emergeSector(v2s16(r.p.X, r.p.Z)); + ClientMap &map = m_env.getClientMap(); + MapSector *sector = map.emergeSector(v2s16(r.p.X, r.p.Z)); MapBlock *block = sector->getBlockNoCreateNoEx(r.p.Y); @@ -576,6 +604,8 @@ void Client::step(float dtime) if (block) { // Delete the old mesh + if (block->mesh) + map.invalidateMapBlockMesh(block->mesh); delete block->mesh; block->mesh = nullptr; block->solid_sides = r.solid_sides; @@ -590,9 +620,9 @@ void Client::step(float dtime) if (r.mesh->getMesh(l)->getMeshBufferCount() != 0) is_empty = false; - if (is_empty) + if (is_empty) { delete r.mesh; - else { + } else { // Replace with the new mesh block->mesh = r.mesh; if (r.urgent) @@ -637,9 +667,11 @@ void Client::step(float dtime) if (num_processed_meshes > 0) g_profiler->graphAdd("num_processed_meshes", num_processed_meshes); - auto shadow_renderer = RenderingEngine::get_shadow_renderer(); - if (shadow_renderer && force_update_shadows) - shadow_renderer->setForceUpdateShadowMap(); + if (force_update_shadows && !g_settings->getFlag("performance_tradeoffs")) { + auto shadow = RenderingEngine::get_shadow_renderer(); + if (shadow) + shadow->setForceUpdateShadowMap(); + }; } /* @@ -834,6 +866,15 @@ bool Client::loadMedia(const std::string &data, const std::string &filename, return true; } + const char *font_ext[] = {".ttf", ".woff", NULL}; + name = removeStringEnd(filename, font_ext); + if (!name.empty()) { + verbosestream<<"Client: Loading file as font: \"" + << filename << "\"" << std::endl; + g_fontengine->setMediaFont(name, data); + return true; + } + errorstream << "Client: Don't know how to load file \"" << filename << "\"" << std::endl; return false; @@ -859,14 +900,6 @@ void Client::deletingPeer(con::IPeer *peer, bool timeout) m_access_denied_reason = gettext("Connection aborted (protocol error?)."); } -/* - u16 command - u16 number of files requested - for each file { - u16 length of name - string name - } -*/ void Client::request_media(const std::vector &file_requests) { std::ostringstream os(std::ios_base::binary); @@ -875,7 +908,6 @@ void Client::request_media(const std::vector &file_requests) FATAL_ERROR_IF(file_requests_size > 0xFFFF, "Unsupported number of file requests"); - // Packet dynamicly resized NetworkPacket pkt(TOSERVER_REQUEST_MEDIA, 2 + 0); pkt << (u16) (file_requests_size & 0xFFFF); @@ -891,11 +923,9 @@ void Client::request_media(const std::vector &file_requests) << pkt.getSize() << ")" << std::endl; } -void Client::initLocalMapSaving(const Address &address, - const std::string &hostname, - bool is_local_server) +void Client::initLocalMapSaving(const Address &address, const std::string &hostname) { - if (!g_settings->getBool("enable_local_map_saving") || is_local_server) { + if (!g_settings->getBool("enable_local_map_saving") || m_internal_server) { return; } if (m_localdb) { @@ -1017,8 +1047,8 @@ void Client::Send(NetworkPacket* pkt) // Will fill up 12 + 12 + 4 + 4 + 4 + 1 + 1 + 1 + 4 + 4 bytes void writePlayerPos(LocalPlayer *myplayer, ClientMap *clientMap, NetworkPacket *pkt, bool camera_inverted) { - v3f pf = myplayer->getPosition() * 100; - v3f sf = myplayer->getSpeed() * 100; + v3s32 position = v3s32::from(myplayer->getPosition() * 100); + v3s32 speed = v3s32::from(myplayer->getSpeed() * 100); s32 pitch = myplayer->getPitch() * 100; s32 yaw = myplayer->getYaw() * 100; u32 keyPressed = myplayer->control.getKeysPressed(); @@ -1029,9 +1059,6 @@ void writePlayerPos(LocalPlayer *myplayer, ClientMap *clientMap, NetworkPacket * f32 movement_speed = myplayer->control.movement_speed; f32 movement_dir = myplayer->control.movement_direction; - v3s32 position(pf.X, pf.Y, pf.Z); - v3s32 speed(sf.X, sf.Y, sf.Z); - /* Format: [0] v3s32 position*100 @@ -1619,11 +1646,6 @@ void Client::inventoryAction(InventoryAction *a) delete a; } -float Client::getAnimationTime() -{ - return m_animation_time; -} - int Client::getCrackLevel() { return m_crack_level; @@ -1728,12 +1750,7 @@ void Client::addUpdateMeshTaskWithEdge(v3s16 blockpos, bool ack_to_server, bool void Client::addUpdateMeshTaskForNode(v3s16 nodepos, bool ack_to_server, bool urgent) { - { - v3s16 p = nodepos; - infostream<<"Client::addUpdateMeshTaskForNode(): " - <<"("<m_camera_offset = camera_offset; -} - ClientEvent *Client::getClientEvent() { FATAL_ERROR_IF(m_client_event_queue.empty(), diff --git a/src/client/client.h b/src/client/client.h index e4bb77ab2..12625f24e 100644 --- a/src/client/client.h +++ b/src/client/client.h @@ -55,6 +55,7 @@ struct MeshMakeData; struct MinimapMapblock; struct PlayerControl; struct PointedThing; +struct ItemVisualsManager; namespace con { class IConnection; @@ -118,6 +119,7 @@ public: ISoundManager *sound, MtEventManager *event, RenderingEngine *rendering_engine, + ItemVisualsManager *item_visuals, ELoginRegister allow_login_or_register ); @@ -140,8 +142,7 @@ public: bool isShutdown(); - void connect(const Address &address, const std::string &address_name, - bool is_local_server); + void connect(const Address &address, const std::string &address_name); /* Stuff that references the environment is valid only as @@ -217,6 +218,7 @@ public: void handleCommand_MediaPush(NetworkPacket *pkt); void handleCommand_MinimapModes(NetworkPacket *pkt); void handleCommand_SetLighting(NetworkPacket *pkt); + void handleCommand_Camera(NetworkPacket* pkt); void ProcessData(NetworkPacket *pkt); @@ -276,7 +278,10 @@ public: return m_env.getPlayerNames(); } - float getAnimationTime(); + float getAnimationTime() const + { + return m_animation_time; + } int getCrackLevel(); v3s16 getCrackPos(); @@ -293,15 +298,13 @@ public: bool getChatMessage(std::wstring &message); void typeChatMessage(const std::wstring& message); - u64 getMapSeed(){ return m_map_seed; } + u64 getMapSeed() const { return m_map_seed; } void addUpdateMeshTask(v3s16 blockpos, bool ack_to_server=false, bool urgent=false); // Including blocks at appropriate edges void addUpdateMeshTaskWithEdge(v3s16 blockpos, bool ack_to_server=false, bool urgent=false); void addUpdateMeshTaskForNode(v3s16 nodepos, bool ack_to_server=false, bool urgent=false); - void updateCameraOffset(v3s16 camera_offset); - bool hasClientEvents() const { return !m_client_event_queue.empty(); } // Get event from queue. If queue is empty, it triggers an assertion failure. ClientEvent * getClientEvent(); @@ -336,8 +339,17 @@ public: u16 getProtoVersion() const { return m_proto_ver; } + // Whether the server is in "simple singleplayer mode". + // This implies "m_internal_server = true". bool m_simple_singleplayer_mode; + // Whether the server is hosted by the same Luanti instance and singletons + // like g_settings are shared between client and server. + // + // This is intentionally *not* true if we're just connecting to a localhost + // server hosted by a different Luanti instance. + bool m_internal_server; + float mediaReceiveProgress(); void drawLoadScreen(const std::wstring &text, float dtime, int percent); @@ -373,6 +385,8 @@ public: const std::string* getModFile(std::string filename); ModStorageDatabase *getModStorageDatabase() override { return m_mod_storage_database; } + ItemVisualsManager *getItemVisualsManager() { return m_item_visuals_manager; } + // Migrates away old files-based mod storage if necessary void migrateModStorage(); @@ -439,9 +453,7 @@ private: void peerAdded(con::IPeer *peer) override; void deletingPeer(con::IPeer *peer, bool timeout) override; - void initLocalMapSaving(const Address &address, - const std::string &hostname, - bool is_local_server); + void initLocalMapSaving(const Address &address, const std::string &hostname); void ReceiveAll(); @@ -472,6 +484,7 @@ private: ISoundManager *m_sound; MtEventManager *m_event; RenderingEngine *m_rendering_engine; + ItemVisualsManager *m_item_visuals_manager; std::unique_ptr m_mesh_update_manager; @@ -487,23 +500,18 @@ private: u8 m_server_ser_ver; // Used version of the protocol with server - // Values smaller than 25 only mean they are smaller than 25, - // and aren't accurate. We simply just don't know, because - // the server didn't send the version back then. // If 0, server init hasn't been received yet. u16 m_proto_ver = 0; bool m_update_wielded_item = false; Inventory *m_inventory_from_server = nullptr; float m_inventory_from_server_age = 0.0f; + s32 m_mapblock_limit_logged = 0; PacketCounter m_packetcounter; // Block mesh animation parameters float m_animation_time = 0.0f; int m_crack_level = -1; v3s16 m_crack_pos; - // 0 <= m_daynight_i < DAYNIGHT_CACHE_COUNT - //s32 m_daynight_i; - //u32 m_daynight_ratio; std::queue m_out_chat_queue; u32 m_last_chat_message_sent; float m_chat_message_allowance = 5.0f; @@ -539,11 +547,6 @@ private: // Pending downloads of dynamic media (key: token) std::vector>> m_pending_media_downloads; - // time_of_day speed approximation for old protocol - bool m_time_of_day_set = false; - float m_last_time_of_day_f = -1.0f; - float m_time_of_day_update_timer = 0.0f; - // An interval for generally sending object positions and stuff float m_recommended_send_interval = 0.1f; diff --git a/src/client/clientenvironment.cpp b/src/client/clientenvironment.cpp index 42a31ae8c..ed9a23ce3 100644 --- a/src/client/clientenvironment.cpp +++ b/src/client/clientenvironment.cpp @@ -441,8 +441,8 @@ void ClientEnvironment::getSelectedActiveObjects( GenericCAO* gcao = dynamic_cast(obj); if (gcao != nullptr && gcao->getProperties().rotate_selectionbox) { gcao->getSceneNode()->updateAbsolutePosition(); - const v3f deg = obj->getSceneNode()->getAbsoluteTransformation().getRotationDegrees(); - collision = boxLineCollision(selection_box, deg, + const v3f rad = obj->getSceneNode()->getAbsoluteTransformation().getRotationRadians(); + collision = boxLineCollision(selection_box, rad, rel_pos, line_vector, ¤t_intersection, ¤t_normal, ¤t_raw_normal); } else { collision = boxLineCollision(selection_box, rel_pos, line_vector, diff --git a/src/client/clientevent.h b/src/client/clientevent.h index 297124b30..3d627c934 100644 --- a/src/client/clientevent.h +++ b/src/client/clientevent.h @@ -22,7 +22,8 @@ enum ClientEventType : u8 CE_PLAYER_FORCE_MOVE, CE_DEATHSCREEN_LEGACY, CE_SHOW_FORMSPEC, - CE_SHOW_LOCAL_FORMSPEC, + CE_SHOW_CSM_FORMSPEC, + CE_SHOW_PAUSE_MENU_FORMSPEC, CE_SPAWN_PARTICLE, CE_ADD_PARTICLESPAWNER, CE_DELETE_PARTICLESPAWNER, @@ -35,6 +36,7 @@ enum ClientEventType : u8 CE_SET_STARS, CE_OVERRIDE_DAY_NIGHT_RATIO, CE_CLOUD_PARAMS, + CE_UPDATE_CAMERA, CLIENTEVENT_MAX, }; @@ -65,11 +67,14 @@ struct ClientEventHudChange struct ClientEvent { + // TODO: should get rid of this ctor + ClientEvent() : type(CE_NONE) {} + + ClientEvent(ClientEventType type) : type(type) {} + ClientEventType type; union { - // struct{ - //} none; struct { u16 amount; @@ -85,8 +90,6 @@ struct ClientEvent std::string *formspec; std::string *formname; } show_formspec; - // struct{ - //} textures_updated; ParticleParameters *spawn_particle; struct { diff --git a/src/client/clientmap.cpp b/src/client/clientmap.cpp index ee05d8816..497c3452f 100644 --- a/src/client/clientmap.cpp +++ b/src/client/clientmap.cpp @@ -122,6 +122,13 @@ namespace { } } +void CachedMeshBuffer::drop() +{ + for (auto *it : buf) + it->drop(); + buf.clear(); +} + /* ClientMap */ @@ -191,10 +198,14 @@ void ClientMap::onSettingChanged(std::string_view name, bool all) ClientMap::~ClientMap() { g_settings->deregisterAllChangedCallbacks(this); + + for (auto &it : m_dynamic_buffers) + it.second.drop(); } void ClientMap::updateCamera(v3f pos, v3f dir, f32 fov, v3s16 offset, video::SColor light_color) { + v3s16 previous_camera_offset = m_camera_offset; v3s16 previous_node = floatToInt(m_camera_position, BS) + m_camera_offset; v3s16 previous_block = getContainerPos(previous_node, MAP_BLOCKSIZE); @@ -214,6 +225,13 @@ void ClientMap::updateCamera(v3f pos, v3f dir, f32 fov, v3s16 offset, video::SCo // reorder transparent meshes when camera crosses node boundary if (previous_node != current_node) m_needs_update_transparent_meshes = true; + + // drop merged mesh cache when camera offset changes + if (previous_camera_offset != m_camera_offset) { + for (auto &it : m_dynamic_buffers) + it.second.drop(); + m_dynamic_buffers.clear(); + } } MapSector * ClientMap::emergeSector(v2s16 p2d) @@ -788,27 +806,24 @@ void MeshBufListMaps::addFromBlock(v3s16 block_pos, MapBlockMesh *block_mesh, * @param src buffer list * @param dst draw order * @param get_world_pos returns translation for a buffer - * @param buffer_trash output container for temporary mesh buffers + * @param dynamic_buffers cache structure for merged buffers * @return number of buffers that were merged */ -template +template static u32 transformBuffersToDrawOrder( const MeshBufListMaps::MeshBufList &src, DrawDescriptorList &draw_order, - F get_world_pos, C &buffer_trash) + F get_world_pos, CachedMeshBuffers &dynamic_buffers) { /** * This is a tradeoff between time spent merging buffers and time spent * due to excess drawcalls. * Testing has shown that the ideal value is in the low hundreds, as extra - * CPU work quickly eats up the benefits. + * CPU work quickly eats up the benefits (though alleviated by a cache). * In MTG landscape scenes this was found to save around 20-40% of drawcalls. * * NOTE: if you attempt to test this with quicktune, it won't give you valid * results since HW buffers stick around and Irrlicht handles large amounts * inefficiently. - * - * TODO: as a next step we should cache merged meshes, so they do not need - * to be re-built *and* can be kept in GPU memory. */ const u32 target_min_vertices = g_settings->getU32("mesh_buffer_min_vertices"); @@ -826,23 +841,8 @@ static u32 transformBuffersToDrawOrder( } } - scene::SMeshBuffer *tmp = nullptr; - const auto &finish_buf = [&] () { - if (tmp) { - draw_order.emplace_back(v3f(0), tmp); - total_vtx = subtract_or_zero(total_vtx, tmp->getVertexCount()); - total_idx = subtract_or_zero(total_idx, tmp->getIndexCount()); - - // Upload buffer here explicitly to give the driver some - // extra time to get it ready before drawing. - tmp->setHardwareMappingHint(scene::EHM_STREAM); - driver->updateHardwareBuffer(tmp->getVertexBuffer()); - driver->updateHardwareBuffer(tmp->getIndexBuffer()); - } - tmp = nullptr; - }; - // iterate in reverse to get closest blocks first + std::vector> to_merge; for (auto it = src.rbegin(); it != src.rend(); ++it) { v3f translate = get_world_pos(it->first); auto *buf = it->second; @@ -850,25 +850,83 @@ static u32 transformBuffersToDrawOrder( draw_order.emplace_back(translate, buf); continue; } - - bool new_buffer = false; - if (!tmp) - new_buffer = true; - else if (tmp->getVertexCount() + buf->getVertexCount() > U16_MAX) - new_buffer = true; - if (new_buffer) { - finish_buf(); - tmp = new scene::SMeshBuffer(); - buffer_trash.push_back(tmp); - assert(tmp->getPrimitiveType() == buf->getPrimitiveType()); - tmp->Material = buf->getMaterial(); - // preallocate - tmp->Vertices->Data.reserve(total_vtx); - tmp->Indices->Data.reserve(total_idx); - } - appendToMeshBuffer(tmp, buf, translate); + to_merge.emplace_back(translate, buf); + } + + /* + * Tracking buffers, their contents and modifications would be quite complicated + * so we opt for something simple here: We identify buffers by their location + * in memory. + * This imposes the following assumptions: + * - buffers don't move in memory + * - vertex and index data is immutable + * - we know when to invalidate (invalidateMapBlockMesh does this) + */ + std::sort(to_merge.begin(), to_merge.end(), [] (const auto &l, const auto &r) { + return static_cast(l.second) < static_cast(r.second); + }); + // cache key is a string of sorted raw pointers + std::string key; + key.reserve(sizeof(void*) * to_merge.size()); + for (auto &it : to_merge) + key.append(reinterpret_cast(&it.second), sizeof(void*)); + + // try to take from cache + auto it2 = dynamic_buffers.find(key); + if (it2 != dynamic_buffers.end()) { + g_profiler->avg("CM::transformBuffersToDO: cache hit rate", 1); + const auto &use_mat = to_merge.front().second->getMaterial(); + assert(!it2->second.buf.empty()); + for (auto *buf : it2->second.buf) { + // material is not part of the cache key, so make sure it still matches + buf->getMaterial() = use_mat; + draw_order.emplace_back(v3f(0), buf); + } + it2->second.age = 0; + } else if (!key.empty()) { + g_profiler->avg("CM::transformBuffersToDO: cache hit rate", 0); + // merge and save to cache + auto &put_buffers = dynamic_buffers[key]; + scene::SMeshBuffer *tmp = nullptr; + const auto &finish_buf = [&] () { + if (tmp) { + draw_order.emplace_back(v3f(0), tmp); + total_vtx = subtract_or_zero(total_vtx, tmp->getVertexCount()); + total_idx = subtract_or_zero(total_idx, tmp->getIndexCount()); + + // Upload buffer here explicitly to give the driver some + // extra time to get it ready before drawing. + tmp->setHardwareMappingHint(scene::EHM_STREAM); + driver->updateHardwareBuffer(tmp->getVertexBuffer()); + driver->updateHardwareBuffer(tmp->getIndexBuffer()); + } + tmp = nullptr; + }; + + for (auto &it : to_merge) { + v3f translate = it.first; + auto *buf = it.second; + + bool new_buffer = false; + if (!tmp) + new_buffer = true; + else if (tmp->getVertexCount() + buf->getVertexCount() > U16_MAX) + new_buffer = true; + if (new_buffer) { + finish_buf(); + tmp = new scene::SMeshBuffer(); + put_buffers.buf.push_back(tmp); + assert(tmp->getPrimitiveType() == buf->getPrimitiveType()); + tmp->Material = buf->getMaterial(); + // preallocate approximately + tmp->Vertices->Data.reserve(MYMIN(U16_MAX, total_vtx)); + tmp->Indices->Data.reserve(total_idx); + } + appendToMeshBuffer(tmp, buf, translate); + } + finish_buf(); + assert(!put_buffers.buf.empty()); } - finish_buf(); // first call needs to set the material if (draw_order.size() > draw_order_pre) @@ -921,7 +979,6 @@ void ClientMap::renderMap(video::IVideoDriver* driver, s32 pass) TimeTaker tt_collect(""); MeshBufListMaps grouped_buffers; - std::vector buffer_trash; DrawDescriptorList draw_order; auto is_frustum_culled = m_client->getCamera()->getFrustumCuller(); @@ -979,7 +1036,7 @@ void ClientMap::renderMap(video::IVideoDriver* driver, s32 pass) for (auto &map : grouped_buffers.maps) { for (auto &list : map) { merged_count += transformBuffersToDrawOrder( - list.second, draw_order, get_block_wpos, buffer_trash); + list.second, draw_order, get_block_wpos, m_dynamic_buffers); } } @@ -1036,6 +1093,20 @@ void ClientMap::renderMap(video::IVideoDriver* driver, s32 pass) if (pass == scene::ESNRP_SOLID) { g_profiler->avg("renderMap(): animated meshes [#]", mesh_animate_count); g_profiler->avg(prefix + "merged buffers [#]", merged_count); + + u32 cached_count = 0; + for (auto it = m_dynamic_buffers.begin(); it != m_dynamic_buffers.end(); ) { + // prune aggressively since every new/changed block or camera + // rotation can have big effects + if (++it->second.age > 1) { + it->second.drop(); + it = m_dynamic_buffers.erase(it); + } else { + cached_count += it->second.buf.size(); + it++; + } + } + g_profiler->avg(prefix + "merged buffers in cache [#]", cached_count); } if (pass == scene::ESNRP_TRANSPARENT) { @@ -1045,9 +1116,51 @@ void ClientMap::renderMap(video::IVideoDriver* driver, s32 pass) g_profiler->avg(prefix + "vertices drawn [#]", vertex_count); g_profiler->avg(prefix + "drawcalls [#]", drawcall_count); g_profiler->avg(prefix + "material swaps [#]", material_swaps); +} - for (auto &x : buffer_trash) - x->drop(); +void ClientMap::invalidateMapBlockMesh(MapBlockMesh *mesh) +{ + // find all buffers for this block + MeshBufListMaps tmp; + tmp.addFromBlock(v3s16(), mesh, getSceneManager()->getVideoDriver()); + + std::vector to_delete; + void *maxp = 0; + for (auto &it : tmp.maps) { + for (auto &it2 : it) { + for (auto &it3 : it2.second) { + void *const p = it3.second; // explicit downcast + to_delete.push_back(p); + maxp = std::max(maxp, p); + } + } + } + if (to_delete.empty()) + return; + + // we know which buffers were used to produce a merged buffer + // so go through the cache and drop any entries that match + const auto &match_any = [&] (const std::string &key) { + assert(key.size() % sizeof(void*) == 0); + void *v; + for (size_t off = 0; off < key.size(); off += sizeof(void*)) { + // no alignment guarantee so *(void**)&key[off] is not allowed! + memcpy(&v, &key[off], sizeof(void*)); + if (v > maxp) // early exit, since it's sorted + break; + if (CONTAINS(to_delete, v)) + return true; + } + return false; + }; + for (auto it = m_dynamic_buffers.begin(); it != m_dynamic_buffers.end(); ) { + if (match_any(it->first)) { + it->second.drop(); + it = m_dynamic_buffers.erase(it); + } else { + it++; + } + } } static bool getVisibleBrightness(Map *map, const v3f &p0, v3f dir, float step, @@ -1263,7 +1376,6 @@ void ClientMap::renderMapShadows(video::IVideoDriver *driver, }; MeshBufListMaps grouped_buffers; - std::vector buffer_trash; DrawDescriptorList draw_order; std::size_t count = 0; @@ -1308,7 +1420,7 @@ void ClientMap::renderMapShadows(video::IVideoDriver *driver, for (auto &map : grouped_buffers.maps) { for (auto &list : map) { transformBuffersToDrawOrder( - list.second, draw_order, get_block_wpos, buffer_trash); + list.second, draw_order, get_block_wpos, m_dynamic_buffers); } } @@ -1373,9 +1485,6 @@ void ClientMap::renderMapShadows(video::IVideoDriver *driver, g_profiler->avg(prefix + "vertices drawn [#]", vertex_count); g_profiler->avg(prefix + "drawcalls [#]", drawcall_count); g_profiler->avg(prefix + "material swaps [#]", material_swaps); - - for (auto &x : buffer_trash) - x->drop(); } /* diff --git a/src/client/clientmap.h b/src/client/clientmap.h index 760a1a4db..daa9d80f1 100644 --- a/src/client/clientmap.h +++ b/src/client/clientmap.h @@ -36,6 +36,16 @@ namespace irr::video class IVideoDriver; } +struct CachedMeshBuffer { + std::vector buf; + u8 age = 0; + + void drop(); +}; + +using CachedMeshBuffers = std::unordered_map; + + /* ClientMap @@ -95,6 +105,8 @@ public: void renderPostFx(CameraMode cam_mode); + void invalidateMapBlockMesh(MapBlockMesh *mesh); + // For debug printing void PrintInfo(std::ostream &out) override; @@ -151,6 +163,7 @@ private: std::vector m_keeplist; std::map m_drawlist_shadow; bool m_needs_update_drawlist; + CachedMeshBuffers m_dynamic_buffers; bool m_cache_trilinear_filter; bool m_cache_bilinear_filter; diff --git a/src/client/clientmedia.cpp b/src/client/clientmedia.cpp index 2ee0d747b..407b1412a 100644 --- a/src/client/clientmedia.cpp +++ b/src/client/clientmedia.cpp @@ -154,7 +154,7 @@ void ClientMediaDownloader::step(Client *client) startRemoteMediaTransfers(); // Did all remote transfers end and no new ones can be started? - // If so, request still missing files from the minetest server + // If so, request still missing files from the server // (Or report that we have all files.) if (m_httpfetch_active == 0) { if (m_uncached_received_count < m_uncached_count) { @@ -168,6 +168,15 @@ void ClientMediaDownloader::step(Client *client) } } +std::string ClientMediaDownloader::makeReferer(Client *client) +{ + std::string addr = client->getAddressName(); + if (addr.find(':') != std::string::npos) + addr = '[' + addr + ']'; + return std::string("minetest://") + addr + ':' + + std::to_string(client->getServerAddress().getPort()); +} + void ClientMediaDownloader::initialStep(Client *client) { std::wstring loading_text = wstrgettext("Media..."); @@ -227,9 +236,14 @@ void ClientMediaDownloader::initialStep(Client *client) m_httpfetch_active_limit = g_settings->getS32("curl_parallel_limit"); m_httpfetch_active_limit = MYMAX(m_httpfetch_active_limit, 84); - // Write a list of hashes that we need. This will be POSTed - // to the server using Content-Type: application/octet-stream - std::string required_hash_set = serializeRequiredHashSet(); + // Note: we used to use a POST request that contained the set of + // hashes we needed here, but this use was discontinued in 5.12.0 as + // it's not CDN/static hosting-friendly. + // Even with a large repository of media (think 60k files), you would be + // looking at only 1.1 MB for the index file. + // If it becomes a problem we can always still introduce a v2 of the + // hash set format and truncate the hashes to 6 bytes -- at the cost of + // a false-positive rate of 2^-48 -- which is 70% less space. // minor fixme: this loop ignores m_httpfetch_active_limit @@ -251,19 +265,8 @@ void ClientMediaDownloader::initialStep(Client *client) remote->baseurl + MTHASHSET_FILE_NAME; fetch_request.caller = m_httpfetch_caller; fetch_request.request_id = m_httpfetch_next_id; // == i - fetch_request.method = HTTP_POST; - fetch_request.raw_data = required_hash_set; fetch_request.extra_headers.emplace_back( - "Content-Type: application/octet-stream"); - - // Encapsulate possible IPv6 plain address in [] - std::string addr = client->getAddressName(); - if (addr.find(':', 0) != std::string::npos) - addr = '[' + addr + ']'; - fetch_request.extra_headers.emplace_back( - std::string("Referer: minetest://") + - addr + ":" + - std::to_string(client->getServerAddress().getPort())); + "Referer: " + makeReferer(client)); httpfetch_async(fetch_request); @@ -585,25 +588,6 @@ bool IClientMediaDownloader::checkAndLoad( 1 - Initial version */ -std::string ClientMediaDownloader::serializeRequiredHashSet() -{ - std::ostringstream os(std::ios::binary); - - writeU32(os, MTHASHSET_FILE_SIGNATURE); // signature - writeU16(os, 1); // version - - // Write list of hashes of files that have not been - // received (found in cache) yet - for (const auto &it : m_files) { - if (!it.second->received) { - FATAL_ERROR_IF(it.second->sha1.size() != 20, "Invalid SHA1 size"); - os << it.second->sha1; - } - } - - return os.str(); -} - void ClientMediaDownloader::deSerializeHashSet(const std::string &data, std::set &result) { diff --git a/src/client/clientmedia.h b/src/client/clientmedia.h index 40801321f..c4054051b 100644 --- a/src/client/clientmedia.h +++ b/src/client/clientmedia.h @@ -119,6 +119,8 @@ protected: bool loadMedia(Client *client, const std::string &data, const std::string &name) override; + static std::string makeReferer(Client *client); + private: struct FileStatus { bool received; @@ -142,7 +144,6 @@ private: static void deSerializeHashSet(const std::string &data, std::set &result); - std::string serializeRequiredHashSet(); // Maps filename to file status std::map m_files; diff --git a/src/client/clientobject.h b/src/client/clientobject.h index 95f926928..4002a8181 100644 --- a/src/client/clientobject.h +++ b/src/client/clientobject.h @@ -75,8 +75,8 @@ public: Client *client, ClientEnvironment *env); // If returns true, punch will not be sent to the server - virtual bool directReportPunch(v3f dir, const ItemStack *punchitem = nullptr, - float time_from_last_punch = 1000000) { return false; } + virtual bool directReportPunch(v3f dir, const ItemStack *punchitem, + const ItemStack *hand_item, float time_from_last_punch = 1000000) { return false; } protected: // Used for creating objects based on type diff --git a/src/client/clouds.cpp b/src/client/clouds.cpp index b65970f95..b7f6a9a64 100644 --- a/src/client/clouds.cpp +++ b/src/client/clouds.cpp @@ -52,6 +52,13 @@ Clouds::Clouds(scene::ISceneManager* mgr, IShaderSource *ssrc, updateBox(); + // Neither EAC_BOX (the default) nor EAC_FRUSTUM_BOX will correctly cull + // the clouds. + // And yes, the bounding box is correct. You can check using the #if 0'd + // code in render() and see for yourself. + // So I give up and let's disable culling. + setAutomaticCulling(scene::EAC_OFF); + m_meshbuffer.reset(new scene::SMeshBuffer()); m_meshbuffer->setHardwareMappingHint(scene::EHM_DYNAMIC); } @@ -366,6 +373,19 @@ void Clouds::render() if (SceneManager->getSceneNodeRenderPass() != scene::ESNRP_TRANSPARENT) return; +#if 0 + { + video::SMaterial tmp; + tmp.Thickness = 1.f; + driver->setTransform(video::ETS_WORLD, core::IdentityMatrix); + driver->setMaterial(tmp); + aabb3f tmpbox = m_box; + tmpbox.MinEdge.X = tmpbox.MinEdge.Z = -1000 * BS; + tmpbox.MaxEdge.X = tmpbox.MaxEdge.Z = 1000 * BS; + driver->draw3DBox(tmpbox, video::SColor(255, 255, 0x4d, 0)); + } +#endif + updateMesh(); // Update position @@ -425,14 +445,14 @@ void Clouds::update(const v3f &camera_p, const video::SColorf &color_diffuse) // is the camera inside the cloud mesh? m_camera_pos = camera_p; - m_camera_inside_cloud = false; // default + m_camera_inside_cloud = false; if (is3D()) { float camera_height = camera_p.Y - BS * m_camera_offset.Y; if (camera_height >= m_box.MinEdge.Y && camera_height <= m_box.MaxEdge.Y) { v2f camera_in_noise; - camera_in_noise.X = floor((camera_p.X - m_origin.X) / cloud_size + 0.5); - camera_in_noise.Y = floor((camera_p.Z - m_origin.Y) / cloud_size + 0.5); + camera_in_noise.X = floorf((camera_p.X - m_origin.X) / cloud_size + 0.5f); + camera_in_noise.Y = floorf((camera_p.Z - m_origin.Y) / cloud_size + 0.5f); bool filled = gridFilled(camera_in_noise.X, camera_in_noise.Y); m_camera_inside_cloud = filled; } @@ -454,7 +474,7 @@ void Clouds::readSettings() bool Clouds::gridFilled(int x, int y) const { float cloud_size_noise = cloud_size / (BS * 200.f); - float noise = noise2d_perlin( + float noise = noise2d_fractal( (float)x * cloud_size_noise, (float)y * cloud_size_noise, m_seed, 3, 0.5); diff --git a/src/client/clouds.h b/src/client/clouds.h index d081a4853..ea5c18394 100644 --- a/src/client/clouds.h +++ b/src/client/clouds.h @@ -134,8 +134,11 @@ private: { float height_bs = m_params.height * BS; float thickness_bs = m_params.thickness * BS; - m_box = aabb3f(-BS * 1000000.0f, height_bs, -BS * 1000000.0f, - BS * 1000000.0f, height_bs + thickness_bs, BS * 1000000.0f); + float far_bs = 1000000.0f * BS; + m_box = aabb3f(-far_bs, height_bs, -far_bs, + far_bs, height_bs + thickness_bs, far_bs); + m_box.MinEdge -= v3f::from(m_camera_offset) * BS; + m_box.MaxEdge -= v3f::from(m_camera_offset) * BS; } void updateMesh(); diff --git a/src/client/content_cao.cpp b/src/client/content_cao.cpp index 5307047c4..624ed4b5b 100644 --- a/src/client/content_cao.cpp +++ b/src/client/content_cao.cpp @@ -12,6 +12,8 @@ #include "client/sound.h" #include "client/texturesource.h" #include "client/mapblock_mesh.h" +#include "client/content_mapblock.h" +#include "client/meshgen/collector.h" #include "util/basic_macros.h" #include "util/numeric.h" #include "util/serialize.h" @@ -33,6 +35,9 @@ #include "client/shader.h" #include "client/minimap.h" #include +#include +#include +#include class Settings; struct ToolCapabilities; @@ -177,137 +182,53 @@ static void setColorParam(scene::ISceneNode *node, video::SColor color) node->getMaterial(i).ColorParam = color; } -/* - TestCAO -*/ - -class TestCAO : public ClientActiveObject +static scene::SMesh *generateNodeMesh(Client *client, MapNode n, + std::vector &animation) { -public: - TestCAO(Client *client, ClientEnvironment *env); - virtual ~TestCAO() = default; + auto *ndef = client->ndef(); + auto *shdsrc = client->getShaderSource(); - ActiveObjectType getType() const + MeshCollector collector(v3f(0), v3f()); { - return ACTIVEOBJECT_TYPE_TEST; + MeshMakeData mmd(ndef, 1, MeshGrid{1}); + n.setParam1(0xff); + mmd.fillSingleNode(n); + MapblockMeshGenerator(&mmd, &collector).generate(); } - static std::unique_ptr create(Client *client, ClientEnvironment *env); + auto mesh = make_irr(); + animation.clear(); + for (int layer = 0; layer < MAX_TILE_LAYERS; layer++) { + for (PreMeshBuffer &p : collector.prebuffers[layer]) { + // reset the pre-computed light data stored in the vertex color, + // since we do that ourselves via updateLight(). + for (auto &v : p.vertices) + v.Color.set(0xFFFFFFFF); + // but still apply the tile color + p.applyTileColor(); - void addToScene(ITextureSource *tsrc, scene::ISceneManager *smgr); - void removeFromScene(bool permanent); - void updateLight(u32 day_night_ratio); - void updateNodePos(); + if (p.layer.material_flags & MATERIAL_FLAG_ANIMATION) { + const FrameSpec &frame = (*p.layer.frames)[0]; + p.layer.texture = frame.texture; - void step(float dtime, ClientEnvironment *env); + animation.emplace_back(MeshAnimationInfo{mesh->getMeshBufferCount(), 0, p.layer}); + } - void processMessage(const std::string &data); + auto buf = make_irr(); + buf->append(&p.vertices[0], p.vertices.size(), + &p.indices[0], p.indices.size()); - bool getCollisionBox(aabb3f *toset) const { return false; } -private: - scene::IMeshSceneNode *m_node; - v3f m_position; -}; + // Set up material + auto &mat = buf->Material; + u32 shader_id = shdsrc->getShader("object_shader", p.layer.material_type, NDT_NORMAL); + mat.MaterialType = shdsrc->getShaderInfo(shader_id).material; + p.layer.applyMaterialOptions(mat, layer); -// Prototype -static TestCAO proto_TestCAO(nullptr, nullptr); - -TestCAO::TestCAO(Client *client, ClientEnvironment *env): - ClientActiveObject(0, client, env), - m_node(NULL), - m_position(v3f(0,10*BS,0)) -{ - if (!client) - ClientActiveObject::registerType(getType(), create); -} - -std::unique_ptr TestCAO::create(Client *client, ClientEnvironment *env) -{ - return std::make_unique(client, env); -} - -void TestCAO::addToScene(ITextureSource *tsrc, scene::ISceneManager *smgr) -{ - if(m_node != NULL) - return; - - //video::IVideoDriver* driver = smgr->getVideoDriver(); - - scene::SMesh *mesh = new scene::SMesh(); - scene::IMeshBuffer *buf = new scene::SMeshBuffer(); - video::SColor c(255,255,255,255); - video::S3DVertex vertices[4] = - { - video::S3DVertex(-BS/2,-BS/4,0, 0,0,0, c, 0,1), - video::S3DVertex(BS/2,-BS/4,0, 0,0,0, c, 1,1), - video::S3DVertex(BS/2,BS/4,0, 0,0,0, c, 1,0), - video::S3DVertex(-BS/2,BS/4,0, 0,0,0, c, 0,0), - }; - u16 indices[] = {0,1,2,2,3,0}; - buf->append(vertices, 4, indices, 6); - // Set material - buf->getMaterial().BackfaceCulling = false; - buf->getMaterial().TextureLayers[0].Texture = tsrc->getTextureForMesh("rat.png"); - buf->getMaterial().TextureLayers[0].MinFilter = video::ETMINF_NEAREST_MIPMAP_NEAREST; - buf->getMaterial().TextureLayers[0].MagFilter = video::ETMAGF_NEAREST; - buf->getMaterial().FogEnable = true; - buf->getMaterial().MaterialType = video::EMT_TRANSPARENT_ALPHA_CHANNEL; - // Add to mesh - mesh->addMeshBuffer(buf); - buf->drop(); - m_node = smgr->addMeshSceneNode(mesh, NULL); - mesh->drop(); - updateNodePos(); -} - -void TestCAO::removeFromScene(bool permanent) -{ - if (!m_node) - return; - - m_node->remove(); - m_node = NULL; -} - -void TestCAO::updateLight(u32 day_night_ratio) -{ -} - -void TestCAO::updateNodePos() -{ - if (!m_node) - return; - - m_node->setPosition(m_position); - //m_node->setRotation(v3f(0, 45, 0)); -} - -void TestCAO::step(float dtime, ClientEnvironment *env) -{ - if(m_node) - { - v3f rot = m_node->getRotation(); - //infostream<<"dtime="<>cmd; - if(cmd == 0) - { - v3f newpos; - is>>newpos.X; - is>>newpos.Y; - is>>newpos.Z; - m_position = newpos; - updateNodePos(); + mesh->addMeshBuffer(buf.get()); + } } + mesh->recalculateBoundingBox(); + return mesh.release(); } /* @@ -569,6 +490,8 @@ void GenericCAO::removeFromScene(bool permanent) m_spritenode = nullptr; } + m_meshnode_animation.clear(); + if (m_matrixnode) { m_matrixnode->remove(); m_matrixnode->drop(); @@ -597,10 +520,12 @@ void GenericCAO::addToScene(ITextureSource *tsrc, scene::ISceneManager *smgr) if (!m_prop.is_visible) return; - infostream << "GenericCAO::addToScene(): " << m_prop.visual << std::endl; - - m_material_type_param = 0.5f; // May cut off alpha < 128 depending on m_material_type + infostream << "GenericCAO::addToScene(): " << + enum_to_string(es_ObjectVisual, m_prop.visual)<< std::endl; + if (m_prop.visual != OBJECTVISUAL_NODE && + m_prop.visual != OBJECTVISUAL_WIELDITEM && + m_prop.visual != OBJECTVISUAL_ITEM) { IShaderSource *shader_source = m_client->getShaderSource(); MaterialType material_type; @@ -614,15 +539,17 @@ void GenericCAO::addToScene(ITextureSource *tsrc, scene::ISceneManager *smgr) u32 shader_id = shader_source->getShader("object_shader", material_type, NDT_NORMAL); m_material_type = shader_source->getShaderInfo(shader_id).material; + } else { + // Not used, so make sure it's not valid + m_material_type = EMT_INVALID; } - auto grabMatrixNode = [this] { - m_matrixnode = m_smgr->addDummyTransformationSceneNode(); - m_matrixnode->grab(); - }; + m_matrixnode = m_smgr->addDummyTransformationSceneNode(); + m_matrixnode->grab(); auto setMaterial = [this] (video::SMaterial &mat) { - mat.MaterialType = m_material_type; + if (m_material_type != EMT_INVALID) + mat.MaterialType = m_material_type; mat.FogEnable = true; mat.forEachTexture([] (auto &tex) { tex.MinFilter = video::ETMINF_NEAREST_MIPMAP_NEAREST; @@ -634,28 +561,8 @@ void GenericCAO::addToScene(ITextureSource *tsrc, scene::ISceneManager *smgr) node->forEachMaterial(setMaterial); }; - if (m_prop.visual == "sprite") { - grabMatrixNode(); - m_spritenode = m_smgr->addBillboardSceneNode( - m_matrixnode, v2f(1, 1), v3f(0,0,0), -1); - m_spritenode->grab(); - video::ITexture *tex = tsrc->getTextureForMesh("no_texture.png"); - m_spritenode->forEachMaterial([tex] (auto &mat) { - mat.setTexture(0, tex); - }); - - setSceneNodeMaterials(m_spritenode); - - m_spritenode->setSize(v2f(m_prop.visual_size.X, - m_prop.visual_size.Y) * BS); - { - const float txs = 1.0 / 1; - const float tys = 1.0 / 1; - setBillboardTextureMatrix(m_spritenode, - txs, tys, 0, 0); - } - } else if (m_prop.visual == "upright_sprite") { - grabMatrixNode(); + switch(m_prop.visual) { + case OBJECTVISUAL_UPRIGHT_SPRITE: { auto mesh = make_irr(); f32 dx = BS * m_prop.visual_size.X / 2; f32 dy = BS * m_prop.visual_size.Y / 2; @@ -696,8 +603,8 @@ void GenericCAO::addToScene(ITextureSource *tsrc, scene::ISceneManager *smgr) mesh->recalculateBoundingBox(); m_meshnode = m_smgr->addMeshSceneNode(mesh.get(), m_matrixnode); m_meshnode->grab(); - } else if (m_prop.visual == "cube") { - grabMatrixNode(); + break; + } case OBJECTVISUAL_CUBE: { scene::IMesh *mesh = createCubeMesh(v3f(BS,BS,BS)); m_meshnode = m_smgr->addMeshSceneNode(mesh, m_matrixnode); m_meshnode->grab(); @@ -710,8 +617,8 @@ void GenericCAO::addToScene(ITextureSource *tsrc, scene::ISceneManager *smgr) m_meshnode->forEachMaterial([this] (auto &mat) { mat.BackfaceCulling = m_prop.backface_culling; }); - } else if (m_prop.visual == "mesh") { - grabMatrixNode(); + break; + } case OBJECTVISUAL_MESH: { scene::IAnimatedMesh *mesh = m_client->getMesh(m_prop.mesh, true); if (mesh) { if (!checkMeshNormals(mesh)) { @@ -737,8 +644,10 @@ void GenericCAO::addToScene(ITextureSource *tsrc, scene::ISceneManager *smgr) }); } else errorstream<<"GenericCAO::addToScene(): Could not load mesh "<setItem(item, m_client, - (m_prop.visual == "wielditem")); + (m_prop.visual == OBJECTVISUAL_WIELDITEM)); m_wield_meshnode->setScale(m_prop.visual_size / 2.0f); - } else { - infostream<<"GenericCAO::addToScene(): \""<addMeshSceneNode(mesh, m_matrixnode); + m_meshnode->setSharedMaterials(true); + m_meshnode->grab(); + mesh->drop(); + + m_meshnode->setScale(m_prop.visual_size); + + setSceneNodeMaterials(m_meshnode); + break; + } default: + m_spritenode = m_smgr->addBillboardSceneNode(m_matrixnode); + m_spritenode->grab(); + + setSceneNodeMaterials(m_spritenode); + + m_spritenode->setSize(v2f(m_prop.visual_size.X, + m_prop.visual_size.Y) * BS); + setBillboardTextureMatrix(m_spritenode, 1, 1, 0, 0); + + // This also serves as fallback for unknown visual types + if (m_prop.visual != OBJECTVISUAL_SPRITE) { + m_spritenode->getMaterial(0).setTexture(0, + tsrc->getTextureForMesh("unknown_object.png")); + } + break; } /* Set VBO hint */ // wieldmesh sets its own hint, no need to handle it if (m_meshnode || m_animated_meshnode) { // sprite uses vertex animation - if (m_meshnode && m_prop.visual != "upright_sprite") + if (m_meshnode && m_prop.visual != OBJECTVISUAL_UPRIGHT_SPRITE) m_meshnode->getMesh()->setHardwareMappingHint(scene::EHM_STATIC); if (m_animated_meshnode) { @@ -786,8 +722,7 @@ void GenericCAO::addToScene(ITextureSource *tsrc, scene::ISceneManager *smgr) updateTextures(m_current_texture_modifier); if (scene::ISceneNode *node = getSceneNode()) { - if (m_matrixnode) - node->setParent(m_matrixnode); + node->setParent(m_matrixnode); if (auto shadow = RenderingEngine::get_shadow_renderer()) shadow->addNodeToShadowList(node); @@ -858,8 +793,7 @@ void GenericCAO::updateLight(u32 day_night_ratio) if (!pos_ok) light_at_pos = LIGHT_SUN; - // Initialize with full alpha, otherwise entity won't be visible - video::SColor light{0xFFFFFFFF}; + video::SColor light; // Encode light into color, adding a small boost // based on the entity glow. @@ -873,9 +807,10 @@ void GenericCAO::updateLight(u32 day_night_ratio) void GenericCAO::setNodeLight(const video::SColor &light_color) { - if (m_prop.visual == "wielditem" || m_prop.visual == "item") { + if (m_prop.visual == OBJECTVISUAL_WIELDITEM || m_prop.visual == OBJECTVISUAL_ITEM) { if (m_wield_meshnode) - m_wield_meshnode->setNodeLightColor(light_color); + m_wield_meshnode->setLightColorAndAnimation(light_color, + m_client->getAnimationTime()); return; } @@ -962,6 +897,7 @@ void GenericCAO::updateNodePos() scene::ISceneNode *node = getSceneNode(); if (node) { + assert(m_matrixnode); v3s16 camera_offset = m_env->getCameraOffset(); v3f pos = pos_translator.val_current - intToFloat(camera_offset, BS); @@ -1150,7 +1086,7 @@ void GenericCAO::step(float dtime, ClientEnvironment *env) m_anim_frame = 0; } - updateTexturePos(); + updateTextureAnim(); if(m_reset_textures_timer >= 0) { @@ -1211,7 +1147,7 @@ static void setMeshBufferTextureCoords(scene::IMeshBuffer *buf, const v2f *uv, u buf->setDirty(scene::EBT_VERTEX); } -void GenericCAO::updateTexturePos() +void GenericCAO::updateTextureAnim() { if(m_spritenode) { @@ -1259,7 +1195,7 @@ void GenericCAO::updateTexturePos() } else if (m_meshnode) { - if (m_prop.visual == "upright_sprite") { + if (m_prop.visual == OBJECTVISUAL_UPRIGHT_SPRITE) { int row = m_tx_basepos.Y; int col = m_tx_basepos.X; @@ -1276,6 +1212,23 @@ void GenericCAO::updateTexturePos() auto mesh = m_meshnode->getMesh(); setMeshBufferTextureCoords(mesh->getMeshBuffer(0), t, 4); setMeshBufferTextureCoords(mesh->getMeshBuffer(1), t, 4); + } else if (m_prop.visual == OBJECTVISUAL_NODE) { + // same calculation as MapBlockMesh::animate() with a global timer + const float time = m_client->getAnimationTime(); + for (auto &it : m_meshnode_animation) { + const TileLayer &tile = it.tile; + int frameno = (int)(time * 1000 / tile.animation_frame_length_ms) + % tile.animation_frame_count; + + if (frameno == it.frame) + continue; + it.frame = frameno; + + auto *buf = m_meshnode->getMesh()->getMeshBuffer(it.i); + + const FrameSpec &frame = (*tile.frames)[frameno]; + buf->getMaterial().setTexture(0, frame.texture); + } } } } @@ -1293,7 +1246,7 @@ void GenericCAO::updateTextures(std::string mod) m_current_texture_modifier = mod; if (m_spritenode) { - if (m_prop.visual == "sprite") { + if (m_prop.visual == OBJECTVISUAL_SPRITE) { std::string texturestring = "no_texture.png"; if (!m_prop.textures.empty()) texturestring = m_prop.textures[0]; @@ -1301,7 +1254,6 @@ void GenericCAO::updateTextures(std::string mod) video::SMaterial &material = m_spritenode->getMaterial(0); material.MaterialType = m_material_type; - material.MaterialTypeParam = m_material_type_param; material.setTexture(0, tsrc->getTextureForMesh(texturestring)); material.forEachTexture([=] (auto &tex) { @@ -1312,7 +1264,7 @@ void GenericCAO::updateTextures(std::string mod) } else if (m_animated_meshnode) { - if (m_prop.visual == "mesh") { + if (m_prop.visual == OBJECTVISUAL_MESH) { for (u32 i = 0; i < m_animated_meshnode->getMaterialCount(); ++i) { const auto texture_idx = m_animated_meshnode->getMesh()->getTextureSlot(i); if (texture_idx >= m_prop.textures.size()) @@ -1330,7 +1282,6 @@ void GenericCAO::updateTextures(std::string mod) // Set material flags and texture video::SMaterial &material = m_animated_meshnode->getMaterial(i); material.MaterialType = m_material_type; - material.MaterialTypeParam = m_material_type_param; material.TextureLayers[0].Texture = texture; material.BackfaceCulling = m_prop.backface_culling; @@ -1350,7 +1301,7 @@ void GenericCAO::updateTextures(std::string mod) } else if (m_meshnode) { - if(m_prop.visual == "cube") + if(m_prop.visual == OBJECTVISUAL_CUBE) { for (u32 i = 0; i < 6; ++i) { @@ -1362,7 +1313,6 @@ void GenericCAO::updateTextures(std::string mod) // Set material flags and texture video::SMaterial &material = m_meshnode->getMaterial(i); material.MaterialType = m_material_type; - material.MaterialTypeParam = m_material_type_param; material.setTexture(0, tsrc->getTextureForMesh(texturestring)); material.getTextureMatrix(0).makeIdentity(); @@ -1371,7 +1321,7 @@ void GenericCAO::updateTextures(std::string mod) use_anisotropic_filter); }); } - } else if (m_prop.visual == "upright_sprite") { + } else if (m_prop.visual == OBJECTVISUAL_UPRIGHT_SPRITE) { scene::IMesh *mesh = m_meshnode->getMesh(); { std::string tname = "no_texture.png"; @@ -1404,8 +1354,8 @@ void GenericCAO::updateTextures(std::string mod) }); } // Set mesh color (only if lighting is disabled) - if (!m_prop.colors.empty() && m_prop.glow < 0) - setMeshColor(mesh, m_prop.colors[0]); + if (m_prop.glow < 0) + setMeshColor(mesh, {255, 255, 255, 255}); } } // Prevent showing the player after changing texture @@ -1459,34 +1409,6 @@ void GenericCAO::updateBones(f32 dtime) bone->setScale(props.getScale(bone->getScale())); } - // search through bones to find mistakenly rotated bones due to bug in Irrlicht - for (u32 i = 0; i < m_animated_meshnode->getJointCount(); ++i) { - scene::IBoneSceneNode *bone = m_animated_meshnode->getJointNode(i); - if (!bone) - continue; - - //If bone is manually positioned there is no need to perform the bug check - bool skip = false; - for (auto &it : m_bone_override) { - if (it.first == bone->getName()) { - skip = true; - break; - } - } - if (skip) - continue; - - // Workaround for Irrlicht bug - // We check each bone to see if it has been rotated ~180deg from its expected position due to a bug in Irricht - // when using EJUOR_CONTROL joint control. If the bug is detected we update the bone to the proper position - // and update the bones transformation. - v3f bone_rot = bone->getRelativeTransformation().getRotationDegrees(); - float offset = fabsf(bone_rot.X - bone->getRotation().X); - if (offset > 179.9f && offset < 180.1f) { - bone->setRotation(bone_rot); - bone->updateAbsolutePosition(); - } - } // The following is needed for set_bone_pos to propagate to // attached objects correctly. // Irrlicht ought to do this, but doesn't when using EJUOR_CONTROL. @@ -1557,19 +1479,20 @@ bool GenericCAO::visualExpiryRequired(const ObjectProperties &new_) const /* Visuals do not need to be expired for: * - nametag props: handled by updateNametag() * - textures: handled by updateTextures() - * - sprite props: handled by updateTexturePos() + * - sprite props: handled by updateTextureAnim() * - glow: handled by updateLight() * - any other properties that do not change appearance */ bool uses_legacy_texture = new_.wield_item.empty() && - (new_.visual == "wielditem" || new_.visual == "item"); + (new_.visual == OBJECTVISUAL_WIELDITEM || new_.visual == OBJECTVISUAL_ITEM); // Ordered to compare primitive types before std::vectors return old.backface_culling != new_.backface_culling || old.is_visible != new_.is_visible || - old.mesh != new_.mesh || old.shaded != new_.shaded || old.use_texture_alpha != new_.use_texture_alpha || + old.node != new_.node || + old.mesh != new_.mesh || old.visual != new_.visual || old.visual_size != new_.visual_size || old.wield_item != new_.wield_item || @@ -1680,7 +1603,7 @@ void GenericCAO::processMessage(const std::string &data) m_anim_framelength = framelength; m_tx_select_horiz_by_yawpitch = select_horiz_by_yawpitch; - updateTexturePos(); + updateTextureAnim(); } else if (cmd == AO_CMD_SET_PHYSICS_OVERRIDE) { float override_speed = readF32(is); float override_jump = readF32(is); @@ -1889,11 +1812,11 @@ void GenericCAO::processMessage(const std::string &data) /* \pre punchitem != NULL */ bool GenericCAO::directReportPunch(v3f dir, const ItemStack *punchitem, - float time_from_last_punch) + const ItemStack *hand_item, float time_from_last_punch) { assert(punchitem); // pre-condition const ToolCapabilities *toolcap = - &punchitem->getToolCapabilities(m_client->idef()); + &punchitem->getToolCapabilities(m_client->idef(), hand_item); PunchDamageResult result = getPunchDamage( m_armor_groups, toolcap, @@ -1954,7 +1877,7 @@ void GenericCAO::updateMeshCulling() if (!node) return; - if (m_prop.visual == "upright_sprite") { + if (m_prop.visual == OBJECTVISUAL_UPRIGHT_SPRITE) { // upright sprite has no backface culling node->forEachMaterial([=] (auto &mat) { mat.FrontfaceCulling = hidden; diff --git a/src/client/content_cao.h b/src/client/content_cao.h index a6b9beeab..9762684f6 100644 --- a/src/client/content_cao.h +++ b/src/client/content_cao.h @@ -12,6 +12,7 @@ #include "clientobject.h" #include "constants.h" #include "itemgroup.h" +#include "client/tile.h" #include #include #include @@ -27,7 +28,7 @@ struct Nametag; struct MinimapMarker; /* - SmoothTranslator + SmoothTranslator and other helpers */ template @@ -60,9 +61,21 @@ struct SmoothTranslatorWrappedv3f : SmoothTranslator void translate(f32 dtime); }; +struct MeshAnimationInfo { + u32 i; /// index of mesh buffer + int frame; /// last animation frame + TileLayer tile; +}; + +/* + GenericCAO +*/ + class GenericCAO : public ClientActiveObject { private: + static constexpr auto EMT_INVALID = video::EMT_FORCE_32BIT; + // Only set at initialization std::string m_name = ""; bool m_is_player = false; @@ -73,6 +86,8 @@ private: scene::ISceneManager *m_smgr = nullptr; Client *m_client = nullptr; aabb3f m_selection_box = aabb3f(-BS/3.,-BS/3.,-BS/3., BS/3.,BS/3.,BS/3.); + + // Visuals scene::IMeshSceneNode *m_meshnode = nullptr; scene::IAnimatedMeshSceneNode *m_animated_meshnode = nullptr; WieldMeshSceneNode *m_wield_meshnode = nullptr; @@ -80,6 +95,15 @@ private: scene::IDummyTransformationSceneNode *m_matrixnode = nullptr; Nametag *m_nametag = nullptr; MinimapMarker *m_marker = nullptr; + bool m_visuals_expired = false; + video::SColor m_last_light = video::SColor(0xFFFFFFFF); + bool m_is_visible = false; + std::vector m_meshnode_animation; + + // Material + video::E_MATERIAL_TYPE m_material_type = EMT_INVALID; + + // Movement v3f m_position = v3f(0.0f, 10.0f * BS, 0); v3f m_velocity; v3f m_acceleration; @@ -87,18 +111,25 @@ private: u16 m_hp = 1; SmoothTranslator pos_translator; SmoothTranslatorWrappedv3f rot_translator; - // Spritesheet/animation stuff + + // Spritesheet stuff v2f m_tx_size = v2f(1,1); v2s16 m_tx_basepos; bool m_initial_tx_basepos_set = false; bool m_tx_select_horiz_by_yawpitch = false; + bool m_animation_loop = true; v2f m_animation_range; float m_animation_speed = 15.0f; float m_animation_blend = 0.0f; - bool m_animation_loop = true; + int m_anim_frame = 0; + int m_anim_num_frames = 1; + float m_anim_framelength = 0.2f; + float m_anim_timer = 0.0f; + // stores position and rotation for each bone name BoneOverrideMap m_bone_override; + // Attachments object_t m_attachment_parent_id = 0; std::unordered_set m_attachment_child_ids; std::string m_attachment_bone = ""; @@ -107,23 +138,13 @@ private: bool m_attached_to_local = false; bool m_force_visible = false; - int m_anim_frame = 0; - int m_anim_num_frames = 1; - float m_anim_framelength = 0.2f; - float m_anim_timer = 0.0f; ItemGroupList m_armor_groups; float m_reset_textures_timer = -1.0f; // stores texture modifier before punch update std::string m_previous_texture_modifier = ""; // last applied texture modifier std::string m_current_texture_modifier = ""; - bool m_visuals_expired = false; float m_step_distance_counter = 0.0f; - video::SColor m_last_light = video::SColor(0xFFFFFFFF); - bool m_is_visible = false; - // Material - video::E_MATERIAL_TYPE m_material_type; - f32 m_material_type_param; bool visualExpiryRequired(const ObjectProperties &newprops) const; @@ -255,7 +276,7 @@ public: void step(float dtime, ClientEnvironment *env) override; - void updateTexturePos(); + void updateTextureAnim(); // ffs this HAS TO BE a string copy! See #5739 if you think otherwise // Reason: updateTextures(m_previous_texture_modifier); @@ -269,8 +290,8 @@ public: void processMessage(const std::string &data) override; - bool directReportPunch(v3f dir, const ItemStack *punchitem=NULL, - float time_from_last_punch=1000000) override; + bool directReportPunch(v3f dir, const ItemStack *punchitem, + const ItemStack *hand_item, float time_from_last_punch=1000000) override; std::string debugInfoText() override; diff --git a/src/client/content_cso.cpp b/src/client/content_cso.cpp index ac455d9eb..ce3f91527 100644 --- a/src/client/content_cso.cpp +++ b/src/client/content_cso.cpp @@ -39,7 +39,7 @@ public: MapNode n = env->getMap().getNode(floatToInt(pos, BS), &pos_ok); light = pos_ok ? decode_light(n.getLightBlend(env->getDayNightRatio(), env->getGameDef()->ndef()->getLightingFlags(n))) - : 64; + : 64; video::SColor color(255,light,light,light); m_spritenode->setColor(color); } diff --git a/src/client/content_mapblock.cpp b/src/client/content_mapblock.cpp index d8f1ff3b6..f5b528287 100644 --- a/src/client/content_mapblock.cpp +++ b/src/client/content_mapblock.cpp @@ -17,6 +17,8 @@ #include "client/renderingengine.h" #include "client.h" #include "noise.h" +#include +#include // Distance of light extrapolation (for oversized nodes) // After this distance, it gives up and considers light level constant @@ -101,7 +103,7 @@ void MapblockMeshGenerator::getSpecialTile(int index, TileSpec *tile_ret, bool a for (auto &layernum : tile_ret->layers) { TileLayer *layer = &layernum; - if (layer->texture_id == 0) + if (layer->empty()) continue; top_layer = layer; if (!layer->has_color) @@ -119,7 +121,7 @@ void MapblockMeshGenerator::drawQuad(const TileSpec &tile, v3f *coords, const v3 v2f(1.0, vertical_tiling), v2f(0.0, vertical_tiling)}; video::S3DVertex vertices[4]; bool shade_face = !cur_node.f->light_source && (normal != v3s16(0, 0, 0)); - v3f normal2(normal.X, normal.Y, normal.Z); + v3f normal2 = v3f::from(normal); for (int j = 0; j < 4; j++) { vertices[j].Pos = coords[j] + cur_node.origin; vertices[j].Normal = normal2; diff --git a/src/client/event_manager.h b/src/client/event_manager.h index 35b36adce..1fee6781c 100644 --- a/src/client/event_manager.h +++ b/src/client/event_manager.h @@ -33,7 +33,7 @@ public: void put(MtEvent *e) override { - std::map::iterator i = m_dest.find(e->getType()); + auto i = m_dest.find(e->getType()); if (i != m_dest.end()) { std::list &funcs = i->second.funcs; for (FuncSpec &func : funcs) { @@ -44,7 +44,7 @@ public: } void reg(MtEvent::Type type, event_receive_func f, void *data) override { - std::map::iterator i = m_dest.find(type); + auto i = m_dest.find(type); if (i != m_dest.end()) { i->second.funcs.emplace_back(f, data); } else { diff --git a/src/client/fontengine.cpp b/src/client/fontengine.cpp index 89214ef7c..ad1ae2eb2 100644 --- a/src/client/fontengine.cpp +++ b/src/client/fontengine.cpp @@ -3,25 +3,24 @@ // Copyright (C) 2010-2014 sapier #include "fontengine.h" -#include + #include "client/renderingengine.h" -#include "config.h" -#include "porting.h" -#include "filesys.h" -#include "gettext.h" #include "settings.h" #include "irrlicht_changes/CGUITTFont.h" #include "util/numeric.h" // rangelim #include #include +#include +#include +#include + /** reference to access font engine, has to be initialized by main */ FontEngine *g_fontengine = nullptr; -/** callback to be used on change of font size setting */ -static void font_setting_changed(const std::string &name, void *userdata) +void FontEngine::fontSettingChanged(const std::string &name, void *userdata) { - static_cast(userdata)->readSettings(); + ((FontEngine *)userdata)->m_needs_reload = true; } static const char *settings[] = { @@ -35,7 +34,6 @@ static const char *settings[] = { "dpi_change_notifier", "display_density_factor", "gui_scaling", }; -/******************************************************************************/ FontEngine::FontEngine(gui::IGUIEnvironment* env) : m_env(env) { @@ -50,19 +48,17 @@ FontEngine::FontEngine(gui::IGUIEnvironment* env) : readSettings(); for (auto name : settings) - g_settings->registerChangedCallback(name, font_setting_changed, this); + g_settings->registerChangedCallback(name, fontSettingChanged, this); } -/******************************************************************************/ FontEngine::~FontEngine() { g_settings->deregisterAllChangedCallbacks(this); - cleanCache(); + clearCache(); } -/******************************************************************************/ -void FontEngine::cleanCache() +void FontEngine::clearCache() { RecursiveMutexAutoLock l(m_font_mutex); @@ -76,7 +72,6 @@ void FontEngine::cleanCache() } } -/******************************************************************************/ irr::gui::IGUIFont *FontEngine::getFont(FontSpec spec) { return getFont(spec, false); @@ -85,7 +80,7 @@ irr::gui::IGUIFont *FontEngine::getFont(FontSpec spec) irr::gui::IGUIFont *FontEngine::getFont(FontSpec spec, bool may_fail) { if (spec.mode == FM_Unspecified) { - spec.mode = m_currentMode; + spec.mode = s_default_font_mode; } else if (spec.mode == _FM_Fallback) { // Fallback font doesn't support these spec.bold = false; @@ -118,7 +113,6 @@ irr::gui::IGUIFont *FontEngine::getFont(FontSpec spec, bool may_fail) return font; } -/******************************************************************************/ unsigned int FontEngine::getTextHeight(const FontSpec &spec) { gui::IGUIFont *font = getFont(spec); @@ -126,7 +120,6 @@ unsigned int FontEngine::getTextHeight(const FontSpec &spec) return font->getDimension(L"Some unimportant example String").Height; } -/******************************************************************************/ unsigned int FontEngine::getTextWidth(const std::wstring &text, const FontSpec &spec) { gui::IGUIFont *font = getFont(spec); @@ -143,10 +136,9 @@ unsigned int FontEngine::getLineHeight(const FontSpec &spec) + font->getKerning(L'S').Y; } -/******************************************************************************/ unsigned int FontEngine::getDefaultFontSize() { - return m_default_size[m_currentMode]; + return m_default_size[s_default_font_mode]; } unsigned int FontEngine::getFontSize(FontMode mode) @@ -157,7 +149,6 @@ unsigned int FontEngine::getFontSize(FontMode mode) return m_default_size[mode]; } -/******************************************************************************/ void FontEngine::readSettings() { m_default_size[FM_Standard] = rangelim(g_settings->getU16("font_size"), 5, 72); @@ -167,12 +158,18 @@ void FontEngine::readSettings() m_default_bold = g_settings->getBool("font_bold"); m_default_italic = g_settings->getBool("font_italic"); - cleanCache(); - updateFontCache(); - updateSkin(); + refresh(); +} + +void FontEngine::handleReload() +{ + if (!m_needs_reload) + return; + + m_needs_reload = false; + readSettings(); } -/******************************************************************************/ void FontEngine::updateSkin() { gui::IGUIFont *font = getFont(); @@ -181,20 +178,58 @@ void FontEngine::updateSkin() m_env->getSkin()->setFont(font); } -/******************************************************************************/ -void FontEngine::updateFontCache() +void FontEngine::updateCache() { /* the only font to be initialized is default one, * all others are re-initialized on demand */ getFont(FONT_SIZE_UNSPECIFIED, FM_Unspecified); } -/******************************************************************************/ -gui::IGUIFont *FontEngine::initFont(const FontSpec &spec) +void FontEngine::refresh() { + clearCache(); + updateCache(); + updateSkin(); +} + +void FontEngine::setMediaFont(const std::string &name, const std::string &data) +{ + static std::unordered_set valid_names { + "regular", "bold", "italic", "bold_italic", + "mono", "mono_bold", "mono_italic", "mono_bold_italic", + }; + if (!valid_names.count(name)) { + warningstream << "Ignoring unrecognized media font: " << name << std::endl; + return; + } + + constexpr char TTF_MAGIC[5] = {0, 1, 0, 0, 0}; + if (data.size() < 5 || (memcmp(data.data(), "wOFF", 4) && + memcmp(data.data(), TTF_MAGIC, 5))) { + warningstream << "Rejecting media font with unrecognized magic" << std::endl; + return; + } + + std::string copy = data; + irr_ptr face(gui::SGUITTFace::createFace(std::move(copy))); + m_media_faces.emplace(name, face); + refresh(); +} + +void FontEngine::clearMediaFonts() +{ + RecursiveMutexAutoLock l(m_font_mutex); + m_media_faces.clear(); + refresh(); +} + +gui::IGUIFont *FontEngine::initFont(FontSpec spec) { assert(spec.mode != FM_Unspecified); assert(spec.size != FONT_SIZE_UNSPECIFIED); + if (spec.mode == _FM_Fallback) + spec.allow_server_media = false; + std::string setting_prefix = ""; if (spec.mode == FM_Mono) setting_prefix = "mono_"; @@ -224,6 +259,42 @@ gui::IGUIFont *FontEngine::initFont(const FontSpec &spec) g_settings->getU16NoEx(setting_prefix + "font_shadow_alpha", font_shadow_alpha); + auto createFont = [&](gui::SGUITTFace *face) -> gui::CGUITTFont* { + auto *font = gui::CGUITTFont::createTTFont(m_env, + face, size, true, true, font_shadow, + font_shadow_alpha); + + if (!font) + return nullptr; + + if (spec.mode != _FM_Fallback) { + FontSpec spec2(spec); + spec2.mode = _FM_Fallback; + font->setFallback(getFont(spec2, true)); + } + + return font; + }; + + // Use the server-provided font media (if available) + if (spec.allow_server_media) { + std::string media_name = spec.mode == FM_Mono + ? "mono" + setting_suffix + : (setting_suffix.empty() ? "" : setting_suffix.substr(1)); + if (media_name.empty()) + media_name = "regular"; + + auto it = m_media_faces.find(media_name); + if (it != m_media_faces.end()) { + auto *face = it->second.get(); + if (auto *font = createFont(face)) + return font; + errorstream << "FontEngine: Cannot load media font '" << media_name << + "'. Falling back to client settings." << std::endl; + } + } + + // Use the local font files specified by the settings std::string path_setting; if (spec.mode == _FM_Fallback) path_setting = "fallback_font_path"; @@ -234,24 +305,19 @@ gui::IGUIFont *FontEngine::initFont(const FontSpec &spec) g_settings->get(path_setting), Settings::getLayer(SL_DEFAULTS)->get(path_setting) }; - for (const std::string &font_path : fallback_settings) { - gui::CGUITTFont *font = gui::CGUITTFont::createTTFont(m_env, - font_path.c_str(), size, true, true, font_shadow, - font_shadow_alpha); + infostream << "Creating new font: " << font_path.c_str() + << " " << size << "pt" << std::endl; - if (!font) { - errorstream << "FontEngine: Cannot load '" << font_path << - "'. Trying to fall back to another path." << std::endl; - continue; + // Grab the face. + if (auto *face = irr::gui::SGUITTFace::loadFace(font_path)) { + auto *font = createFont(face); + face->drop(); + return font; } - if (spec.mode != _FM_Fallback) { - FontSpec spec2(spec); - spec2.mode = _FM_Fallback; - font->setFallback(getFont(spec2, true)); - } - return font; + errorstream << "FontEngine: Cannot load '" << font_path << + "'. Trying to fall back to another path." << std::endl; } return nullptr; } diff --git a/src/client/fontengine.h b/src/client/fontengine.h index c346f5f8b..82949b250 100644 --- a/src/client/fontengine.h +++ b/src/client/fontengine.h @@ -5,6 +5,9 @@ #pragma once #include +#include +#include "irr_ptr.h" +#include "irrlicht_changes/CGUITTFont.h" #include "util/basic_macros.h" #include "irrlichttypes.h" #include "irrString.h" // utf8_to_wide @@ -20,10 +23,22 @@ namespace irr { #define FONT_SIZE_UNSPECIFIED 0xFFFFFFFF enum FontMode : u8 { + /// Regular font (settings "font_path*", overwritable) FM_Standard = 0, + + /// Monospace font (settings "mono_font*", overwritable) FM_Mono, - _FM_Fallback, // do not use directly + + /// Use only in `FontEngine`. Fallback font to render glyphs that are not present + /// in the originally requested font (setting "fallback_font_path") + _FM_Fallback, + + /// Sum of all font modes FM_MaxMode, + + // ---------------------------- + + /// Request the defult font specified by `s_default_font_mode` FM_Unspecified }; @@ -34,15 +49,22 @@ struct FontSpec { bold(bold), italic(italic) {} + static const unsigned VARIANT_BITS = 3; + static const size_t MAX_VARIANTS = FM_MaxMode << VARIANT_BITS; + u16 getHash() const { - return (mode << 2) | (static_cast(bold) << 1) | static_cast(italic); + return (mode << VARIANT_BITS) + | (static_cast(allow_server_media) << 2) + | (static_cast(bold) << 1) + | static_cast(italic); } unsigned int size; FontMode mode; bool bold; bool italic; + bool allow_server_media = true; }; class FontEngine @@ -66,7 +88,7 @@ public: /** get text height for a specific font */ unsigned int getTextHeight(const FontSpec &spec); - /** get text width if a text for a specific font */ + /** get text width of a text for a specific font */ unsigned int getTextHeight( unsigned int font_size=FONT_SIZE_UNSPECIFIED, FontMode mode=FM_Unspecified) @@ -77,7 +99,7 @@ public: unsigned int getTextWidth(const std::wstring &text, const FontSpec &spec); - /** get text width if a text for a specific font */ + /** get text width of a text for a specific font */ unsigned int getTextWidth(const std::wstring& text, unsigned int font_size=FONT_SIZE_UNSPECIFIED, FontMode mode=FM_Unspecified) @@ -118,20 +140,32 @@ public: /** update internal parameters from settings */ void readSettings(); + /** reload fonts if settings were changed */ + void handleReload(); + + void setMediaFont(const std::string &name, const std::string &data); + + void clearMediaFonts(); + private: irr::gui::IGUIFont *getFont(FontSpec spec, bool may_fail); /** update content of font cache in case of a setting change made it invalid */ - void updateFontCache(); + void updateCache(); /** initialize a new TTF font */ - gui::IGUIFont *initFont(const FontSpec &spec); + gui::IGUIFont *initFont(FontSpec spec); /** update current minetest skin with font changes */ void updateSkin(); - /** clean cache */ - void cleanCache(); + void clearCache(); + + /** refresh after fonts have been changed */ + void refresh(); + + /** callback to be used on change of font size setting */ + static void fontSettingChanged(const std::string &name, void *userdata); /** pointer to irrlicht gui environment */ gui::IGUIEnvironment* m_env = nullptr; @@ -140,7 +174,10 @@ private: std::recursive_mutex m_font_mutex; /** internal storage for caching fonts of different size */ - std::map m_font_cache[FM_MaxMode << 2]; + std::map m_font_cache[FontSpec::MAX_VARIANTS]; + + /** media-provided faces, indexed by filename (without extension) */ + std::unordered_map> m_media_faces; /** default font size to use */ unsigned int m_default_size[FM_MaxMode]; @@ -150,7 +187,9 @@ private: bool m_default_italic = false; /** default font engine mode (fixed) */ - static const FontMode m_currentMode = FM_Standard; + static const FontMode s_default_font_mode = FM_Standard; + + bool m_needs_reload = false; DISABLE_CLASS_COPY(FontEngine); }; diff --git a/src/client/game.cpp b/src/client/game.cpp index 1e1f1cb1c..b6dde3606 100644 --- a/src/client/game.cpp +++ b/src/client/game.cpp @@ -60,6 +60,7 @@ #include "clientdynamicinfo.h" #include #include "util/tracy_wrapper.h" +#include "item_visuals_manager.h" #if USE_SOUND #include "client/sound/sound_openal.h" @@ -553,7 +554,7 @@ protected: bool init(const std::string &map_dir, const std::string &address, u16 port, const SubgameSpec &gamespec); bool initSound(); - bool createSingleplayerServer(const std::string &map_dir, + bool createServer(const std::string &map_dir, const SubgameSpec &gamespec, u16 port); void copyServerClientCache(); @@ -605,10 +606,13 @@ protected: void updateCameraDirection(CameraOrientation *cam, float dtime); void updateCameraOrientation(CameraOrientation *cam, float dtime); + bool getTogglableKeyState(GameKeyType key, bool toggling_enabled, bool prev_key_state); void updatePlayerControl(const CameraOrientation &cam); void updatePauseState(); void step(f32 dtime); void processClientEvents(CameraOrientation *cam); + void updateCameraMode(); // call after changing it + void updateCameraOffset(); void updateCamera(f32 dtime); void updateSound(f32 dtime); void processPlayerInteraction(f32 dtime, bool show_hud); @@ -634,7 +638,7 @@ protected: void handlePointingAtNode(const PointedThing &pointed, const ItemStack &selected_item, const ItemStack &hand_item, f32 dtime); void handlePointingAtObject(const PointedThing &pointed, const ItemStack &playeritem, - const v3f &player_position, bool show_debug); + const ItemStack &hand_item, const v3f &player_position, bool show_debug); void handleDigging(const PointedThing &pointed, const v3s16 &nodepos, const ItemStack &selected_item, const ItemStack &hand_item, f32 dtime); void updateFrame(ProfilerGraph *graph, RunStats *stats, f32 dtime, @@ -695,7 +699,8 @@ private: void handleClientEvent_PlayerForceMove(ClientEvent *event, CameraOrientation *cam); void handleClientEvent_DeathscreenLegacy(ClientEvent *event, CameraOrientation *cam); void handleClientEvent_ShowFormSpec(ClientEvent *event, CameraOrientation *cam); - void handleClientEvent_ShowLocalFormSpec(ClientEvent *event, CameraOrientation *cam); + void handleClientEvent_ShowCSMFormSpec(ClientEvent *event, CameraOrientation *cam); + void handleClientEvent_ShowPauseMenuFormSpec(ClientEvent *event, CameraOrientation *cam); void handleClientEvent_HandleParticleEvent(ClientEvent *event, CameraOrientation *cam); void handleClientEvent_HudAdd(ClientEvent *event, CameraOrientation *cam); @@ -708,6 +713,7 @@ private: void handleClientEvent_OverrideDayNigthRatio(ClientEvent *event, CameraOrientation *cam); void handleClientEvent_CloudParams(ClientEvent *event, CameraOrientation *cam); + void handleClientEvent_UpdateCamera(ClientEvent *event, CameraOrientation *cam); void updateChat(f32 dtime); @@ -732,6 +738,7 @@ private: // When created, these will be filled with data received from the server IWritableItemDefManager *itemdef_manager = nullptr; NodeDefManager *nodedef_manager = nullptr; + std::unique_ptr m_item_visuals_manager; std::unique_ptr sound_manager; SoundMaker *soundmaker = nullptr; @@ -787,6 +794,8 @@ private: * a later release. */ bool m_cache_doubletap_jump; + bool m_cache_toggle_sneak_key; + bool m_cache_toggle_aux1_key; bool m_cache_enable_joysticks; bool m_cache_enable_fog; bool m_cache_enable_noclip; @@ -812,9 +821,10 @@ private: bool m_is_paused = false; bool m_touch_simulate_aux1 = false; - bool m_touch_use_crosshair; - inline bool isTouchCrosshairDisabled() { - return !m_touch_use_crosshair && camera->getCameraMode() == CAMERA_MODE_FIRST; + inline bool isTouchShootlineUsed() + { + return g_touchcontrols && g_touchcontrols->isShootlineAvailable() && + camera->getCameraMode() == CAMERA_MODE_FIRST; } #ifdef __ANDROID__ bool m_android_chat_open; @@ -831,6 +841,10 @@ Game::Game() : &settingChangedCallback, this); g_settings->registerChangedCallback("doubletap_jump", &settingChangedCallback, this); + g_settings->registerChangedCallback("toggle_sneak_key", + &settingChangedCallback, this); + g_settings->registerChangedCallback("toggle_aux1_key", + &settingChangedCallback, this); g_settings->registerChangedCallback("enable_joysticks", &settingChangedCallback, this); g_settings->registerChangedCallback("enable_fog", @@ -918,7 +932,7 @@ bool Game::startup(bool *kill, this->chat_backend = chat_backend; simple_singleplayer_mode = start_data.isSinglePlayer(); - input->keycache.populate(); + input->reloadKeybindings(); driver = device->getVideoDriver(); smgr = m_rendering_engine->get_scene_manager(); @@ -939,11 +953,8 @@ bool Game::startup(bool *kill, m_first_loop_after_window_activation = true; - m_touch_use_crosshair = g_settings->getBool("touch_use_crosshair"); - g_client_translations->clear(); - // address can change if simple_singleplayer_mode if (!init(start_data.world_spec.path, start_data.address, start_data.socket_port, start_data.game_spec)) return false; @@ -1001,10 +1012,12 @@ void Game::run() // Calculate dtime = // m_rendering_engine->run() from this iteration // + Sleep time until the wanted FPS are reached - draw_times.limit(device, &dtime, g_menumgr.pausesGame()); + draw_times.limit(device, &dtime); framemarker.start(); + g_fontengine->handleReload(); + const auto current_dynamic_info = ClientDynamicInfo::getCurrent(); if (!current_dynamic_info.equal(client_display_info)) { client_display_info = current_dynamic_info; @@ -1033,6 +1046,12 @@ void Game::run() m_game_ui->clearInfoText(); updateProfilers(stats, draw_times, dtime); + + // Update camera offset once before doing anything. + // In contrast to other updates the latency of this doesn't matter, + // since it's invisible to the user. But it needs to be consistent. + updateCameraOffset(); + processUserInput(dtime); // Update camera before player movement to avoid camera lag of one frame updateCameraDirection(&cam_view_target, dtime); @@ -1050,6 +1069,7 @@ void Game::run() processClientEvents(&cam_view_target); updateDebugState(); + // Update camera here so it is in-sync with CAO position updateCamera(dtime); updateSound(dtime); processPlayerInteraction(dtime, m_game_ui->m_flags.show_hud); @@ -1152,6 +1172,8 @@ bool Game::init( itemdef_manager = createItemDefManager(); nodedef_manager = createNodeDefManager(); + m_item_visuals_manager = std::make_unique(); + eventmgr = new EventManager(); quicktune = new QuicktuneShortcutter(); @@ -1164,7 +1186,7 @@ bool Game::init( // Create a server if not connecting to an existing one if (address.empty()) { - if (!createSingleplayerServer(map_dir, gamespec, port)) + if (!createServer(map_dir, gamespec, port)) return false; } @@ -1199,7 +1221,7 @@ bool Game::initSound() return true; } -bool Game::createSingleplayerServer(const std::string &map_dir, +bool Game::createServer(const std::string &map_dir, const SubgameSpec &gamespec, u16 port) { showOverlayMessage(N_("Creating server..."), 0, 5); @@ -1404,10 +1426,8 @@ bool Game::initGui() gui_chat_console = make_irr(guienv, guienv->getRootGUIElement(), -1, chat_backend, client, &g_menumgr); - if (shouldShowTouchControls()) { + if (shouldShowTouchControls()) g_touchcontrols = new TouchControls(device, texture_src); - g_touchcontrols->setUseCrosshair(!isTouchCrosshairDisabled()); - } return true; } @@ -1417,7 +1437,6 @@ bool Game::connectToServer(const GameStartData &start_data, { *connect_ok = false; // Let's not be overly optimistic *connection_aborted = false; - bool local_server_mode = false; const auto &address_name = start_data.address; showOverlayMessage(N_("Resolving address..."), 0, 15); @@ -1437,7 +1456,6 @@ bool Game::connectToServer(const GameStartData &start_data, } else { connect_address.setAddress(127, 0, 0, 1); } - local_server_mode = true; } } catch (ResolveError &e) { *error_message = fmtgettext("Couldn't resolve address: %s", e.what()); @@ -1474,6 +1492,7 @@ bool Game::connectToServer(const GameStartData &start_data, *draw_control, texture_src, shader_src, itemdef_manager, nodedef_manager, sound_manager.get(), eventmgr, m_rendering_engine, + m_item_visuals_manager.get(), start_data.allow_login_or_register); } catch (const BaseException &e) { *error_message = fmtgettext("Error creating client: %s", e.what()); @@ -1483,13 +1502,13 @@ bool Game::connectToServer(const GameStartData &start_data, client->migrateModStorage(); client->m_simple_singleplayer_mode = simple_singleplayer_mode; + client->m_internal_server = !!server; /* Wait for server to accept connection */ - client->connect(connect_address, address_name, - simple_singleplayer_mode || local_server_mode); + client->connect(connect_address, address_name); try { input->clear(); @@ -1536,12 +1555,11 @@ bool Game::connectToServer(const GameStartData &start_data, } wait_time += dtime; - if (local_server_mode) { + if (server) { // never time out } else if (wait_time > GAME_FALLBACK_TIMEOUT && !did_fallback) { if (!client->hasServerReplied() && fallback_address.isValid()) { - client->connect(fallback_address, address_name, - simple_singleplayer_mode || local_server_mode); + client->connect(fallback_address, address_name); } did_fallback = true; } else if (wait_time > GAME_CONNECTION_TIMEOUT) { @@ -1947,6 +1965,9 @@ void Game::processKeyInput() toggleFog(); } else if (wasKeyDown(KeyType::TOGGLE_UPDATE_CAMERA)) { toggleUpdateCamera(); + } else if (wasKeyPressed(KeyType::CAMERA_MODE)) { + camera->toggleCameraMode(); + updateCameraMode(); } else if (wasKeyPressed(KeyType::TOGGLE_DEBUG)) { toggleDebug(); } else if (wasKeyPressed(KeyType::TOGGLE_PROFILER)) { @@ -2432,8 +2453,10 @@ f32 Game::getSensitivityScaleFactor() const void Game::updateCameraOrientation(CameraOrientation *cam, float dtime) { if (g_touchcontrols) { - cam->camera_yaw += g_touchcontrols->getYawChange(); - cam->camera_pitch += g_touchcontrols->getPitchChange(); + // User setting is already applied by TouchControls. + f32 sens_scale = getSensitivityScaleFactor(); + cam->camera_yaw += g_touchcontrols->getYawChange() * sens_scale; + cam->camera_pitch += g_touchcontrols->getPitchChange() * sens_scale; } else { v2s32 center(driver->getScreenSize().Width / 2, driver->getScreenSize().Height / 2); v2s32 dist = input->getMousePos() - center; @@ -2457,7 +2480,17 @@ void Game::updateCameraOrientation(CameraOrientation *cam, float dtime) cam->camera_pitch += input->joystick.getAxisWithoutDead(JA_FRUSTUM_VERTICAL) * c; } - cam->camera_pitch = rangelim(cam->camera_pitch, -89.5, 89.5); + cam->camera_pitch = rangelim(cam->camera_pitch, -90, 90); +} + + +// Get the state of an optionally togglable key +bool Game::getTogglableKeyState(GameKeyType key, bool toggling_enabled, bool prev_key_state) +{ + if (!toggling_enabled) + return isKeyDown(key); + else + return prev_key_state ^ wasKeyPressed(key); } @@ -2465,6 +2498,11 @@ void Game::updatePlayerControl(const CameraOrientation &cam) { LocalPlayer *player = client->getEnv().getLocalPlayer(); + // In free move (fly), the "toggle_sneak_key" setting would prevent precise + // up/down movements. Hence, enable the feature only during 'normal' movement. + const bool allow_sneak_toggle = m_cache_toggle_sneak_key && + !player->getPlayerSettings().free_move; + //TimeTaker tt("update player control", NULL, PRECISION_NANO); PlayerControl control( @@ -2473,8 +2511,8 @@ void Game::updatePlayerControl(const CameraOrientation &cam) isKeyDown(KeyType::LEFT), isKeyDown(KeyType::RIGHT), isKeyDown(KeyType::JUMP) || player->getAutojump(), - isKeyDown(KeyType::AUX1), - isKeyDown(KeyType::SNEAK), + getTogglableKeyState(KeyType::AUX1, m_cache_toggle_aux1_key, player->control.aux1), + getTogglableKeyState(KeyType::SNEAK, allow_sneak_toggle, player->control.sneak), isKeyDown(KeyType::ZOOM), isKeyDown(KeyType::DIG), isKeyDown(KeyType::PLACE), @@ -2528,7 +2566,7 @@ inline void Game::step(f32 dtime) ZoneScoped; if (server) { - float fps_max = (!device->isWindowFocused() || g_menumgr.pausesGame()) ? + float fps_max = !device->isWindowFocused() && simple_singleplayer_mode ? g_settings->getFloat("fps_max_unfocused") : g_settings->getFloat("fps_max"); fps_max = std::max(fps_max, 1.0f); @@ -2585,7 +2623,8 @@ const ClientEventHandler Game::clientEventHandler[CLIENTEVENT_MAX] = { {&Game::handleClientEvent_PlayerForceMove}, {&Game::handleClientEvent_DeathscreenLegacy}, {&Game::handleClientEvent_ShowFormSpec}, - {&Game::handleClientEvent_ShowLocalFormSpec}, + {&Game::handleClientEvent_ShowCSMFormSpec}, + {&Game::handleClientEvent_ShowPauseMenuFormSpec}, {&Game::handleClientEvent_HandleParticleEvent}, {&Game::handleClientEvent_HandleParticleEvent}, {&Game::handleClientEvent_HandleParticleEvent}, @@ -2598,6 +2637,7 @@ const ClientEventHandler Game::clientEventHandler[CLIENTEVENT_MAX] = { {&Game::handleClientEvent_SetStars}, {&Game::handleClientEvent_OverrideDayNigthRatio}, {&Game::handleClientEvent_CloudParams}, + {&Game::handleClientEvent_UpdateCamera}, }; void Game::handleClientEvent_None(ClientEvent *event, CameraOrientation *cam) @@ -2653,9 +2693,18 @@ void Game::handleClientEvent_ShowFormSpec(ClientEvent *event, CameraOrientation delete event->show_formspec.formname; } -void Game::handleClientEvent_ShowLocalFormSpec(ClientEvent *event, CameraOrientation *cam) +void Game::handleClientEvent_ShowCSMFormSpec(ClientEvent *event, CameraOrientation *cam) { - m_game_formspec.showLocalFormSpec(*event->show_formspec.formspec, + m_game_formspec.showCSMFormSpec(*event->show_formspec.formspec, + *event->show_formspec.formname); + + delete event->show_formspec.formspec; + delete event->show_formspec.formname; +} + +void Game::handleClientEvent_ShowPauseMenuFormSpec(ClientEvent *event, CameraOrientation *cam) +{ + m_game_formspec.showPauseMenuFormSpec(*event->show_formspec.formspec, *event->show_formspec.formname); delete event->show_formspec.formspec; @@ -2893,6 +2942,13 @@ void Game::handleClientEvent_CloudParams(ClientEvent *event, CameraOrientation * clouds->setSpeed(v2f(event->cloud_params.speed_x, event->cloud_params.speed_y)); } +void Game::handleClientEvent_UpdateCamera(ClientEvent *event, CameraOrientation *cam) +{ + // no parameters to update here, this just makes sure the camera is in the + // state it should be after something was changed. + updateCameraMode(); +} + void Game::processClientEvents(CameraOrientation *cam) { while (client->hasClientEvents()) { @@ -2946,70 +3002,81 @@ void Game::updateChat(f32 dtime) void Game::updateCamera(f32 dtime) { - LocalPlayer *player = client->getEnv().getLocalPlayer(); + ClientEnvironment &env = client->getEnv(); + LocalPlayer *player = env.getLocalPlayer(); - /* - For interaction purposes, get info about the held item - - What item is it? - - Is it a usable item? - - Can it point to liquids? - */ - ItemStack playeritem; + // For interaction purposes, get info about the held item + ItemStack playeritem, hand; { - ItemStack selected, hand; + ItemStack selected; playeritem = player->getWieldedItem(&selected, &hand); } ToolCapabilities playeritem_toolcap = - playeritem.getToolCapabilities(itemdef_manager); - - v3s16 old_camera_offset = camera->getOffset(); - - if (wasKeyPressed(KeyType::CAMERA_MODE)) { - GenericCAO *playercao = player->getCAO(); - - // If playercao not loaded, don't change camera - if (!playercao) - return; - - camera->toggleCameraMode(); - - if (g_touchcontrols) - g_touchcontrols->setUseCrosshair(!isTouchCrosshairDisabled()); - - // Make the player visible depending on camera mode. - playercao->updateMeshCulling(); - playercao->setChildrenVisible(camera->getCameraMode() > CAMERA_MODE_FIRST); - } + playeritem.getToolCapabilities(itemdef_manager, &hand); float full_punch_interval = playeritem_toolcap.full_punch_interval; float tool_reload_ratio = runData.time_from_last_punch / full_punch_interval; - tool_reload_ratio = MYMIN(tool_reload_ratio, 1.0); + tool_reload_ratio = std::min(tool_reload_ratio, 1.0f); camera->update(player, dtime, tool_reload_ratio); camera->step(dtime); - f32 camera_fov = camera->getFovMax(); - v3s16 camera_offset = camera->getOffset(); - - m_camera_offset_changed = (camera_offset != old_camera_offset); - if (!m_flags.disable_camera_update) { - v3f camera_position = camera->getPosition(); - v3f camera_direction = camera->getDirection(); - - client->getEnv().getClientMap().updateCamera(camera_position, - camera_direction, camera_fov, camera_offset, player->light_color); - - if (m_camera_offset_changed) { - client->updateCameraOffset(camera_offset); - client->getEnv().updateCameraOffset(camera_offset); - - clouds->updateCameraOffset(camera_offset); - } + client->getEnv().getClientMap().updateCamera(camera->getPosition(), + camera->getDirection(), camera->getFovMax(), camera->getOffset(), + player->light_color); } } +void Game::updateCameraMode() +{ + LocalPlayer *player = client->getEnv().getLocalPlayer(); + + // Obey server choice + if (player->allowed_camera_mode != CAMERA_MODE_ANY) + camera->setCameraMode(player->allowed_camera_mode); + + GenericCAO *playercao = player->getCAO(); + if (playercao) { + // Make the player visible depending on camera mode. + playercao->updateMeshCulling(); + playercao->setChildrenVisible(camera->getCameraMode() > CAMERA_MODE_FIRST); + } +} + +void Game::updateCameraOffset() +{ + ClientEnvironment &env = client->getEnv(); + + v3s16 old_camera_offset = camera->getOffset(); + + camera->updateOffset(); + + v3s16 camera_offset = camera->getOffset(); + + m_camera_offset_changed = camera_offset != old_camera_offset; + if (!m_camera_offset_changed) + return; + + if (!m_flags.disable_camera_update) { + auto *shadow = RenderingEngine::get_shadow_renderer(); + if (shadow) { + shadow->getDirectionalLight().updateCameraOffset(camera); + // FIXME: I bet we can be smarter about this and don't need to redraw + // the shadow map at all, but this is for someone else to figure out. + if (!g_settings->getFlag("performance_tradeoffs")) + shadow->setForceUpdateShadowMap(); + } + + env.getClientMap().updateCamera(camera->getPosition(), + camera->getDirection(), camera->getFovMax(), camera_offset, + env.getLocalPlayer()->light_color); + + env.updateCameraOffset(camera_offset); + clouds->updateCameraOffset(camera_offset); + } +} void Game::updateSound(f32 dtime) { @@ -3053,12 +3120,15 @@ void Game::processPlayerInteraction(f32 dtime, bool show_hud) ItemStack selected_item, hand_item; const ItemStack &tool_item = player->getWieldedItem(&selected_item, &hand_item); - const ItemDefinition &selected_def = selected_item.getDefinition(itemdef_manager); - f32 d = getToolRange(selected_item, hand_item, itemdef_manager); + const ItemDefinition &selected_def = tool_item.getDefinition(itemdef_manager); + f32 d = getToolRange(tool_item, hand_item, itemdef_manager); core::line3d shootline; switch (camera->getCameraMode()) { + case CAMERA_MODE_ANY: + assert(false); + break; case CAMERA_MODE_FIRST: // Shoot from camera position, with bobbing shootline.start = camera->getPosition(); @@ -3075,7 +3145,7 @@ void Game::processPlayerInteraction(f32 dtime, bool show_hud) } shootline.end = shootline.start + camera_direction * BS * d; - if (g_touchcontrols && isTouchCrosshairDisabled()) { + if (isTouchShootlineUsed()) { shootline = g_touchcontrols->getShootline(); // Scale shootline to the acual distance the player can reach shootline.end = shootline.start + @@ -3168,7 +3238,7 @@ void Game::processPlayerInteraction(f32 dtime, bool show_hud) } else if (pointed.type == POINTEDTHING_OBJECT) { v3f player_position = player->getPosition(); bool basic_debug_allowed = client->checkPrivilege("debug") || (player->hud_flags & HUD_FLAG_BASIC_DEBUG); - handlePointingAtObject(pointed, tool_item, player_position, + handlePointingAtObject(pointed, tool_item, hand_item, player_position, m_game_ui->m_flags.show_basic_debug && basic_debug_allowed); } else if (isKeyDown(KeyType::DIG)) { // When button is held down in air, show continuous animation @@ -3234,9 +3304,10 @@ PointedThing Game::updatePointedThing( hud->setSelectionPos(pos, camera_offset); GenericCAO* gcao = dynamic_cast(runData.selected_object); if (gcao != nullptr && gcao->getProperties().rotate_selectionbox) - hud->setSelectionRotation(gcao->getSceneNode()->getAbsoluteTransformation().getRotationDegrees()); + hud->setSelectionRotationRadians(gcao->getSceneNode() + ->getAbsoluteTransformation().getRotationRadians()); else - hud->setSelectionRotation(v3f()); + hud->setSelectionRotationRadians(v3f()); } hud->setSelectedFaceNormal(result.raw_intersection_normal); } else if (result.type == POINTEDTHING_NODE) { @@ -3246,17 +3317,15 @@ PointedThing Game::updatePointedThing( n.getSelectionBoxes(nodedef, &boxes, n.getNeighbors(result.node_undersurface, &map)); - f32 d = 0.002 * BS; - for (std::vector::const_iterator i = boxes.begin(); - i != boxes.end(); ++i) { - aabb3f box = *i; + f32 d = 0.002f * BS; + for (aabb3f box : boxes) { box.MinEdge -= v3f(d, d, d); box.MaxEdge += v3f(d, d, d); selectionboxes->push_back(box); } hud->setSelectionPos(intToFloat(result.node_undersurface, BS), camera_offset); - hud->setSelectionRotation(v3f()); + hud->setSelectionRotationRadians(v3f()); hud->setSelectedFaceNormal(result.intersection_normal); } @@ -3451,9 +3520,8 @@ bool Game::nodePlacement(const ItemDefinition &selected_def, u8 predicted_param2 = dir.Y < 0 ? 1 : 0; if (selected_def.wallmounted_rotate_vertical) { bool rotate90 = false; - v3f fnodepos = v3f(neighborpos.X, neighborpos.Y, neighborpos.Z); v3f ppos = client->getEnv().getLocalPlayer()->getPosition() / BS; - v3f pdir = fnodepos - ppos; + v3f pdir = v3f::from(neighborpos) - ppos; switch (predicted_f.drawtype) { case NDT_TORCHLIKE: { rotate90 = !((pdir.X < 0 && pdir.Z > 0) || @@ -3584,8 +3652,8 @@ bool Game::nodePlacement(const ItemDefinition &selected_def, } } -void Game::handlePointingAtObject(const PointedThing &pointed, - const ItemStack &tool_item, const v3f &player_position, bool show_debug) +void Game::handlePointingAtObject(const PointedThing &pointed, const ItemStack &tool_item, + const ItemStack &hand_item, const v3f &player_position, bool show_debug) { std::wstring infotext = unescape_translate( utf8_to_wide(runData.selected_object->infoText())); @@ -3615,6 +3683,7 @@ void Game::handlePointingAtObject(const PointedThing &pointed, if (do_punch) { infostream << "Punched object" << std::endl; runData.punching = true; + runData.nodig_delay_timer = std::max(0.15f, m_repeat_dig_time); } if (do_punch_damage) { @@ -3623,7 +3692,7 @@ void Game::handlePointingAtObject(const PointedThing &pointed, v3f dir = (objpos - player_position).normalize(); bool disable_send = runData.selected_object->directReportPunch( - dir, &tool_item, runData.time_from_last_punch); + dir, &tool_item, &hand_item, runData.time_from_last_punch); runData.time_from_last_punch = 0; if (!disable_send) @@ -3644,13 +3713,14 @@ void Game::handleDigging(const PointedThing &pointed, const v3s16 &nodepos, ClientMap &map = client->getEnv().getClientMap(); MapNode n = map.getNode(nodepos); const auto &features = nodedef_manager->get(n); + const ItemStack &tool_item = selected_item.name.empty() ? hand_item : selected_item; // NOTE: Similar piece of code exists on the server side for // cheat detection. // Get digging parameters DigParams params = getDigParams(features.groups, - &selected_item.getToolCapabilities(itemdef_manager), - selected_item.wear); + &tool_item.getToolCapabilities(itemdef_manager, &hand_item), + tool_item.wear); // If can't dig, try hand if (!params.diggable) { @@ -3811,8 +3881,8 @@ void Game::updateFrame(ProfilerGraph *graph, RunStats *stats, f32 dtime, float old_brightness = sky->getBrightness(); direct_brightness = client->getEnv().getClientMap() .getBackgroundBrightness(MYMIN(runData.fog_range * 1.2, 60 * BS), - daynight_ratio, (int)(old_brightness * 255.5), &sunlight_seen) - / 255.0; + daynight_ratio, (int)(old_brightness * 255.5), &sunlight_seen) + / 255.0; } float time_of_day_smooth = runData.time_of_day_smooth; @@ -3894,7 +3964,8 @@ void Game::updateFrame(ProfilerGraph *graph, RunStats *stats, f32 dtime, runData.update_draw_list_timer += dtime; runData.touch_blocks_timer += dtime; - float update_draw_list_delta = 0.2f; + constexpr float update_draw_list_delta = 0.2f; + constexpr float touch_mapblock_delta = 4.0f; v3f camera_direction = camera->getDirection(); @@ -3907,7 +3978,7 @@ void Game::updateFrame(ProfilerGraph *graph, RunStats *stats, f32 dtime, runData.update_draw_list_timer = 0; client->getEnv().getClientMap().updateDrawList(); runData.update_draw_list_last_cam_dir = camera_direction; - } else if (runData.touch_blocks_timer > update_draw_list_delta) { + } else if (runData.touch_blocks_timer > touch_mapblock_delta) { client->getEnv().getClientMap().touchMapBlocks(); runData.touch_blocks_timer = 0; } else if (RenderingEngine::get_shadow_renderer()) { @@ -3996,11 +4067,10 @@ void Game::updateShadows() v3f light = is_day ? sky->getSunDirection() : sky->getMoonDirection(); v3f sun_pos = light * offset_constant; - shadow->getDirectionalLight().setDirection(sun_pos); shadow->setTimeOfDay(in_timeofday); - shadow->getDirectionalLight().update_frustum(camera, client, m_camera_offset_changed); + shadow->getDirectionalLight().updateFrustum(camera, client); } void Game::drawScene(ProfilerGraph *graph, RunStats *stats) @@ -4049,7 +4119,7 @@ void Game::drawScene(ProfilerGraph *graph, RunStats *stats) (player->hud_flags & HUD_FLAG_CROSSHAIR_VISIBLE) && (this->camera->getCameraMode() != CAMERA_MODE_THIRD_FRONT)); - if (g_touchcontrols && isTouchCrosshairDisabled()) + if (isTouchShootlineUsed()) draw_crosshair = false; this->m_rendering_engine->draw_scene(sky_color, this->m_game_ui->m_flags.show_hud, @@ -4105,6 +4175,8 @@ void Game::readSettings() m_chat_log_buf.setLogLevel(chat_log_level); m_cache_doubletap_jump = g_settings->getBool("doubletap_jump"); + m_cache_toggle_sneak_key = g_settings->getBool("toggle_sneak_key"); + m_cache_toggle_aux1_key = g_settings->getBool("toggle_aux1_key"); m_cache_enable_joysticks = g_settings->getBool("enable_joysticks"); m_cache_enable_fog = g_settings->getBool("enable_fog"); m_cache_mouse_sensitivity = g_settings->getFloat("mouse_sensitivity", 0.001f, 10.0f); diff --git a/src/client/game_formspec.cpp b/src/client/game_formspec.cpp index cc5ddc0ed..4bd1a42bd 100644 --- a/src/client/game_formspec.cpp +++ b/src/client/game_formspec.cpp @@ -9,6 +9,7 @@ #include "renderingengine.h" #include "client.h" #include "scripting_client.h" +#include "cpp_api/s_client_common.h" #include "clientmap.h" #include "gui/guiFormSpecMenu.h" #include "gui/mainmenumanager.h" @@ -70,69 +71,73 @@ struct TextDestPlayerInventory : public TextDest Client *m_client; }; -struct LocalFormspecHandler : public TextDest +struct LocalScriptingFormspecHandler : public TextDest { - LocalFormspecHandler(const std::string &formname) - { - m_formname = formname; - } - - LocalFormspecHandler(const std::string &formname, Client *client): - m_client(client) + LocalScriptingFormspecHandler(const std::string &formname, ScriptApiClientCommon *script) { m_formname = formname; + m_script = script; } void gotText(const StringMap &fields) { - if (m_formname == "MT_PAUSE_MENU") { - if (fields.find("btn_sound") != fields.end()) { - g_gamecallback->changeVolume(); - return; - } + m_script->on_formspec_input(m_formname, fields); + } - if (fields.find("btn_key_config") != fields.end()) { - g_gamecallback->keyConfig(); - return; - } + ScriptApiClientCommon *m_script = nullptr; +}; - if (fields.find("btn_touchscreen_layout") != fields.end()) { - g_gamecallback->touchscreenLayout(); - return; - } +struct HardcodedPauseFormspecHandler : public TextDest +{ + HardcodedPauseFormspecHandler() + { + m_formname = "MT_PAUSE_MENU"; + } - if (fields.find("btn_exit_menu") != fields.end()) { - g_gamecallback->disconnect(); - return; - } + void gotText(const StringMap &fields) + { + if (fields.find("btn_settings") != fields.end()) { + g_gamecallback->openSettings(); + return; + } - if (fields.find("btn_exit_os") != fields.end()) { - g_gamecallback->exitToOS(); + if (fields.find("btn_sound") != fields.end()) { + g_gamecallback->changeVolume(); + return; + } + + if (fields.find("btn_exit_menu") != fields.end()) { + g_gamecallback->disconnect(); + return; + } + + if (fields.find("btn_exit_os") != fields.end()) { + g_gamecallback->exitToOS(); #ifndef __ANDROID__ - RenderingEngine::get_raw_device()->closeDevice(); + RenderingEngine::get_raw_device()->closeDevice(); #endif - return; - } - - if (fields.find("btn_change_password") != fields.end()) { - g_gamecallback->changePassword(); - return; - } - return; } - if (m_formname == "MT_DEATH_SCREEN") { - assert(m_client != nullptr); - - if (fields.find("quit") != fields.end()) - m_client->sendRespawnLegacy(); - + if (fields.find("btn_change_password") != fields.end()) { + g_gamecallback->changePassword(); return; } + } +}; - if (m_client->modsLoaded()) - m_client->getScript()->on_formspec_input(m_formname, fields); +struct LegacyDeathFormspecHandler : public TextDest +{ + LegacyDeathFormspecHandler(Client *client) + { + m_formname = "MT_DEATH_SCREEN"; + m_client = client; + } + + void gotText(const StringMap &fields) + { + if (fields.find("quit") != fields.end()) + m_client->sendRespawnLegacy(); } Client *m_client = nullptr; @@ -193,6 +198,15 @@ public: //// GameFormSpec +void GameFormSpec::init(Client *client, RenderingEngine *rendering_engine, InputHandler *input) +{ + m_client = client; + m_rendering_engine = rendering_engine; + m_input = input; + m_pause_script = std::make_unique(client); + m_pause_script->loadBuiltin(); +} + void GameFormSpec::deleteFormspec() { if (m_formspec) { @@ -208,35 +222,70 @@ GameFormSpec::~GameFormSpec() { this->deleteFormspec(); } -void GameFormSpec::showFormSpec(const std::string &formspec, const std::string &formname) +bool GameFormSpec::handleEmptyFormspec(const std::string &formspec, const std::string &formname) { if (formspec.empty()) { if (m_formspec && (formname.empty() || formname == m_formname)) { m_formspec->quitMenu(); } - } else { - FormspecFormSource *fs_src = - new FormspecFormSource(formspec); - TextDestPlayerInventory *txt_dst = - new TextDestPlayerInventory(m_client, formname); - - m_formname = formname; - GUIFormSpecMenu::create(m_formspec, m_client, m_rendering_engine->get_gui_env(), - &m_input->joystick, fs_src, txt_dst, m_client->getFormspecPrepend(), - m_client->getSoundManager()); + return true; } + return false; } -void GameFormSpec::showLocalFormSpec(const std::string &formspec, const std::string &formname) +void GameFormSpec::showFormSpec(const std::string &formspec, const std::string &formname) { + if (handleEmptyFormspec(formspec, formname)) + return; + + FormspecFormSource *fs_src = + new FormspecFormSource(formspec); + TextDestPlayerInventory *txt_dst = + new TextDestPlayerInventory(m_client, formname); + + m_formname = formname; + GUIFormSpecMenu::create(m_formspec, m_client, m_rendering_engine->get_gui_env(), + &m_input->joystick, fs_src, txt_dst, m_client->getFormspecPrepend(), + m_client->getSoundManager()); +} + +void GameFormSpec::showCSMFormSpec(const std::string &formspec, const std::string &formname) +{ + if (handleEmptyFormspec(formspec, formname)) + return; + FormspecFormSource *fs_src = new FormspecFormSource(formspec); - LocalFormspecHandler *txt_dst = - new LocalFormspecHandler(formname, m_client); + LocalScriptingFormspecHandler *txt_dst = + new LocalScriptingFormspecHandler(formname, m_client->getScript()); + + m_formname = formname; GUIFormSpecMenu::create(m_formspec, m_client, m_rendering_engine->get_gui_env(), &m_input->joystick, fs_src, txt_dst, m_client->getFormspecPrepend(), m_client->getSoundManager()); } +void GameFormSpec::showPauseMenuFormSpec(const std::string &formspec, const std::string &formname) +{ + // The pause menu env is a trusted context like the mainmenu env and provides + // the in-game settings formspec. + // Neither CSM nor the server must be allowed to mess with it. + + if (handleEmptyFormspec(formspec, formname)) + return; + + FormspecFormSource *fs_src = new FormspecFormSource(formspec); + LocalScriptingFormspecHandler *txt_dst = + new LocalScriptingFormspecHandler(formname, m_pause_script.get()); + + m_formname = formname; + GUIFormSpecMenu::create(m_formspec, m_client, m_rendering_engine->get_gui_env(), + // Ignore formspec prepend. + &m_input->joystick, fs_src, txt_dst, "", + m_client->getSoundManager()); + + m_formspec->doPause = true; +} + void GameFormSpec::showNodeFormspec(const std::string &formspec, const v3s16 &nodepos) { infostream << "Launching custom inventory view" << std::endl; @@ -325,26 +374,22 @@ void GameFormSpec::showPauseMenu() << strgettext("Continue") << "]"; if (!simple_singleplayer_mode) { - os << "button_exit[4," << (ypos++) << ";3,0.5;btn_change_password;" + os << "button[4," << (ypos++) << ";3,0.5;btn_change_password;" << strgettext("Change Password") << "]"; } else { os << "field[4.95,0;5,1.5;;" << strgettext("Game paused") << ";]"; } + os << "button[4," << (ypos++) << ";3,0.5;btn_settings;" + << strgettext("Settings") << "]"; + #ifndef __ANDROID__ #if USE_SOUND - os << "button_exit[4," << (ypos++) << ";3,0.5;btn_sound;" + os << "button[4," << (ypos++) << ";3,0.5;btn_sound;" << strgettext("Sound Volume") << "]"; #endif #endif - if (g_touchcontrols) { - os << "button_exit[4," << (ypos++) << ";3,0.5;btn_touchscreen_layout;" - << strgettext("Touchscreen Layout") << "]"; - } else { - os << "button_exit[4," << (ypos++) << ";3,0.5;btn_key_config;" - << strgettext("Controls") << "]"; - } os << "button_exit[4," << (ypos++) << ";3,0.5;btn_exit_menu;" << strgettext("Exit to Menu") << "]"; os << "button_exit[4," << (ypos++) << ";3,0.5;btn_exit_os;" @@ -394,13 +439,13 @@ void GameFormSpec::showPauseMenu() /* Note: FormspecFormSource and LocalFormspecHandler * * are deleted by guiFormSpecMenu */ FormspecFormSource *fs_src = new FormspecFormSource(os.str()); - LocalFormspecHandler *txt_dst = new LocalFormspecHandler("MT_PAUSE_MENU"); + HardcodedPauseFormspecHandler *txt_dst = new HardcodedPauseFormspecHandler(); GUIFormSpecMenu::create(m_formspec, m_client, m_rendering_engine->get_gui_env(), &m_input->joystick, fs_src, txt_dst, m_client->getFormspecPrepend(), m_client->getSoundManager()); m_formspec->setFocus("btn_continue"); - // game will be paused in next step, if in singleplayer (see m_is_paused) + // game will be paused in next step, if in singleplayer (see Game::m_is_paused) m_formspec->doPause = true; } @@ -418,7 +463,7 @@ void GameFormSpec::showDeathFormspecLegacy() /* Note: FormspecFormSource and LocalFormspecHandler * * are deleted by guiFormSpecMenu */ FormspecFormSource *fs_src = new FormspecFormSource(formspec_str); - LocalFormspecHandler *txt_dst = new LocalFormspecHandler("MT_DEATH_SCREEN", m_client); + LegacyDeathFormspecHandler *txt_dst = new LegacyDeathFormspecHandler(m_client); GUIFormSpecMenu::create(m_formspec, m_client, m_rendering_engine->get_gui_env(), &m_input->joystick, fs_src, txt_dst, m_client->getFormspecPrepend(), @@ -473,6 +518,11 @@ bool GameFormSpec::handleCallbacks() return false; } + if (g_gamecallback->settings_requested) { + m_pause_script->open_settings(); + g_gamecallback->settings_requested = false; + } + if (g_gamecallback->changepassword_requested) { (void)make_irr(guienv, guiroot, -1, &g_menumgr, m_client, texture_src); @@ -504,7 +554,7 @@ bool GameFormSpec::handleCallbacks() } if (g_gamecallback->keyconfig_changed) { - m_input->keycache.populate(); // update the cache with new settings + m_input->reloadKeybindings(); // update the cache with new settings g_gamecallback->keyconfig_changed = false; } diff --git a/src/client/game_formspec.h b/src/client/game_formspec.h index 370370151..b38056463 100644 --- a/src/client/game_formspec.h +++ b/src/client/game_formspec.h @@ -4,8 +4,10 @@ #pragma once +#include #include #include "irr_v3d.h" +#include "scripting_pause_menu.h" class Client; class RenderingEngine; @@ -22,20 +24,19 @@ It includes: */ struct GameFormSpec { - void init(Client *client, RenderingEngine *rendering_engine, InputHandler *input) - { - m_client = client; - m_rendering_engine = rendering_engine; - m_input = input; - } + void init(Client *client, RenderingEngine *rendering_engine, InputHandler *input); ~GameFormSpec(); void showFormSpec(const std::string &formspec, const std::string &formname); - void showLocalFormSpec(const std::string &formspec, const std::string &formname); + void showCSMFormSpec(const std::string &formspec, const std::string &formname); + // Used by the Lua pause menu environment to show formspecs. + // Currently only used for the in-game settings menu. + void showPauseMenuFormSpec(const std::string &formspec, const std::string &formname); void showNodeFormspec(const std::string &formspec, const v3s16 &nodepos); void showPlayerInventory(); void showDeathFormspecLegacy(); + // Shows the hardcoded "main" pause menu. void showPauseMenu(); void update(); @@ -52,11 +53,14 @@ private: Client *m_client; RenderingEngine *m_rendering_engine; InputHandler *m_input; + std::unique_ptr m_pause_script; // Default: "". If other than "": Empty show_formspec packets will only // close the formspec when the formname matches std::string m_formname; GUIFormSpecMenu *m_formspec = nullptr; + bool handleEmptyFormspec(const std::string &formspec, const std::string &formname); + void deleteFormspec(); }; diff --git a/src/client/hud.cpp b/src/client/hud.cpp index e0b4e83fc..47ef56039 100644 --- a/src/client/hud.cpp +++ b/src/client/hud.cpp @@ -17,17 +17,16 @@ #include "client/tile.h" #include "localplayer.h" #include "camera.h" -#include "porting.h" #include "fontengine.h" #include "guiscalingfilter.h" #include "mesh.h" -#include "wieldmesh.h" #include "client/renderingengine.h" #include "client/minimap.h" #include "client/texturesource.h" #include "gui/touchcontrols.h" #include "util/enriched_string.h" #include "irrlicht_changes/CGUITTFont.h" +#include "gui/drawItemStack.h" #define OBJECT_CROSSHAIR_LINE_SIZE 8 #define CROSSHAIR_LINE_SIZE 10 @@ -880,7 +879,7 @@ void Hud::drawSelectionMesh() core::matrix4 translate; translate.setTranslation(m_selection_pos_with_offset); core::matrix4 rotation; - rotation.setRotationDegrees(m_selection_rotation); + rotation.setRotationRadians(m_selection_rotation_radians); driver->setTransform(video::ETS_WORLD, translate * rotation); if (m_mode == HIGHLIGHT_BOX) { @@ -965,8 +964,8 @@ void Hud::drawBlockBounds() v3f pmax = v3f(x, y, 1 + radius) * MAP_BLOCKSIZE * BS; driver->draw3DLine( - base_corner + v3f(pmin.X, pmin.Y, pmin.Z), - base_corner + v3f(pmax.X, pmax.Y, pmax.Z), + base_corner + pmin, + base_corner + pmax, choose_color(block_pos.X, block_pos.Y) ); driver->draw3DLine( @@ -1039,295 +1038,3 @@ void Hud::resizeHotbar() { m_displaycenter = v2s32(m_screensize.X/2,m_screensize.Y/2); } } - -struct MeshTimeInfo { - u64 time; - scene::IMesh *mesh = nullptr; -}; - -void drawItemStack( - video::IVideoDriver *driver, - gui::IGUIFont *font, - const ItemStack &item, - const core::rect &rect, - const core::rect *clip, - Client *client, - ItemRotationKind rotation_kind, - const v3s16 &angle, - const v3s16 &rotation_speed) -{ - static MeshTimeInfo rotation_time_infos[IT_ROT_NONE]; - - if (item.empty()) { - if (rotation_kind < IT_ROT_NONE && rotation_kind != IT_ROT_OTHER) { - rotation_time_infos[rotation_kind].mesh = NULL; - } - return; - } - - const bool enable_animations = g_settings->getBool("inventory_items_animations"); - - auto *idef = client->idef(); - const ItemDefinition &def = item.getDefinition(idef); - - bool draw_overlay = false; - - const std::string inventory_image = item.getInventoryImage(idef); - const std::string inventory_overlay = item.getInventoryOverlay(idef); - - bool has_mesh = false; - ItemMesh *imesh; - - core::rect viewrect = rect; - if (clip != nullptr) - viewrect.clipAgainst(*clip); - - // Render as mesh if animated or no inventory image - if ((enable_animations && rotation_kind < IT_ROT_NONE) || inventory_image.empty()) { - imesh = idef->getWieldMesh(item, client); - has_mesh = imesh && imesh->mesh; - } - if (has_mesh) { - scene::IMesh *mesh = imesh->mesh; - driver->clearBuffers(video::ECBF_DEPTH); - s32 delta = 0; - if (rotation_kind < IT_ROT_NONE) { - MeshTimeInfo &ti = rotation_time_infos[rotation_kind]; - if (mesh != ti.mesh && rotation_kind != IT_ROT_OTHER) { - ti.mesh = mesh; - ti.time = porting::getTimeMs(); - } else { - delta = porting::getDeltaMs(ti.time, porting::getTimeMs()) % 100000; - } - } - core::rect oldViewPort = driver->getViewPort(); - core::matrix4 oldProjMat = driver->getTransform(video::ETS_PROJECTION); - core::matrix4 oldViewMat = driver->getTransform(video::ETS_VIEW); - - core::matrix4 ProjMatrix; - ProjMatrix.buildProjectionMatrixOrthoLH(2.0f, 2.0f, -1.0f, 100.0f); - - core::matrix4 ViewMatrix; - ViewMatrix.buildProjectionMatrixOrthoLH( - 2.0f * viewrect.getWidth() / rect.getWidth(), - 2.0f * viewrect.getHeight() / rect.getHeight(), - -1.0f, - 100.0f); - ViewMatrix.setTranslation(core::vector3df( - 1.0f * (rect.LowerRightCorner.X + rect.UpperLeftCorner.X - - viewrect.LowerRightCorner.X - viewrect.UpperLeftCorner.X) / - viewrect.getWidth(), - 1.0f * (viewrect.LowerRightCorner.Y + viewrect.UpperLeftCorner.Y - - rect.LowerRightCorner.Y - rect.UpperLeftCorner.Y) / - viewrect.getHeight(), - 0.0f)); - - driver->setTransform(video::ETS_PROJECTION, ProjMatrix); - driver->setTransform(video::ETS_VIEW, ViewMatrix); - - core::matrix4 matrix; - matrix.makeIdentity(); - - if (enable_animations) { - float timer_f = (float) delta / 5000.f; - matrix.setRotationDegrees(v3f( - angle.X + rotation_speed.X * 3.60f * timer_f, - angle.Y + rotation_speed.Y * 3.60f * timer_f, - angle.Z + rotation_speed.Z * 3.60f * timer_f) - ); - } - - driver->setTransform(video::ETS_WORLD, matrix); - driver->setViewPort(viewrect); - - video::SColor basecolor = - client->idef()->getItemstackColor(item, client); - - const u32 mc = mesh->getMeshBufferCount(); - if (mc > imesh->buffer_colors.size()) - imesh->buffer_colors.resize(mc); - for (u32 j = 0; j < mc; ++j) { - scene::IMeshBuffer *buf = mesh->getMeshBuffer(j); - video::SColor c = basecolor; - - auto &p = imesh->buffer_colors[j]; - p.applyOverride(c); - - // TODO: could be moved to a shader - if (p.needColorize(c)) { - buf->setDirty(scene::EBT_VERTEX); - if (imesh->needs_shading) - colorizeMeshBuffer(buf, &c); - else - setMeshBufferColor(buf, c); - } - - video::SMaterial &material = buf->getMaterial(); - material.MaterialType = video::EMT_TRANSPARENT_ALPHA_CHANNEL_REF; - driver->setMaterial(material); - driver->drawMeshBuffer(buf); - } - - driver->setTransform(video::ETS_VIEW, oldViewMat); - driver->setTransform(video::ETS_PROJECTION, oldProjMat); - driver->setViewPort(oldViewPort); - - draw_overlay = def.type == ITEM_NODE && inventory_image.empty(); - } else { // Otherwise just draw as 2D - video::ITexture *texture = client->idef()->getInventoryTexture(item, client); - video::SColor color; - if (texture) { - color = client->idef()->getItemstackColor(item, client); - } else { - color = video::SColor(255, 255, 255, 255); - ITextureSource *tsrc = client->getTextureSource(); - texture = tsrc->getTexture("no_texture.png"); - if (!texture) - return; - } - - const video::SColor colors[] = { color, color, color, color }; - - draw2DImageFilterScaled(driver, texture, rect, - core::rect({0, 0}, core::dimension2di(texture->getOriginalSize())), - clip, colors, true); - - draw_overlay = true; - } - - // draw the inventory_overlay - if (!inventory_overlay.empty() && draw_overlay) { - ITextureSource *tsrc = client->getTextureSource(); - video::ITexture *overlay_texture = tsrc->getTexture(inventory_overlay); - core::dimension2d dimens = overlay_texture->getOriginalSize(); - core::rect srcrect(0, 0, dimens.Width, dimens.Height); - draw2DImageFilterScaled(driver, overlay_texture, rect, srcrect, clip, 0, true); - } - - if (def.type == ITEM_TOOL && item.wear != 0) { - // Draw a progressbar - float barheight = static_cast(rect.getHeight()) / 16; - float barpad_x = static_cast(rect.getWidth()) / 16; - float barpad_y = static_cast(rect.getHeight()) / 16; - - core::rect progressrect( - rect.UpperLeftCorner.X + barpad_x, - rect.LowerRightCorner.Y - barpad_y - barheight, - rect.LowerRightCorner.X - barpad_x, - rect.LowerRightCorner.Y - barpad_y); - - // Shrink progressrect by amount of tool damage - float wear = item.wear / 65535.0f; - int progressmid = - wear * progressrect.UpperLeftCorner.X + - (1 - wear) * progressrect.LowerRightCorner.X; - - // Compute progressbar color - // default scheme: - // wear = 0.0: green - // wear = 0.5: yellow - // wear = 1.0: red - - video::SColor color; - auto barParams = item.getWearBarParams(client->idef()); - if (barParams.has_value()) { - f32 durabilityPercent = 1.0 - wear; - color = barParams->getWearBarColor(durabilityPercent); - } else { - color = video::SColor(255, 255, 255, 255); - int wear_i = MYMIN(std::floor(wear * 600), 511); - wear_i = MYMIN(wear_i + 10, 511); - - if (wear_i <= 255) - color.set(255, wear_i, 255, 0); - else - color.set(255, 255, 511 - wear_i, 0); - } - - core::rect progressrect2 = progressrect; - progressrect2.LowerRightCorner.X = progressmid; - driver->draw2DRectangle(color, progressrect2, clip); - - color = video::SColor(255, 0, 0, 0); - progressrect2 = progressrect; - progressrect2.UpperLeftCorner.X = progressmid; - driver->draw2DRectangle(color, progressrect2, clip); - } - - const std::string &count_text = item.metadata.getString("count_meta"); - if (font != nullptr && (item.count >= 2 || !count_text.empty())) { - // Get the item count as a string - std::string text = count_text.empty() ? itos(item.count) : count_text; - v2u32 dim = font->getDimension(utf8_to_wide(unescape_enriched(text)).c_str()); - v2s32 sdim(dim.X, dim.Y); - - core::rect rect2( - rect.LowerRightCorner - sdim, - rect.LowerRightCorner - ); - - // get the count alignment - s32 count_alignment = stoi(item.metadata.getString("count_alignment")); - if (count_alignment != 0) { - s32 a_x = count_alignment & 3; - s32 a_y = (count_alignment >> 2) & 3; - - s32 x1, x2, y1, y2; - switch (a_x) { - case 1: // left - x1 = rect.UpperLeftCorner.X; - x2 = x1 + sdim.X; - break; - case 2: // middle - x1 = (rect.UpperLeftCorner.X + rect.LowerRightCorner.X - sdim.X) / 2; - x2 = x1 + sdim.X; - break; - case 3: // right - x2 = rect.LowerRightCorner.X; - x1 = x2 - sdim.X; - break; - default: // 0 = default - x1 = rect2.UpperLeftCorner.X; - x2 = rect2.LowerRightCorner.X; - break; - } - - switch (a_y) { - case 1: // up - y1 = rect.UpperLeftCorner.Y; - y2 = y1 + sdim.Y; - break; - case 2: // middle - y1 = (rect.UpperLeftCorner.Y + rect.LowerRightCorner.Y - sdim.Y) / 2; - y2 = y1 + sdim.Y; - break; - case 3: // down - y2 = rect.LowerRightCorner.Y; - y1 = y2 - sdim.Y; - break; - default: // 0 = default - y1 = rect2.UpperLeftCorner.Y; - y2 = rect2.LowerRightCorner.Y; - break; - } - - rect2 = core::rect(x1, y1, x2, y2); - } - - video::SColor color(255, 255, 255, 255); - font->draw(utf8_to_wide(text).c_str(), rect2, color, false, false, &viewrect); - } -} - -void drawItemStack( - video::IVideoDriver *driver, - gui::IGUIFont *font, - const ItemStack &item, - const core::rect &rect, - const core::rect *clip, - Client *client, - ItemRotationKind rotation_kind) -{ - drawItemStack(driver, font, item, rect, clip, client, rotation_kind, - v3s16(0, 0, 0), v3s16(0, 100, 0)); -} diff --git a/src/client/hud.h b/src/client/hud.h index aa4d53cda..e2cf757de 100644 --- a/src/client/hud.h +++ b/src/client/hud.h @@ -74,9 +74,15 @@ public: v3f getSelectionPos() const { return m_selection_pos; } - void setSelectionRotation(v3f rotation) { m_selection_rotation = rotation; } + void setSelectionRotationRadians(v3f rotation) + { + m_selection_rotation_radians = rotation; + } - v3f getSelectionRotation() const { return m_selection_rotation; } + v3f getSelectionRotationRadians() const + { + return m_selection_rotation_radians; + } void setSelectionMeshColor(const video::SColor &color) { @@ -129,7 +135,7 @@ private: std::vector m_halo_boxes; v3f m_selection_pos; v3f m_selection_pos_with_offset; - v3f m_selection_rotation; + v3f m_selection_rotation_radians; scene::IMesh *m_selection_mesh = nullptr; video::SColor m_selection_mesh_color; @@ -147,32 +153,3 @@ private: HIGHLIGHT_NONE } m_mode; }; - -enum ItemRotationKind -{ - IT_ROT_SELECTED, - IT_ROT_HOVERED, - IT_ROT_DRAGGED, - IT_ROT_OTHER, - IT_ROT_NONE, // Must be last, also serves as number -}; - -void drawItemStack(video::IVideoDriver *driver, - gui::IGUIFont *font, - const ItemStack &item, - const core::rect &rect, - const core::rect *clip, - Client *client, - ItemRotationKind rotation_kind); - -void drawItemStack( - video::IVideoDriver *driver, - gui::IGUIFont *font, - const ItemStack &item, - const core::rect &rect, - const core::rect *clip, - Client *client, - ItemRotationKind rotation_kind, - const v3s16 &angle, - const v3s16 &rotation_speed); - diff --git a/src/client/imagefilters.cpp b/src/client/imagefilters.cpp index 09a1198ea..cd7205ff9 100644 --- a/src/client/imagefilters.cpp +++ b/src/client/imagefilters.cpp @@ -285,13 +285,13 @@ void imageScaleNNAA(video::IImage *src, const core::rect &srcrect, video::I maxsx = minsx + sw / dim.Width; maxsx = rangelim(maxsx, 0, sox + sw); if (minsx > maxsx) - SWAP(double, minsx, maxsx); + std::swap(minsx, maxsx); minsy = soy + (dy * sh / dim.Height); minsy = rangelim(minsy, 0, soy + sh); maxsy = minsy + sh / dim.Height; maxsy = rangelim(maxsy, 0, soy + sh); if (minsy > maxsy) - SWAP(double, minsy, maxsy); + std::swap(minsy, maxsy); // Total area, and integral of r, g, b values over that area, // initialized to zero, to be summed up in next loops. diff --git a/src/client/imagesource.cpp b/src/client/imagesource.cpp index e2538c372..3e55dd386 100644 --- a/src/client/imagesource.cpp +++ b/src/client/imagesource.cpp @@ -949,9 +949,10 @@ static void imageTransform(u32 transform, video::IImage *src, video::IImage *dst #define CHECK_DIM(w, h) \ do { \ - if ((w) <= 0 || (h) <= 0 || (w) >= 0xffff || (h) >= 0xffff) { \ - COMPLAIN_INVALID("width or height"); \ - } \ + if ((w) <= 0 || (w) > MAX_IMAGE_DIMENSION) \ + COMPLAIN_INVALID("width"); \ + if ((h) <= 0 || (h) > MAX_IMAGE_DIMENSION) \ + COMPLAIN_INVALID("height"); \ } while(0) bool ImageSource::generateImagePart(std::string_view part_of_name, @@ -1350,6 +1351,8 @@ bool ImageSource::generateImagePart(std::string_view part_of_name, v2u32 frame_size = baseimg->getDimension(); frame_size.Y /= frame_count; + if (frame_size.Y == 0) + frame_size.Y = 1; video::IImage *img = driver->createImage(video::ECF_A8R8G8B8, frame_size); @@ -1498,11 +1501,13 @@ bool ImageSource::generateImagePart(std::string_view part_of_name, u32 w = scale * dim.Width; u32 h = scale * dim.Height; const core::dimension2d newdim(w, h); - video::IImage *newimg = driver->createImage( - baseimg->getColorFormat(), newdim); - baseimg->copyToScaling(newimg); - baseimg->drop(); - baseimg = newimg; + if (w <= MAX_IMAGE_DIMENSION && h <= MAX_IMAGE_DIMENSION) { + video::IImage *newimg = driver->createImage( + baseimg->getColorFormat(), newdim); + baseimg->copyToScaling(newimg); + baseimg->drop(); + baseimg = newimg; + } } } } diff --git a/src/client/imagesource.h b/src/client/imagesource.h index 310dbb7e8..b5e3d8d3a 100644 --- a/src/client/imagesource.h +++ b/src/client/imagesource.h @@ -45,6 +45,12 @@ struct ImageSource { // Insert a source image into the cache without touching the filesystem. void insertSourceImage(const std::string &name, video::IImage *img, bool prefer_local); + // This was picked so that the image buffer size fits in an s32 (assuming 32bpp). + // The exact value is 23170 but this provides some leeway. + // In theory something like 33333x123 could be allowed, but there is no strong + // need or argument. Irrlicht also has the same limit. + static constexpr int MAX_IMAGE_DIMENSION = 23000; + private: // Generate image based on a string like "stone.png" or "[crack:1:0". diff --git a/src/client/inputhandler.cpp b/src/client/inputhandler.cpp index 88969f008..492f2fd6c 100644 --- a/src/client/inputhandler.cpp +++ b/src/client/inputhandler.cpp @@ -12,75 +12,98 @@ #include "log_internal.h" #include "client/renderingengine.h" -void KeyCache::populate_nonchanging() +void MyEventReceiver::reloadKeybindings() { - key[KeyType::ESC] = EscapeKey; -} + keybindings[KeyType::FORWARD] = getKeySetting("keymap_forward"); + keybindings[KeyType::BACKWARD] = getKeySetting("keymap_backward"); + keybindings[KeyType::LEFT] = getKeySetting("keymap_left"); + keybindings[KeyType::RIGHT] = getKeySetting("keymap_right"); + keybindings[KeyType::JUMP] = getKeySetting("keymap_jump"); + keybindings[KeyType::AUX1] = getKeySetting("keymap_aux1"); + keybindings[KeyType::SNEAK] = getKeySetting("keymap_sneak"); + keybindings[KeyType::DIG] = getKeySetting("keymap_dig"); + keybindings[KeyType::PLACE] = getKeySetting("keymap_place"); -void KeyCache::populate() -{ - key[KeyType::FORWARD] = getKeySetting("keymap_forward"); - key[KeyType::BACKWARD] = getKeySetting("keymap_backward"); - key[KeyType::LEFT] = getKeySetting("keymap_left"); - key[KeyType::RIGHT] = getKeySetting("keymap_right"); - key[KeyType::JUMP] = getKeySetting("keymap_jump"); - key[KeyType::AUX1] = getKeySetting("keymap_aux1"); - key[KeyType::SNEAK] = getKeySetting("keymap_sneak"); - key[KeyType::DIG] = getKeySetting("keymap_dig"); - key[KeyType::PLACE] = getKeySetting("keymap_place"); + keybindings[KeyType::ESC] = EscapeKey; - key[KeyType::AUTOFORWARD] = getKeySetting("keymap_autoforward"); + keybindings[KeyType::AUTOFORWARD] = getKeySetting("keymap_autoforward"); - key[KeyType::DROP] = getKeySetting("keymap_drop"); - key[KeyType::INVENTORY] = getKeySetting("keymap_inventory"); - key[KeyType::CHAT] = getKeySetting("keymap_chat"); - key[KeyType::CMD] = getKeySetting("keymap_cmd"); - key[KeyType::CMD_LOCAL] = getKeySetting("keymap_cmd_local"); - key[KeyType::CONSOLE] = getKeySetting("keymap_console"); - key[KeyType::MINIMAP] = getKeySetting("keymap_minimap"); - key[KeyType::FREEMOVE] = getKeySetting("keymap_freemove"); - key[KeyType::PITCHMOVE] = getKeySetting("keymap_pitchmove"); - key[KeyType::FASTMOVE] = getKeySetting("keymap_fastmove"); - key[KeyType::NOCLIP] = getKeySetting("keymap_noclip"); - key[KeyType::HOTBAR_PREV] = getKeySetting("keymap_hotbar_previous"); - key[KeyType::HOTBAR_NEXT] = getKeySetting("keymap_hotbar_next"); - key[KeyType::MUTE] = getKeySetting("keymap_mute"); - key[KeyType::INC_VOLUME] = getKeySetting("keymap_increase_volume"); - key[KeyType::DEC_VOLUME] = getKeySetting("keymap_decrease_volume"); - key[KeyType::CINEMATIC] = getKeySetting("keymap_cinematic"); - key[KeyType::SCREENSHOT] = getKeySetting("keymap_screenshot"); - key[KeyType::TOGGLE_BLOCK_BOUNDS] = getKeySetting("keymap_toggle_block_bounds"); - key[KeyType::TOGGLE_HUD] = getKeySetting("keymap_toggle_hud"); - key[KeyType::TOGGLE_CHAT] = getKeySetting("keymap_toggle_chat"); - key[KeyType::TOGGLE_FOG] = getKeySetting("keymap_toggle_fog"); - key[KeyType::TOGGLE_UPDATE_CAMERA] = getKeySetting("keymap_toggle_update_camera"); - key[KeyType::TOGGLE_DEBUG] = getKeySetting("keymap_toggle_debug"); - key[KeyType::TOGGLE_PROFILER] = getKeySetting("keymap_toggle_profiler"); - key[KeyType::CAMERA_MODE] = getKeySetting("keymap_camera_mode"); - key[KeyType::INCREASE_VIEWING_RANGE] = + keybindings[KeyType::DROP] = getKeySetting("keymap_drop"); + keybindings[KeyType::INVENTORY] = getKeySetting("keymap_inventory"); + keybindings[KeyType::CHAT] = getKeySetting("keymap_chat"); + keybindings[KeyType::CMD] = getKeySetting("keymap_cmd"); + keybindings[KeyType::CMD_LOCAL] = getKeySetting("keymap_cmd_local"); + keybindings[KeyType::CONSOLE] = getKeySetting("keymap_console"); + keybindings[KeyType::MINIMAP] = getKeySetting("keymap_minimap"); + keybindings[KeyType::FREEMOVE] = getKeySetting("keymap_freemove"); + keybindings[KeyType::PITCHMOVE] = getKeySetting("keymap_pitchmove"); + keybindings[KeyType::FASTMOVE] = getKeySetting("keymap_fastmove"); + keybindings[KeyType::NOCLIP] = getKeySetting("keymap_noclip"); + keybindings[KeyType::HOTBAR_PREV] = getKeySetting("keymap_hotbar_previous"); + keybindings[KeyType::HOTBAR_NEXT] = getKeySetting("keymap_hotbar_next"); + keybindings[KeyType::MUTE] = getKeySetting("keymap_mute"); + keybindings[KeyType::INC_VOLUME] = getKeySetting("keymap_increase_volume"); + keybindings[KeyType::DEC_VOLUME] = getKeySetting("keymap_decrease_volume"); + keybindings[KeyType::CINEMATIC] = getKeySetting("keymap_cinematic"); + keybindings[KeyType::SCREENSHOT] = getKeySetting("keymap_screenshot"); + keybindings[KeyType::TOGGLE_BLOCK_BOUNDS] = getKeySetting("keymap_toggle_block_bounds"); + keybindings[KeyType::TOGGLE_HUD] = getKeySetting("keymap_toggle_hud"); + keybindings[KeyType::TOGGLE_CHAT] = getKeySetting("keymap_toggle_chat"); + keybindings[KeyType::TOGGLE_FOG] = getKeySetting("keymap_toggle_fog"); + keybindings[KeyType::TOGGLE_UPDATE_CAMERA] = getKeySetting("keymap_toggle_update_camera"); + keybindings[KeyType::TOGGLE_DEBUG] = getKeySetting("keymap_toggle_debug"); + keybindings[KeyType::TOGGLE_PROFILER] = getKeySetting("keymap_toggle_profiler"); + keybindings[KeyType::CAMERA_MODE] = getKeySetting("keymap_camera_mode"); + keybindings[KeyType::INCREASE_VIEWING_RANGE] = getKeySetting("keymap_increase_viewing_range_min"); - key[KeyType::DECREASE_VIEWING_RANGE] = + keybindings[KeyType::DECREASE_VIEWING_RANGE] = getKeySetting("keymap_decrease_viewing_range_min"); - key[KeyType::RANGESELECT] = getKeySetting("keymap_rangeselect"); - key[KeyType::ZOOM] = getKeySetting("keymap_zoom"); + keybindings[KeyType::RANGESELECT] = getKeySetting("keymap_rangeselect"); + keybindings[KeyType::ZOOM] = getKeySetting("keymap_zoom"); - key[KeyType::QUICKTUNE_NEXT] = getKeySetting("keymap_quicktune_next"); - key[KeyType::QUICKTUNE_PREV] = getKeySetting("keymap_quicktune_prev"); - key[KeyType::QUICKTUNE_INC] = getKeySetting("keymap_quicktune_inc"); - key[KeyType::QUICKTUNE_DEC] = getKeySetting("keymap_quicktune_dec"); + keybindings[KeyType::QUICKTUNE_NEXT] = getKeySetting("keymap_quicktune_next"); + keybindings[KeyType::QUICKTUNE_PREV] = getKeySetting("keymap_quicktune_prev"); + keybindings[KeyType::QUICKTUNE_INC] = getKeySetting("keymap_quicktune_inc"); + keybindings[KeyType::QUICKTUNE_DEC] = getKeySetting("keymap_quicktune_dec"); for (int i = 0; i < HUD_HOTBAR_ITEMCOUNT_MAX; i++) { std::string slot_key_name = "keymap_slot" + std::to_string(i + 1); - key[KeyType::SLOT_1 + i] = getKeySetting(slot_key_name.c_str()); + keybindings[KeyType::SLOT_1 + i] = getKeySetting(slot_key_name.c_str()); } - if (handler) { - // First clear all keys, then re-add the ones we listen for - handler->dontListenForKeys(); - for (const KeyPress &k : key) { - handler->listenForKey(k); - } - handler->listenForKey(EscapeKey); + // First clear all keys, then re-add the ones we listen for + keysListenedFor.clear(); + for (int i = 0; i < KeyType::INTERNAL_ENUM_COUNT; i++) { + listenForKey(keybindings[i], static_cast(i)); + } +} + +bool MyEventReceiver::setKeyDown(KeyPress keyCode, bool is_down) +{ + if (keysListenedFor.find(keyCode) == keysListenedFor.end()) // ignore irrelevant key input + return false; + auto action = keysListenedFor[keyCode]; + if (is_down) { + physicalKeyDown.insert(keyCode); + setKeyDown(action, true); + } else { + physicalKeyDown.erase(keyCode); + setKeyDown(action, false); + } + return true; +} + +void MyEventReceiver::setKeyDown(GameKeyType action, bool is_down) +{ + if (is_down) { + if (!IsKeyDown(action)) + keyWasPressed.set(action); + keyIsDown.set(action); + keyWasDown.set(action); + } else { + if (IsKeyDown(action)) + keyWasReleased.set(action); + keyIsDown.reset(action); } } @@ -111,7 +134,7 @@ bool MyEventReceiver::OnEvent(const SEvent &event) // This is separate from other keyboard handling so that it also works in menus. if (event.EventType == EET_KEY_INPUT_EVENT) { - const KeyPress keyCode(event.KeyInput); + KeyPress keyCode(event.KeyInput); if (keyCode == getKeySetting("keymap_fullscreen")) { if (event.KeyInput.PressedDown && !fullscreen_is_down) { IrrlichtDevice *device = RenderingEngine::get_raw_device(); @@ -142,24 +165,9 @@ bool MyEventReceiver::OnEvent(const SEvent &event) // Remember whether each key is down or up if (event.EventType == irr::EET_KEY_INPUT_EVENT) { - const KeyPress keyCode(event.KeyInput); - if (keysListenedFor[keyCode]) { - if (event.KeyInput.PressedDown) { - if (!IsKeyDown(keyCode)) - keyWasPressed.set(keyCode); - - keyIsDown.set(keyCode); - keyWasDown.set(keyCode); - } else { - if (IsKeyDown(keyCode)) - keyWasReleased.set(keyCode); - - keyIsDown.unset(keyCode); - } - + KeyPress keyCode(event.KeyInput); + if (setKeyDown(keyCode, event.KeyInput.PressedDown)) return true; - } - } else if (g_touchcontrols && event.EventType == irr::EET_TOUCH_INPUT_EVENT) { // In case of touchcontrols, we have to handle different events g_touchcontrols->translateEvent(event); @@ -171,31 +179,22 @@ bool MyEventReceiver::OnEvent(const SEvent &event) // Handle mouse events switch (event.MouseInput.Event) { case EMIE_LMOUSE_PRESSED_DOWN: - keyIsDown.set(LMBKey); - keyWasDown.set(LMBKey); - keyWasPressed.set(LMBKey); + setKeyDown(LMBKey, true); break; case EMIE_MMOUSE_PRESSED_DOWN: - keyIsDown.set(MMBKey); - keyWasDown.set(MMBKey); - keyWasPressed.set(MMBKey); + setKeyDown(MMBKey, true); break; case EMIE_RMOUSE_PRESSED_DOWN: - keyIsDown.set(RMBKey); - keyWasDown.set(RMBKey); - keyWasPressed.set(RMBKey); + setKeyDown(RMBKey, true); break; case EMIE_LMOUSE_LEFT_UP: - keyIsDown.unset(LMBKey); - keyWasReleased.set(LMBKey); + setKeyDown(LMBKey, false); break; case EMIE_MMOUSE_LEFT_UP: - keyIsDown.unset(MMBKey); - keyWasReleased.set(MMBKey); + setKeyDown(MMBKey, false); break; case EMIE_RMOUSE_LEFT_UP: - keyIsDown.unset(RMBKey); - keyWasReleased.set(RMBKey); + setKeyDown(RMBKey, false); break; case EMIE_MOUSE_WHEEL: mouse_wheel += event.MouseInput.Wheel; @@ -257,7 +256,7 @@ s32 RandomInputHandler::Rand(s32 min, s32 max) } struct RandomInputHandlerSimData { - std::string key; + GameKeyType key; float counter; int time_max; }; @@ -265,19 +264,19 @@ struct RandomInputHandlerSimData { void RandomInputHandler::step(float dtime) { static RandomInputHandlerSimData rnd_data[] = { - { "keymap_jump", 0.0f, 40 }, - { "keymap_aux1", 0.0f, 40 }, - { "keymap_forward", 0.0f, 40 }, - { "keymap_left", 0.0f, 40 }, - { "keymap_dig", 0.0f, 30 }, - { "keymap_place", 0.0f, 15 } + { KeyType::JUMP, 0.0f, 40 }, + { KeyType::AUX1, 0.0f, 40 }, + { KeyType::FORWARD, 0.0f, 40 }, + { KeyType::LEFT, 0.0f, 40 }, + { KeyType::DIG, 0.0f, 30 }, + { KeyType::PLACE, 0.0f, 15 } }; for (auto &i : rnd_data) { i.counter -= dtime; if (i.counter < 0.0) { i.counter = 0.1 * Rand(1, i.time_max); - keydown.toggle(getKeySetting(i.key.c_str())); + keydown.flip(i.key); } } { diff --git a/src/client/inputhandler.h b/src/client/inputhandler.h index 542c41bc7..fec52a74d 100644 --- a/src/client/inputhandler.h +++ b/src/client/inputhandler.h @@ -7,7 +7,10 @@ #include "irrlichttypes.h" #include "irr_v2d.h" #include "joystick_controller.h" +#include #include +#include +#include #include "keycode.h" class InputHandler; @@ -17,142 +20,32 @@ enum class PointerType { Touch, }; -/**************************************************************************** - Fast key cache for main game loop - ****************************************************************************/ - -/* This is faster than using getKeySetting with the tradeoff that functions - * using it must make sure that it's initialised before using it and there is - * no error handling (for example bounds checking). This is really intended for - * use only in the main running loop of the client (the_game()) where the faster - * (up to 10x faster) key lookup is an asset. Other parts of the codebase - * (e.g. formspecs) should continue using getKeySetting(). - */ -struct KeyCache -{ - - KeyCache() - { - handler = NULL; - populate(); - populate_nonchanging(); - } - - void populate(); - - // Keys that are not settings dependent - void populate_nonchanging(); - - KeyPress key[KeyType::INTERNAL_ENUM_COUNT]; - InputHandler *handler; -}; - -class KeyList : private std::list -{ - typedef std::list super; - typedef super::iterator iterator; - typedef super::const_iterator const_iterator; - - virtual const_iterator find(const KeyPress &key) const - { - const_iterator f(begin()); - const_iterator e(end()); - - while (f != e) { - if (*f == key) - return f; - - ++f; - } - - return e; - } - - virtual iterator find(const KeyPress &key) - { - iterator f(begin()); - iterator e(end()); - - while (f != e) { - if (*f == key) - return f; - - ++f; - } - - return e; - } - -public: - void clear() { super::clear(); } - - void set(const KeyPress &key) - { - if (find(key) == end()) - push_back(key); - } - - void unset(const KeyPress &key) - { - iterator p(find(key)); - - if (p != end()) - erase(p); - } - - void toggle(const KeyPress &key) - { - iterator p(this->find(key)); - - if (p != end()) - erase(p); - else - push_back(key); - } - - void append(const KeyList &other) - { - for (const KeyPress &key : other) { - set(key); - } - } - - bool operator[](const KeyPress &key) const { return find(key) != end(); } -}; - class MyEventReceiver : public IEventReceiver { public: // This is the one method that we have to implement virtual bool OnEvent(const SEvent &event); - bool IsKeyDown(const KeyPress &keyCode) const { return keyIsDown[keyCode]; } + bool IsKeyDown(GameKeyType key) const { return keyIsDown[key]; } // Checks whether a key was down and resets the state - bool WasKeyDown(const KeyPress &keyCode) + bool WasKeyDown(GameKeyType key) { - bool b = keyWasDown[keyCode]; + bool b = keyWasDown[key]; if (b) - keyWasDown.unset(keyCode); + keyWasDown.reset(key); return b; } // Checks whether a key was just pressed. State will be cleared // in the subsequent iteration of Game::processPlayerInteraction - bool WasKeyPressed(const KeyPress &keycode) const { return keyWasPressed[keycode]; } + bool WasKeyPressed(GameKeyType key) const { return keyWasPressed[key]; } // Checks whether a key was just released. State will be cleared // in the subsequent iteration of Game::processPlayerInteraction - bool WasKeyReleased(const KeyPress &keycode) const { return keyWasReleased[keycode]; } + bool WasKeyReleased(GameKeyType key) const { return keyWasReleased[key]; } - void listenForKey(const KeyPress &keyCode) - { - keysListenedFor.set(keyCode); - } - void dontListenForKeys() - { - keysListenedFor.clear(); - } + void reloadKeybindings(); s32 getMouseWheel() { @@ -163,28 +56,30 @@ public: void clearInput() { - keyIsDown.clear(); - keyWasDown.clear(); - keyWasPressed.clear(); - keyWasReleased.clear(); + physicalKeyDown.clear(); + keyIsDown.reset(); + keyWasDown.reset(); + keyWasPressed.reset(); + keyWasReleased.reset(); mouse_wheel = 0; } void releaseAllKeys() { - keyWasReleased.append(keyIsDown); - keyIsDown.clear(); + physicalKeyDown.clear(); + keyWasReleased |= keyIsDown; + keyIsDown.reset(); } void clearWasKeyPressed() { - keyWasPressed.clear(); + keyWasPressed.reset(); } void clearWasKeyReleased() { - keyWasReleased.clear(); + keyWasReleased.reset(); } JoystickController *joystick = nullptr; @@ -192,26 +87,41 @@ public: PointerType getLastPointerType() { return last_pointer_type; } private: + void listenForKey(KeyPress keyCode, GameKeyType action) + { + if (keyCode) + keysListenedFor[keyCode] = action; + } + + bool setKeyDown(KeyPress keyCode, bool is_down); + void setKeyDown(GameKeyType action, bool is_down); + + /* This is faster than using getKeySetting with the tradeoff that functions + * using it must make sure that it's initialised before using it and there is + * no error handling (for example bounds checking). This is useful here as the + * faster (up to 10x faster) key lookup is an asset. + */ + std::array keybindings; + s32 mouse_wheel = 0; + // The current state of physical keys. + std::set physicalKeyDown; + // The current state of keys - KeyList keyIsDown; + std::bitset keyIsDown; // Like keyIsDown but only reset when that key is read - KeyList keyWasDown; + std::bitset keyWasDown; // Whether a key has just been pressed - KeyList keyWasPressed; + std::bitset keyWasPressed; // Whether a key has just been released - KeyList keyWasReleased; + std::bitset keyWasReleased; // List of keys we listen for - // TODO perhaps the type of this is not really - // performant as KeyList is designed for few but - // often changing keys, and keysListenedFor is expected - // to change seldomly but contain lots of keys. - KeyList keysListenedFor; + std::unordered_map keysListenedFor; // Intentionally not reset by clearInput/releaseAllKeys. bool fullscreen_is_down = false; @@ -222,12 +132,6 @@ private: class InputHandler { public: - InputHandler() - { - keycache.handler = this; - keycache.populate(); - } - virtual ~InputHandler() = default; virtual bool isRandom() const @@ -247,8 +151,7 @@ public: virtual void clearWasKeyPressed() {} virtual void clearWasKeyReleased() {} - virtual void listenForKey(const KeyPress &keyCode) {} - virtual void dontListenForKeys() {} + virtual void reloadKeybindings() {} virtual v2s32 getMousePos() = 0; virtual void setMousePos(s32 x, s32 y) = 0; @@ -261,7 +164,6 @@ public: virtual void releaseAllKeys() {} JoystickController joystick; - KeyCache keycache; }; /* @@ -274,6 +176,7 @@ public: RealInputHandler(MyEventReceiver *receiver) : m_receiver(receiver) { m_receiver->joystick = &joystick; + m_receiver->reloadKeybindings(); } virtual ~RealInputHandler() @@ -283,19 +186,19 @@ public: virtual bool isKeyDown(GameKeyType k) { - return m_receiver->IsKeyDown(keycache.key[k]) || joystick.isKeyDown(k); + return m_receiver->IsKeyDown(k) || joystick.isKeyDown(k); } virtual bool wasKeyDown(GameKeyType k) { - return m_receiver->WasKeyDown(keycache.key[k]) || joystick.wasKeyDown(k); + return m_receiver->WasKeyDown(k) || joystick.wasKeyDown(k); } virtual bool wasKeyPressed(GameKeyType k) { - return m_receiver->WasKeyPressed(keycache.key[k]) || joystick.wasKeyPressed(k); + return m_receiver->WasKeyPressed(k) || joystick.wasKeyPressed(k); } virtual bool wasKeyReleased(GameKeyType k) { - return m_receiver->WasKeyReleased(keycache.key[k]) || joystick.wasKeyReleased(k); + return m_receiver->WasKeyReleased(k) || joystick.wasKeyReleased(k); } virtual float getJoystickSpeed(); @@ -316,13 +219,9 @@ public: m_receiver->clearWasKeyReleased(); } - virtual void listenForKey(const KeyPress &keyCode) + virtual void reloadKeybindings() { - m_receiver->listenForKey(keyCode); - } - virtual void dontListenForKeys() - { - m_receiver->dontListenForKeys(); + m_receiver->reloadKeybindings(); } virtual v2s32 getMousePos(); @@ -360,7 +259,7 @@ public: return true; } - virtual bool isKeyDown(GameKeyType k) { return keydown[keycache.key[k]]; } + virtual bool isKeyDown(GameKeyType k) { return keydown[k]; } virtual bool wasKeyDown(GameKeyType k) { return false; } virtual bool wasKeyPressed(GameKeyType k) { return false; } virtual bool wasKeyReleased(GameKeyType k) { return false; } @@ -377,7 +276,7 @@ public: s32 Rand(s32 min, s32 max); private: - KeyList keydown; + std::bitset keydown; v2s32 mousepos; v2s32 mousespeed; float joystickSpeed; diff --git a/src/client/item_visuals_manager.cpp b/src/client/item_visuals_manager.cpp new file mode 100644 index 000000000..7503d496b --- /dev/null +++ b/src/client/item_visuals_manager.cpp @@ -0,0 +1,102 @@ +// Luanti +// SPDX-License-Identifier: LGPL-2.1-or-later +// Copyright (C) 2025 cx384 + +#include "item_visuals_manager.h" + +#include "mesh.h" +#include "client.h" +#include "texturesource.h" +#include "itemdef.h" +#include "inventory.h" + +ItemVisualsManager::ItemVisuals::~ItemVisuals() { + if (wield_mesh.mesh) + wield_mesh.mesh->drop(); +} + +ItemVisualsManager::ItemVisuals *ItemVisualsManager::createItemVisuals( const ItemStack &item, + Client *client) const +{ + // This is not thread-safe + sanity_check(std::this_thread::get_id() == m_main_thread); + + IItemDefManager *idef = client->idef(); + + const ItemDefinition &def = item.getDefinition(idef); + std::string inventory_image = item.getInventoryImage(idef); + std::string inventory_overlay = item.getInventoryOverlay(idef); + std::string cache_key = def.name; + if (!inventory_image.empty()) + cache_key += "/" + inventory_image; + if (!inventory_overlay.empty()) + cache_key += ":" + inventory_overlay; + + // Skip if already in cache + auto it = m_cached_item_visuals.find(cache_key); + if (it != m_cached_item_visuals.end()) + return it->second.get(); + + infostream << "Lazily creating item texture and mesh for \"" + << cache_key << "\"" << std::endl; + + ITextureSource *tsrc = client->getTextureSource(); + + // Create new ItemVisuals + auto cc = std::make_unique(); + + cc->inventory_texture = NULL; + if (!inventory_image.empty()) + cc->inventory_texture = tsrc->getTexture(inventory_image); + getItemMesh(client, item, &(cc->wield_mesh)); + + cc->palette = tsrc->getPalette(def.palette_image); + + // Put in cache + ItemVisuals *ptr = cc.get(); + m_cached_item_visuals[cache_key] = std::move(cc); + return ptr; +} + +video::ITexture* ItemVisualsManager::getInventoryTexture(const ItemStack &item, + Client *client) const +{ + ItemVisuals *iv = createItemVisuals(item, client); + if (!iv) + return nullptr; + return iv->inventory_texture; +} + +ItemMesh* ItemVisualsManager::getWieldMesh(const ItemStack &item, Client *client) const +{ + ItemVisuals *iv = createItemVisuals(item, client); + if (!iv) + return nullptr; + return &(iv->wield_mesh); +} + +Palette* ItemVisualsManager::getPalette(const ItemStack &item, Client *client) const +{ + ItemVisuals *iv = createItemVisuals(item, client); + if (!iv) + return nullptr; + return iv->palette; +} + +video::SColor ItemVisualsManager::getItemstackColor(const ItemStack &stack, + Client *client) const +{ + // Look for direct color definition + const std::string &colorstring = stack.metadata.getString("color", 0); + video::SColor directcolor; + if (!colorstring.empty() && parseColorString(colorstring, directcolor, true)) + return directcolor; + // See if there is a palette + Palette *palette = getPalette(stack, client); + const std::string &index = stack.metadata.getString("palette_index", 0); + if (palette && !index.empty()) + return (*palette)[mystoi(index, 0, 255)]; + // Fallback color + return client->idef()->get(stack.name).color; +} + diff --git a/src/client/item_visuals_manager.h b/src/client/item_visuals_manager.h new file mode 100644 index 000000000..8684ef477 --- /dev/null +++ b/src/client/item_visuals_manager.h @@ -0,0 +1,68 @@ +// Luanti +// SPDX-License-Identifier: LGPL-2.1-or-later +// Copyright (C) 2025 cx384 + +#pragma once + +#include +#include +#include +#include "wieldmesh.h" // ItemMesh +#include "util/basic_macros.h" + +class Client; +struct ItemStack; +typedef std::vector Palette; // copied from src/client/texturesource.h +namespace irr::video { class ITexture; } + +// Caches data needed to draw an itemstack + +struct ItemVisualsManager +{ + ItemVisualsManager() + { + m_main_thread = std::this_thread::get_id(); + } + + void clear() { + m_cached_item_visuals.clear(); + } + + // Get item inventory texture + video::ITexture* getInventoryTexture(const ItemStack &item, Client *client) const; + + // Get item wield mesh + // Once said to return nullptr if there is an inventory image, but this is wrong + ItemMesh* getWieldMesh(const ItemStack &item, Client *client) const; + + // Get item palette + Palette* getPalette(const ItemStack &item, Client *client) const; + + // Returns the base color of an item stack: the color of all + // tiles that do not define their own color. + video::SColor getItemstackColor(const ItemStack &stack, Client *client) const; + +private: + struct ItemVisuals + { + video::ITexture *inventory_texture; + ItemMesh wield_mesh; + Palette *palette; + + ItemVisuals(): + inventory_texture(nullptr), + palette(nullptr) + {} + + ~ItemVisuals(); + + DISABLE_CLASS_COPY(ItemVisuals); + }; + + // The id of the thread that is allowed to use irrlicht directly + std::thread::id m_main_thread; + // Cached textures and meshes + mutable std::unordered_map> m_cached_item_visuals; + + ItemVisuals* createItemVisuals(const ItemStack &item, Client *client) const; +}; diff --git a/src/client/joystick_controller.cpp b/src/client/joystick_controller.cpp index b8d93dcef..854bed925 100644 --- a/src/client/joystick_controller.cpp +++ b/src/client/joystick_controller.cpp @@ -3,7 +3,6 @@ // Copyright (C) 2016 est31, #include "joystick_controller.h" -#include "irrlichttypes_extrabloated.h" #include "keys.h" #include "settings.h" #include "gettime.h" diff --git a/src/client/keycode.cpp b/src/client/keycode.cpp index 0a3b0db3f..71e068e30 100644 --- a/src/client/keycode.cpp +++ b/src/client/keycode.cpp @@ -6,15 +6,18 @@ #include "settings.h" #include "log.h" #include "debug.h" +#include "renderingengine.h" #include "util/hex.h" #include "util/string.h" #include "util/basic_macros.h" +#include +#include struct table_key { - const char *Name; + std::string Name; // An EKEY_CODE 'symbol' name as a string irr::EKEY_CODE Key; wchar_t Char; // L'\0' means no character assigned - const char *LangName; // NULL means it doesn't have a human description + std::string LangName; // empty string means it doesn't have a human description }; #define DEFINEKEY1(x, lang) /* Irrlicht key without character */ \ @@ -30,7 +33,7 @@ struct table_key { #define N_(text) text -static const struct table_key table[] = { +static std::vector table = { // Keys that can be reliably mapped between Char and Key DEFINEKEY3(0) DEFINEKEY3(1) @@ -126,7 +129,7 @@ static const struct table_key table[] = { DEFINEKEY1(KEY_ADD, N_("Numpad +")) DEFINEKEY1(KEY_SEPARATOR, N_("Numpad .")) DEFINEKEY1(KEY_SUBTRACT, N_("Numpad -")) - DEFINEKEY1(KEY_DECIMAL, NULL) + DEFINEKEY1(KEY_DECIMAL, N_("Numpad .")) DEFINEKEY1(KEY_DIVIDE, N_("Numpad /")) DEFINEKEY4(1) DEFINEKEY4(2) @@ -221,122 +224,156 @@ static const struct table_key table[] = { DEFINEKEY5("_") }; +static const table_key invalid_key = {"", irr::KEY_UNKNOWN, L'\0', ""}; + #undef N_ -static const table_key &lookup_keyname(const char *name) -{ - for (const auto &table_key : table) { - if (strcmp(table_key.Name, name) == 0) - return table_key; - } - - throw UnknownKeycode(name); -} - -static const table_key &lookup_keykey(irr::EKEY_CODE key) -{ - for (const auto &table_key : table) { - if (table_key.Key == key) - return table_key; - } - - std::ostringstream os; - os << ""; - throw UnknownKeycode(os.str().c_str()); -} - static const table_key &lookup_keychar(wchar_t Char) { + if (Char == L'\0') + return invalid_key; + for (const auto &table_key : table) { if (table_key.Char == Char) return table_key; } - std::ostringstream os; - os << ""; - throw UnknownKeycode(os.str().c_str()); + // Create a new entry in the lookup table if one is not available. + auto newsym = wide_to_utf8(std::wstring_view(&Char, 1)); + table_key new_key {newsym, irr::KEY_KEY_CODES_COUNT, Char, newsym}; + return table.emplace_back(std::move(new_key)); } -KeyPress::KeyPress(const char *name) +static const table_key &lookup_keykey(irr::EKEY_CODE key) { - if (strlen(name) == 0) { - Key = irr::KEY_KEY_CODES_COUNT; - Char = L'\0'; - m_name = ""; + if (!Keycode::isValid(key)) + return invalid_key; + + for (const auto &table_key : table) { + if (table_key.Key == key) + return table_key; + } + + return invalid_key; +} + +static const table_key &lookup_keyname(std::string_view name) +{ + if (name.empty()) + return invalid_key; + + for (const auto &table_key : table) { + if (table_key.Name == name) + return table_key; + } + + auto wname = utf8_to_wide(name); + if (wname.empty()) + return invalid_key; + return lookup_keychar(wname[0]); +} + +static const table_key &lookup_scancode(const u32 scancode) +{ + auto key = RenderingEngine::get_raw_device()->getKeyFromScancode(scancode); + return std::holds_alternative(key) ? + lookup_keykey(std::get(key)) : + lookup_keychar(std::get(key)); +} + +static const table_key &lookup_scancode(const std::variant &scancode) +{ + return std::holds_alternative(scancode) ? + lookup_keykey(std::get(scancode)) : + lookup_scancode(std::get(scancode)); +} + +void KeyPress::loadFromKey(irr::EKEY_CODE keycode, wchar_t keychar) +{ + scancode = RenderingEngine::get_raw_device()->getScancodeFromKey(Keycode(keycode, keychar)); +} + +KeyPress::KeyPress(const std::string &name) +{ + if (loadFromScancode(name)) return; - } - - if (strlen(name) <= 4) { - // Lookup by resulting character - int chars_read = mbtowc(&Char, name, 1); - FATAL_ERROR_IF(chars_read != 1, "Unexpected multibyte character"); - try { - auto &k = lookup_keychar(Char); - m_name = k.Name; - Key = k.Key; - return; - } catch (UnknownKeycode &e) {}; - } else { - // Lookup by name - m_name = name; - try { - auto &k = lookup_keyname(name); - Key = k.Key; - Char = k.Char; - return; - } catch (UnknownKeycode &e) {}; - } - - // It's not a known key, complain and try to do something - Key = irr::KEY_KEY_CODES_COUNT; - int chars_read = mbtowc(&Char, name, 1); - FATAL_ERROR_IF(chars_read != 1, "Unexpected multibyte character"); - m_name = ""; - warningstream << "KeyPress: Unknown key '" << name - << "', falling back to first char." << std::endl; + const auto &key = lookup_keyname(name); + loadFromKey(key.Key, key.Char); } -KeyPress::KeyPress(const irr::SEvent::SKeyInput &in, bool prefer_character) +KeyPress::KeyPress(const irr::SEvent::SKeyInput &in) { - if (prefer_character) - Key = irr::KEY_KEY_CODES_COUNT; - else - Key = in.Key; - Char = in.Char; - - try { - if (valid_kcode(Key)) - m_name = lookup_keykey(Key).Name; + if (USE_SDL2) { + if (in.SystemKeyCode) + scancode.emplace(in.SystemKeyCode); else - m_name = lookup_keychar(Char).Name; - } catch (UnknownKeycode &e) { - m_name.clear(); - }; + scancode.emplace(in.Key); + } else { + loadFromKey(in.Key, in.Char); + } } -const char *KeyPress::sym() const +std::string KeyPress::formatScancode() const { - return m_name.c_str(); + if (USE_SDL2) { + if (auto pv = std::get_if(&scancode)) + return *pv == 0 ? "" : "SYSTEM_SCANCODE_" + std::to_string(*pv); + } + return ""; } -const char *KeyPress::name() const +std::string KeyPress::sym() const { - if (m_name.empty()) - return ""; - const char *ret; - if (valid_kcode(Key)) - ret = lookup_keykey(Key).LangName; - else - ret = lookup_keychar(Char).LangName; - return ret ? ret : ""; + std::string name = lookup_scancode(scancode).Name; + if (USE_SDL2 || name.empty()) + if (auto newname = formatScancode(); !newname.empty()) + return newname; + return name; } -const KeyPress EscapeKey("KEY_ESCAPE"); +std::string KeyPress::name() const +{ + const auto &name = lookup_scancode(scancode).LangName; + if (!name.empty()) + return name; + return formatScancode(); +} -const KeyPress LMBKey("KEY_LBUTTON"); -const KeyPress MMBKey("KEY_MBUTTON"); -const KeyPress RMBKey("KEY_RBUTTON"); +irr::EKEY_CODE KeyPress::getKeycode() const +{ + return lookup_scancode(scancode).Key; +} + +wchar_t KeyPress::getKeychar() const +{ + return lookup_scancode(scancode).Char; +} + +bool KeyPress::loadFromScancode(const std::string &name) +{ + if (USE_SDL2) { + if (!str_starts_with(name, "SYSTEM_SCANCODE_")) + return false; + char *p; + const auto code = strtoul(name.c_str()+16, &p, 10); + if (p != name.c_str() + name.size()) + return false; + scancode.emplace(code); + return true; + } else { + return false; + } +} + +std::unordered_map specialKeyCache; +KeyPress KeyPress::getSpecialKey(const std::string &name) +{ + auto &key = specialKeyCache[name]; + if (!key) + key = KeyPress(name); + return key; +} /* Key config @@ -345,14 +382,18 @@ const KeyPress RMBKey("KEY_RBUTTON"); // A simple cache for quicker lookup static std::unordered_map g_key_setting_cache; -const KeyPress &getKeySetting(const char *settingname) +KeyPress getKeySetting(const std::string &settingname) { auto n = g_key_setting_cache.find(settingname); if (n != g_key_setting_cache.end()) return n->second; + auto keysym = g_settings->get(settingname); auto &ref = g_key_setting_cache[settingname]; - ref = g_settings->get(settingname).c_str(); + ref = KeyPress(keysym); + if (!keysym.empty() && !ref) { + warningstream << "Invalid key '" << keysym << "' for '" << settingname << "'." << std::endl; + } return ref; } @@ -360,8 +401,3 @@ void clearKeyCache() { g_key_setting_cache.clear(); } - -irr::EKEY_CODE keyname_to_keycode(const char *name) -{ - return lookup_keyname(name).Key; -} diff --git a/src/client/keycode.h b/src/client/keycode.h index 4c63be7fa..503529b52 100644 --- a/src/client/keycode.h +++ b/src/client/keycode.h @@ -4,62 +4,95 @@ #pragma once -#include "exceptions.h" #include "irrlichttypes.h" #include #include #include +#include -class UnknownKeycode : public BaseException -{ -public: - UnknownKeycode(const char *s) : - BaseException(s) {}; -}; - -/* A key press, consisting of either an Irrlicht keycode - or an actual char */ - +/* A key press, consisting of a scancode or a keycode. + * This fits into 64 bits, so prefer passing this by value. +*/ class KeyPress { public: KeyPress() = default; - KeyPress(const char *name); + KeyPress(const std::string &name); - KeyPress(const irr::SEvent::SKeyInput &in, bool prefer_character = false); + KeyPress(const irr::SEvent::SKeyInput &in); - bool operator==(const KeyPress &o) const + // Get a string representation that is suitable for use in minetest.conf + std::string sym() const; + + // Get a human-readable string representation + std::string name() const; + + // Get the corresponding keycode or KEY_UNKNOWN if one is not available + irr::EKEY_CODE getKeycode() const; + + // Get the corresponding keychar or '\0' if one is not available + wchar_t getKeychar() const; + + // Get the scancode or 0 is one is not available + u32 getScancode() const { - return (Char > 0 && Char == o.Char) || (valid_kcode(Key) && Key == o.Key); + if (auto pv = std::get_if(&scancode)) + return *pv; + return 0; } - const char *sym() const; - const char *name() const; - -protected: - static bool valid_kcode(irr::EKEY_CODE k) - { - return k > 0 && k < irr::KEY_KEY_CODES_COUNT; + bool operator==(KeyPress o) const { + return scancode == o.scancode; + } + bool operator!=(KeyPress o) const { + return !(*this == o); } - irr::EKEY_CODE Key = irr::KEY_KEY_CODES_COUNT; - wchar_t Char = L'\0'; - std::string m_name = ""; + // Used for e.g. std::set + bool operator<(KeyPress o) const { + return scancode < o.scancode; + } + + // Check whether the keypress is valid + operator bool() const + { + return std::holds_alternative(scancode) ? + Keycode::isValid(std::get(scancode)) : + std::get(scancode) != 0; + } + + static KeyPress getSpecialKey(const std::string &name); + +private: + using value_type = std::variant; + bool loadFromScancode(const std::string &name); + void loadFromKey(irr::EKEY_CODE keycode, wchar_t keychar); + std::string formatScancode() const; + + value_type scancode = irr::KEY_UNKNOWN; + + friend std::hash; +}; + +template <> +struct std::hash +{ + size_t operator()(KeyPress kp) const noexcept { + return std::hash{}(kp.scancode); + } }; // Global defines for convenience - -extern const KeyPress EscapeKey; - -extern const KeyPress LMBKey; -extern const KeyPress MMBKey; // Middle Mouse Button -extern const KeyPress RMBKey; +// This implementation defers creation of the objects to make sure that the +// IrrlichtDevice is initialized. +#define EscapeKey KeyPress::getSpecialKey("KEY_ESCAPE") +#define LMBKey KeyPress::getSpecialKey("KEY_LBUTTON") +#define MMBKey KeyPress::getSpecialKey("KEY_MBUTTON") // Middle Mouse Button +#define RMBKey KeyPress::getSpecialKey("KEY_RBUTTON") // Key configuration getter -const KeyPress &getKeySetting(const char *settingname); +KeyPress getKeySetting(const std::string &settingname); // Clear fast lookup cache void clearKeyCache(); - -irr::EKEY_CODE keyname_to_keycode(const char *name); diff --git a/src/client/mapblock_mesh.cpp b/src/client/mapblock_mesh.cpp index a47bf5ae9..a84747188 100644 --- a/src/client/mapblock_mesh.cpp +++ b/src/client/mapblock_mesh.cpp @@ -21,6 +21,9 @@ #include #include #include "client/texturesource.h" +#include +#include +#include /* MeshMakeData @@ -344,7 +347,7 @@ void getNodeTileN(MapNode mn, const v3s16 &p, u8 tileindex, MeshMakeData *data, tile = f.tiles[tileindex]; bool has_crack = p == data->m_crack_pos_relative; for (TileLayer &layer : tile.layers) { - if (layer.texture_id == 0) + if (layer.empty()) continue; if (!layer.has_color) mn.getColor(f, &(layer.color)); @@ -423,20 +426,6 @@ void getNodeTile(MapNode mn, const v3s16 &p, const v3s16 &dir, MeshMakeData *dat tile.rotation = tile.world_aligned ? TileRotation::None : dir_to_tile[facedir][dir_i].rotation; } -static void applyTileColor(PreMeshBuffer &pmb) -{ - video::SColor tc = pmb.layer.color; - if (tc == video::SColor(0xFFFFFFFF)) - return; - for (video::S3DVertex &vertex : pmb.vertices) { - video::SColor *c = &vertex.Color; - c->set(c->getAlpha(), - c->getRed() * tc.getRed() / 255, - c->getGreen() * tc.getGreen() / 255, - c->getBlue() * tc.getBlue() / 255); - } -} - /* MapBlockBspTree */ @@ -608,7 +597,7 @@ void PartialMeshBuffer::draw(video::IVideoDriver *driver) const MapBlockMesh */ -MapBlockMesh::MapBlockMesh(Client *client, MeshMakeData *data, v3s16 camera_offset): +MapBlockMesh::MapBlockMesh(Client *client, MeshMakeData *data): m_tsrc(client->getTextureSource()), m_shdrsrc(client->getShaderSource()), m_bounding_sphere_center((data->m_side_length * 0.5f - 0.5f) * BS), @@ -665,7 +654,7 @@ MapBlockMesh::MapBlockMesh(Client *client, MeshMakeData *data, v3s16 camera_offs { PreMeshBuffer &p = collector.prebuffers[layer][i]; - applyTileColor(p); + p.applyTileColor(); // Generate animation data // - Cracks @@ -689,38 +678,23 @@ MapBlockMesh::MapBlockMesh(Client *client, MeshMakeData *data, v3s16 camera_offs // - Texture animation if (p.layer.material_flags & MATERIAL_FLAG_ANIMATION) { // Add to MapBlockMesh in order to animate these tiles - auto &info = m_animation_info[{layer, i}]; - info.tile = p.layer; - info.frame = 0; - info.frame_offset = 0; + m_animation_info.emplace(std::make_pair(layer, i), AnimationInfo(p.layer)); // Replace tile texture with the first animation frame p.layer.texture = (*p.layer.frames)[0].texture; } // Create material video::SMaterial material; - material.BackfaceCulling = true; material.FogEnable = true; - material.setTexture(0, p.layer.texture); material.forEachTexture([] (auto &tex) { tex.MinFilter = video::ETMINF_NEAREST_MIPMAP_NEAREST; tex.MagFilter = video::ETMAGF_NEAREST; }); - /* - * The second layer is for overlays, but uses the same vertex positions - * as the first, which quickly leads to z-fighting. - * To fix this we can offset the polygons in the direction of the camera. - * This only affects the depth buffer and leads to no visual gaps in geometry. - */ - if (layer == 1) { - material.PolygonOffsetSlopeScale = -1; - material.PolygonOffsetDepthBias = -1; - } { material.MaterialType = m_shdrsrc->getShaderInfo( p.layer.shader_id).material; - p.layer.applyMaterialOptionsWithShaders(material); + p.layer.applyMaterialOptions(material, layer); } scene::SMeshBuffer *buf = new scene::SMeshBuffer(); @@ -787,6 +761,12 @@ bool MapBlockMesh::animate(bool faraway, float time, int crack, // Cracks if (crack != m_last_crack) { for (auto &crack_material : m_crack_materials) { + + // TODO crack on animated tiles does not work + auto anim_it = m_animation_info.find(crack_material.first); + if (anim_it != m_animation_info.end()) + continue; + scene::IMeshBuffer *buf = m_mesh[crack_material.first.first]-> getMeshBuffer(crack_material.first.second); @@ -796,16 +776,6 @@ bool MapBlockMesh::animate(bool faraway, float time, int crack, video::ITexture *new_texture = m_tsrc->getTextureForMesh(s, &new_texture_id); buf->getMaterial().setTexture(0, new_texture); - - // If the current material is also animated, update animation info - auto anim_it = m_animation_info.find(crack_material.first); - if (anim_it != m_animation_info.end()) { - TileLayer &tile = anim_it->second.tile; - tile.texture = new_texture; - tile.texture_id = new_texture_id; - // force animation update - anim_it->second.frame = -1; - } } m_last_crack = crack; @@ -813,20 +783,9 @@ bool MapBlockMesh::animate(bool faraway, float time, int crack, // Texture animation for (auto &it : m_animation_info) { - const TileLayer &tile = it.second.tile; - // Figure out current frame - int frameno = (int)(time * 1000 / tile.animation_frame_length_ms - + it.second.frame_offset) % tile.animation_frame_count; - // If frame doesn't change, skip - if (frameno == it.second.frame) - continue; - - it.second.frame = frameno; - scene::IMeshBuffer *buf = m_mesh[it.first.first]->getMeshBuffer(it.first.second); - - const FrameSpec &frame = (*tile.frames)[frameno]; - buf->getMaterial().setTexture(0, frame.texture); + video::SMaterial &material = buf->getMaterial(); + it.second.updateTexture(material, time); } return true; diff --git a/src/client/mapblock_mesh.h b/src/client/mapblock_mesh.h index 55aa172bd..6d8ddc36c 100644 --- a/src/client/mapblock_mesh.h +++ b/src/client/mapblock_mesh.h @@ -170,19 +170,17 @@ private: /* Holds a mesh for a mapblock. - Besides the SMesh*, this contains information used for animating - the vertex positions, colors and texture coordinates of the mesh. + Besides the SMesh*, this contains information used fortransparency sorting + and texture animation. For example: - - cracks [implemented] - - day/night transitions [implemented] - - animated flowing liquids [not implemented] - - animating vertex positions for e.g. axles [not implemented] + - cracks + - day/night transitions */ class MapBlockMesh { public: // Builds the mesh given - MapBlockMesh(Client *client, MeshMakeData *data, v3s16 camera_offset); + MapBlockMesh(Client *client, MeshMakeData *data); ~MapBlockMesh(); // Main animation function, parameters: @@ -193,13 +191,17 @@ public: // Returns true if anything has been changed. bool animate(bool faraway, float time, int crack, u32 daynight_ratio); + /// @warning ClientMap requires that the vertex and index data is not modified scene::IMesh *getMesh() { return m_mesh[0].get(); } + /// @param layer layer index + /// @warning ClientMap requires that the vertex and index data is not modified scene::IMesh *getMesh(u8 layer) { + assert(layer < MAX_TILE_LAYERS); return m_mesh[layer].get(); } @@ -244,11 +246,6 @@ public: } private: - struct AnimationInfo { - int frame; // last animation frame - int frame_offset; - TileLayer tile; - }; irr_ptr m_mesh[MAX_TILE_LAYERS]; std::vector m_minimap_mapblocks; diff --git a/src/client/mesh_generator_thread.cpp b/src/client/mesh_generator_thread.cpp index 70f4287ab..712c785ce 100644 --- a/src/client/mesh_generator_thread.cpp +++ b/src/client/mesh_generator_thread.cpp @@ -145,8 +145,7 @@ QueuedMeshUpdate *MeshUpdateQueue::pop() MutexAutoLock lock(m_mutex); bool must_be_urgent = !m_urgents.empty(); - for (std::vector::iterator i = m_queue.begin(); - i != m_queue.end(); ++i) { + for (auto i = m_queue.begin(); i != m_queue.end(); ++i) { QueuedMeshUpdate *q = *i; if (must_be_urgent && m_urgents.count(q->p) == 0) continue; @@ -202,8 +201,8 @@ void MeshUpdateQueue::fillDataFromMapBlocks(QueuedMeshUpdate *q) MeshUpdateWorkerThread */ -MeshUpdateWorkerThread::MeshUpdateWorkerThread(Client *client, MeshUpdateQueue *queue_in, MeshUpdateManager *manager, v3s16 *camera_offset) : - UpdateThread("Mesh"), m_client(client), m_queue_in(queue_in), m_manager(manager), m_camera_offset(camera_offset) +MeshUpdateWorkerThread::MeshUpdateWorkerThread(Client *client, MeshUpdateQueue *queue_in, MeshUpdateManager *manager) : + UpdateThread("Mesh"), m_client(client), m_queue_in(queue_in), m_manager(manager) { m_generation_interval = g_settings->getU16("mesh_generation_interval"); m_generation_interval = rangelim(m_generation_interval, 0, 50); @@ -220,7 +219,7 @@ void MeshUpdateWorkerThread::doUpdate() ScopeProfiler sp(g_profiler, "Client: Mesh making (sum)"); - MapBlockMesh *mesh_new = new MapBlockMesh(m_client, q->data, *m_camera_offset); + MapBlockMesh *mesh_new = new MapBlockMesh(m_client, q->data); MeshUpdateResult r; r.p = q->p; @@ -254,7 +253,7 @@ MeshUpdateManager::MeshUpdateManager(Client *client): infostream << "MeshUpdateManager: using " << number_of_threads << " threads" << std::endl; for (int i = 0; i < number_of_threads; i++) - m_workers.push_back(std::make_unique(client, &m_queue_in, this, &m_camera_offset)); + m_workers.push_back(std::make_unique(client, &m_queue_in, this)); } void MeshUpdateManager::updateBlock(Map *map, v3s16 p, bool ack_block_to_server, @@ -264,8 +263,8 @@ void MeshUpdateManager::updateBlock(Map *map, v3s16 p, bool ack_block_to_server, g_settings->getBool("smooth_lighting") && !g_settings->getFlag("performance_tradeoffs"); if (!m_queue_in.addBlock(map, p, ack_block_to_server, urgent)) { - warningstream << "Update requested for non-existent block at (" - << p.X << ", " << p.Y << ", " << p.Z << ")" << std::endl; + warningstream << "Update requested for non-existent block at " + << p << std::endl; return; } if (update_neighbors) { diff --git a/src/client/mesh_generator_thread.h b/src/client/mesh_generator_thread.h index 72e4c7bed..c8db03d28 100644 --- a/src/client/mesh_generator_thread.h +++ b/src/client/mesh_generator_thread.h @@ -93,7 +93,7 @@ class MeshUpdateManager; class MeshUpdateWorkerThread : public UpdateThread { public: - MeshUpdateWorkerThread(Client *client, MeshUpdateQueue *queue_in, MeshUpdateManager *manager, v3s16 *camera_offset); + MeshUpdateWorkerThread(Client *client, MeshUpdateQueue *queue_in, MeshUpdateManager *manager); protected: virtual void doUpdate(); @@ -102,7 +102,6 @@ private: Client *m_client; MeshUpdateQueue *m_queue_in; MeshUpdateManager *m_manager; - v3s16 *m_camera_offset; // TODO: Add callback to update these when g_settings changes int m_generation_interval; @@ -121,8 +120,6 @@ public: bool getNextResult(MeshUpdateResult &r); - v3s16 m_camera_offset; - void start(); void stop(); void wait(); diff --git a/src/client/meshgen/collector.cpp b/src/client/meshgen/collector.cpp index 5a4fb8489..c8b726cde 100644 --- a/src/client/meshgen/collector.cpp +++ b/src/client/meshgen/collector.cpp @@ -12,7 +12,7 @@ void MeshCollector::append(const TileSpec &tile, const video::S3DVertex *vertice { for (int layernum = 0; layernum < MAX_TILE_LAYERS; layernum++) { const TileLayer *layer = &tile.layers[layernum]; - if (layer->texture_id == 0) + if (layer->empty()) continue; append(*layer, vertices, numVertices, indices, numIndices, layernum, tile.world_aligned); diff --git a/src/client/meshgen/collector.h b/src/client/meshgen/collector.h index 693e2be04..f1f8a1481 100644 --- a/src/client/meshgen/collector.h +++ b/src/client/meshgen/collector.h @@ -18,6 +18,21 @@ struct PreMeshBuffer PreMeshBuffer() = default; explicit PreMeshBuffer(const TileLayer &layer) : layer(layer) {} + + /// @brief Colorizes vertices as indicated by tile layer + void applyTileColor() + { + video::SColor tc = layer.color; + if (tc == video::SColor(0xFFFFFFFF)) + return; + for (auto &vertex : vertices) { + video::SColor *c = &vertex.Color; + c->set(c->getAlpha(), + c->getRed() * tc.getRed() / 255U, + c->getGreen() * tc.getGreen() / 255U, + c->getBlue() * tc.getBlue() / 255U); + } + } }; struct MeshCollector diff --git a/src/client/minimap.cpp b/src/client/minimap.cpp index ba9ec967a..cb3791674 100644 --- a/src/client/minimap.cpp +++ b/src/client/minimap.cpp @@ -78,15 +78,13 @@ void MinimapUpdateThread::doUpdate() while (popBlockUpdate(&update)) { if (update.data) { // Swap two values in the map using single lookup - std::pair::iterator, bool> - result = m_blocks_cache.insert(std::make_pair(update.pos, update.data)); + auto result = m_blocks_cache.insert(std::make_pair(update.pos, update.data)); if (!result.second) { delete result.first->second; result.first->second = update.data; } } else { - std::map::iterator it; - it = m_blocks_cache.find(update.pos); + auto it = m_blocks_cache.find(update.pos); if (it != m_blocks_cache.end()) { delete it->second; m_blocks_cache.erase(it); @@ -124,8 +122,7 @@ void MinimapUpdateThread::getMap(v3s16 pos, s16 size, s16 height) for (blockpos.Z = blockpos_min.Z; blockpos.Z <= blockpos_max.Z; ++blockpos.Z) for (blockpos.Y = blockpos_min.Y; blockpos.Y <= blockpos_max.Y; ++blockpos.Y) for (blockpos.X = blockpos_min.X; blockpos.X <= blockpos_max.X; ++blockpos.X) { - std::map::const_iterator pblock = - m_blocks_cache.find(blockpos); + auto pblock = m_blocks_cache.find(blockpos); if (pblock == m_blocks_cache.end()) continue; const MinimapMapblock &block = *pblock->second; @@ -647,8 +644,7 @@ void Minimap::drawMinimap(core::rect rect) f32 sin_angle = std::sin(m_angle * core::DEGTORAD); f32 cos_angle = std::cos(m_angle * core::DEGTORAD); s32 marker_size2 = 0.025 * (float)rect.getWidth();; - for (std::list::const_iterator - i = m_active_markers.begin(); + for (auto i = m_active_markers.begin(); i != m_active_markers.end(); ++i) { v2f posf = *i; if (data->minimap_shape_round) { diff --git a/src/client/particles.cpp b/src/client/particles.cpp index 693e5f00c..179c9c465 100644 --- a/src/client/particles.cpp +++ b/src/client/particles.cpp @@ -193,7 +193,7 @@ void Particle::updateVertices(ClientEnvironment *env, video::SColor color) video::S3DVertex *vertices = m_buffer->getVertices(m_index); if (m_texture.tex != nullptr) - scale = m_texture.tex -> scale.blend(m_time / (m_expiration+0.1)); + scale = m_texture.tex -> scale.blend(m_time / (m_expiration+0.1f)); else scale = v2f(1.f, 1.f); @@ -203,7 +203,7 @@ void Particle::updateVertices(ClientEnvironment *env, video::SColor color) v2u32 framesize; texcoord = m_p.animation.getTextureCoords(texsize, m_animation_frame); m_p.animation.determineParams(texsize, NULL, NULL, &framesize); - framesize_f = v2f(framesize.X / (float) texsize.X, framesize.Y / (float) texsize.Y); + framesize_f = v2f::from(framesize) / v2f::from(texsize); tx0 = m_texpos.X + texcoord.X; tx1 = m_texpos.X + texcoord.X + framesize_f.X * m_texsize.X; @@ -392,7 +392,7 @@ void ParticleSpawner::spawnParticle(ClientEnvironment *env, float radius, } case ParticleParamTypes::AttractorKind::line: { - // https://github.com/minetest/minetest/issues/11505#issuecomment-915612700 + // const auto& lorigin = attractor_origin; v3f ldir = attractor_direction; ldir.normalize(); @@ -408,7 +408,7 @@ void ParticleSpawner::spawnParticle(ClientEnvironment *env, float radius, } case ParticleParamTypes::AttractorKind::plane: { - // https://github.com/minetest/minetest/issues/11505#issuecomment-915612700 + // const v3f& porigin = attractor_origin; v3f normal = attractor_direction; normal.normalize(); diff --git a/src/client/particles.h b/src/client/particles.h index 72294a552..fe7d68475 100644 --- a/src/client/particles.h +++ b/src/client/particles.h @@ -11,6 +11,7 @@ #include "SMeshBuffer.h" #include +#include #include #include #include "../particles.h" diff --git a/src/client/render/anaglyph.cpp b/src/client/render/anaglyph.cpp index 833ad0114..51e12d752 100644 --- a/src/client/render/anaglyph.cpp +++ b/src/client/render/anaglyph.cpp @@ -6,7 +6,7 @@ #include "anaglyph.h" #include "client/camera.h" #include - +#include /// SetColorMaskStep step diff --git a/src/client/render/core.h b/src/client/render/core.h index bfb2cb25a..f9d92bee5 100644 --- a/src/client/render/core.h +++ b/src/client/render/core.h @@ -4,7 +4,9 @@ // Copyright (C) 2017 numzero, Lobachevskiy Vitaliy #pragma once -#include "irrlichttypes_extrabloated.h" + +#include "irr_v2d.h" +#include namespace irr { diff --git a/src/client/render/pipeline.h b/src/client/render/pipeline.h index 17bed8b7b..d91d523b9 100644 --- a/src/client/render/pipeline.h +++ b/src/client/render/pipeline.h @@ -3,7 +3,7 @@ // Copyright (C) 2022 x2048, Dmitry Kostenko #pragma once -#include "irrlichttypes_extrabloated.h" +#include "irrlichttypes_bloated.h" #include // used in all render/*.cpp #include // used in all render/*.cpp diff --git a/src/client/render/plain.cpp b/src/client/render/plain.cpp index c24ba8837..0f94e3ef0 100644 --- a/src/client/render/plain.cpp +++ b/src/client/render/plain.cpp @@ -11,6 +11,7 @@ #include "client/hud.h" #include "client/minimap.h" #include "client/shadows/dynamicshadowsrender.h" +#include /// Draw3D pipeline step void Draw3D::run(PipelineContext &context) diff --git a/src/client/render/secondstage.cpp b/src/client/render/secondstage.cpp index b8744f694..b00a54575 100644 --- a/src/client/render/secondstage.cpp +++ b/src/client/render/secondstage.cpp @@ -10,6 +10,7 @@ #include "client/tile.h" #include "settings.h" #include "mt_opengl.h" +#include PostProcessingStep::PostProcessingStep(u32 _shader_id, const std::vector &_texture_map) : shader_id(_shader_id), texture_map(_texture_map) diff --git a/src/client/render/sidebyside.cpp b/src/client/render/sidebyside.cpp index 57d5b474e..a26dbfdde 100644 --- a/src/client/render/sidebyside.cpp +++ b/src/client/render/sidebyside.cpp @@ -7,6 +7,7 @@ #include "client/client.h" #include "client/hud.h" #include "client/camera.h" +#include DrawImageStep::DrawImageStep(u8 texture_index, v2f _offset) : texture_index(texture_index), offset(_offset) @@ -82,4 +83,4 @@ void populateSideBySidePipeline(RenderPipeline *pipeline, Client *client, bool h step->setRenderSource(buffer); step->setRenderTarget(screen); } -} \ No newline at end of file +} diff --git a/src/client/renderingengine.cpp b/src/client/renderingengine.cpp index 807c5816a..643898eac 100644 --- a/src/client/renderingengine.cpp +++ b/src/client/renderingengine.cpp @@ -34,9 +34,9 @@ void FpsControl::reset() last_time = porting::getTimeUs(); } -void FpsControl::limit(IrrlichtDevice *device, f32 *dtime, bool assume_paused) +void FpsControl::limit(IrrlichtDevice *device, f32 *dtime) { - const float fps_limit = (device->isWindowFocused() && !assume_paused) + const float fps_limit = device->isWindowFocused() ? g_settings->getFloat("fps_max") : g_settings->getFloat("fps_max_unfocused"); const u64 frametime_min = 1000000.0f / std::max(fps_limit, 1.0f); @@ -375,8 +375,8 @@ std::vector RenderingEngine::getSupportedVideoDrivers() // Only check these drivers. We do not support software and D3D in any capacity. // ordered by preference (best first) static const video::E_DRIVER_TYPE glDrivers[] = { - video::EDT_OPENGL3, video::EDT_OPENGL, + video::EDT_OPENGL3, video::EDT_OGLES2, video::EDT_NULL, }; diff --git a/src/client/renderingengine.h b/src/client/renderingengine.h index ce6647212..d76b19abe 100644 --- a/src/client/renderingengine.h +++ b/src/client/renderingengine.h @@ -9,7 +9,6 @@ #include #include #include "client/inputhandler.h" -#include "irrlichttypes_extrabloated.h" #include "debug.h" #include "config.h" #include "client/shader.h" @@ -46,7 +45,7 @@ struct FpsControl { void reset(); - void limit(IrrlichtDevice *device, f32 *dtime, bool assume_paused = false); + void limit(IrrlichtDevice *device, f32 *dtime); u32 getBusyMs() const { return busy_time / 1000; } diff --git a/src/client/shader.cpp b/src/client/shader.cpp index 656b060bd..33b339051 100644 --- a/src/client/shader.cpp +++ b/src/client/shader.cpp @@ -6,7 +6,6 @@ #include #include #include "shader.h" -#include "irrlichttypes_extrabloated.h" #include "irr_ptr.h" #include "debug.h" #include "filesys.h" @@ -452,9 +451,6 @@ u32 ShaderSource::getShaderIdDirect(const std::string &name, u32 id = m_shaderinfo_cache.size(); m_shaderinfo_cache.push_back(info); - infostream<<"getShaderIdDirect(): " - <<"Returning id="<getFovY()); + assert(sfFar - sfNear > 0); // adjusted camera positions v3f cam_pos_world = cam->getPosition(); - // if world position is less than 1 block away from the captured + // if world position is less than 1 node away from the captured // world position then stick to the captured value, otherwise recapture. if (cam_pos_world.getDistanceFromSQ(last_cam_pos_world) < BS * BS) cam_pos_world = last_cam_pos_world; @@ -74,7 +75,6 @@ void DirectionalLight::createSplitMatrices(const Camera *cam) future_frustum.ViewMat.buildCameraLookAtMatrixLH(eye, center_scene, v3f(0.0f, 1.0f, 0.0f)); future_frustum.ProjOrthMat.buildProjectionMatrixOrthoLH(radius, radius, 0.0f, length, false); - future_frustum.camera_offset = cam->getOffset(); } DirectionalLight::DirectionalLight(const u32 shadowMapResolution, @@ -84,9 +84,18 @@ DirectionalLight::DirectionalLight(const u32 shadowMapResolution, farPlane(farValue), mapRes(shadowMapResolution), pos(position) {} -void DirectionalLight::update_frustum(const Camera *cam, Client *client, bool force) +void DirectionalLight::updateCameraOffset(const Camera *cam) { - if (dirty && !force) + if (future_frustum.zFar == 0.0f) // not initialized + return; + createSplitMatrices(cam); + should_update_map_shadow = true; + dirty = true; +} + +void DirectionalLight::updateFrustum(const Camera *cam, Client *client) +{ + if (dirty) return; float zNear = cam->getCameraNode()->getNearValue(); @@ -106,16 +115,6 @@ void DirectionalLight::update_frustum(const Camera *cam, Client *client, bool fo getPosition(), getDirection(), future_frustum.radius, future_frustum.length); should_update_map_shadow = true; dirty = true; - - // when camera offset changes, adjust the current frustum view matrix to avoid flicker - v3s16 cam_offset = cam->getOffset(); - if (cam_offset != shadow_frustum.camera_offset) { - v3f rotated_offset = shadow_frustum.ViewMat.rotateAndScaleVect( - intToFloat(cam_offset - shadow_frustum.camera_offset, BS)); - shadow_frustum.ViewMat.setTranslation(shadow_frustum.ViewMat.getTranslation() + rotated_offset); - shadow_frustum.player += intToFloat(shadow_frustum.camera_offset - cam->getOffset(), BS); - shadow_frustum.camera_offset = cam_offset; - } } void DirectionalLight::commitFrustum() diff --git a/src/client/shadows/dynamicshadows.h b/src/client/shadows/dynamicshadows.h index 2951c0a6e..1d741b0a3 100644 --- a/src/client/shadows/dynamicshadows.h +++ b/src/client/shadows/dynamicshadows.h @@ -22,7 +22,6 @@ struct shadowFrustum core::matrix4 ViewMat; v3f position; v3f player; - v3s16 camera_offset; }; class DirectionalLight @@ -34,9 +33,9 @@ public: f32 farValue = 100.0f); ~DirectionalLight() = default; - //DISABLE_CLASS_COPY(DirectionalLight) + void updateCameraOffset(const Camera *cam); - void update_frustum(const Camera *cam, Client *client, bool force = false); + void updateFrustum(const Camera *cam, Client *client); // when set direction is updated to negative normalized(direction) void setDirection(v3f dir); @@ -85,6 +84,7 @@ public: return mapRes; } + /// If true, shadow map needs to be invalidated due to frustum change bool should_update_map_shadow{true}; void commitFrustum(); diff --git a/src/client/shadows/dynamicshadowsrender.cpp b/src/client/shadows/dynamicshadowsrender.cpp index 8504eca75..a7d21d647 100644 --- a/src/client/shadows/dynamicshadowsrender.cpp +++ b/src/client/shadows/dynamicshadowsrender.cpp @@ -177,14 +177,15 @@ void ShadowRenderer::removeNodeFromShadowList(scene::ISceneNode *node) node->forEachMaterial([] (auto &mat) { mat.setTexture(TEXTURE_LAYER_SHADOW, nullptr); }); - for (auto it = m_shadow_node_array.begin(); it != m_shadow_node_array.end();) { - if (it->node == node) { - it = m_shadow_node_array.erase(it); - break; - } else { - ++it; - } + + auto it = std::find(m_shadow_node_array.begin(), m_shadow_node_array.end(), node); + if (it == m_shadow_node_array.end()) { + infostream << "removeNodeFromShadowList: " << node << " not found" << std::endl; + return; } + // swap with last, then remove + *it = m_shadow_node_array.back(); + m_shadow_node_array.pop_back(); } void ShadowRenderer::updateSMTextures() @@ -254,15 +255,15 @@ void ShadowRenderer::updateSMTextures() if (!m_shadow_node_array.empty()) { bool reset_sm_texture = false; - // detect if SM should be regenerated + // clear texture if requested for (DirectionalLight &light : m_light_list) { - if (light.should_update_map_shadow || m_force_update_shadow_map) { - light.should_update_map_shadow = false; - m_current_frame = 0; - reset_sm_texture = true; - } + reset_sm_texture |= light.should_update_map_shadow; + light.should_update_map_shadow = false; } + if (reset_sm_texture || m_force_update_shadow_map) + m_current_frame = 0; + video::ITexture* shadowMapTargetTexture = shadowMapClientMapFuture; if (shadowMapTargetTexture == nullptr) shadowMapTargetTexture = shadowMapClientMap; @@ -270,7 +271,7 @@ void ShadowRenderer::updateSMTextures() // Update SM incrementally: for (DirectionalLight &light : m_light_list) { // Static shader values. - for (auto cb : {m_shadow_depth_cb, m_shadow_depth_entity_cb, m_shadow_depth_trans_cb}) + for (auto cb : {m_shadow_depth_cb, m_shadow_depth_entity_cb, m_shadow_depth_trans_cb}) { if (cb) { cb->MapRes = (f32)m_shadow_map_texture_size; cb->MaxFar = (f32)m_shadow_map_max_distance * BS; @@ -278,12 +279,9 @@ void ShadowRenderer::updateSMTextures() cb->PerspectiveBiasZ = getPerspectiveBiasZ(); cb->CameraPos = light.getFuturePlayerPos(); } + } - // set the Render Target - // right now we can only render in usual RTT, not - // Depth texture is available in irrlicth maybe we - // should put some gl* fn here - + // Note that force_update means we're drawing everything one go. if (m_current_frame < m_map_shadow_update_frames || m_force_update_shadow_map) { m_driver->setRenderTarget(shadowMapTargetTexture, reset_sm_texture, true, @@ -688,21 +686,19 @@ std::string ShadowRenderer::readShaderFile(const std::string &path) ShadowRenderer *createShadowRenderer(IrrlichtDevice *device, Client *client) { + if (!g_settings->getBool("enable_dynamic_shadows")) + return nullptr; + // disable if unsupported - if (g_settings->getBool("enable_dynamic_shadows")) { - // See also checks in builtin/mainmenu/settings/dlg_settings.lua - const video::E_DRIVER_TYPE type = device->getVideoDriver()->getDriverType(); - if (type != video::EDT_OPENGL && type != video::EDT_OPENGL3) { - warningstream << "Shadows: disabled dynamic shadows due to being unsupported" << std::endl; - g_settings->setBool("enable_dynamic_shadows", false); - } + // See also checks in builtin/mainmenu/settings/dlg_settings.lua + const video::E_DRIVER_TYPE type = device->getVideoDriver()->getDriverType(); + if (type != video::EDT_OPENGL && type != video::EDT_OPENGL3) { + warningstream << "Shadows: disabled dynamic shadows due to being unsupported" << std::endl; + g_settings->setBool("enable_dynamic_shadows", false); + return nullptr; } - if (g_settings->getBool("enable_dynamic_shadows")) { - ShadowRenderer *shadow_renderer = new ShadowRenderer(device, client); - shadow_renderer->initialize(); - return shadow_renderer; - } - - return nullptr; + ShadowRenderer *shadow_renderer = new ShadowRenderer(device, client); + shadow_renderer->initialize(); + return shadow_renderer; } diff --git a/src/client/shadows/dynamicshadowsrender.h b/src/client/shadows/dynamicshadowsrender.h index a12ba01e4..1c7b6e482 100644 --- a/src/client/shadows/dynamicshadowsrender.h +++ b/src/client/shadows/dynamicshadowsrender.h @@ -7,8 +7,9 @@ #include #include #include -#include "irrlichttypes_extrabloated.h" #include "client/shadows/dynamicshadows.h" +#include +#include class ShadowDepthShaderCB; class shadowScreenQuad; @@ -27,7 +28,8 @@ struct NodeToApply E_SHADOW_MODE m = E_SHADOW_MODE::ESM_BOTH) : node(n), shadowMode(m){}; - bool operator<(const NodeToApply &other) const { return node < other.node; }; + + bool operator==(scene::ISceneNode *n) const { return node == n; } scene::ISceneNode *node; @@ -67,6 +69,7 @@ public: void removeNodeFromShadowList(scene::ISceneNode *node); void update(video::ITexture *outputTarget = nullptr); + /// Force shadow map to be re-drawn in one go next frame void setForceUpdateShadowMap() { m_force_update_shadow_map = true; } void drawDebug(); diff --git a/src/client/shadows/shadowsScreenQuad.h b/src/client/shadows/shadowsScreenQuad.h index 561db19f6..fa7a73d79 100644 --- a/src/client/shadows/shadowsScreenQuad.h +++ b/src/client/shadows/shadowsScreenQuad.h @@ -3,7 +3,6 @@ // Copyright (C) 2021 Liso #pragma once -#include "irrlichttypes_extrabloated.h" #include #include #include "client/shader.h" diff --git a/src/client/shadows/shadowsshadercallbacks.h b/src/client/shadows/shadowsshadercallbacks.h index 882a13d0c..4fc462b11 100644 --- a/src/client/shadows/shadowsshadercallbacks.h +++ b/src/client/shadows/shadowsshadercallbacks.h @@ -3,7 +3,6 @@ // Copyright (C) 2021 Liso #pragma once -#include "irrlichttypes_extrabloated.h" #include #include #include "client/shader.h" diff --git a/src/client/tile.cpp b/src/client/tile.cpp index ad5811d64..894e97339 100644 --- a/src/client/tile.cpp +++ b/src/client/tile.cpp @@ -3,42 +3,24 @@ // Copyright (C) 2010-2013 celeron55, Perttu Ahola #include "tile.h" +#include -// Sets everything else except the texture in the material -void TileLayer::applyMaterialOptions(video::SMaterial &material) const +void AnimationInfo::updateTexture(video::SMaterial &material, float animation_time) { - switch (material_type) { - case TILE_MATERIAL_OPAQUE: - case TILE_MATERIAL_LIQUID_OPAQUE: - case TILE_MATERIAL_WAVING_LIQUID_OPAQUE: - material.MaterialType = video::EMT_SOLID; - break; - case TILE_MATERIAL_BASIC: - case TILE_MATERIAL_WAVING_LEAVES: - case TILE_MATERIAL_WAVING_PLANTS: - case TILE_MATERIAL_WAVING_LIQUID_BASIC: - material.MaterialTypeParam = 0.5; - material.MaterialType = video::EMT_TRANSPARENT_ALPHA_CHANNEL_REF; - break; - case TILE_MATERIAL_ALPHA: - case TILE_MATERIAL_LIQUID_TRANSPARENT: - case TILE_MATERIAL_WAVING_LIQUID_TRANSPARENT: - material.MaterialType = video::EMT_TRANSPARENT_ALPHA_CHANNEL; - break; - default: - break; + // Figure out current frame + u16 frame = (u16)(animation_time * 1000 / m_frame_length_ms) % m_frame_count; + // Only adjust if frame changed + if (frame != m_frame) { + m_frame = frame; + assert(m_frame < m_frames->size()); + material.setTexture(0, (*m_frames)[m_frame].texture); } - material.BackfaceCulling = (material_flags & MATERIAL_FLAG_BACKFACE_CULLING) != 0; - if (!(material_flags & MATERIAL_FLAG_TILEABLE_HORIZONTAL)) { - material.TextureLayers[0].TextureWrapU = video::ETC_CLAMP_TO_EDGE; - } - if (!(material_flags & MATERIAL_FLAG_TILEABLE_VERTICAL)) { - material.TextureLayers[0].TextureWrapV = video::ETC_CLAMP_TO_EDGE; - } -} +}; -void TileLayer::applyMaterialOptionsWithShaders(video::SMaterial &material) const +void TileLayer::applyMaterialOptions(video::SMaterial &material, int layer) const { + material.setTexture(0, texture); + material.BackfaceCulling = (material_flags & MATERIAL_FLAG_BACKFACE_CULLING) != 0; if (!(material_flags & MATERIAL_FLAG_TILEABLE_HORIZONTAL)) { material.TextureLayers[0].TextureWrapU = video::ETC_CLAMP_TO_EDGE; @@ -48,4 +30,20 @@ void TileLayer::applyMaterialOptionsWithShaders(video::SMaterial &material) cons material.TextureLayers[0].TextureWrapV = video::ETC_CLAMP_TO_EDGE; material.TextureLayers[1].TextureWrapV = video::ETC_CLAMP_TO_EDGE; } + + /* + * The second layer is for overlays, but uses the same vertex positions + * as the first, which easily leads to Z-fighting. + * To fix this we offset the polygons of the *first layer* away from the camera. + * This only affects the depth buffer and leads to no visual gaps in geometry. + * + * However, doing so intrudes the "Z space" of the overlay of the next node + * so that leads to inconsistent Z-sorting again. :( + * HACK: For lack of a better approach we restrict this to cases where + * an overlay is actually present. + */ + if (need_polygon_offset) { + material.PolygonOffsetSlopeScale = 1; + material.PolygonOffsetDepthBias = 1; + } } diff --git a/src/client/tile.h b/src/client/tile.h index 4f5691bc5..ffbe78bac 100644 --- a/src/client/tile.h +++ b/src/client/tile.h @@ -9,7 +9,7 @@ #include #include -enum MaterialType{ +enum MaterialType : u8 { TILE_MATERIAL_BASIC, TILE_MATERIAL_ALPHA, TILE_MATERIAL_LIQUID_TRANSPARENT, @@ -73,7 +73,8 @@ struct TileLayer material_flags == other.material_flags && has_color == other.has_color && color == other.color && - scale == other.scale; + scale == other.scale && + need_polygon_offset == other.need_polygon_offset; } /*! @@ -84,9 +85,19 @@ struct TileLayer return !(*this == other); } - void applyMaterialOptions(video::SMaterial &material) const; + /** + * Set some material parameters accordingly. + * @note does not set `MaterialType` + * @param material material to mody + * @param layer index of this layer in the `TileSpec` + */ + void applyMaterialOptions(video::SMaterial &material, int layer) const; - void applyMaterialOptionsWithShaders(video::SMaterial &material) const; + /// @return is this layer uninitalized? + bool empty() const + { + return !shader_id && !texture_id; + } /// @return is this layer semi-transparent? bool isTransparent() const @@ -98,8 +109,9 @@ struct TileLayer case TILE_MATERIAL_LIQUID_TRANSPARENT: case TILE_MATERIAL_WAVING_LIQUID_TRANSPARENT: return true; + default: + return false; } - return false; } // Ordered for size, please do not reorder @@ -113,16 +125,20 @@ struct TileLayer u16 animation_frame_length_ms = 0; u16 animation_frame_count = 1; - u8 material_type = TILE_MATERIAL_BASIC; + MaterialType material_type = TILE_MATERIAL_BASIC; u8 material_flags = //0 // <- DEBUG, Use the one below MATERIAL_FLAG_BACKFACE_CULLING | MATERIAL_FLAG_TILEABLE_HORIZONTAL| MATERIAL_FLAG_TILEABLE_VERTICAL; - //! If true, the tile has its own color. - bool has_color = false; + u8 scale = 1; + /// does this tile need to have a positive polygon offset set? + /// @see TileLayer::applyMaterialOptions + bool need_polygon_offset = false; + + /// @note not owned by this struct std::vector *frames = nullptr; /*! @@ -131,7 +147,30 @@ struct TileLayer */ video::SColor color = video::SColor(0, 0, 0, 0); - u8 scale = 1; + //! If true, the tile has its own color. + bool has_color = false; +}; + +// Stores information for drawing an animated tile +struct AnimationInfo { + + AnimationInfo() = default; + + AnimationInfo(const TileLayer &tile) : + m_frame_length_ms(tile.animation_frame_length_ms), + m_frame_count(tile.animation_frame_count), + m_frames(tile.frames) + {}; + + void updateTexture(video::SMaterial &material, float animation_time); + +private: + u16 m_frame = 0; // last animation frame + u16 m_frame_length_ms = 0; + u16 m_frame_count = 1; + + /// @note not owned by this struct + std::vector *m_frames = nullptr; }; enum class TileRotation: u8 { diff --git a/src/client/wieldmesh.cpp b/src/client/wieldmesh.cpp index f03de2a5b..11116a5c3 100644 --- a/src/client/wieldmesh.cpp +++ b/src/client/wieldmesh.cpp @@ -20,6 +20,10 @@ #include #include #include "client/renderingengine.h" +#include +#include +#include +#include "item_visuals_manager.h" #define WIELD_SCALE_FACTOR 30.0f #define WIELD_SCALE_FACTOR_EXTRUDED 40.0f @@ -27,6 +31,14 @@ #define MIN_EXTRUSION_MESH_RESOLUTION 16 #define MAX_EXTRUSION_MESH_RESOLUTION 512 +ItemMeshBufferInfo::ItemMeshBufferInfo(const TileLayer &layer) : + override_color(layer.color), + override_color_set(layer.has_color), + animation_info((layer.material_flags & MATERIAL_FLAG_ANIMATION) ? + std::make_unique(layer) : + nullptr) +{} + static scene::IMesh *createExtrusionMesh(int resolution_x, int resolution_y) { const f32 r = 0.5; @@ -151,8 +163,7 @@ public: int maxdim = MYMAX(dim.Width, dim.Height); - std::map::iterator - it = m_extrusion_meshes.lower_bound(maxdim); + auto it = m_extrusion_meshes.lower_bound(maxdim); if (it == m_extrusion_meshes.end()) { // no viable resolution found; use largest one @@ -201,7 +212,6 @@ WieldMeshSceneNode::WieldMeshSceneNode(scene::ISceneManager *mgr, s32 id): // Create the child scene node scene::IMesh *dummymesh = g_extrusion_mesh_cache->createCube(); m_meshnode = SceneManager->addMeshSceneNode(dummymesh, this, -1); - m_meshnode->setReadOnlyMaterials(false); m_meshnode->setVisible(false); dummymesh->drop(); // m_meshnode grabbed it @@ -284,7 +294,7 @@ void WieldMeshSceneNode::setExtruded(const std::string &imagename, } static scene::SMesh *createGenericNodeMesh(Client *client, MapNode n, - std::vector *colors, const ContentFeatures &f) + std::vector *buffer_info, const ContentFeatures &f) { n.setParam1(0xff); if (n.getParam2()) { @@ -308,7 +318,7 @@ static scene::SMesh *createGenericNodeMesh(Client *client, MapNode n, MapblockMeshGenerator(&mmd, &collector).generate(); } - colors->clear(); + buffer_info->clear(); scene::SMesh *mesh = new scene::SMesh(); for (int layer = 0; layer < MAX_TILE_LAYERS; layer++) { auto &prebuffers = collector.prebuffers[layer]; @@ -324,16 +334,11 @@ static scene::SMesh *createGenericNodeMesh(Client *client, MapNode n, buf->append(&p.vertices[0], p.vertices.size(), &p.indices[0], p.indices.size()); - // Set up material - buf->Material.setTexture(0, p.layer.texture); - if (layer == 1) { - buf->Material.PolygonOffsetSlopeScale = -1; - buf->Material.PolygonOffsetDepthBias = -1; - } - p.layer.applyMaterialOptions(buf->Material); + // note: material type is left unset, overriden later + p.layer.applyMaterialOptions(buf->Material, layer); mesh->addMeshBuffer(buf.get()); - colors->emplace_back(p.layer.has_color, p.layer.color); + buffer_info->emplace_back(p.layer); } } mesh->recalculateBoundingBox(); @@ -344,6 +349,7 @@ void WieldMeshSceneNode::setItem(const ItemStack &item, Client *client, bool che { ITextureSource *tsrc = client->getTextureSource(); IItemDefManager *idef = client->getItemDefManager(); + ItemVisualsManager *item_visuals = client->getItemVisualsManager(); IShaderSource *shdrsrc = client->getShaderSource(); const NodeDefManager *ndef = client->getNodeDefManager(); const ItemDefinition &def = item.getDefinition(idef); @@ -356,8 +362,8 @@ void WieldMeshSceneNode::setItem(const ItemStack &item, Client *client, bool che m_material_type = shdrsrc->getShaderInfo(shader_id).material; // Color-related - m_colors.clear(); - m_base_color = idef->getItemstackColor(item, client); + m_buffer_info.clear(); + m_base_color = item_visuals->getItemstackColor(item, client); const std::string wield_image = item.getWieldImage(idef); const std::string wield_overlay = item.getWieldOverlay(idef); @@ -365,11 +371,10 @@ void WieldMeshSceneNode::setItem(const ItemStack &item, Client *client, bool che // If wield_image needs to be checked and is defined, it overrides everything else if (!wield_image.empty() && check_wield_image) { - setExtruded(wield_image, wield_overlay, wield_scale, tsrc, - 1); - m_colors.emplace_back(); + setExtruded(wield_image, wield_overlay, wield_scale, tsrc, 1); + m_buffer_info.emplace_back(); // overlay is white, if present - m_colors.emplace_back(true, video::SColor(0xFFFFFFFF)); + m_buffer_info.emplace_back(true, video::SColor(0xFFFFFFFF)); // initialize the color setColor(video::SColor(0xFFFFFFFF)); return; @@ -398,8 +403,8 @@ void WieldMeshSceneNode::setItem(const ItemStack &item, Client *client, bool che wscale, tsrc, l0.animation_frame_count); // Add color - m_colors.emplace_back(l0.has_color, l0.color); - m_colors.emplace_back(l1.has_color, l1.color); + m_buffer_info.emplace_back(l0.has_color, l0.color); + m_buffer_info.emplace_back(l1.has_color, l1.color); break; } case NDT_PLANTLIKE_ROOTED: { @@ -408,7 +413,7 @@ void WieldMeshSceneNode::setItem(const ItemStack &item, Client *client, bool che setExtruded(tsrc->getTextureName(l0.texture_id), "", wield_scale, tsrc, l0.animation_frame_count); - m_colors.emplace_back(l0.has_color, l0.color); + m_buffer_info.emplace_back(l0.has_color, l0.color); break; } default: { @@ -417,7 +422,7 @@ void WieldMeshSceneNode::setItem(const ItemStack &item, Client *client, bool che if (def.place_param2) n.setParam2(*def.place_param2); - mesh = createGenericNodeMesh(client, n, &m_colors, f); + mesh = createGenericNodeMesh(client, n, &m_buffer_info, f); changeToMesh(mesh); mesh->drop(); m_meshnode->setScale( @@ -430,7 +435,7 @@ void WieldMeshSceneNode::setItem(const ItemStack &item, Client *client, bool che u32 material_count = m_meshnode->getMaterialCount(); for (u32 i = 0; i < material_count; ++i) { video::SMaterial &material = m_meshnode->getMaterial(i); - // FIXME: overriding this breaks different alpha modes the mesh may have + // FIXME: we should take different alpha modes of the mesh into account here material.MaterialType = m_material_type; material.MaterialTypeParam = 0.5f; material.forEachTexture([this] (auto &tex) { @@ -451,9 +456,9 @@ void WieldMeshSceneNode::setItem(const ItemStack &item, Client *client, bool che setExtruded("no_texture.png", "", def.wield_scale, tsrc, 1); } - m_colors.emplace_back(); + m_buffer_info.emplace_back(); // overlay is white, if present - m_colors.emplace_back(true, video::SColor(0xFFFFFFFF)); + m_buffer_info.emplace_back(true, video::SColor(0xFFFFFFFF)); // initialize the color setColor(video::SColor(0xFFFFFFFF)); @@ -475,33 +480,38 @@ void WieldMeshSceneNode::setColor(video::SColor c) u8 blue = c.getBlue(); const u32 mc = mesh->getMeshBufferCount(); - if (mc > m_colors.size()) - m_colors.resize(mc); + if (mc > m_buffer_info.size()) + m_buffer_info.resize(mc); for (u32 j = 0; j < mc; j++) { video::SColor bc(m_base_color); - m_colors[j].applyOverride(bc); + m_buffer_info[j].applyOverride(bc); video::SColor buffercolor(255, bc.getRed() * red / 255, bc.getGreen() * green / 255, bc.getBlue() * blue / 255); scene::IMeshBuffer *buf = mesh->getMeshBuffer(j); - if (m_colors[j].needColorize(buffercolor)) { + if (m_buffer_info[j].needColorize(buffercolor)) { buf->setDirty(scene::EBT_VERTEX); setMeshBufferColor(buf, buffercolor); } } } -void WieldMeshSceneNode::setNodeLightColor(video::SColor color) +void WieldMeshSceneNode::setLightColorAndAnimation(video::SColor color, float animation_time) { if (!m_meshnode) return; - { - for (u32 i = 0; i < m_meshnode->getMaterialCount(); ++i) { - video::SMaterial &material = m_meshnode->getMaterial(i); - material.ColorParam = color; + for (u32 i = 0; i < m_meshnode->getMaterialCount(); ++i) { + // Color + video::SMaterial &material = m_meshnode->getMaterial(i); + material.ColorParam = color; + + // Animation + const ItemMeshBufferInfo &buf_info = m_buffer_info[i]; + if (buf_info.animation_info) { + buf_info.animation_info->updateTexture(material, animation_time); } } } @@ -548,9 +558,9 @@ void getItemMesh(Client *client, const ItemStack &item, ItemMesh *result) const std::string inventory_overlay = item.getInventoryOverlay(idef); if (!inventory_image.empty()) { mesh = getExtrudedMesh(tsrc, inventory_image, inventory_overlay); - result->buffer_colors.emplace_back(); + result->buffer_info.emplace_back(); // overlay is white, if present - result->buffer_colors.emplace_back(true, video::SColor(0xFFFFFFFF)); + result->buffer_info.emplace_back(true, video::SColor(0xFFFFFFFF)); // Items with inventory images do not need shading result->needs_shading = false; } else if (def.type == ITEM_NODE && f.drawtype == NDT_AIRLIKE) { @@ -566,8 +576,8 @@ void getItemMesh(Client *client, const ItemStack &item, ItemMesh *result) tsrc->getTextureName(l0.texture_id), tsrc->getTextureName(l1.texture_id)); // Add color - result->buffer_colors.emplace_back(l0.has_color, l0.color); - result->buffer_colors.emplace_back(l1.has_color, l1.color); + result->buffer_info.emplace_back(l0.has_color, l0.color); + result->buffer_info.emplace_back(l1.has_color, l1.color); break; } case NDT_PLANTLIKE_ROOTED: { @@ -575,7 +585,7 @@ void getItemMesh(Client *client, const ItemStack &item, ItemMesh *result) const TileLayer &l0 = f.special_tiles[0].layers[0]; mesh = getExtrudedMesh(tsrc, tsrc->getTextureName(l0.texture_id), ""); - result->buffer_colors.emplace_back(l0.has_color, l0.color); + result->buffer_info.emplace_back(l0.has_color, l0.color); break; } default: { @@ -584,7 +594,7 @@ void getItemMesh(Client *client, const ItemStack &item, ItemMesh *result) if (def.place_param2) n.setParam2(*def.place_param2); - mesh = createGenericNodeMesh(client, n, &result->buffer_colors, f); + mesh = createGenericNodeMesh(client, n, &result->buffer_info, f); scaleMesh(mesh, v3f(0.12, 0.12, 0.12)); break; } diff --git a/src/client/wieldmesh.h b/src/client/wieldmesh.h index 0b65dfbd9..1dced09e1 100644 --- a/src/client/wieldmesh.h +++ b/src/client/wieldmesh.h @@ -11,6 +11,8 @@ #include #include #include +#include +#include "tile.h" namespace irr::scene { @@ -28,9 +30,10 @@ struct ContentFeatures; class ShadowRenderer; /* - * Holds color information of an item mesh's buffer. + * Holds information of an item mesh's buffer. + * Used for coloring and animation. */ -class ItemPartColor +class ItemMeshBufferInfo { /* * Optional color that overrides the global base color. @@ -47,12 +50,14 @@ class ItemPartColor public: - ItemPartColor() = default; + ItemMeshBufferInfo() = default; - ItemPartColor(bool override, video::SColor color) : + ItemMeshBufferInfo(bool override, video::SColor color) : override_color(color), override_color_set(override) {} + ItemMeshBufferInfo(const TileLayer &layer); + void applyOverride(video::SColor &dest) const { if (override_color_set) dest = override_color; @@ -65,15 +70,18 @@ public: last_colorized = target; return true; } + + // Null for no animated parts + std::unique_ptr animation_info; }; struct ItemMesh { scene::IMesh *mesh = nullptr; /* - * Stores the color of each mesh buffer. + * Stores draw information of each mesh buffer. */ - std::vector buffer_colors; + std::vector buffer_info; /* * If false, all faces of the item should have the same brightness. * Disables shading based on normal vectors. @@ -101,7 +109,7 @@ public: // Must only be used if the constructor was called with lighting = false void setColor(video::SColor color); - void setNodeLightColor(video::SColor color); + void setLightColorAndAnimation(video::SColor color, float animation_time); scene::IMesh *getMesh() { return m_meshnode->getMesh(); } @@ -120,10 +128,10 @@ private: bool m_bilinear_filter; bool m_trilinear_filter; /*! - * Stores the colors of the mesh's mesh buffers. + * Stores the colors and animation data of the mesh's mesh buffers. * This does not include lighting. */ - std::vector m_colors; + std::vector m_buffer_info; /*! * The base color of this mesh. This is the default * for all mesh buffers. diff --git a/src/clientdynamicinfo.cpp b/src/clientdynamicinfo.cpp index 46283b33c..717e7813f 100644 --- a/src/clientdynamicinfo.cpp +++ b/src/clientdynamicinfo.cpp @@ -13,32 +13,32 @@ ClientDynamicInfo ClientDynamicInfo::getCurrent() { - v2u32 screen_size = RenderingEngine::getWindowSize(); - f32 density = RenderingEngine::getDisplayDensity(); - f32 gui_scaling = g_settings->getFloat("gui_scaling", 0.5f, 20.0f); - f32 hud_scaling = g_settings->getFloat("hud_scaling", 0.5f, 20.0f); - f32 real_gui_scaling = gui_scaling * density; - f32 real_hud_scaling = hud_scaling * density; - bool touch_controls = g_touchcontrols; + v2u32 screen_size = RenderingEngine::getWindowSize(); + f32 density = RenderingEngine::getDisplayDensity(); + f32 gui_scaling = g_settings->getFloat("gui_scaling", 0.5f, 20.0f); + f32 hud_scaling = g_settings->getFloat("hud_scaling", 0.5f, 20.0f); + f32 real_gui_scaling = gui_scaling * density; + f32 real_hud_scaling = hud_scaling * density; + bool touch_controls = g_touchcontrols; - return { - screen_size, real_gui_scaling, real_hud_scaling, - ClientDynamicInfo::calculateMaxFSSize(screen_size, density, gui_scaling), - touch_controls - }; + return { + screen_size, real_gui_scaling, real_hud_scaling, + ClientDynamicInfo::calculateMaxFSSize(screen_size, density, gui_scaling), + touch_controls + }; } v2f32 ClientDynamicInfo::calculateMaxFSSize(v2u32 render_target_size, f32 density, f32 gui_scaling) { // must stay in sync with GUIFormSpecMenu::calculateImgsize - const double screen_dpi = density * 96; + const double screen_dpi = density * 96; - // assume padding[0,0] since max_formspec_size is used for fullscreen formspecs + // assume padding[0,0] since max_formspec_size is used for fullscreen formspecs double prefer_imgsize = GUIFormSpecMenu::getImgsize(render_target_size, - screen_dpi, gui_scaling); - return v2f32(render_target_size.X / prefer_imgsize, - render_target_size.Y / prefer_imgsize); + screen_dpi, gui_scaling); + return v2f32(render_target_size.X / prefer_imgsize, + render_target_size.Y / prefer_imgsize); } #endif diff --git a/src/collision.cpp b/src/collision.cpp index 7dae43a0c..53d97553b 100644 --- a/src/collision.cpp +++ b/src/collision.cpp @@ -4,10 +4,12 @@ #include "collision.h" #include +#include "irr_aabb3d.h" #include "mapblock.h" #include "map.h" #include "nodedef.h" #include "gamedef.h" +#include "util/numeric.h" #if CHECK_CLIENT_BUILD() #include "client/clientenvironment.h" #include "client/localplayer.h" @@ -72,6 +74,14 @@ inline v3f truncate(const v3f vec, const f32 factor) ); } +inline v3f rangelimv(const v3f vec, const f32 low, const f32 high) +{ + return v3f( + rangelim(vec.X, low, high), + rangelim(vec.Y, low, high), + rangelim(vec.Z, low, high) + ); +} } // Helper function: @@ -101,6 +111,8 @@ CollisionAxis axisAlignedCollision( if (speed.Y) { distance = relbox.MaxEdge.Y - relbox.MinEdge.Y; + // FIXME: The dtime calculation is inaccurate without acceleration information. + // Exact formula: `dtime = (-vel ± sqrt(vel² + 2 * acc * distance)) / acc` *dtime = distance / std::abs(speed.Y); time = std::max(*dtime, 0.0f); @@ -214,16 +226,50 @@ static bool add_area_node_boxes(const v3s16 min, const v3s16 max, IGameDef *game thread_local std::vector nodeboxes; Map *map = &env->getMap(); + const bool air_walkable = nodedef->get(CONTENT_AIR).walkable; + + v3s16 last_bp(S16_MAX); + MapBlock *last_block = nullptr; + + // Note: as the area used here is usually small, iterating entire blocks + // would actually be slower by factor of 10. + v3s16 p; for (p.Z = min.Z; p.Z <= max.Z; p.Z++) for (p.Y = min.Y; p.Y <= max.Y; p.Y++) for (p.X = min.X; p.X <= max.X; p.X++) { - bool is_position_valid; - MapNode n = map->getNode(p, &is_position_valid); + v3s16 bp, relp; + getNodeBlockPosWithOffset(p, bp, relp); + if (bp != last_bp) { + last_block = map->getBlockNoCreateNoEx(bp); + last_bp = bp; + } + MapBlock *const block = last_block; - if (is_position_valid && n.getContent() != CONTENT_IGNORE) { - // Object collides into walkable nodes + if (!block) { + // Since we iterate with node precision we can only safely skip + // ahead in the "innermost" axis of the MapBlock (X). + // This still worth it as it reduces the number of nodes to look at + // and entries in `cinfo`. + v3s16 rowend(bp.X * MAP_BLOCKSIZE + MAP_BLOCKSIZE - 1, p.Y, p.Z); + aabb3f box = getNodeBox(p, BS); + box.addInternalBox(getNodeBox(rowend, BS)); + // Collide with unloaded block + cinfo.emplace_back(true, 0, p, box); + p.X = rowend.X; + continue; + } + if (!air_walkable && block->isAir()) { + // Skip ahead if air, like above + any_position_valid = true; + p.X = bp.X * MAP_BLOCKSIZE + MAP_BLOCKSIZE - 1; + continue; + } + + const MapNode n = block->getNodeNoCheck(relp); + + if (n.getContent() != CONTENT_IGNORE) { any_position_valid = true; const ContentFeatures &f = nodedef->get(n); @@ -238,7 +284,6 @@ static bool add_area_node_boxes(const v3s16 min, const v3s16 max, IGameDef *game nodeboxes.clear(); n.getCollisionBoxes(nodedef, &nodeboxes, neighbors); - // Calculate float position only once v3f posf = intToFloat(p, BS); for (auto box : nodeboxes) { box.MinEdge += posf; @@ -246,12 +291,12 @@ static bool add_area_node_boxes(const v3s16 min, const v3s16 max, IGameDef *game cinfo.emplace_back(false, n_bouncy_value, p, box); } } else { - // Collide with unloaded nodes (position invalid) and loaded - // CONTENT_IGNORE nodes (position valid) + // Collide with loaded CONTENT_IGNORE nodes aabb3f box = getNodeBox(p, BS); cinfo.emplace_back(true, 0, p, box); } } + return any_position_valid; } @@ -268,13 +313,14 @@ static void add_object_boxes(Environment *env, } }; - // Calculate distance by speed, add own extent and 1.5m of tolerance - const f32 distance = speed_f.getLength() * dtime + - box_0.getExtent().getLength() + 1.5f * BS; + constexpr f32 tolerance = 1.5f * BS; #if CHECK_CLIENT_BUILD() ClientEnvironment *c_env = dynamic_cast(env); if (c_env) { + // Calculate distance by speed, add own extent and tolerance + const f32 distance = speed_f.getLength() * dtime + + box_0.getExtent().getLength() + tolerance; std::vector clientobjects; c_env->getActiveObjects(pos_f, distance, clientobjects); @@ -313,9 +359,14 @@ static void add_object_boxes(Environment *env, return false; }; + // Calculate distance by speed, add own extent and tolerance + const v3f movement = speed_f * dtime; + const v3f min = pos_f + box_0.MinEdge - v3f(tolerance) + componentwise_min(movement, v3f()); + const v3f max = pos_f + box_0.MaxEdge + v3f(tolerance) + componentwise_max(movement, v3f()); + // nothing is put into this vector std::vector s_objects; - s_env->getObjectsInsideRadius(s_objects, pos_f, distance, include_obj_cb); + s_env->getObjectsInArea(s_objects, aabb3f(min, max), include_obj_cb); } } } @@ -335,6 +386,10 @@ collisionMoveResult collisionMoveSimple(Environment *env, IGameDef *gamedef, collisionMoveResult result; + // Assume no collisions when no velocity and no acceleration + if (*speed_f == v3f() && accel_f == v3f()) + return result; + /* Calculate new velocity */ @@ -350,30 +405,19 @@ collisionMoveResult collisionMoveSimple(Environment *env, IGameDef *gamedef, time_notification_done = false; } - v3f dpos_f = (*speed_f + accel_f * 0.5f * dtime) * dtime; - v3f newpos_f = *pos_f + dpos_f; - *speed_f += accel_f * dtime; - - // If the object is static, there are no collisions - if (dpos_f == v3f()) - return result; - + // Average speed + v3f aspeed_f = *speed_f + accel_f * 0.5f * dtime; // Limit speed for avoiding hangs - speed_f->Y = rangelim(speed_f->Y, -5000, 5000); - speed_f->X = rangelim(speed_f->X, -5000, 5000); - speed_f->Z = rangelim(speed_f->Z, -5000, 5000); + aspeed_f = truncate(rangelimv(aspeed_f, -5000.0f, 5000.0f), 10000.0f); - *speed_f = truncate(*speed_f, 10000.0f); - - /* - Collect node boxes in movement range - */ + // Collect node boxes in movement range // cached allocation thread_local std::vector cinfo; cinfo.clear(); - { + // Movement if no collisions + v3f newpos_f = *pos_f + aspeed_f * dtime; v3f minpos_f( MYMIN(pos_f->X, newpos_f.X), MYMIN(pos_f->Y, newpos_f.Y) + 0.01f * BS, // bias rounding, player often at +/-n.5 @@ -399,24 +443,14 @@ collisionMoveResult collisionMoveSimple(Environment *env, IGameDef *gamedef, } } - /* - Collect object boxes in movement range - */ + // Collect object boxes in movement range if (collide_with_objects) { - add_object_boxes(env, box_0, dtime, *pos_f, *speed_f, self, cinfo); + add_object_boxes(env, box_0, dtime, *pos_f, aspeed_f, self, cinfo); } - /* - Collision detection - */ - + // Collision detection f32 d = 0.0f; - - int loopcount = 0; - - while(dtime > BS * 1e-10f) { - // Avoid infinite loop - loopcount++; + for (int loopcount = 0;; loopcount++) { if (loopcount >= 100) { warningstream << "collisionMoveSimple: Loop count exceeded, aborting to avoid infinite loop" << std::endl; g_collision_problems_encountered = true; @@ -431,9 +465,7 @@ collisionMoveResult collisionMoveSimple(Environment *env, IGameDef *gamedef, f32 nearest_dtime = dtime; int nearest_boxindex = -1; - /* - Go through every nodebox, find nearest collision - */ + // Go through every nodebox, find nearest collision for (u32 boxindex = 0; boxindex < cinfo.size(); boxindex++) { const NearbyCollisionInfo &box_info = cinfo[boxindex]; // Ignore if already stepped up this nodebox. @@ -443,8 +475,7 @@ collisionMoveResult collisionMoveSimple(Environment *env, IGameDef *gamedef, // Find nearest collision of the two boxes (raytracing-like) f32 dtime_tmp = nearest_dtime; CollisionAxis collided = axisAlignedCollision(box_info.box, - movingbox, *speed_f, &dtime_tmp); - + movingbox, aspeed_f, &dtime_tmp); if (collided == -1 || dtime_tmp >= nearest_dtime) continue; @@ -455,95 +486,119 @@ collisionMoveResult collisionMoveSimple(Environment *env, IGameDef *gamedef, if (nearest_collided == COLLISION_AXIS_NONE) { // No collision with any collision box. - *pos_f += truncate(*speed_f * dtime, 100.0f); - dtime = 0; // Set to 0 to avoid "infinite" loop due to small FP numbers - } else { - // Otherwise, a collision occurred. - NearbyCollisionInfo &nearest_info = cinfo[nearest_boxindex]; - const aabb3f& cbox = nearest_info.box; + *pos_f += aspeed_f * dtime; + // Final speed: + *speed_f += accel_f * dtime; + // Limit speed for avoiding hangs + *speed_f = truncate(rangelimv(*speed_f, -5000.0f, 5000.0f), 10000.0f); + break; + } + // Otherwise, a collision occurred. + NearbyCollisionInfo &nearest_info = cinfo[nearest_boxindex]; + const aabb3f& cbox = nearest_info.box; - //movingbox except moved to the horizontal position it would be after step up + //movingbox except moved to the horizontal position it would be after step up + bool step_up = false; + if (nearest_collided != COLLISION_AXIS_Y) { aabb3f stepbox = movingbox; - stepbox.MinEdge.X += speed_f->X * dtime; - stepbox.MinEdge.Z += speed_f->Z * dtime; - stepbox.MaxEdge.X += speed_f->X * dtime; - stepbox.MaxEdge.Z += speed_f->Z * dtime; + // Look slightly ahead for checking the height when stepping + // to ensure we also check above the node we collided with + // otherwise, might allow glitches such as a stack of stairs + float extra_dtime = nearest_dtime + 0.1f * fabsf(dtime - nearest_dtime); + stepbox.MinEdge.X += aspeed_f.X * extra_dtime; + stepbox.MinEdge.Z += aspeed_f.Z * extra_dtime; + stepbox.MaxEdge.X += aspeed_f.X * extra_dtime; + stepbox.MaxEdge.Z += aspeed_f.Z * extra_dtime; // Check for stairs. - bool step_up = (nearest_collided != COLLISION_AXIS_Y) && // must not be Y direction - (movingbox.MinEdge.Y < cbox.MaxEdge.Y) && - (movingbox.MinEdge.Y + stepheight > cbox.MaxEdge.Y) && - (!wouldCollideWithCeiling(cinfo, stepbox, - cbox.MaxEdge.Y - movingbox.MinEdge.Y, - d)); + step_up = (movingbox.MinEdge.Y < cbox.MaxEdge.Y) && + (movingbox.MinEdge.Y + stepheight > cbox.MaxEdge.Y) && + (!wouldCollideWithCeiling(cinfo, stepbox, + cbox.MaxEdge.Y - movingbox.MinEdge.Y, + d)); + } - // Get bounce multiplier - float bounce = -(float)nearest_info.bouncy / 100.0f; + // Get bounce multiplier + float bounce = -(float)nearest_info.bouncy / 100.0f; - // Move to the point of collision and reduce dtime by nearest_dtime - if (nearest_dtime < 0) { - // Handle negative nearest_dtime - if (!step_up) { - if (nearest_collided == COLLISION_AXIS_X) - pos_f->X += speed_f->X * nearest_dtime; - if (nearest_collided == COLLISION_AXIS_Y) - pos_f->Y += speed_f->Y * nearest_dtime; - if (nearest_collided == COLLISION_AXIS_Z) - pos_f->Z += speed_f->Z * nearest_dtime; - } - } else { - *pos_f += truncate(*speed_f * nearest_dtime, 100.0f); - dtime -= nearest_dtime; + // Move to the point of collision and reduce dtime by nearest_dtime + if (nearest_dtime < 0) { + // Handle negative nearest_dtime + // This largely means an "instant" collision, e.g., with the floor. + // We use aspeed and nearest_dtime to be consistent with above and resolve this collision + if (!step_up) { + if (nearest_collided == COLLISION_AXIS_X) + pos_f->X += aspeed_f.X * nearest_dtime; + if (nearest_collided == COLLISION_AXIS_Y) + pos_f->Y += aspeed_f.Y * nearest_dtime; + if (nearest_collided == COLLISION_AXIS_Z) + pos_f->Z += aspeed_f.Z * nearest_dtime; } + } else if (nearest_dtime > 0) { + // updated average speed for the sub-interval up to nearest_dtime + aspeed_f = *speed_f + accel_f * 0.5f * nearest_dtime; + *pos_f += aspeed_f * nearest_dtime; + // Speed at (approximated) collision: + *speed_f += accel_f * nearest_dtime; + // Limit speed for avoiding hangs + *speed_f = truncate(rangelimv(*speed_f, -5000.0f, 5000.0f), 10000.0f); + dtime -= nearest_dtime; + } - bool is_collision = true; - if (nearest_info.is_unloaded) - is_collision = false; + v3f old_speed_f = *speed_f; + // Set the speed component that caused the collision to zero + if (step_up) { + // Special case: Handle stairs + nearest_info.is_step_up = true; + } else if (nearest_collided == COLLISION_AXIS_X) { + if (bounce < -1e-4 && fabsf(speed_f->X) > BS * 3) { + speed_f->X *= bounce; + } else { + speed_f->X = 0; + accel_f.X = 0; // avoid colliding in the next interations + } + } else if (nearest_collided == COLLISION_AXIS_Y) { + if (bounce < -1e-4 && fabsf(speed_f->Y) > BS * 3) { + speed_f->Y *= bounce; + } else { + if (speed_f->Y < 0.0f) { + // FIXME: This code is necessary until `axisAlignedCollision` takes acceleration + // into consideration for the time calculation. Otherwise, the colliding faces + // never line up, especially at high step (dtime) intervals. + result.touching_ground = true; + result.standing_on_object = nearest_info.isObject(); + } + speed_f->Y = 0; + accel_f.Y = 0; // avoid colliding in the next interations + } + } else { /* nearest_collided == COLLISION_AXIS_Z */ + if (bounce < -1e-4 && fabsf(speed_f->Z) > BS * 3) { + speed_f->Z *= bounce; + } else { + speed_f->Z = 0; + accel_f.Z = 0; // avoid colliding in the next interations + } + } + + if (!nearest_info.is_unloaded && !step_up) { CollisionInfo info; - if (nearest_info.isObject()) - info.type = COLLISION_OBJECT; - else - info.type = COLLISION_NODE; - + info.axis = nearest_collided; + info.type = nearest_info.isObject() ? COLLISION_OBJECT : COLLISION_NODE; info.node_p = nearest_info.position; info.object = nearest_info.obj; info.new_pos = *pos_f; - info.old_speed = *speed_f; - - // Set the speed component that caused the collision to zero - if (step_up) { - // Special case: Handle stairs - nearest_info.is_step_up = true; - is_collision = false; - } else if (nearest_collided == COLLISION_AXIS_X) { - if (fabs(speed_f->X) > BS * 3) - speed_f->X *= bounce; - else - speed_f->X = 0; - result.collides = true; - } else if (nearest_collided == COLLISION_AXIS_Y) { - if(fabs(speed_f->Y) > BS * 3) - speed_f->Y *= bounce; - else - speed_f->Y = 0; - result.collides = true; - } else if (nearest_collided == COLLISION_AXIS_Z) { - if (fabs(speed_f->Z) > BS * 3) - speed_f->Z *= bounce; - else - speed_f->Z = 0; - result.collides = true; - } - + info.old_speed = old_speed_f; info.new_speed = *speed_f; - if (info.new_speed.getDistanceFrom(info.old_speed) < 0.1f * BS) - is_collision = false; - - if (is_collision) { - info.axis = nearest_collided; - result.collisions.push_back(std::move(info)); - } + result.collisions.push_back(info); } + + if (dtime < BS * 1e-10f) + break; + + // Speed for finding the next collision + aspeed_f = *speed_f + accel_f * 0.5f * dtime; + // Limit speed for avoiding hangs + aspeed_f = truncate(rangelimv(aspeed_f, -5000.0f, 5000.0f), 10000.0f); } /* @@ -573,14 +628,15 @@ collisionMoveResult collisionMoveSimple(Environment *env, IGameDef *gamedef, box.MaxEdge += *pos_f; } if (std::fabs(cbox.MaxEdge.Y - box.MinEdge.Y) < 0.05f) { + // This is code is technically only required if `box_info.is_step_up == true`. + // However, players rely on this check/condition to climb stairs faster. See PR #10587. result.touching_ground = true; - - if (box_info.isObject()) - result.standing_on_object = true; + result.standing_on_object = box_info.isObject(); } } } + result.collides = !result.collisions.empty(); return result; } diff --git a/src/constants.h b/src/constants.h index de490cd2e..4a8ed4471 100644 --- a/src/constants.h +++ b/src/constants.h @@ -13,7 +13,7 @@ */ /* - Connection + Network Protocol */ #define PEER_ID_INEXISTENT 0 @@ -60,15 +60,16 @@ // Use floatToInt(p, BS) and intToFloat(p, BS). #define BS 10.0f -// Dimension of a MapBlock +// Dimension of a MapBlock in nodes #define MAP_BLOCKSIZE 16 -// This makes mesh updates too slow, as many meshes are updated during -// the main loop (related to TempMods and day/night) -//#define MAP_BLOCKSIZE 32 // Player step height in nodes #define PLAYER_DEFAULT_STEPHEIGHT 0.6f +// Arbitrary volume limit for working with contiguous areas (in nodes) +// needs to safely fit in the VoxelArea class; used by e.g. VManips +#define MAX_WORKING_VOLUME 150000000UL + /* Old stuff that shouldn't be hardcoded */ @@ -82,6 +83,10 @@ // Default maximal breath of a player #define PLAYER_MAX_BREATH_DEFAULT 10 +/* + Misc +*/ + // Number of different files to try to save a player to if the first fails // (because of a case-insensitive filesystem) // TODO: Use case-insensitive player names instead of this hack. @@ -93,8 +98,4 @@ // the file attempting to ensure a unique filename #define SCREENSHOT_MAX_SERIAL_TRIES 1000 -/* - GUI related things -*/ - #define TTF_DEFAULT_FONT_SIZE (16) diff --git a/src/content/mod_configuration.cpp b/src/content/mod_configuration.cpp index 810ea7626..bcbdd89ea 100644 --- a/src/content/mod_configuration.cpp +++ b/src/content/mod_configuration.cpp @@ -34,6 +34,8 @@ std::string ModConfiguration::getUnsatisfiedModsError() const void ModConfiguration::addModsInPath(const std::string &path, const std::string &virtual_path) { + verbosestream << "Adding mods from path " << path << " virtual=\"" + << virtual_path << "\"" << std::endl; addMods(flattenMods(getModsInPath(path, virtual_path))); } @@ -140,8 +142,6 @@ void ModConfiguration::addModsFromConfig( * * Alternative candidates for a modname are stored in `candidates`, * and used in an error message later. - * - * If not enabled, add `load_mod_modname = false` to world.mt */ for (const auto &modPath : modPaths) { std::vector addon_mods_in_path = flattenMods(getModsInPath(modPath.second, modPath.first)); @@ -154,7 +154,7 @@ void ModConfiguration::addModsFromConfig( candidates[pair->first].emplace_back(mod.virtual_path); } } else { - conf.setBool("load_mod_" + mod.name, false); + conf.remove("load_mod_" + mod.name); } } } diff --git a/src/content/mods.cpp b/src/content/mods.cpp index 1c100f5a1..333f1d24d 100644 --- a/src/content/mods.cpp +++ b/src/content/mods.cpp @@ -15,6 +15,7 @@ #include "porting.h" #include "convert_json.h" #include "script/common/c_internal.h" +#include "exceptions.h" void ModSpec::checkAndLog() const { @@ -174,8 +175,9 @@ std::map getModsInPath( mod_virtual_path.append(virtual_path).append("/").append(modname); ModSpec spec(modname, mod_path, part_of_modpack, mod_virtual_path); - parseModContents(spec); - result[modname] = std::move(spec); + if (parseModContents(spec)) { + result[modname] = std::move(spec); + } } return result; } diff --git a/src/content/mods.h b/src/content/mods.h index a7e1e5041..fc98d9298 100644 --- a/src/content/mods.h +++ b/src/content/mods.h @@ -78,7 +78,7 @@ struct ModSpec * * @returns false if not a mod */ -bool parseModContents(ModSpec &mod); +[[nodiscard]] bool parseModContents(ModSpec &mod); /** * Gets a list of all mods and modpacks in path diff --git a/src/content/subgames.cpp b/src/content/subgames.cpp index 980f0188c..e9e3a72d8 100644 --- a/src/content/subgames.cpp +++ b/src/content/subgames.cpp @@ -12,6 +12,7 @@ #include "defaultsettings.h" // for set_default_settings #include "map_settings_manager.h" #include "util/string.h" +#include "exceptions.h" // The maximum number of identical world names allowed #define MAX_WORLD_NAMES 100 diff --git a/src/database/database-dummy.cpp b/src/database/database-dummy.cpp index cc885d38e..280745711 100644 --- a/src/database/database-dummy.cpp +++ b/src/database/database-dummy.cpp @@ -30,15 +30,13 @@ void Database_Dummy::loadBlock(const v3s16 &pos, std::string *block) bool Database_Dummy::deleteBlock(const v3s16 &pos) { - m_database.erase(getBlockAsInteger(pos)); - return true; + return m_database.erase(getBlockAsInteger(pos)) > 0; } void Database_Dummy::listAllLoadableBlocks(std::vector &dst) { dst.reserve(m_database.size()); - for (std::map::const_iterator x = m_database.begin(); - x != m_database.end(); ++x) { + for (auto x = m_database.begin(); x != m_database.end(); ++x) { dst.push_back(getIntegerAsBlock(x->first)); } } diff --git a/src/database/database-files.cpp b/src/database/database-files.cpp index 5001a2810..84684299d 100644 --- a/src/database/database-files.cpp +++ b/src/database/database-files.cpp @@ -234,8 +234,7 @@ void PlayerDatabaseFiles::listPlayers(std::vector &res) { std::vector files = fs::GetDirListing(m_savedir); // list files into players directory - for (std::vector::const_iterator it = files.begin(); it != - files.end(); ++it) { + for (auto it = files.begin(); it != files.end(); ++it) { // Ignore directories if (it->dir) continue; diff --git a/src/database/database-postgresql.cpp b/src/database/database-postgresql.cpp index 2d10f0db9..20d5482f9 100644 --- a/src/database/database-postgresql.cpp +++ b/src/database/database-postgresql.cpp @@ -97,7 +97,7 @@ void Database_PostgreSQL::ping() bool Database_PostgreSQL::initialized() const { - return (PQstatus(m_conn) == CONNECTION_OK); + return m_conn && PQstatus(m_conn) == CONNECTION_OK; } PGresult *Database_PostgreSQL::checkResults(PGresult *result, bool clear) diff --git a/src/database/database-postgresql.h b/src/database/database-postgresql.h index 61e443b11..eb73960f3 100644 --- a/src/database/database-postgresql.h +++ b/src/database/database-postgresql.h @@ -9,20 +9,20 @@ #include "database.h" #include "util/basic_macros.h" -class Settings; - -class Database_PostgreSQL: public Database +// Template class for PostgreSQL based data storage +class Database_PostgreSQL : public Database { public: Database_PostgreSQL(const std::string &connect_string, const char *type); ~Database_PostgreSQL(); - void beginSave(); - void endSave(); + void beginSave() override; + void endSave() override; void rollback(); - bool initialized() const; + bool initialized() const override; + void verifyDatabase() override; protected: // Conversion helpers @@ -73,7 +73,6 @@ protected: } void createTableIfNotExists(const std::string &table_name, const std::string &definition); - void verifyDatabase(); // Database initialization void connectToDatabase(); @@ -99,6 +98,12 @@ private: int m_pgversion = 0; }; +// Not sure why why we have to do this. can't C++ figure it out on its own? +#define PARENT_CLASS_FUNCS \ + void beginSave() { Database_PostgreSQL::beginSave(); } \ + void endSave() { Database_PostgreSQL::endSave(); } \ + void verifyDatabase() { Database_PostgreSQL::verifyDatabase(); } + class MapDatabasePostgreSQL : private Database_PostgreSQL, public MapDatabase { public: @@ -110,8 +115,7 @@ public: bool deleteBlock(const v3s16 &pos); void listAllLoadableBlocks(std::vector &dst); - void beginSave() { Database_PostgreSQL::beginSave(); } - void endSave() { Database_PostgreSQL::endSave(); } + PARENT_CLASS_FUNCS protected: virtual void createDatabase(); @@ -129,6 +133,8 @@ public: bool removePlayer(const std::string &name); void listPlayers(std::vector &res); + PARENT_CLASS_FUNCS + protected: virtual void createDatabase(); virtual void initStatements(); @@ -143,8 +149,6 @@ public: AuthDatabasePostgreSQL(const std::string &connect_string); virtual ~AuthDatabasePostgreSQL() = default; - virtual void verifyDatabase() { Database_PostgreSQL::verifyDatabase(); } - virtual bool getAuth(const std::string &name, AuthEntry &res); virtual bool saveAuth(const AuthEntry &authEntry); virtual bool createAuth(AuthEntry &authEntry); @@ -152,6 +156,8 @@ public: virtual void listNames(std::vector &res); virtual void reload(); + PARENT_CLASS_FUNCS + protected: virtual void createDatabase(); virtual void initStatements(); @@ -176,10 +182,11 @@ public: bool removeModEntries(const std::string &modname); void listMods(std::vector *res); - void beginSave() { Database_PostgreSQL::beginSave(); } - void endSave() { Database_PostgreSQL::endSave(); } + PARENT_CLASS_FUNCS protected: virtual void createDatabase(); virtual void initStatements(); }; + +#undef PARENT_CLASS_FUNCS diff --git a/src/database/database-redis.cpp b/src/database/database-redis.cpp index 5699f0b31..77c89cec8 100644 --- a/src/database/database-redis.cpp +++ b/src/database/database-redis.cpp @@ -20,7 +20,7 @@ /* * Redis is not a good fit for Minetest and only still supported for legacy as * well as advanced use case reasons, see: - * + * * * Do NOT extend this backend with any new functionality. */ diff --git a/src/database/database-sqlite3.cpp b/src/database/database-sqlite3.cpp index c3390fbe0..cb5dcf5f4 100644 --- a/src/database/database-sqlite3.cpp +++ b/src/database/database-sqlite3.cpp @@ -2,14 +2,6 @@ // SPDX-License-Identifier: LGPL-2.1-or-later // Copyright (C) 2013 celeron55, Perttu Ahola -/* -SQLite format specification: - blocks: - (PK) INT id - BLOB data -*/ - - #include "database-sqlite3.h" #include "log.h" @@ -26,23 +18,19 @@ SQLite format specification: // When to print messages when the database is being held locked by another process // Note: I've seen occasional delays of over 250ms while running minetestmapper. -#define BUSY_INFO_TRESHOLD 100 // Print first informational message after 100ms. -#define BUSY_WARNING_TRESHOLD 250 // Print warning message after 250ms. Lag is increased. -#define BUSY_ERROR_TRESHOLD 1000 // Print error message after 1000ms. Significant lag. -#define BUSY_FATAL_TRESHOLD 3000 // Allow SQLITE_BUSY to be returned, which will cause a minetest crash. -#define BUSY_ERROR_INTERVAL 10000 // Safety net: report again every 10 seconds +enum { + BUSY_INFO_TRESHOLD = 100, // Print first informational message. + BUSY_WARNING_TRESHOLD = 250, // Print warning message. Significant lag. + BUSY_FATAL_TRESHOLD = 3000, // Allow SQLITE_BUSY to be returned back to the caller. + BUSY_ERROR_INTERVAL = 10000, // Safety net: report again every 10 seconds +}; - -#define SQLRES(s, r, m) \ - if ((s) != (r)) { \ - throw DatabaseException(std::string(m) + ": " +\ - sqlite3_errmsg(m_database)); \ - } +#define SQLRES(s, r, m) sqlite3_vrfy(s, m, r); #define SQLOK(s, m) SQLRES(s, SQLITE_OK, m) #define PREPARE_STATEMENT(name, query) \ - SQLOK(sqlite3_prepare_v2(m_database, query, -1, &m_stmt_##name, NULL),\ - "Failed to prepare query '" query "'") + SQLOK(sqlite3_prepare_v2(m_database, query, -1, &m_stmt_##name, NULL), \ + std::string("Failed to prepare query \"").append(query).append("\"")) #define SQLOK_ERRSTREAM(s, m) \ if ((s) != SQLITE_OK) { \ @@ -50,52 +38,49 @@ SQLite format specification: << sqlite3_errmsg(m_database) << std::endl; \ } -#define FINALIZE_STATEMENT(statement) SQLOK_ERRSTREAM(sqlite3_finalize(statement), \ - "Failed to finalize " #statement) +#define FINALIZE_STATEMENT(name) \ + sqlite3_finalize(m_stmt_##name); /* if this fails who cares */ \ + m_stmt_##name = nullptr; int Database_SQLite3::busyHandler(void *data, int count) { - s64 &first_time = reinterpret_cast(data)[0]; - s64 &prev_time = reinterpret_cast(data)[1]; - s64 cur_time = porting::getTimeMs(); + u64 &first_time = reinterpret_cast(data)[0]; + u64 &prev_time = reinterpret_cast(data)[1]; + u64 cur_time = porting::getTimeMs(); if (count == 0) { first_time = cur_time; prev_time = first_time; - } else { - while (cur_time < prev_time) - cur_time += s64(1)<<32; } - if (cur_time - first_time < BUSY_INFO_TRESHOLD) { - ; // do nothing - } else if (cur_time - first_time >= BUSY_INFO_TRESHOLD && - prev_time - first_time < BUSY_INFO_TRESHOLD) { + const auto total_diff = cur_time - first_time; // time since first call + const auto this_diff = prev_time - first_time; // time since last call + + if (total_diff < BUSY_INFO_TRESHOLD) { + // do nothing + } else if (total_diff >= BUSY_INFO_TRESHOLD && + this_diff < BUSY_INFO_TRESHOLD) { infostream << "SQLite3 database has been locked for " - << cur_time - first_time << " ms." << std::endl; - } else if (cur_time - first_time >= BUSY_WARNING_TRESHOLD && - prev_time - first_time < BUSY_WARNING_TRESHOLD) { + << total_diff << " ms." << std::endl; + } else if (total_diff >= BUSY_WARNING_TRESHOLD && + this_diff < BUSY_WARNING_TRESHOLD) { warningstream << "SQLite3 database has been locked for " - << cur_time - first_time << " ms." << std::endl; - } else if (cur_time - first_time >= BUSY_ERROR_TRESHOLD && - prev_time - first_time < BUSY_ERROR_TRESHOLD) { + << total_diff << " ms; this causes lag." << std::endl; + } else if (total_diff >= BUSY_FATAL_TRESHOLD && + this_diff < BUSY_FATAL_TRESHOLD) { errorstream << "SQLite3 database has been locked for " - << cur_time - first_time << " ms; this causes lag." << std::endl; - } else if (cur_time - first_time >= BUSY_FATAL_TRESHOLD && - prev_time - first_time < BUSY_FATAL_TRESHOLD) { - errorstream << "SQLite3 database has been locked for " - << cur_time - first_time << " ms - giving up!" << std::endl; - } else if ((cur_time - first_time) / BUSY_ERROR_INTERVAL != - (prev_time - first_time) / BUSY_ERROR_INTERVAL) { + << total_diff << " ms - giving up!" << std::endl; + } else if (total_diff / BUSY_ERROR_INTERVAL != + this_diff / BUSY_ERROR_INTERVAL) { // Safety net: keep reporting every BUSY_ERROR_INTERVAL errorstream << "SQLite3 database has been locked for " - << (cur_time - first_time) / 1000 << " seconds!" << std::endl; + << total_diff / 1000 << " seconds!" << std::endl; } prev_time = cur_time; // Make sqlite transaction fail if delay exceeds BUSY_FATAL_TRESHOLD - return cur_time - first_time < BUSY_FATAL_TRESHOLD; + return total_diff < BUSY_FATAL_TRESHOLD; } @@ -130,7 +115,7 @@ void Database_SQLite3::openDatabase() // Open the database connection if (!fs::CreateAllDirs(m_savedir)) { - infostream << "Database_SQLite3: Failed to create directory \"" + errorstream << "Database_SQLite3: Failed to create directory \"" << m_savedir << "\"" << std::endl; throw FileNotGoodException("Failed to create database " "save directory"); @@ -138,8 +123,11 @@ void Database_SQLite3::openDatabase() bool needs_create = !fs::PathExists(dbp); - SQLOK(sqlite3_open_v2(dbp.c_str(), &m_database, - SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE, NULL), + auto flags = SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE; +#ifdef SQLITE_OPEN_EXRESCODE + flags |= SQLITE_OPEN_EXRESCODE; +#endif + SQLOK(sqlite3_open_v2(dbp.c_str(), &m_database, flags, NULL), std::string("Failed to open SQLite3 database file ") + dbp); SQLOK(sqlite3_busy_handler(m_database, Database_SQLite3::busyHandler, @@ -152,9 +140,9 @@ void Database_SQLite3::openDatabase() std::string query_str = std::string("PRAGMA synchronous = ") + itos(g_settings->getU16("sqlite_synchronous")); SQLOK(sqlite3_exec(m_database, query_str.c_str(), NULL, NULL, NULL), - "Failed to modify sqlite3 synchronous mode"); + "Failed to set SQLite3 synchronous mode"); SQLOK(sqlite3_exec(m_database, "PRAGMA foreign_keys = ON", NULL, NULL, NULL), - "Failed to enable sqlite3 foreign key support"); + "Failed to enable SQLite3 foreign key support"); } void Database_SQLite3::verifyDatabase() @@ -171,10 +159,47 @@ void Database_SQLite3::verifyDatabase() m_initialized = true; } +bool Database_SQLite3::checkTable(const char *table) +{ + assert(m_database); + + // PRAGMA table_list would be cleaner here but it was only introduced in + // sqlite 3.37.0 (2021-11-27). + // So let's do this: https://stackoverflow.com/a/83195 + + sqlite3_stmt *m_stmt_tmp = nullptr; + PREPARE_STATEMENT(tmp, "SELECT 1 FROM sqlite_master WHERE type = 'table' AND name = ?;"); + str_to_sqlite(m_stmt_tmp, 1, table); + + bool ret = (sqlite3_step(m_stmt_tmp) == SQLITE_ROW); + + FINALIZE_STATEMENT(tmp) + return ret; +} + +bool Database_SQLite3::checkColumn(const char *table, const char *column) +{ + assert(m_database); + + sqlite3_stmt *m_stmt_tmp = nullptr; + auto query_str = std::string("PRAGMA table_info(").append(table).append(");"); + PREPARE_STATEMENT(tmp, query_str.c_str()); + + bool ret = false; + while (sqlite3_step(m_stmt_tmp) == SQLITE_ROW) { + ret |= sqlite_to_string_view(m_stmt_tmp, 1) == column; + if (ret) + break; + } + + FINALIZE_STATEMENT(tmp) + return ret; +} + Database_SQLite3::~Database_SQLite3() { - FINALIZE_STATEMENT(m_stmt_begin) - FINALIZE_STATEMENT(m_stmt_end) + FINALIZE_STATEMENT(begin) + FINALIZE_STATEMENT(end) SQLOK_ERRSTREAM(sqlite3_close(m_database), "Failed to close database"); } @@ -191,40 +216,68 @@ MapDatabaseSQLite3::MapDatabaseSQLite3(const std::string &savedir): MapDatabaseSQLite3::~MapDatabaseSQLite3() { - FINALIZE_STATEMENT(m_stmt_read) - FINALIZE_STATEMENT(m_stmt_write) - FINALIZE_STATEMENT(m_stmt_list) - FINALIZE_STATEMENT(m_stmt_delete) + FINALIZE_STATEMENT(read) + FINALIZE_STATEMENT(write) + FINALIZE_STATEMENT(list) + FINALIZE_STATEMENT(delete) } void MapDatabaseSQLite3::createDatabase() { - assert(m_database); // Pre-condition + assert(m_database); - SQLOK(sqlite3_exec(m_database, + // Note: before 5.12.0 the format was blocks(pos INT, data BLOB). + // This function only runs for newly created databases. + + const char *schema = "CREATE TABLE IF NOT EXISTS `blocks` (\n" - " `pos` INT PRIMARY KEY,\n" - " `data` BLOB\n" - ");\n", - NULL, NULL, NULL), + "`x` INTEGER," + "`y` INTEGER," + "`z` INTEGER," + "`data` BLOB NOT NULL," + // Declaring a primary key automatically creates an index and the + // order largely dictates which range operations can be sped up. + // see also: + // Putting XZ before Y matches our MapSector abstraction. + "PRIMARY KEY (`x`, `z`, `y`)" + ");\n" + ; + SQLOK(sqlite3_exec(m_database, schema, NULL, NULL, NULL), "Failed to create database table"); } void MapDatabaseSQLite3::initStatements() { - PREPARE_STATEMENT(read, "SELECT `data` FROM `blocks` WHERE `pos` = ? LIMIT 1"); - PREPARE_STATEMENT(write, "REPLACE INTO `blocks` (`pos`, `data`) VALUES (?, ?)"); - PREPARE_STATEMENT(delete, "DELETE FROM `blocks` WHERE `pos` = ?"); - PREPARE_STATEMENT(list, "SELECT `pos` FROM `blocks`"); + assert(checkTable("blocks")); + m_new_format = checkColumn("blocks", "z"); + infostream << "MapDatabaseSQLite3: split column format = " + << (m_new_format ? "yes" : "no") << std::endl; - verbosestream << "ServerMap: SQLite3 database opened." << std::endl; + if (m_new_format) { + PREPARE_STATEMENT(read, "SELECT `data` FROM `blocks` WHERE `x` = ? AND `y` = ? AND `z` = ? LIMIT 1"); + PREPARE_STATEMENT(write, "REPLACE INTO `blocks` (`x`, `y`, `z`, `data`) VALUES (?, ?, ?, ?)"); + PREPARE_STATEMENT(delete, "DELETE FROM `blocks` WHERE `x` = ? AND `y` = ? AND `z` = ?"); + PREPARE_STATEMENT(list, "SELECT `x`, `y`, `z` FROM `blocks`"); + } else { + PREPARE_STATEMENT(read, "SELECT `data` FROM `blocks` WHERE `pos` = ? LIMIT 1"); + PREPARE_STATEMENT(write, "REPLACE INTO `blocks` (`pos`, `data`) VALUES (?, ?)"); + PREPARE_STATEMENT(delete, "DELETE FROM `blocks` WHERE `pos` = ?"); + PREPARE_STATEMENT(list, "SELECT `pos` FROM `blocks`"); + } } -inline void MapDatabaseSQLite3::bindPos(sqlite3_stmt *stmt, const v3s16 &pos, int index) +inline int MapDatabaseSQLite3::bindPos(sqlite3_stmt *stmt, v3s16 pos, int index) { - SQLOK(sqlite3_bind_int64(stmt, index, getBlockAsInteger(pos)), - "Internal error: failed to bind query at " __FILE__ ":" TOSTRING(__LINE__)); + if (m_new_format) { + int_to_sqlite(stmt, index, pos.X); + int_to_sqlite(stmt, index + 1, pos.Y); + int_to_sqlite(stmt, index + 2, pos.Z); + return index + 3; + } else { + int64_to_sqlite(stmt, index, getBlockAsInteger(pos)); + return index + 1; + } } bool MapDatabaseSQLite3::deleteBlock(const v3s16 &pos) @@ -237,7 +290,7 @@ bool MapDatabaseSQLite3::deleteBlock(const v3s16 &pos) sqlite3_reset(m_stmt_delete); if (!good) { - warningstream << "deleteBlock: Block failed to delete " + warningstream << "deleteBlock: Failed to delete block " << pos << ": " << sqlite3_errmsg(m_database) << std::endl; } return good; @@ -247,9 +300,8 @@ bool MapDatabaseSQLite3::saveBlock(const v3s16 &pos, std::string_view data) { verifyDatabase(); - bindPos(m_stmt_write, pos); - SQLOK(sqlite3_bind_blob(m_stmt_write, 2, data.data(), data.size(), NULL), - "Internal error: failed to bind query at " __FILE__ ":" TOSTRING(__LINE__)); + int col = bindPos(m_stmt_write, pos); + blob_to_sqlite(m_stmt_write, col, data); SQLRES(sqlite3_step(m_stmt_write), SQLITE_DONE, "Failed to save block") sqlite3_reset(m_stmt_write); @@ -264,6 +316,7 @@ void MapDatabaseSQLite3::loadBlock(const v3s16 &pos, std::string *block) bindPos(m_stmt_read, pos); if (sqlite3_step(m_stmt_read) != SQLITE_ROW) { + block->clear(); sqlite3_reset(m_stmt_read); return; } @@ -271,7 +324,6 @@ void MapDatabaseSQLite3::loadBlock(const v3s16 &pos, std::string *block) auto data = sqlite_to_blob(m_stmt_read, 0); block->assign(data); - sqlite3_step(m_stmt_read); // We should never get more than 1 row, so ok to reset sqlite3_reset(m_stmt_read); } @@ -280,8 +332,17 @@ void MapDatabaseSQLite3::listAllLoadableBlocks(std::vector &dst) { verifyDatabase(); - while (sqlite3_step(m_stmt_list) == SQLITE_ROW) - dst.push_back(getIntegerAsBlock(sqlite3_column_int64(m_stmt_list, 0))); + v3s16 p; + while (sqlite3_step(m_stmt_list) == SQLITE_ROW) { + if (m_new_format) { + p.X = sqlite_to_int(m_stmt_list, 0); + p.Y = sqlite_to_int(m_stmt_list, 1); + p.Z = sqlite_to_int(m_stmt_list, 2); + } else { + p = getIntegerAsBlock(sqlite_to_int64(m_stmt_list, 0)); + } + dst.push_back(p); + } sqlite3_reset(m_stmt_list); } @@ -298,35 +359,38 @@ PlayerDatabaseSQLite3::PlayerDatabaseSQLite3(const std::string &savedir): PlayerDatabaseSQLite3::~PlayerDatabaseSQLite3() { - FINALIZE_STATEMENT(m_stmt_player_load) - FINALIZE_STATEMENT(m_stmt_player_add) - FINALIZE_STATEMENT(m_stmt_player_update) - FINALIZE_STATEMENT(m_stmt_player_remove) - FINALIZE_STATEMENT(m_stmt_player_list) - FINALIZE_STATEMENT(m_stmt_player_add_inventory) - FINALIZE_STATEMENT(m_stmt_player_add_inventory_items) - FINALIZE_STATEMENT(m_stmt_player_remove_inventory) - FINALIZE_STATEMENT(m_stmt_player_remove_inventory_items) - FINALIZE_STATEMENT(m_stmt_player_load_inventory) - FINALIZE_STATEMENT(m_stmt_player_load_inventory_items) - FINALIZE_STATEMENT(m_stmt_player_metadata_load) - FINALIZE_STATEMENT(m_stmt_player_metadata_add) - FINALIZE_STATEMENT(m_stmt_player_metadata_remove) + FINALIZE_STATEMENT(player_load) + FINALIZE_STATEMENT(player_add) + FINALIZE_STATEMENT(player_update) + FINALIZE_STATEMENT(player_remove) + FINALIZE_STATEMENT(player_list) + FINALIZE_STATEMENT(player_add_inventory) + FINALIZE_STATEMENT(player_add_inventory_items) + FINALIZE_STATEMENT(player_remove_inventory) + FINALIZE_STATEMENT(player_remove_inventory_items) + FINALIZE_STATEMENT(player_load_inventory) + FINALIZE_STATEMENT(player_load_inventory_items) + FINALIZE_STATEMENT(player_metadata_load) + FINALIZE_STATEMENT(player_metadata_add) + FINALIZE_STATEMENT(player_metadata_remove) }; void PlayerDatabaseSQLite3::createDatabase() { - assert(m_database); // Pre-condition + assert(m_database); + + // When designing the schema remember that SQLite only has 5 basic data types + // and ignores length-limited types like "VARCHAR(32)". SQLOK(sqlite3_exec(m_database, "CREATE TABLE IF NOT EXISTS `player` (" - "`name` VARCHAR(50) NOT NULL," - "`pitch` NUMERIC(11, 4) NOT NULL," - "`yaw` NUMERIC(11, 4) NOT NULL," - "`posX` NUMERIC(11, 4) NOT NULL," - "`posY` NUMERIC(11, 4) NOT NULL," - "`posZ` NUMERIC(11, 4) NOT NULL," + "`name` TEXT NOT NULL," + "`pitch` NUMERIC NOT NULL," + "`yaw` NUMERIC NOT NULL," + "`posX` NUMERIC NOT NULL," + "`posY` NUMERIC NOT NULL," + "`posZ` NUMERIC NOT NULL," "`hp` INT NOT NULL," "`breath` INT NOT NULL," "`creation_date` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP," @@ -337,9 +401,9 @@ void PlayerDatabaseSQLite3::createDatabase() SQLOK(sqlite3_exec(m_database, "CREATE TABLE IF NOT EXISTS `player_metadata` (" - " `player` VARCHAR(50) NOT NULL," - " `metadata` VARCHAR(256) NOT NULL," - " `value` TEXT," + " `player` TEXT NOT NULL," + " `metadata` TEXT NOT NULL," + " `value` TEXT NOT NULL," " PRIMARY KEY(`player`, `metadata`)," " FOREIGN KEY (`player`) REFERENCES player (`name`) ON DELETE CASCADE );", NULL, NULL, NULL), @@ -347,7 +411,7 @@ void PlayerDatabaseSQLite3::createDatabase() SQLOK(sqlite3_exec(m_database, "CREATE TABLE IF NOT EXISTS `player_inventories` (" - " `player` VARCHAR(50) NOT NULL," + " `player` TEXT NOT NULL," " `inv_id` INT NOT NULL," " `inv_width` INT NOT NULL," " `inv_name` TEXT NOT NULL DEFAULT ''," @@ -359,7 +423,7 @@ void PlayerDatabaseSQLite3::createDatabase() SQLOK(sqlite3_exec(m_database, "CREATE TABLE `player_inventory_items` (" - " `player` VARCHAR(50) NOT NULL," + " `player` TEXT NOT NULL," " `inv_id` INT NOT NULL," " `slot_id` INT NOT NULL," " `item` TEXT NOT NULL DEFAULT ''," @@ -401,7 +465,6 @@ void PlayerDatabaseSQLite3::initStatements() "(`player`, `metadata`, `value`) VALUES (?, ?, ?)") PREPARE_STATEMENT(player_metadata_remove, "DELETE FROM `player_metadata` " "WHERE `player` = ?") - verbosestream << "ServerEnvironment: SQLite3 database opened (players)." << std::endl; } bool PlayerDatabaseSQLite3::playerDataExists(const std::string &name) @@ -588,27 +651,27 @@ AuthDatabaseSQLite3::AuthDatabaseSQLite3(const std::string &savedir) : AuthDatabaseSQLite3::~AuthDatabaseSQLite3() { - FINALIZE_STATEMENT(m_stmt_read) - FINALIZE_STATEMENT(m_stmt_write) - FINALIZE_STATEMENT(m_stmt_create) - FINALIZE_STATEMENT(m_stmt_delete) - FINALIZE_STATEMENT(m_stmt_list_names) - FINALIZE_STATEMENT(m_stmt_read_privs) - FINALIZE_STATEMENT(m_stmt_write_privs) - FINALIZE_STATEMENT(m_stmt_delete_privs) - FINALIZE_STATEMENT(m_stmt_last_insert_rowid) + FINALIZE_STATEMENT(read) + FINALIZE_STATEMENT(write) + FINALIZE_STATEMENT(create) + FINALIZE_STATEMENT(delete) + FINALIZE_STATEMENT(list_names) + FINALIZE_STATEMENT(read_privs) + FINALIZE_STATEMENT(write_privs) + FINALIZE_STATEMENT(delete_privs) + FINALIZE_STATEMENT(last_insert_rowid) } void AuthDatabaseSQLite3::createDatabase() { - assert(m_database); // Pre-condition + assert(m_database); SQLOK(sqlite3_exec(m_database, "CREATE TABLE IF NOT EXISTS `auth` (" "`id` INTEGER PRIMARY KEY AUTOINCREMENT," - "`name` VARCHAR(32) UNIQUE," - "`password` VARCHAR(512)," - "`last_login` INTEGER" + "`name` TEXT UNIQUE NOT NULL," + "`password` TEXT NOT NULL," + "`last_login` INTEGER NOT NULL DEFAULT 0" ");", NULL, NULL, NULL), "Failed to create auth table"); @@ -616,7 +679,7 @@ void AuthDatabaseSQLite3::createDatabase() SQLOK(sqlite3_exec(m_database, "CREATE TABLE IF NOT EXISTS `user_privileges` (" "`id` INTEGER," - "`privilege` VARCHAR(32)," + "`privilege` TEXT," "PRIMARY KEY (id, privilege)" "CONSTRAINT fk_id FOREIGN KEY (id) REFERENCES auth (id) ON DELETE CASCADE" ");", @@ -751,18 +814,18 @@ ModStorageDatabaseSQLite3::ModStorageDatabaseSQLite3(const std::string &savedir) ModStorageDatabaseSQLite3::~ModStorageDatabaseSQLite3() { - FINALIZE_STATEMENT(m_stmt_remove_all) - FINALIZE_STATEMENT(m_stmt_remove) - FINALIZE_STATEMENT(m_stmt_set) - FINALIZE_STATEMENT(m_stmt_has) - FINALIZE_STATEMENT(m_stmt_get) - FINALIZE_STATEMENT(m_stmt_get_keys) - FINALIZE_STATEMENT(m_stmt_get_all) + FINALIZE_STATEMENT(remove_all) + FINALIZE_STATEMENT(remove) + FINALIZE_STATEMENT(set) + FINALIZE_STATEMENT(has) + FINALIZE_STATEMENT(get) + FINALIZE_STATEMENT(get_keys) + FINALIZE_STATEMENT(get_all) } void ModStorageDatabaseSQLite3::createDatabase() { - assert(m_database); // Pre-condition + assert(m_database); SQLOK(sqlite3_exec(m_database, "CREATE TABLE IF NOT EXISTS `entries` (\n" @@ -825,8 +888,7 @@ bool ModStorageDatabaseSQLite3::getModEntry(const std::string &modname, verifyDatabase(); str_to_sqlite(m_stmt_get, 1, modname); - SQLOK(sqlite3_bind_blob(m_stmt_get, 2, key.data(), key.size(), NULL), - "Internal error: failed to bind query at " __FILE__ ":" TOSTRING(__LINE__)); + blob_to_sqlite(m_stmt_get, 2, key); bool found = sqlite3_step(m_stmt_get) == SQLITE_ROW; if (found) { auto sv = sqlite_to_blob(m_stmt_get, 0); @@ -845,8 +907,7 @@ bool ModStorageDatabaseSQLite3::hasModEntry(const std::string &modname, verifyDatabase(); str_to_sqlite(m_stmt_has, 1, modname); - SQLOK(sqlite3_bind_blob(m_stmt_has, 2, key.data(), key.size(), NULL), - "Internal error: failed to bind query at " __FILE__ ":" TOSTRING(__LINE__)); + blob_to_sqlite(m_stmt_has, 2, key); bool found = sqlite3_step(m_stmt_has) == SQLITE_ROW; if (found) sqlite3_step(m_stmt_has); @@ -862,10 +923,8 @@ bool ModStorageDatabaseSQLite3::setModEntry(const std::string &modname, verifyDatabase(); str_to_sqlite(m_stmt_set, 1, modname); - SQLOK(sqlite3_bind_blob(m_stmt_set, 2, key.data(), key.size(), NULL), - "Internal error: failed to bind query at " __FILE__ ":" TOSTRING(__LINE__)); - SQLOK(sqlite3_bind_blob(m_stmt_set, 3, value.data(), value.size(), NULL), - "Internal error: failed to bind query at " __FILE__ ":" TOSTRING(__LINE__)); + blob_to_sqlite(m_stmt_set, 2, key); + blob_to_sqlite(m_stmt_set, 3, value); SQLRES(sqlite3_step(m_stmt_set), SQLITE_DONE, "Failed to set mod entry") sqlite3_reset(m_stmt_set); @@ -879,8 +938,7 @@ bool ModStorageDatabaseSQLite3::removeModEntry(const std::string &modname, verifyDatabase(); str_to_sqlite(m_stmt_remove, 1, modname); - SQLOK(sqlite3_bind_blob(m_stmt_remove, 2, key.data(), key.size(), NULL), - "Internal error: failed to bind query at " __FILE__ ":" TOSTRING(__LINE__)); + blob_to_sqlite(m_stmt_remove, 2, key); sqlite3_vrfy(sqlite3_step(m_stmt_remove), SQLITE_DONE); int changes = sqlite3_changes(m_database); @@ -906,6 +964,7 @@ void ModStorageDatabaseSQLite3::listMods(std::vector *res) { verifyDatabase(); + // FIXME: please don't do this. this should be sqlite3_step like all others. char *errmsg; int status = sqlite3_exec(m_database, "SELECT `modname` FROM `entries` GROUP BY `modname`;", diff --git a/src/database/database-sqlite3.h b/src/database/database-sqlite3.h index a89c0b1e7..2f9212c16 100644 --- a/src/database/database-sqlite3.h +++ b/src/database/database-sqlite3.h @@ -13,27 +13,41 @@ extern "C" { #include "sqlite3.h" } +// Template class for SQLite3 based data storage class Database_SQLite3 : public Database { public: virtual ~Database_SQLite3(); - void beginSave(); - void endSave(); + void beginSave() override; + void endSave() override; + + bool initialized() const override { return m_initialized; } + + /// @note not thread-safe + void verifyDatabase() override; - bool initialized() const { return m_initialized; } protected: Database_SQLite3(const std::string &savedir, const std::string &dbname); - // Open and initialize the database if needed - void verifyDatabase(); + // Check if a specific table exists + bool checkTable(const char *table); + + // Check if a table has a specific column + bool checkColumn(const char *table, const char *column); + + /* Value conversion helpers */ - // Convertors inline void str_to_sqlite(sqlite3_stmt *s, int iCol, std::string_view str) const { sqlite3_vrfy(sqlite3_bind_text(s, iCol, str.data(), str.size(), NULL)); } + inline void blob_to_sqlite(sqlite3_stmt *s, int iCol, std::string_view str) const + { + sqlite3_vrfy(sqlite3_bind_blob(s, iCol, str.data(), str.size(), NULL)); + } + inline void int_to_sqlite(sqlite3_stmt *s, int iCol, int val) const { sqlite3_vrfy(sqlite3_bind_int(s, iCol, val)); @@ -104,12 +118,14 @@ protected: sqlite_to_float(s, iCol + 2)); } - // Query verifiers helpers + // Helper for verifying result of sqlite3_step() and such inline void sqlite3_vrfy(int s, std::string_view m = "", int r = SQLITE_OK) const { if (s != r) { std::string msg(m); - msg.append(": ").append(sqlite3_errmsg(m_database)); + if (!msg.empty()) + msg.append(": "); + msg.append(sqlite3_errmsg(m_database)); throw DatabaseException(msg); } } @@ -119,28 +135,37 @@ protected: sqlite3_vrfy(s, m, r); } - // Create the database structure + // Called after opening a fresh database file. Should create tables and indices. virtual void createDatabase() = 0; + + // Should prepare the necessary statements. virtual void initStatements() = 0; sqlite3 *m_database = nullptr; + private: // Open the database void openDatabase(); bool m_initialized = false; - std::string m_savedir = ""; - std::string m_dbname = ""; + const std::string m_savedir; + const std::string m_dbname; sqlite3_stmt *m_stmt_begin = nullptr; sqlite3_stmt *m_stmt_end = nullptr; - s64 m_busy_handler_data[2]; + u64 m_busy_handler_data[2]; static int busyHandler(void *data, int count); }; +// Not sure why why we have to do this. can't C++ figure it out on its own? +#define PARENT_CLASS_FUNCS \ + void beginSave() { Database_SQLite3::beginSave(); } \ + void endSave() { Database_SQLite3::endSave(); } \ + void verifyDatabase() { Database_SQLite3::verifyDatabase(); } + class MapDatabaseSQLite3 : private Database_SQLite3, public MapDatabase { public: @@ -152,16 +177,19 @@ public: bool deleteBlock(const v3s16 &pos); void listAllLoadableBlocks(std::vector &dst); - void beginSave() { Database_SQLite3::beginSave(); } - void endSave() { Database_SQLite3::endSave(); } + PARENT_CLASS_FUNCS + protected: virtual void createDatabase(); virtual void initStatements(); private: - void bindPos(sqlite3_stmt *stmt, const v3s16 &pos, int index = 1); + /// @brief Bind block position into statement at column index + /// @return index of next column after position + int bindPos(sqlite3_stmt *stmt, v3s16 pos, int index = 1); + + bool m_new_format = false; - // Map sqlite3_stmt *m_stmt_read = nullptr; sqlite3_stmt *m_stmt_write = nullptr; sqlite3_stmt *m_stmt_list = nullptr; @@ -179,6 +207,8 @@ public: bool removePlayer(const std::string &name); void listPlayers(std::vector &res); + PARENT_CLASS_FUNCS + protected: virtual void createDatabase(); virtual void initStatements(); @@ -216,6 +246,8 @@ public: virtual void listNames(std::vector &res); virtual void reload(); + PARENT_CLASS_FUNCS + protected: virtual void createDatabase(); virtual void initStatements(); @@ -251,8 +283,7 @@ public: virtual bool removeModEntries(const std::string &modname); virtual void listMods(std::vector *res); - virtual void beginSave() { Database_SQLite3::beginSave(); } - virtual void endSave() { Database_SQLite3::endSave(); } + PARENT_CLASS_FUNCS protected: virtual void createDatabase(); @@ -267,3 +298,5 @@ private: sqlite3_stmt *m_stmt_remove = nullptr; sqlite3_stmt *m_stmt_remove_all = nullptr; }; + +#undef PARENT_CLASS_FUNCS diff --git a/src/database/database.cpp b/src/database/database.cpp index 9182bbe95..9d3550432 100644 --- a/src/database/database.cpp +++ b/src/database/database.cpp @@ -7,48 +7,23 @@ /**************** - * Black magic! * - **************** - * The position hashing is very messed up. - * It's a lot more complicated than it looks. + * The position encoding is a bit messed up because negative + * values were not taken into account. + * But this also maps 0,0,0 to 0, which is nice, and we mostly + * need forward encoding in Luanti. */ - -static inline s16 unsigned_to_signed(u16 i, u16 max_positive) -{ - if (i < max_positive) { - return i; - } - - return i - (max_positive * 2); -} - - -// Modulo of a negative number does not work consistently in C -static inline s64 pythonmodulo(s64 i, s16 mod) -{ - if (i >= 0) { - return i % mod; - } - return mod - ((-i) % mod); -} - - s64 MapDatabase::getBlockAsInteger(const v3s16 &pos) { - return (u64) pos.Z * 0x1000000 + - (u64) pos.Y * 0x1000 + - (u64) pos.X; + return ((s64) pos.Z << 24) + ((s64) pos.Y << 12) + pos.X; } v3s16 MapDatabase::getIntegerAsBlock(s64 i) { - v3s16 pos; - pos.X = unsigned_to_signed(pythonmodulo(i, 4096), 2048); - i = (i - pos.X) / 4096; - pos.Y = unsigned_to_signed(pythonmodulo(i, 4096), 2048); - i = (i - pos.Y) / 4096; - pos.Z = unsigned_to_signed(pythonmodulo(i, 4096), 2048); - return pos; + // Offset so that all negative coordinates become non-negative + i = i + 0x800800800; + // Which is now easier to decode using simple bit masks: + return { (s16)( (i & 0xFFF) - 0x800), + (s16)(((i >> 12) & 0xFFF) - 0x800), + (s16)(((i >> 24) & 0xFFF) - 0x800) }; } - diff --git a/src/database/database.h b/src/database/database.h index 8d6efdee8..4335ef4dc 100644 --- a/src/database/database.h +++ b/src/database/database.h @@ -16,7 +16,12 @@ class Database public: virtual void beginSave() = 0; virtual void endSave() = 0; + + /// @return true if database connection is open virtual bool initialized() const { return true; } + + /// Open and initialize the database if needed + virtual void verifyDatabase() {}; }; class MapDatabase : public Database diff --git a/src/defaultsettings.cpp b/src/defaultsettings.cpp index 349e0a430..339d5d6b6 100644 --- a/src/defaultsettings.cpp +++ b/src/defaultsettings.cpp @@ -82,6 +82,7 @@ void set_default_settings() // Client settings->setDefault("address", ""); + settings->setDefault("remote_port", "30000"); #if defined(__unix__) && !defined(__APPLE__) && !defined (__ANDROID__) // On Linux+X11 (not Linux+Wayland or Linux+XWayland), I've encountered a bug // where fake mouse events were generated from touch events if in relative @@ -103,7 +104,7 @@ void set_default_settings() settings->setDefault("sound_extensions_blacklist", ""); settings->setDefault("mesh_generation_interval", "0"); settings->setDefault("mesh_generation_threads", "0"); - settings->setDefault("mesh_buffer_min_vertices", "100"); + settings->setDefault("mesh_buffer_min_vertices", "300"); settings->setDefault("free_move", "false"); settings->setDefault("pitch_move", "false"); settings->setDefault("fast_move", "false"); @@ -112,7 +113,7 @@ void set_default_settings() settings->setDefault("screenshot_format", "png"); settings->setDefault("screenshot_quality", "0"); settings->setDefault("client_unload_unused_data_timeout", "600"); - settings->setDefault("client_mapblock_limit", "7500"); + settings->setDefault("client_mapblock_limit", "7500"); // about 120 MB settings->setDefault("enable_build_where_you_stand", "false"); settings->setDefault("curl_timeout", "20000"); settings->setDefault("curl_parallel_limit", "8"); @@ -128,65 +129,74 @@ void set_default_settings() settings->setDefault("chat_weblink_color", "#8888FF"); // Keymap - settings->setDefault("remote_port", "30000"); - settings->setDefault("keymap_forward", "KEY_KEY_W"); +#if USE_SDL2 +#define USEKEY2(name, value, _) settings->setDefault(name, value) +#else +#define USEKEY2(name, _, value) settings->setDefault(name, value) +#endif + USEKEY2("keymap_forward", "SYSTEM_SCANCODE_26", "KEY_KEY_W"); settings->setDefault("keymap_autoforward", ""); - settings->setDefault("keymap_backward", "KEY_KEY_S"); - settings->setDefault("keymap_left", "KEY_KEY_A"); - settings->setDefault("keymap_right", "KEY_KEY_D"); - settings->setDefault("keymap_jump", "KEY_SPACE"); - settings->setDefault("keymap_sneak", "KEY_LSHIFT"); + USEKEY2("keymap_backward", "SYSTEM_SCANCODE_22", "KEY_KEY_S"); + USEKEY2("keymap_left", "SYSTEM_SCANCODE_4", "KEY_KEY_A"); + USEKEY2("keymap_right", "SYSTEM_SCANCODE_7", "KEY_KEY_D"); + USEKEY2("keymap_jump", "SYSTEM_SCANCODE_44", "KEY_SPACE"); +#if !USE_SDL2 && defined(__MACH__) && defined(__APPLE__) + // Altered settings for CIrrDeviceOSX + settings->setDefault("keymap_sneak", "KEY_SHIFT"); +#else + USEKEY2("keymap_sneak", "SYSTEM_SCANCODE_225", "KEY_LSHIFT"); +#endif settings->setDefault("keymap_dig", "KEY_LBUTTON"); settings->setDefault("keymap_place", "KEY_RBUTTON"); - settings->setDefault("keymap_drop", "KEY_KEY_Q"); - settings->setDefault("keymap_zoom", "KEY_KEY_Z"); - settings->setDefault("keymap_inventory", "KEY_KEY_I"); - settings->setDefault("keymap_aux1", "KEY_KEY_E"); - settings->setDefault("keymap_chat", "KEY_KEY_T"); - settings->setDefault("keymap_cmd", "/"); - settings->setDefault("keymap_cmd_local", "."); - settings->setDefault("keymap_minimap", "KEY_KEY_V"); - settings->setDefault("keymap_console", "KEY_F10"); + USEKEY2("keymap_drop", "SYSTEM_SCANCODE_20", "KEY_KEY_Q"); + USEKEY2("keymap_zoom", "SYSTEM_SCANCODE_29", "KEY_KEY_Z"); + USEKEY2("keymap_inventory", "SYSTEM_SCANCODE_12", "KEY_KEY_I"); + USEKEY2("keymap_aux1", "SYSTEM_SCANCODE_8", "KEY_KEY_E"); + USEKEY2("keymap_chat", "SYSTEM_SCANCODE_23", "KEY_KEY_T"); + USEKEY2("keymap_cmd", "SYSTEM_SCANCODE_56", "/"); + USEKEY2("keymap_cmd_local", "SYSTEM_SCANCODE_55", "."); + USEKEY2("keymap_minimap", "SYSTEM_SCANCODE_25", "KEY_KEY_V"); + USEKEY2("keymap_console", "SYSTEM_SCANCODE_67", "KEY_F10"); - // See https://github.com/minetest/minetest/issues/12792 - settings->setDefault("keymap_rangeselect", has_touch ? "KEY_KEY_R" : ""); + // see + USEKEY2("keymap_rangeselect", has_touch ? "SYSTEM_SCANCODE_21" : "", has_touch ? "KEY_KEY_R" : ""); - settings->setDefault("keymap_freemove", "KEY_KEY_K"); + USEKEY2("keymap_freemove", "SYSTEM_SCANCODE_14", "KEY_KEY_K"); settings->setDefault("keymap_pitchmove", ""); - settings->setDefault("keymap_fastmove", "KEY_KEY_J"); - settings->setDefault("keymap_noclip", "KEY_KEY_H"); - settings->setDefault("keymap_hotbar_next", "KEY_KEY_N"); - settings->setDefault("keymap_hotbar_previous", "KEY_KEY_B"); - settings->setDefault("keymap_mute", "KEY_KEY_M"); + USEKEY2("keymap_fastmove", "SYSTEM_SCANCODE_13", "KEY_KEY_J"); + USEKEY2("keymap_noclip", "SYSTEM_SCANCODE_11", "KEY_KEY_H"); + USEKEY2("keymap_hotbar_next", "SYSTEM_SCANCODE_17", "KEY_KEY_N"); + USEKEY2("keymap_hotbar_previous", "SYSTEM_SCANCODE_5", "KEY_KEY_B"); + USEKEY2("keymap_mute", "SYSTEM_SCANCODE_16", "KEY_KEY_M"); settings->setDefault("keymap_increase_volume", ""); settings->setDefault("keymap_decrease_volume", ""); settings->setDefault("keymap_cinematic", ""); settings->setDefault("keymap_toggle_block_bounds", ""); - settings->setDefault("keymap_toggle_hud", "KEY_F1"); - settings->setDefault("keymap_toggle_chat", "KEY_F2"); - settings->setDefault("keymap_toggle_fog", "KEY_F3"); + USEKEY2("keymap_toggle_hud", "SYSTEM_SCANCODE_58", "KEY_F1"); + USEKEY2("keymap_toggle_chat", "SYSTEM_SCANCODE_59", "KEY_F2"); + USEKEY2("keymap_toggle_fog", "SYSTEM_SCANCODE_60", "KEY_F3"); #ifndef NDEBUG - settings->setDefault("keymap_toggle_update_camera", "KEY_F4"); + USEKEY2("keymap_toggle_update_camera", "SYSTEM_SCANCODE_61", "KEY_F4"); #else settings->setDefault("keymap_toggle_update_camera", ""); #endif - settings->setDefault("keymap_toggle_debug", "KEY_F5"); - settings->setDefault("keymap_toggle_profiler", "KEY_F6"); - settings->setDefault("keymap_camera_mode", "KEY_KEY_C"); - settings->setDefault("keymap_screenshot", "KEY_F12"); - settings->setDefault("keymap_fullscreen", "KEY_F11"); - settings->setDefault("keymap_increase_viewing_range_min", "+"); - settings->setDefault("keymap_decrease_viewing_range_min", "-"); - settings->setDefault("keymap_slot1", "KEY_KEY_1"); - settings->setDefault("keymap_slot2", "KEY_KEY_2"); - settings->setDefault("keymap_slot3", "KEY_KEY_3"); - settings->setDefault("keymap_slot4", "KEY_KEY_4"); - settings->setDefault("keymap_slot5", "KEY_KEY_5"); - settings->setDefault("keymap_slot6", "KEY_KEY_6"); - settings->setDefault("keymap_slot7", "KEY_KEY_7"); - settings->setDefault("keymap_slot8", "KEY_KEY_8"); - settings->setDefault("keymap_slot9", "KEY_KEY_9"); - settings->setDefault("keymap_slot10", "KEY_KEY_0"); + USEKEY2("keymap_toggle_debug", "SYSTEM_SCANCODE_62", "KEY_F5"); + USEKEY2("keymap_toggle_profiler", "SYSTEM_SCANCODE_63", "KEY_F6"); + USEKEY2("keymap_camera_mode", "SYSTEM_SCANCODE_6", "KEY_KEY_C"); + USEKEY2("keymap_screenshot", "SYSTEM_SCANCODE_69", "KEY_F12"); + USEKEY2("keymap_fullscreen", "SYSTEM_SCANCODE_68", "KEY_F11"); + USEKEY2("keymap_increase_viewing_range_min", "SYSTEM_SCANCODE_46", "+"); + USEKEY2("keymap_decrease_viewing_range_min", "SYSTEM_SCANCODE_45", "-"); + USEKEY2("keymap_slot1", "SYSTEM_SCANCODE_30", "KEY_KEY_1"); + USEKEY2("keymap_slot2", "SYSTEM_SCANCODE_31", "KEY_KEY_2"); + USEKEY2("keymap_slot3", "SYSTEM_SCANCODE_32", "KEY_KEY_3"); + USEKEY2("keymap_slot4", "SYSTEM_SCANCODE_33", "KEY_KEY_4"); + USEKEY2("keymap_slot5", "SYSTEM_SCANCODE_34", "KEY_KEY_5"); + USEKEY2("keymap_slot6", "SYSTEM_SCANCODE_35", "KEY_KEY_6"); + USEKEY2("keymap_slot7", "SYSTEM_SCANCODE_36", "KEY_KEY_7"); + USEKEY2("keymap_slot8", "SYSTEM_SCANCODE_37", "KEY_KEY_8"); + USEKEY2("keymap_slot9", "SYSTEM_SCANCODE_38", "KEY_KEY_9"); + USEKEY2("keymap_slot10", "SYSTEM_SCANCODE_39", "KEY_KEY_0"); settings->setDefault("keymap_slot11", ""); settings->setDefault("keymap_slot12", ""); settings->setDefault("keymap_slot13", ""); @@ -212,16 +222,17 @@ void set_default_settings() #ifndef NDEBUG // Default keybinds for quicktune in debug builds - settings->setDefault("keymap_quicktune_prev", "KEY_HOME"); - settings->setDefault("keymap_quicktune_next", "KEY_END"); - settings->setDefault("keymap_quicktune_dec", "KEY_NEXT"); - settings->setDefault("keymap_quicktune_inc", "KEY_PRIOR"); + USEKEY2("keymap_quicktune_prev", "SYSTEM_SCANCODE_74", "KEY_HOME"); + USEKEY2("keymap_quicktune_next", "SYSTEM_SCANCODE_77", "KEY_END"); + USEKEY2("keymap_quicktune_dec", "SYSTEM_SCANCODE_81", "KEY_NEXT"); + USEKEY2("keymap_quicktune_inc", "SYSTEM_SCANCODE_82", "KEY_PRIOR"); #else settings->setDefault("keymap_quicktune_prev", ""); settings->setDefault("keymap_quicktune_next", ""); settings->setDefault("keymap_quicktune_dec", ""); settings->setDefault("keymap_quicktune_inc", ""); #endif +#undef USEKEY2 // Visuals #ifdef NDEBUG @@ -243,7 +254,7 @@ void set_default_settings() settings->setDefault("tooltip_show_delay", "400"); settings->setDefault("tooltip_append_itemname", "false"); settings->setDefault("fps_max", "60"); - settings->setDefault("fps_max_unfocused", "20"); + settings->setDefault("fps_max_unfocused", "10"); settings->setDefault("viewing_range", "190"); settings->setDefault("client_mesh_chunk", "1"); settings->setDefault("screen_w", "1024"); @@ -270,7 +281,6 @@ void set_default_settings() settings->setDefault("camera_smoothing", "0.0"); settings->setDefault("cinematic_camera_smoothing", "0.7"); settings->setDefault("view_bobbing_amount", "1.0"); - settings->setDefault("fall_bobbing_amount", "0.03"); settings->setDefault("enable_3d_clouds", "true"); settings->setDefault("soft_clouds", "false"); settings->setDefault("cloud_radius", "12"); @@ -307,7 +317,7 @@ void set_default_settings() // Effects settings->setDefault("enable_post_processing", "true"); - settings->setDefault("post_processing_texture_bits", "10"); + settings->setDefault("post_processing_texture_bits", "16"); settings->setDefault("directional_colored_fog", "true"); settings->setDefault("inventory_items_animations", "false"); settings->setDefault("mip_map", "false"); @@ -362,6 +372,8 @@ void set_default_settings() settings->setDefault("aux1_descends", "false"); settings->setDefault("doubletap_jump", "false"); settings->setDefault("always_fly_fast", "true"); + settings->setDefault("toggle_sneak_key", "false"); + settings->setDefault("toggle_aux1_key", "false"); settings->setDefault("autojump", bool_to_cstr(has_touch)); settings->setDefault("continuous_forward", "false"); settings->setDefault("enable_joysticks", "false"); @@ -409,7 +421,7 @@ void set_default_settings() #endif #if ENABLE_UPDATE_CHECKER - settings->setDefault("update_information_url", "https://www.minetest.net/release_info.json"); + settings->setDefault("update_information_url", "https://www.luanti.org/release_info.json"); #else settings->setDefault("update_information_url", ""); #endif @@ -427,7 +439,7 @@ void set_default_settings() // Network settings->setDefault("enable_ipv6", "true"); - settings->setDefault("ipv6_server", "false"); + settings->setDefault("ipv6_server", "true"); settings->setDefault("max_packets_per_iteration", "1024"); settings->setDefault("port", "30000"); settings->setDefault("strict_protocol_version_checking", "false"); @@ -538,20 +550,16 @@ void set_default_settings() settings->setDefault("display_density_factor", "1"); settings->setDefault("dpi_change_notifier", "0"); - // Altered settings for CIrrDeviceOSX -#if !USE_SDL2 && defined(__MACH__) && defined(__APPLE__) - settings->setDefault("keymap_sneak", "KEY_SHIFT"); -#endif - settings->setDefault("touch_layout", ""); settings->setDefault("touchscreen_sensitivity", "0.2"); settings->setDefault("touchscreen_threshold", "20"); settings->setDefault("touch_long_tap_delay", "400"); - settings->setDefault("touch_use_crosshair", "false"); settings->setDefault("fixed_virtual_joystick", "false"); settings->setDefault("virtual_joystick_triggers_aux1", "false"); + settings->setDefault("touch_interaction_style", "tap"); settings->setDefault("touch_punch_gesture", "short_tap"); settings->setDefault("clickable_chat_weblinks", "true"); + // Altered settings for Android #ifdef __ANDROID__ settings->setDefault("screen_w", "0"); @@ -563,9 +571,9 @@ void set_default_settings() settings->setDefault("max_block_generate_distance", "5"); settings->setDefault("sqlite_synchronous", "1"); settings->setDefault("server_map_save_interval", "15"); - settings->setDefault("client_mapblock_limit", "1000"); + settings->setDefault("client_mapblock_limit", "1500"); settings->setDefault("active_block_range", "2"); - settings->setDefault("viewing_range", "50"); + settings->setDefault("viewing_range", "70"); settings->setDefault("leaves_style", "simple"); // Note: OpenGL ES 2.0 is not guaranteed to provide depth textures, // which we would need for PP. @@ -573,6 +581,7 @@ void set_default_settings() // still set these two settings in case someone wants to enable it settings->setDefault("debanding", "false"); settings->setDefault("post_processing_texture_bits", "8"); + // We don't have working certificate verification... settings->setDefault("curl_verify_cert", "false"); // Apply settings according to screen size diff --git a/src/emerge.cpp b/src/emerge.cpp index f1980579b..608bdb9a9 100644 --- a/src/emerge.cpp +++ b/src/emerge.cpp @@ -106,9 +106,9 @@ EmergeManager::EmergeManager(Server *server, MetricsBackend *mb) m_qlimit_generate = nthreads + 1; // don't trust user input for something very important like this - m_qlimit_total = rangelim(m_qlimit_total, 1, 1000000); - m_qlimit_diskonly = rangelim(m_qlimit_diskonly, 1, 1000000); + m_qlimit_diskonly = rangelim(m_qlimit_diskonly, 2, 1000000); m_qlimit_generate = rangelim(m_qlimit_generate, 1, 1000000); + m_qlimit_total = std::max(m_qlimit_total, std::max(m_qlimit_diskonly, m_qlimit_generate)); for (s16 i = 0; i < nthreads; i++) m_threads.push_back(new EmergeThread(server, i)); @@ -375,8 +375,7 @@ bool EmergeManager::pushBlockEmergeData( } } - std::pair::iterator, bool> findres; - findres = m_blocks_enqueued.insert(std::make_pair(pos, BlockEmergeData())); + auto findres = m_blocks_enqueued.insert(std::make_pair(pos, BlockEmergeData())); BlockEmergeData &bedata = findres.first->second; *entry_already_exists = !findres.second; @@ -582,7 +581,8 @@ MapBlock *EmergeThread::finishGen(v3s16 pos, BlockMakeData *bmdata, Perform post-processing on blocks (invalidate lighting, queue liquid transforms, etc.) to finish block make */ - m_map->finishBlockMake(bmdata, modified_blocks); + m_map->finishBlockMake(bmdata, modified_blocks, + m_server->m_env->getGameTime()); MapBlock *block = m_map->getBlockNoCreateNoEx(pos); if (!block) { @@ -620,11 +620,6 @@ MapBlock *EmergeThread::finishGen(v3s16 pos, BlockMakeData *bmdata, m_mapgen->gennotify.clearEvents(); m_mapgen->vm = nullptr; - /* - Activate the block - */ - m_server->m_env->activateBlock(block, 0); - return block; } @@ -707,6 +702,8 @@ void *EmergeThread::run() { ScopeProfiler sp(g_profiler, "EmergeThread: load block - async (sum)"); MutexAutoLock dblock(m_db.mutex); + // Note: this can throw an exception, but there isn't really + // a good, safe way to handle it. m_db.loadBlock(pos, databuf); } // actually load it, then decide again diff --git a/src/environment.cpp b/src/environment.cpp index fe582afd4..ce8dd16e4 100644 --- a/src/environment.cpp +++ b/src/environment.cpp @@ -17,11 +17,6 @@ Environment::Environment(IGameDef *gamedef): m_day_count(0), m_gamedef(gamedef) { - m_cache_active_block_mgmt_interval = g_settings->getFloat("active_block_mgmt_interval"); - m_cache_abm_interval = g_settings->getFloat("abm_interval"); - m_cache_nodetimer_interval = g_settings->getFloat("nodetimer_interval"); - m_cache_abm_time_budget = g_settings->getFloat("abm_time_budget"); - m_time_of_day = g_settings->getU32("world_start_time"); m_time_of_day_f = (float)m_time_of_day / 24000.0f; } diff --git a/src/environment.h b/src/environment.h index b668e69c2..c3031a070 100644 --- a/src/environment.h +++ b/src/environment.h @@ -122,20 +122,6 @@ protected: * Above: values managed by m_time_lock */ - /* TODO: Add a callback function so these can be updated when a setting - * changes. At this point in time it doesn't matter (e.g. /set - * is documented to change server settings only) - * - * TODO: Local caching of settings is not optimal and should at some stage - * be updated to use a global settings object for getting thse values - * (as opposed to the this local caching). This can be addressed in - * a later release. - */ - float m_cache_active_block_mgmt_interval; - float m_cache_abm_interval; - float m_cache_nodetimer_interval; - float m_cache_abm_time_budget; - IGameDef *m_gamedef; private: diff --git a/src/face_position_cache.cpp b/src/face_position_cache.cpp index 65a66a37c..b85ebb048 100644 --- a/src/face_position_cache.cpp +++ b/src/face_position_cache.cpp @@ -13,7 +13,7 @@ std::mutex FacePositionCache::cache_mutex; const std::vector &FacePositionCache::getFacePositions(u16 d) { MutexAutoLock lock(cache_mutex); - std::unordered_map>::const_iterator it = cache.find(d); + auto it = cache.find(d); if (it != cache.end()) return it->second; diff --git a/src/filesys.cpp b/src/filesys.cpp index a368bc697..62352403f 100644 --- a/src/filesys.cpp +++ b/src/filesys.cpp @@ -104,7 +104,7 @@ std::vector GetDirListing(const std::string &pathstring) << " Error is " << dwError << std::endl; listing.clear(); return listing; - } + } } return listing; } @@ -136,20 +136,23 @@ bool IsDir(const std::string &path) (attr & FILE_ATTRIBUTE_DIRECTORY)); } +bool IsFile(const std::string &path) +{ + DWORD attr = GetFileAttributes(path.c_str()); + return (attr != INVALID_FILE_ATTRIBUTES && + !(attr & FILE_ATTRIBUTE_DIRECTORY)); +} + bool IsExecutable(const std::string &path) { DWORD type; return GetBinaryType(path.c_str(), &type) != 0; } -bool IsDirDelimiter(char c) -{ - return c == '/' || c == '\\'; -} - bool RecursiveDelete(const std::string &path) { infostream << "Recursively deleting \"" << path << "\"" << std::endl; + assert(IsPathAbsolute(path)); if (!IsDir(path)) { infostream << "RecursiveDelete: Deleting file " << path << std::endl; if (!DeleteFile(path.c_str())) { @@ -181,19 +184,9 @@ bool RecursiveDelete(const std::string &path) bool DeleteSingleFileOrEmptyDirectory(const std::string &path) { - DWORD attr = GetFileAttributes(path.c_str()); - bool is_directory = (attr != INVALID_FILE_ATTRIBUTES && - (attr & FILE_ATTRIBUTE_DIRECTORY)); - if(!is_directory) - { - bool did = DeleteFile(path.c_str()); - return did; - } - else - { - bool did = RemoveDirectory(path.c_str()); - return did; - } + if (!IsDir(path)) + return DeleteFile(path.c_str()); + return RemoveDirectory(path.c_str()); } std::string TempPath() @@ -336,8 +329,7 @@ bool CreateDir(const std::string &path) bool PathExists(const std::string &path) { - struct stat st{}; - return (stat(path.c_str(),&st) == 0); + return access(path.c_str(), F_OK) == 0; } bool IsPathAbsolute(const std::string &path) @@ -348,21 +340,29 @@ bool IsPathAbsolute(const std::string &path) bool IsDir(const std::string &path) { struct stat statbuf{}; - if(stat(path.c_str(), &statbuf)) + if (stat(path.c_str(), &statbuf)) return false; // Actually error; but certainly not a directory return ((statbuf.st_mode & S_IFDIR) == S_IFDIR); } +bool IsFile(const std::string &path) +{ + struct stat statbuf{}; + if (stat(path.c_str(), &statbuf)) + return false; +#ifdef S_IFSOCK + // sockets cannot be opened in any way, so they are not files. + if ((statbuf.st_mode & S_IFSOCK) == S_IFSOCK) + return false; +#endif + return ((statbuf.st_mode & S_IFDIR) != S_IFDIR); +} + bool IsExecutable(const std::string &path) { return access(path.c_str(), X_OK) == 0; } -bool IsDirDelimiter(char c) -{ - return c == '/'; -} - bool RecursiveDelete(const std::string &path) { /* @@ -506,15 +506,10 @@ bool CopyFileContents(const std::string &source, const std::string &target) // fallback to normal copy, but no need to reopen the files sourcefile.reset(fdopen(srcfd, "rb")); targetfile.reset(fdopen(tgtfd, "wb")); - goto fallback; - -#endif - +#else sourcefile.reset(fopen(source.c_str(), "rb")); targetfile.reset(fopen(target.c_str(), "wb")); - -fallback: - +#endif if (!sourcefile) { errorstream << source << ": can't open for reading: " << strerror(errno) << std::endl; @@ -715,7 +710,7 @@ bool PathStartsWith(const std::string &path, const std::string &prefix) if(prefixpos == prefixsize) return true; // Return false if path has ended (at delimiter/EOS) - // while prefix did not. + // while prefix did not. if(pathpos == pathsize) return false; } @@ -882,7 +877,7 @@ const char *GetFilenameFromPath(const char *path) { const char *filename = strrchr(path, DIR_DELIM_CHAR); // Consistent with IsDirDelimiter this function handles '/' too - if (DIR_DELIM_CHAR != '/') { + if constexpr (DIR_DELIM_CHAR != '/') { const char *tmp = strrchr(path, '/'); if (tmp && tmp > filename) filename = tmp; diff --git a/src/filesys.h b/src/filesys.h index 0e974d822..3f2b81d54 100644 --- a/src/filesys.h +++ b/src/filesys.h @@ -36,28 +36,28 @@ struct DirListNode bool dir; }; +[[nodiscard]] std::vector GetDirListing(const std::string &path); // Returns true if already exists bool CreateDir(const std::string &path); -bool PathExists(const std::string &path); +[[nodiscard]] bool PathExists(const std::string &path); -bool IsPathAbsolute(const std::string &path); +[[nodiscard]] bool IsPathAbsolute(const std::string &path); -bool IsDir(const std::string &path); +[[nodiscard]] bool IsDir(const std::string &path); -bool IsExecutable(const std::string &path); +[[nodiscard]] bool IsExecutable(const std::string &path); -inline bool IsFile(const std::string &path) +[[nodiscard]] bool IsFile(const std::string &path); + +[[nodiscard]] inline bool IsDirDelimiter(char c) { - return PathExists(path) && !IsDir(path); + return c == '/' || c == DIR_DELIM_CHAR; } -bool IsDirDelimiter(char c); - -// Only pass full paths to this one. True on success. -// NOTE: The WIN32 version returns always true. +// Only pass full paths to this one. returns true on success. bool RecursiveDelete(const std::string &path); bool DeleteSingleFileOrEmptyDirectory(const std::string &path); @@ -65,20 +65,21 @@ bool DeleteSingleFileOrEmptyDirectory(const std::string &path); /// Returns path to temp directory. /// You probably don't want to use this directly, see `CreateTempFile` or `CreateTempDir`. /// @return path or "" on error -std::string TempPath(); +[[nodiscard]] std::string TempPath(); /// Returns path to securely-created temporary file (will already exist when this function returns). /// @return path or "" on error -std::string CreateTempFile(); +[[nodiscard]] std::string CreateTempFile(); /// Returns path to securely-created temporary directory (will already exist when this function returns). /// @return path or "" on error -std::string CreateTempDir(); +[[nodiscard]] std::string CreateTempDir(); /* Returns a list of subdirectories, including the path itself, but excluding hidden directories (whose names start with . or _) */ void GetRecursiveDirs(std::vector &dirs, const std::string &dir); +[[nodiscard]] std::vector GetRecursiveDirs(const std::string &dir); /* Multiplatform */ @@ -129,16 +130,19 @@ std::string RemoveRelativePathComponents(std::string path); // Returns the absolute path for the passed path, with "." and ".." path // components and symlinks removed. Returns "" on error. +[[nodiscard]] std::string AbsolutePath(const std::string &path); // This is a combination of RemoveRelativePathComponents() and AbsolutePath() // It will resolve symlinks for the leading path components that exist and // still remove "." and ".." in the rest of the path. // Returns "" on error. +[[nodiscard]] std::string AbsolutePathPartial(const std::string &path); // Returns the filename from a path or the entire path if no directory // delimiter is found. +[[nodiscard]] const char *GetFilenameFromPath(const char *path); // Replace the content of a file on disk in a way that is safe from @@ -181,6 +185,7 @@ bool OpenStream(std::filebuf &stream, const char *filename, * @param mode additional mode bits (e.g. std::ios::app) * @return file stream, will be !good in case of error */ +[[nodiscard]] inline std::ofstream open_ofstream(const char *name, bool log, std::ios::openmode mode = std::ios::openmode()) { @@ -203,6 +208,7 @@ inline std::ofstream open_ofstream(const char *name, bool log, * @param mode additional mode bits (e.g. std::ios::ate) * @return file stream, will be !good in case of error */ +[[nodiscard]] inline std::ifstream open_ifstream(const char *name, bool log, std::ios::openmode mode = std::ios::openmode()) { diff --git a/src/gameparams.h b/src/gameparams.h index 7c20cccf3..0dc7a3713 100644 --- a/src/gameparams.h +++ b/src/gameparams.h @@ -25,6 +25,7 @@ enum class ELoginRegister { }; // Information processed by main menu +// TODO: unify with MainMenuData struct GameStartData : GameParams { GameStartData() = default; @@ -33,7 +34,11 @@ struct GameStartData : GameParams std::string name; std::string password; + // If empty, we're hosting a server. + // This may or may not be in "simple singleplayer mode". std::string address; + // If true, we're hosting a server and are *not* in "simple singleplayer + // mode". bool local_server; ELoginRegister allow_login_or_register = ELoginRegister::Any; diff --git a/src/gettext.cpp b/src/gettext.cpp index 59ce2409c..7cb4a7763 100644 --- a/src/gettext.cpp +++ b/src/gettext.cpp @@ -171,8 +171,13 @@ void init_gettext(const char *path, const std::string &configured_language, #if CHECK_CLIENT_BUILD() // Hack to force gettext to see the right environment - if (current_language != configured_language) - MSVC_LocaleWorkaround(argc, argv); + if (current_language != configured_language) { + // Disabled when debugger is present as it can break debugging + if (!IsDebuggerPresent()) + MSVC_LocaleWorkaround(argc, argv); + else + actionstream << "Debugger detected. Skipping MSVC_LocaleWorkaround." << std::endl; + } #else errorstream << "*******************************************************" << std::endl; errorstream << "Can't apply locale workaround for server!" << std::endl; diff --git a/src/gettext.h b/src/gettext.h index ca47c1274..a58dc9302 100644 --- a/src/gettext.h +++ b/src/gettext.h @@ -59,6 +59,7 @@ inline std::wstring wstrgettext(const std::string &str) * @tparam Args Template parameter for format args * @param src Translation source string * @param args Variable format args + * @warning No dynamic sizing! string will be cut off if longer than 255 chars. * @return translated string */ template @@ -81,14 +82,19 @@ inline std::wstring fwgettext(const char *src, Args&&... args) template inline std::string fmtgettext(const char *format, Args&&... args) { - std::string buf; - std::size_t buf_size = 256; - buf.resize(buf_size); - format = gettext(format); - int len = porting::mt_snprintf(&buf[0], buf_size, format, std::forward(args)...); - if (len <= 0) throw std::runtime_error("gettext format error: " + std::string(format)); + std::string buf; + { + size_t default_size = strlen(format); + if (default_size < 256) + default_size = 256; + buf.resize(default_size); + } + + int len = porting::mt_snprintf(&buf[0], buf.size(), format, std::forward(args)...); + if (len <= 0) + throw std::runtime_error("gettext format error: " + std::string(format)); if ((size_t)len >= buf.size()) { buf.resize(len+1); // extra null byte porting::mt_snprintf(&buf[0], buf.size(), format, std::forward(args)...); diff --git a/src/gui/CMakeLists.txt b/src/gui/CMakeLists.txt index 876acab74..26fd5bfcf 100644 --- a/src/gui/CMakeLists.txt +++ b/src/gui/CMakeLists.txt @@ -27,5 +27,6 @@ set(gui_SRCS ${CMAKE_CURRENT_SOURCE_DIR}/touchcontrols.cpp ${CMAKE_CURRENT_SOURCE_DIR}/touchscreenlayout.cpp ${CMAKE_CURRENT_SOURCE_DIR}/touchscreeneditor.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/drawItemStack.cpp PARENT_SCOPE ) diff --git a/src/gui/StyleSpec.h b/src/gui/StyleSpec.h index 3755e105f..f78a038c2 100644 --- a/src/gui/StyleSpec.h +++ b/src/gui/StyleSpec.h @@ -316,6 +316,8 @@ public: spec.bold = true; else if (modes[i] == "italic") spec.italic = true; + else if (modes[i] == "_no_server_media") // for internal use only + spec.allow_server_media = false; } if (!size.empty()) { diff --git a/src/gui/drawItemStack.cpp b/src/gui/drawItemStack.cpp new file mode 100644 index 000000000..111109fd4 --- /dev/null +++ b/src/gui/drawItemStack.cpp @@ -0,0 +1,314 @@ +// Luanti +// SPDX-License-Identifier: LGPL-2.1-or-later +// Copyright (C) 2024 cx384 + +#include "drawItemStack.h" + +#include +#include "settings.h" +#include "client/client.h" +#include "porting.h" +#include "inventory.h" +#include "client/mesh.h" +#include "client/wieldmesh.h" +#include "client/texturesource.h" +#include "client/guiscalingfilter.h" +#include "client/item_visuals_manager.h" + +struct MeshTimeInfo { + u64 time; + scene::IMesh *mesh = nullptr; +}; + +void drawItemStack( + video::IVideoDriver *driver, + gui::IGUIFont *font, + const ItemStack &item, + const core::rect &rect, + const core::rect *clip, + Client *client, + ItemRotationKind rotation_kind, + const v3s16 &angle, + const v3s16 &rotation_speed) +{ + static MeshTimeInfo rotation_time_infos[IT_ROT_NONE]; + + if (item.empty()) { + if (rotation_kind < IT_ROT_NONE && rotation_kind != IT_ROT_OTHER) { + rotation_time_infos[rotation_kind].mesh = NULL; + } + return; + } + + const bool enable_animations = g_settings->getBool("inventory_items_animations"); + + auto *idef = client->idef(); + const ItemDefinition &def = item.getDefinition(idef); + ItemVisualsManager* item_visuals = client->getItemVisualsManager(); + + bool draw_overlay = false; + + const std::string inventory_image = item.getInventoryImage(idef); + const std::string inventory_overlay = item.getInventoryOverlay(idef); + + bool has_mesh = false; + ItemMesh *imesh; + + core::rect viewrect = rect; + if (clip != nullptr) + viewrect.clipAgainst(*clip); + + // Render as mesh if animated or no inventory image + if ((enable_animations && rotation_kind < IT_ROT_NONE) || inventory_image.empty()) { + imesh = item_visuals->getWieldMesh(item, client); + has_mesh = imesh && imesh->mesh; + } + if (has_mesh) { + scene::IMesh *mesh = imesh->mesh; + driver->clearBuffers(video::ECBF_DEPTH); + s32 delta = 0; + if (rotation_kind < IT_ROT_NONE) { + MeshTimeInfo &ti = rotation_time_infos[rotation_kind]; + if (mesh != ti.mesh && rotation_kind != IT_ROT_OTHER) { + ti.mesh = mesh; + ti.time = porting::getTimeMs(); + } else { + delta = porting::getDeltaMs(ti.time, porting::getTimeMs()) % 100000; + } + } + core::rect oldViewPort = driver->getViewPort(); + core::matrix4 oldProjMat = driver->getTransform(video::ETS_PROJECTION); + core::matrix4 oldViewMat = driver->getTransform(video::ETS_VIEW); + + core::matrix4 ProjMatrix; + ProjMatrix.buildProjectionMatrixOrthoLH(2.0f, 2.0f, -1.0f, 100.0f); + + core::matrix4 ViewMatrix; + ViewMatrix.buildProjectionMatrixOrthoLH( + 2.0f * viewrect.getWidth() / rect.getWidth(), + 2.0f * viewrect.getHeight() / rect.getHeight(), + -1.0f, + 100.0f); + ViewMatrix.setTranslation(core::vector3df( + 1.0f * (rect.LowerRightCorner.X + rect.UpperLeftCorner.X - + viewrect.LowerRightCorner.X - viewrect.UpperLeftCorner.X) / + viewrect.getWidth(), + 1.0f * (viewrect.LowerRightCorner.Y + viewrect.UpperLeftCorner.Y - + rect.LowerRightCorner.Y - rect.UpperLeftCorner.Y) / + viewrect.getHeight(), + 0.0f)); + + driver->setTransform(video::ETS_PROJECTION, ProjMatrix); + driver->setTransform(video::ETS_VIEW, ViewMatrix); + + core::matrix4 matrix; + matrix.makeIdentity(); + + if (enable_animations) { + float timer_f = (float) delta / 5000.f; + matrix.setRotationDegrees(v3f( + angle.X + rotation_speed.X * 3.60f * timer_f, + angle.Y + rotation_speed.Y * 3.60f * timer_f, + angle.Z + rotation_speed.Z * 3.60f * timer_f) + ); + } + + driver->setTransform(video::ETS_WORLD, matrix); + driver->setViewPort(viewrect); + + video::SColor basecolor = item_visuals->getItemstackColor(item, client); + + const u32 mc = mesh->getMeshBufferCount(); + if (mc > imesh->buffer_info.size()) + imesh->buffer_info.resize(mc); + for (u32 j = 0; j < mc; ++j) { + scene::IMeshBuffer *buf = mesh->getMeshBuffer(j); + video::SColor c = basecolor; + + auto &p = imesh->buffer_info[j]; + p.applyOverride(c); + + // TODO: could be moved to a shader + if (p.needColorize(c)) { + buf->setDirty(scene::EBT_VERTEX); + if (imesh->needs_shading) + colorizeMeshBuffer(buf, &c); + else + setMeshBufferColor(buf, c); + } + + video::SMaterial &material = buf->getMaterial(); + + // Texture animation + if (p.animation_info) { + p.animation_info->updateTexture(material, client->getAnimationTime()); + } + + material.MaterialType = video::EMT_TRANSPARENT_ALPHA_CHANNEL_REF; + driver->setMaterial(material); + driver->drawMeshBuffer(buf); + } + + driver->setTransform(video::ETS_VIEW, oldViewMat); + driver->setTransform(video::ETS_PROJECTION, oldProjMat); + driver->setViewPort(oldViewPort); + + draw_overlay = def.type == ITEM_NODE && inventory_image.empty(); + } else { // Otherwise just draw as 2D + video::ITexture *texture = item_visuals->getInventoryTexture(item, client); + video::SColor color; + if (texture) { + color = item_visuals->getItemstackColor(item, client); + } else { + color = video::SColor(255, 255, 255, 255); + ITextureSource *tsrc = client->getTextureSource(); + texture = tsrc->getTexture("no_texture.png"); + if (!texture) + return; + } + + const video::SColor colors[] = { color, color, color, color }; + + draw2DImageFilterScaled(driver, texture, rect, + core::rect({0, 0}, core::dimension2di(texture->getOriginalSize())), + clip, colors, true); + + draw_overlay = true; + } + + // draw the inventory_overlay + if (!inventory_overlay.empty() && draw_overlay) { + ITextureSource *tsrc = client->getTextureSource(); + video::ITexture *overlay_texture = tsrc->getTexture(inventory_overlay); + core::dimension2d dimens = overlay_texture->getOriginalSize(); + core::rect srcrect(0, 0, dimens.Width, dimens.Height); + draw2DImageFilterScaled(driver, overlay_texture, rect, srcrect, clip, 0, true); + } + + if (def.type == ITEM_TOOL && item.wear != 0) { + // Draw a progressbar + float barheight = static_cast(rect.getHeight()) / 16; + float barpad_x = static_cast(rect.getWidth()) / 16; + float barpad_y = static_cast(rect.getHeight()) / 16; + + core::rect progressrect( + rect.UpperLeftCorner.X + barpad_x, + rect.LowerRightCorner.Y - barpad_y - barheight, + rect.LowerRightCorner.X - barpad_x, + rect.LowerRightCorner.Y - barpad_y); + + // Shrink progressrect by amount of tool damage + float wear = item.wear / 65535.0f; + int progressmid = + wear * progressrect.UpperLeftCorner.X + + (1 - wear) * progressrect.LowerRightCorner.X; + + // Compute progressbar color + // default scheme: + // wear = 0.0: green + // wear = 0.5: yellow + // wear = 1.0: red + + video::SColor color; + auto barParams = item.getWearBarParams(client->idef()); + if (barParams.has_value()) { + f32 durabilityPercent = 1.0 - wear; + color = barParams->getWearBarColor(durabilityPercent); + } else { + color = video::SColor(255, 255, 255, 255); + int wear_i = MYMIN(std::floor(wear * 600), 511); + wear_i = MYMIN(wear_i + 10, 511); + + if (wear_i <= 255) + color.set(255, wear_i, 255, 0); + else + color.set(255, 255, 511 - wear_i, 0); + } + + core::rect progressrect2 = progressrect; + progressrect2.LowerRightCorner.X = progressmid; + driver->draw2DRectangle(color, progressrect2, clip); + + color = video::SColor(255, 0, 0, 0); + progressrect2 = progressrect; + progressrect2.UpperLeftCorner.X = progressmid; + driver->draw2DRectangle(color, progressrect2, clip); + } + + const std::string &count_text = item.metadata.getString("count_meta"); + if (font != nullptr && (item.count >= 2 || !count_text.empty())) { + // Get the item count as a string + std::string text = count_text.empty() ? itos(item.count) : count_text; + v2u32 dim = font->getDimension(utf8_to_wide(unescape_enriched(text)).c_str()); + v2s32 sdim(dim.X, dim.Y); + + core::rect rect2( + rect.LowerRightCorner - sdim, + rect.LowerRightCorner + ); + + // get the count alignment + s32 count_alignment = stoi(item.metadata.getString("count_alignment")); + if (count_alignment != 0) { + s32 a_x = count_alignment & 3; + s32 a_y = (count_alignment >> 2) & 3; + + s32 x1, x2, y1, y2; + switch (a_x) { + case 1: // left + x1 = rect.UpperLeftCorner.X; + x2 = x1 + sdim.X; + break; + case 2: // middle + x1 = (rect.UpperLeftCorner.X + rect.LowerRightCorner.X - sdim.X) / 2; + x2 = x1 + sdim.X; + break; + case 3: // right + x2 = rect.LowerRightCorner.X; + x1 = x2 - sdim.X; + break; + default: // 0 = default + x1 = rect2.UpperLeftCorner.X; + x2 = rect2.LowerRightCorner.X; + break; + } + + switch (a_y) { + case 1: // up + y1 = rect.UpperLeftCorner.Y; + y2 = y1 + sdim.Y; + break; + case 2: // middle + y1 = (rect.UpperLeftCorner.Y + rect.LowerRightCorner.Y - sdim.Y) / 2; + y2 = y1 + sdim.Y; + break; + case 3: // down + y2 = rect.LowerRightCorner.Y; + y1 = y2 - sdim.Y; + break; + default: // 0 = default + y1 = rect2.UpperLeftCorner.Y; + y2 = rect2.LowerRightCorner.Y; + break; + } + + rect2 = core::rect(x1, y1, x2, y2); + } + + video::SColor color(255, 255, 255, 255); + font->draw(utf8_to_wide(text).c_str(), rect2, color, false, false, &viewrect); + } +} + +void drawItemStack( + video::IVideoDriver *driver, + gui::IGUIFont *font, + const ItemStack &item, + const core::rect &rect, + const core::rect *clip, + Client *client, + ItemRotationKind rotation_kind) +{ + drawItemStack(driver, font, item, rect, clip, client, rotation_kind, + v3s16(0, 0, 0), v3s16(0, 100, 0)); +} diff --git a/src/gui/drawItemStack.h b/src/gui/drawItemStack.h new file mode 100644 index 000000000..52bccf089 --- /dev/null +++ b/src/gui/drawItemStack.h @@ -0,0 +1,41 @@ +// Luanti +// SPDX-License-Identifier: LGPL-2.1-or-later +// Copyright (C) 2024 cx384 + +#pragma once + +#include +#include +#include "irrlichttypes.h" +#include "irr_v3d.h" + +struct ItemStack; +class Client; + +enum ItemRotationKind +{ + IT_ROT_SELECTED, + IT_ROT_HOVERED, + IT_ROT_DRAGGED, + IT_ROT_OTHER, + IT_ROT_NONE, // Must be last, also serves as number +}; + +void drawItemStack(video::IVideoDriver *driver, + gui::IGUIFont *font, + const ItemStack &item, + const core::rect &rect, + const core::rect *clip, + Client *client, + ItemRotationKind rotation_kind); + +void drawItemStack( + video::IVideoDriver *driver, + gui::IGUIFont *font, + const ItemStack &item, + const core::rect &rect, + const core::rect *clip, + Client *client, + ItemRotationKind rotation_kind, + const v3s16 &angle, + const v3s16 &rotation_speed); diff --git a/src/gui/guiAnimatedImage.h b/src/gui/guiAnimatedImage.h index 885aedece..8f42cd9f3 100644 --- a/src/gui/guiAnimatedImage.h +++ b/src/gui/guiAnimatedImage.h @@ -1,8 +1,10 @@ #pragma once -#include "irrlichttypes_extrabloated.h" #include -#include +#include +#include + +using namespace irr; class ISimpleTextureSource; diff --git a/src/gui/guiBackgroundImage.h b/src/gui/guiBackgroundImage.h index 71c5b5077..de12c48d7 100644 --- a/src/gui/guiBackgroundImage.h +++ b/src/gui/guiBackgroundImage.h @@ -17,8 +17,11 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #pragma once -#include "irrlichttypes_extrabloated.h" -#include "util/string.h" +#include +#include +#include "irr_v2d.h" + +using namespace irr; class ISimpleTextureSource; diff --git a/src/gui/guiBox.cpp b/src/gui/guiBox.cpp index e29389662..21d525774 100644 --- a/src/gui/guiBox.cpp +++ b/src/gui/guiBox.cpp @@ -4,6 +4,7 @@ #include "guiBox.h" #include +#include "irr_v2d.h" GUIBox::GUIBox(gui::IGUIEnvironment *env, gui::IGUIElement *parent, s32 id, const core::rect &rectangle, diff --git a/src/gui/guiBox.h b/src/gui/guiBox.h index 4d83eaace..49c3b8210 100644 --- a/src/gui/guiBox.h +++ b/src/gui/guiBox.h @@ -4,9 +4,11 @@ #pragma once -#include #include -#include "irrlichttypes_extrabloated.h" +#include +#include + +using namespace irr; class GUIBox : public gui::IGUIElement { diff --git a/src/gui/guiButtonItemImage.cpp b/src/gui/guiButtonItemImage.cpp index 9794b1889..bb7f55fff 100644 --- a/src/gui/guiButtonItemImage.cpp +++ b/src/gui/guiButtonItemImage.cpp @@ -5,7 +5,6 @@ #include "guiButtonItemImage.h" #include "client/client.h" -#include "client/hud.h" // drawItemStack #include "guiItemImage.h" #include "IGUIEnvironment.h" #include "itemdef.h" diff --git a/src/gui/guiChatConsole.h b/src/gui/guiChatConsole.h index 9b1309a6e..69205d265 100644 --- a/src/gui/guiChatConsole.h +++ b/src/gui/guiChatConsole.h @@ -4,11 +4,10 @@ #pragma once -#include "irrlichttypes_extrabloated.h" #include "modalMenu.h" #include "chat.h" -#include "config.h" #include "irr_ptr.h" +#include class Client; class GUIScrollBar; diff --git a/src/gui/guiEngine.cpp b/src/gui/guiEngine.cpp index 21b529d0b..a83a913ec 100644 --- a/src/gui/guiEngine.cpp +++ b/src/gui/guiEngine.cpp @@ -27,6 +27,7 @@ #include #include "client/imagefilters.h" #include "util/tracy_wrapper.h" +#include "script/common/c_types.h" // LuaError #if USE_SOUND #include "client/sound/sound_openal.h" @@ -336,6 +337,8 @@ void GUIEngine::run() fps_control.limit(device, &dtime); framemarker.start(); + g_fontengine->handleReload(); + if (device->isWindowVisible()) { // check if we need to update the "upper left corner"-text if (text_height != g_fontengine->getTextHeight()) { diff --git a/src/gui/guiFormSpecMenu.cpp b/src/gui/guiFormSpecMenu.cpp index 7478c389d..59d6dc5a7 100644 --- a/src/gui/guiFormSpecMenu.cpp +++ b/src/gui/guiFormSpecMenu.cpp @@ -25,7 +25,7 @@ #include "client/renderingengine.h" #include "client/joystick_controller.h" #include "log.h" -#include "client/hud.h" // drawItemStack +#include "drawItemStack.h" #include "filesys.h" #include "gettime.h" #include "gettext.h" @@ -695,7 +695,9 @@ void GUIFormSpecMenu::parseScrollBar(parserData* data, const std::string &elemen e->setMax(max); e->setMin(min); - e->setPos(stoi(value)); + // Preserve for min/max values defined by `scroll_container[]`. + spec.aux_f32 = stoi(value); // scroll position + e->setPos(spec.aux_f32); e->setSmallStep(data->scrollbar_options.small_step); e->setLargeStep(data->scrollbar_options.large_step); @@ -2198,7 +2200,6 @@ void GUIFormSpecMenu::parseItemImageButton(parserData* data, const std::string & spec_btn.ftype = f_Button; rect += data->basepos-padding; - spec_btn.rect = rect; m_fields.push_back(spec_btn); } @@ -3194,7 +3195,7 @@ void GUIFormSpecMenu::regenerateGui(v2u32 screensize) pos_offset = v2f32(); // used for formspec versions < 3 - std::list::iterator legacy_sort_start = std::prev(Children.end()); // last element + auto legacy_sort_start = std::prev(Children.end()); // last element if (enable_prepends) { // Backup the coordinates so that prepends can use the coordinates of choice. @@ -3235,6 +3236,8 @@ void GUIFormSpecMenu::regenerateGui(v2u32 screensize) for (const std::pair &b : m_scrollbars) { if (c.first == b.first.fname) { c.second->setScrollBar(b.second); + b.second->setPos(b.first.aux_f32); // scroll position + c.second->updateScrolling(); break; } } @@ -3308,7 +3311,7 @@ void GUIFormSpecMenu::legacySortElements(std::list::iterator from else ++from; - std::list::iterator to = Children.end(); + auto to = Children.end(); // 1: Copy into a sortable container std::vector elements(from, to); @@ -3892,7 +3895,7 @@ void GUIFormSpecMenu::acceptInput(FormspecQuitMode quitmode) fields[name] = "CHG:" + itos(e->getPos()); else fields[name] = "VAL:" + itos(e->getPos()); - } + } } else if (s.ftype == f_AnimatedImage) { // No dynamic cast possible due to some distributions shipped // without rtti support in Irrlicht @@ -4899,8 +4902,7 @@ bool GUIFormSpecMenu::OnEvent(const SEvent& event) if (s.ftype == f_Unknown && s.fid == event.GUIEvent.Caller->getID()) { current_field_enter_pending = s.fname; - std::unordered_map::const_iterator it = - field_close_on_enter.find(s.fname); + auto it = field_close_on_enter.find(s.fname); if (it != field_close_on_enter.end()) close_on_enter = (*it).second; @@ -5056,7 +5058,7 @@ double GUIFormSpecMenu::calculateImgsize(const parserData &data) { // must stay in sync with ClientDynamicInfo::calculateMaxFSSize - const double screen_dpi = RenderingEngine::getDisplayDensity() * 96; + const double screen_dpi = RenderingEngine::getDisplayDensity() * 96; const double gui_scaling = g_settings->getFloat("gui_scaling", 0.5f, 42.0f); // Fixed-size mode @@ -5085,7 +5087,7 @@ double GUIFormSpecMenu::calculateImgsize(const parserData &data) ((15.0 / 13.0) * (0.85 + data.invsize.Y)); } - double prefer_imgsize = getImgsize(v2u32(padded_screensize.X, padded_screensize.Y), + double prefer_imgsize = getImgsize(v2u32::from(padded_screensize), screen_dpi, gui_scaling); // Try to use the preferred imgsize, but if that's bigger than the maximum diff --git a/src/gui/guiFormSpecMenu.h b/src/gui/guiFormSpecMenu.h index 5c3fcd80d..04b65a967 100644 --- a/src/gui/guiFormSpecMenu.h +++ b/src/gui/guiFormSpecMenu.h @@ -129,9 +129,9 @@ class GUIFormSpecMenu : public GUIModalMenu bool is_exit; // Draw priority for formspec version < 3 int priority; - core::rect rect; gui::ECURSOR_ICON fcursor_icon; std::string sound; + f32 aux_f32 = 0; }; struct TooltipSpec diff --git a/src/gui/guiHyperText.cpp b/src/gui/guiHyperText.cpp index 8efd81d0f..f3278a3ab 100644 --- a/src/gui/guiHyperText.cpp +++ b/src/gui/guiHyperText.cpp @@ -5,7 +5,7 @@ #include "guiHyperText.h" #include "guiScrollBar.h" #include "client/fontengine.h" -#include "client/hud.h" // drawItemStack +#include "drawItemStack.h" #include "IVideoDriver.h" #include "client/client.h" #include "client/renderingengine.h" @@ -734,7 +734,7 @@ void TextDrawer::place(const core::rect &dest_rect) ymargin = p.margin; // Place non floating stuff - std::vector::iterator el = p.elements.begin(); + auto el = p.elements.begin(); while (el != p.elements.end()) { // Determine line width and y pos @@ -777,7 +777,7 @@ void TextDrawer::place(const core::rect &dest_rect) std::max(f.margin, p.margin); } else if (f.rect.UpperLeftCorner.X - f.margin <= left && - f.rect.LowerRightCorner.X + f.margin >= right) { + f.rect.LowerRightCorner.X + f.margin >= right) { // float taking all space left = right; } @@ -807,8 +807,8 @@ void TextDrawer::place(const core::rect &dest_rect) el++; } - std::vector::iterator linestart = el; - std::vector::iterator lineend = p.elements.end(); + auto linestart = el; + auto lineend = p.elements.end(); // First pass, find elements fitting into line // (or at least one element) diff --git a/src/gui/guiHyperText.h b/src/gui/guiHyperText.h index d11e80dd7..abdd5de7b 100644 --- a/src/gui/guiHyperText.h +++ b/src/gui/guiHyperText.h @@ -8,7 +8,9 @@ #include #include #include -#include "irrlichttypes_extrabloated.h" +#include +#include +#include "irr_v3d.h" using namespace irr; diff --git a/src/gui/guiInventoryList.cpp b/src/gui/guiInventoryList.cpp index 3b839c7af..b8ed324c3 100644 --- a/src/gui/guiInventoryList.cpp +++ b/src/gui/guiInventoryList.cpp @@ -4,7 +4,7 @@ #include "guiInventoryList.h" #include "guiFormSpecMenu.h" -#include "client/hud.h" +#include "drawItemStack.h" #include "client/client.h" #include "client/renderingengine.h" #include @@ -85,6 +85,10 @@ void GUIInventoryList::draw() v2s32 p((i % m_geom.X) * m_slot_spacing.X, (i / m_geom.X) * m_slot_spacing.Y); core::rect rect = imgrect + base_pos + p; + + if (!getAbsoluteClippingRect().isRectCollided(rect)) + continue; // out of (parent) clip area + const ItemStack &orig_item = ilist->getItem(item_i); ItemStack item = orig_item; diff --git a/src/gui/guiInventoryList.h b/src/gui/guiInventoryList.h index a4a53a48b..517dfe4c6 100644 --- a/src/gui/guiInventoryList.h +++ b/src/gui/guiInventoryList.h @@ -5,8 +5,11 @@ #pragma once #include "inventorymanager.h" -#include "irrlichttypes_extrabloated.h" -#include "util/string.h" +#include +#include +#include "irr_v2d.h" + +using namespace irr; class GUIFormSpecMenu; diff --git a/src/gui/guiItemImage.cpp b/src/gui/guiItemImage.cpp index 9e9205f52..1c3c17acb 100644 --- a/src/gui/guiItemImage.cpp +++ b/src/gui/guiItemImage.cpp @@ -4,7 +4,7 @@ #include "guiItemImage.h" #include "client/client.h" -#include "client/hud.h" // drawItemStack +#include "drawItemStack.h" #include "inventory.h" #include diff --git a/src/gui/guiItemImage.h b/src/gui/guiItemImage.h index 8d3dadfa7..9bf81de9f 100644 --- a/src/gui/guiItemImage.h +++ b/src/gui/guiItemImage.h @@ -4,8 +4,10 @@ #pragma once -#include "irrlichttypes_extrabloated.h" -#include "util/string.h" +#include +#include + +using namespace irr; class Client; diff --git a/src/gui/guiKeyChangeMenu.cpp b/src/gui/guiKeyChangeMenu.cpp index 6d3a0c531..ba94fa2f1 100644 --- a/src/gui/guiKeyChangeMenu.cpp +++ b/src/gui/guiKeyChangeMenu.cpp @@ -7,7 +7,6 @@ #include "guiKeyChangeMenu.h" #include "debug.h" #include "guiButton.h" -#include "serialization.h" #include #include #include @@ -16,7 +15,7 @@ #include #include #include "settings.h" -#include +#include "gettext.h" #include "mainmenumanager.h" // for g_gamecallback @@ -206,6 +205,8 @@ void GUIKeyChangeMenu::drawMenu() bool GUIKeyChangeMenu::acceptInput() { + clearKeyCache(); + for (key_setting *k : key_settings) { std::string default_key; Settings::getLayer(SL_DEFAULTS)->getNoEx(k->setting_name, default_key); @@ -232,8 +233,6 @@ bool GUIKeyChangeMenu::acceptInput() g_settings->setBool("autojump", ((gui::IGUICheckBox*)e)->isChecked()); } - clearKeyCache(); - g_gamecallback->signalKeyConfigChange(); return true; @@ -253,8 +252,7 @@ bool GUIKeyChangeMenu::OnEvent(const SEvent& event) if (event.EventType == EET_KEY_INPUT_EVENT && active_key && event.KeyInput.PressedDown) { - bool prefer_character = shift_down; - KeyPress kp(event.KeyInput, prefer_character); + KeyPress kp(event.KeyInput); if (event.KeyInput.Key == irr::KEY_DELETE) kp = KeyPress(""); // To erase key settings @@ -270,7 +268,7 @@ bool GUIKeyChangeMenu::OnEvent(const SEvent& event) // Display Key already in use message bool key_in_use = false; - if (strcmp(kp.sym(), "") != 0) { + if (kp) { for (key_setting *ks : key_settings) { if (ks != active_key && ks->key == kp) { key_in_use = true; diff --git a/src/gui/guiKeyChangeMenu.h b/src/gui/guiKeyChangeMenu.h index 6544840cb..c858b2c93 100644 --- a/src/gui/guiKeyChangeMenu.h +++ b/src/gui/guiKeyChangeMenu.h @@ -6,12 +6,11 @@ #pragma once -#include "irrlichttypes_extrabloated.h" #include "modalMenu.h" -#include "gettext.h" #include "client/keycode.h" #include #include +#include class ISimpleTextureSource; diff --git a/src/gui/guiMainMenu.h b/src/gui/guiMainMenu.h index c92787adb..e5a5d2717 100644 --- a/src/gui/guiMainMenu.h +++ b/src/gui/guiMainMenu.h @@ -4,10 +4,8 @@ #pragma once -#include "irrlichttypes_extrabloated.h" #include "gameparams.h" #include -#include struct MainMenuDataForScript { @@ -18,10 +16,13 @@ struct MainMenuDataForScript { std::string errormessage = ""; }; +// TODO: unify with GameStartData struct MainMenuData { // Client options std::string servername; std::string serverdescription; + // If empty, we're hosting a server. + // This may or may not be in "simple singleplayer mode". std::string address; std::string port; std::string name; @@ -31,6 +32,7 @@ struct MainMenuData { // Server options int selected_world = 0; + // If true, we're hosting a server and *are* in "simple singleplayer mode". bool simple_singleplayer_mode = false; // Data to be passed to the script diff --git a/src/gui/guiOpenURL.cpp b/src/gui/guiOpenURL.cpp index 7ce79b0e5..4c54556be 100644 --- a/src/gui/guiOpenURL.cpp +++ b/src/gui/guiOpenURL.cpp @@ -87,6 +87,12 @@ void GUIOpenURLMenu::regenerateGui(v2u32 screensize) ok = false; } + std::array styles {}; + for (auto &style : styles) + style.set(StyleSpec::Property::FONT, "_no_server_media"); + + auto font_standard = styles[0].getFont(); + /* Add stuff */ @@ -99,8 +105,9 @@ void GUIOpenURLMenu::regenerateGui(v2u32 screensize) std::wstring title = ok ? wstrgettext("Open URL?") : wstrgettext("Unable to open URL"); - gui::StaticText::add(Environment, title, rect, + auto *e = gui::StaticText::add(Environment, title, rect, false, true, this, -1); + e->setOverrideFont(font_standard); } ypos += 50 * s; @@ -108,8 +115,11 @@ void GUIOpenURLMenu::regenerateGui(v2u32 screensize) { core::rect rect(0, 0, 440 * s, 60 * s); - auto font = g_fontengine->getFont(FONT_SIZE_UNSPECIFIED, - ok ? FM_Mono : FM_Standard); + FontSpec fontspec(FONT_SIZE_UNSPECIFIED, FM_Mono, false, false); + fontspec.allow_server_media = false; + + auto font = ok ? g_fontengine->getFont(fontspec) : font_standard; + int scrollbar_width = Environment->getSkin()->getSize(gui::EGDS_SCROLLBAR_SIZE); int max_cols = (rect.getWidth() - scrollbar_width - 10) / font->getDimension(L"x").Width; @@ -131,14 +141,16 @@ void GUIOpenURLMenu::regenerateGui(v2u32 screensize) if (ok) { core::rect rect(0, 0, 100 * s, 40 * s); rect = rect + v2s32(size.X / 2 - 150 * s, ypos); - GUIButton::addButton(Environment, rect, m_tsrc, this, ID_open, + auto *e = GUIButton::addButton(Environment, rect, m_tsrc, this, ID_open, wstrgettext("Open").c_str()); + e->setStyles(styles); } { core::rect rect(0, 0, 100 * s, 40 * s); rect = rect + v2s32(size.X / 2 + 50 * s, ypos); - GUIButton::addButton(Environment, rect, m_tsrc, this, ID_cancel, + auto *e = GUIButton::addButton(Environment, rect, m_tsrc, this, ID_cancel, wstrgettext("Cancel").c_str()); + e->setStyles(styles); } } diff --git a/src/gui/guiOpenURL.h b/src/gui/guiOpenURL.h index 8f873c2fa..f48f1aaa5 100644 --- a/src/gui/guiOpenURL.h +++ b/src/gui/guiOpenURL.h @@ -17,7 +17,6 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #pragma once -#include "irrlichttypes_extrabloated.h" #include "modalMenu.h" #include diff --git a/src/gui/guiPasswordChange.h b/src/gui/guiPasswordChange.h index 8dc670cc2..4be5f81b7 100644 --- a/src/gui/guiPasswordChange.h +++ b/src/gui/guiPasswordChange.h @@ -18,7 +18,6 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #pragma once -#include "irrlichttypes_extrabloated.h" #include "modalMenu.h" #include diff --git a/src/gui/guiScene.cpp b/src/gui/guiScene.cpp index 88865b384..269bc1658 100644 --- a/src/gui/guiScene.cpp +++ b/src/gui/guiScene.cpp @@ -7,10 +7,10 @@ #include #include #include +#include #include "IAttributes.h" #include "porting.h" #include "client/mesh.h" -#include "settings.h" GUIScene::GUIScene(gui::IGUIEnvironment *env, scene::ISceneManager *smgr, gui::IGUIElement *parent, core::recti rect, s32 id) diff --git a/src/gui/guiScene.h b/src/gui/guiScene.h index f9b6981c5..43902dad7 100644 --- a/src/gui/guiScene.h +++ b/src/gui/guiScene.h @@ -4,9 +4,11 @@ #pragma once -#include "irrlichttypes_extrabloated.h" #include "ICameraSceneNode.h" #include "StyleSpec.h" +#include +#include +#include using namespace irr; diff --git a/src/gui/guiScrollBar.cpp b/src/gui/guiScrollBar.cpp index 01a7af8c9..387f45297 100644 --- a/src/gui/guiScrollBar.cpp +++ b/src/gui/guiScrollBar.cpp @@ -249,7 +249,7 @@ void GUIScrollBar::updatePos() setPosRaw(scroll_pos); } -void GUIScrollBar::setPosRaw(const s32 &pos) +void GUIScrollBar::setPosRaw(const s32 pos) { s32 thumb_area = 0; s32 thumb_min = 0; @@ -275,7 +275,7 @@ void GUIScrollBar::setPosRaw(const s32 &pos) border_size; } -void GUIScrollBar::setPos(const s32 &pos) +void GUIScrollBar::setPos(const s32 pos) { setPosRaw(pos); target_pos = std::nullopt; diff --git a/src/gui/guiScrollBar.h b/src/gui/guiScrollBar.h index af3bc4652..7f6621940 100644 --- a/src/gui/guiScrollBar.h +++ b/src/gui/guiScrollBar.h @@ -12,8 +12,9 @@ the arrow buttons where there is insufficient space. #pragma once -#include "irrlichttypes_extrabloated.h" #include +#include +#include class ISimpleTextureSource; @@ -53,7 +54,7 @@ public: void setLargeStep(const s32 &step); //! Sets a position immediately, aborting any ongoing interpolation. // setPos does not send EGET_SCROLL_BAR_CHANGED events for you. - void setPos(const s32 &pos); + void setPos(const s32 pos); //! The same as setPos, but it takes care of sending EGET_SCROLL_BAR_CHANGED events. void setPosAndSend(const s32 &pos); //! Sets a target position for interpolation. @@ -93,7 +94,7 @@ private: ISimpleTextureSource *m_tsrc; - void setPosRaw(const s32 &pos); + void setPosRaw(const s32 pos); void updatePos(); std::optional target_pos; u32 last_time_ms = 0; diff --git a/src/gui/guiScrollContainer.cpp b/src/gui/guiScrollContainer.cpp index ff94b2769..0ef3fb612 100644 --- a/src/gui/guiScrollContainer.cpp +++ b/src/gui/guiScrollContainer.cpp @@ -92,8 +92,6 @@ void GUIScrollContainer::setScrollBar(GUIScrollBar *scrollbar) m_scrollbar->setPageSize((total_content_px * scrollbar_px) / visible_content_px); } - - updateScrolling(); } void GUIScrollContainer::updateScrolling() diff --git a/src/gui/guiScrollContainer.h b/src/gui/guiScrollContainer.h index 523d1cd42..d1632f765 100644 --- a/src/gui/guiScrollContainer.h +++ b/src/gui/guiScrollContainer.h @@ -4,8 +4,6 @@ #pragma once -#include "irrlichttypes_extrabloated.h" -#include "util/string.h" #include "guiScrollBar.h" class GUIScrollContainer : public gui::IGUIElement @@ -31,6 +29,7 @@ public: } void setScrollBar(GUIScrollBar *scrollbar); + void updateScrolling(); private: enum OrientationEnum @@ -45,5 +44,4 @@ private: f32 m_scrollfactor; //< scrollbar pos * scrollfactor = scroll offset in pixels std::optional m_content_padding_px; //< in pixels - void updateScrolling(); }; diff --git a/src/gui/guiTable.cpp b/src/gui/guiTable.cpp index 0c10a2b64..0bc480da7 100644 --- a/src/gui/guiTable.cpp +++ b/src/gui/guiTable.cpp @@ -362,8 +362,7 @@ void GUITable::setTable(const TableOptions &options, // Find content_index. Image indices are defined in // column options so check active_image_indices. s32 image_index = stoi(content[i * colcount + j]); - std::map::iterator image_iter = - active_image_indices.find(image_index); + auto image_iter =active_image_indices.find(image_index); if (image_iter != active_image_indices.end()) row->content_index = image_iter->second; @@ -965,7 +964,7 @@ bool GUITable::OnEvent(const SEvent &event) s32 GUITable::allocString(const std::string &text) { - std::map::iterator it = m_alloc_strings.find(text); + auto it = m_alloc_strings.find(text); if (it == m_alloc_strings.end()) { s32 id = m_strings.size(); std::wstring wtext = utf8_to_wide(text); @@ -979,7 +978,7 @@ s32 GUITable::allocString(const std::string &text) s32 GUITable::allocImage(const std::string &imagename) { - std::map::iterator it = m_alloc_images.find(imagename); + auto it = m_alloc_images.find(imagename); if (it == m_alloc_images.end()) { s32 id = m_images.size(); m_images.push_back(m_tsrc->getTexture(imagename)); diff --git a/src/gui/guiTable.h b/src/gui/guiTable.h index 2d4ebbac4..63aeb0e8f 100644 --- a/src/gui/guiTable.h +++ b/src/gui/guiTable.h @@ -8,9 +8,7 @@ #include #include #include -#include -#include "irrlichttypes_extrabloated.h" #include "guiScrollBar.h" class ISimpleTextureSource; diff --git a/src/gui/guiVolumeChange.h b/src/gui/guiVolumeChange.h index ccdaca00b..04ba4860f 100644 --- a/src/gui/guiVolumeChange.h +++ b/src/gui/guiVolumeChange.h @@ -19,7 +19,6 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #pragma once -#include "irrlichttypes_extrabloated.h" #include "modalMenu.h" #include diff --git a/src/gui/mainmenumanager.h b/src/gui/mainmenumanager.h index 87751bb62..2ac00fee7 100644 --- a/src/gui/mainmenumanager.h +++ b/src/gui/mainmenumanager.h @@ -21,6 +21,7 @@ class IGameCallback { public: virtual void exitToOS() = 0; + virtual void openSettings() = 0; virtual void keyConfig() = 0; virtual void disconnect() = 0; virtual void changePassword() = 0; @@ -115,6 +116,11 @@ public: shutdown_requested = true; } + void openSettings() override + { + settings_requested = true; + } + void disconnect() override { disconnect_requested = true; @@ -151,6 +157,7 @@ public: } bool disconnect_requested = false; + bool settings_requested = false; bool changepassword_requested = false; bool changevolume_requested = false; bool keyconfig_requested = false; diff --git a/src/gui/modalMenu.cpp b/src/gui/modalMenu.cpp index 0a130e905..d5c717d51 100644 --- a/src/gui/modalMenu.cpp +++ b/src/gui/modalMenu.cpp @@ -147,12 +147,13 @@ bool GUIModalMenu::remapClickOutside(const SEvent &event) if (event.MouseInput.Event == EMIE_LMOUSE_LEFT_UP && current.isRelated(last)) { SEvent translated{}; - translated.EventType = EET_KEY_INPUT_EVENT; - translated.KeyInput.Key = KEY_ESCAPE; - translated.KeyInput.Control = false; - translated.KeyInput.Shift = false; - translated.KeyInput.PressedDown = true; - translated.KeyInput.Char = 0; + translated.EventType = EET_KEY_INPUT_EVENT; + translated.KeyInput.Key = KEY_ESCAPE; + translated.KeyInput.SystemKeyCode = EscapeKey.getScancode(); + translated.KeyInput.Control = false; + translated.KeyInput.Shift = false; + translated.KeyInput.PressedDown = true; + translated.KeyInput.Char = 0; OnEvent(translated); return true; } diff --git a/src/gui/profilergraph.cpp b/src/gui/profilergraph.cpp index 22e6608b8..4e633ea5d 100644 --- a/src/gui/profilergraph.cpp +++ b/src/gui/profilergraph.cpp @@ -27,7 +27,7 @@ void ProfilerGraph::draw(s32 x_left, s32 y_bottom, video::IVideoDriver *driver, for (const auto &i : piece.values) { const std::string &id = i.first; const float &value = i.second; - std::map::iterator j = m_meta.find(id); + auto j = m_meta.find(id); if (j == m_meta.end()) { m_meta[id] = Meta(value); diff --git a/src/gui/touchcontrols.cpp b/src/gui/touchcontrols.cpp index 6ba3e7b9e..6a3aeb108 100644 --- a/src/gui/touchcontrols.cpp +++ b/src/gui/touchcontrols.cpp @@ -13,9 +13,9 @@ #include "porting.h" #include "settings.h" #include "client/guiscalingfilter.h" -#include "client/keycode.h" #include "client/renderingengine.h" #include "client/texturesource.h" +#include "util/enum_string.h" #include "util/numeric.h" #include "irr_gui_ptr.h" #include "IGUIImage.h" @@ -23,21 +23,24 @@ #include "IGUIFont.h" #include #include +#include +#include #include #include TouchControls *g_touchcontrols; -void TouchControls::emitKeyboardEvent(EKEY_CODE keycode, bool pressed) +void TouchControls::emitKeyboardEvent(KeyPress key, bool pressed) { SEvent e{}; - e.EventType = EET_KEY_INPUT_EVENT; - e.KeyInput.Key = keycode; - e.KeyInput.Control = false; - e.KeyInput.Shift = false; - e.KeyInput.Char = 0; - e.KeyInput.PressedDown = pressed; + e.EventType = EET_KEY_INPUT_EVENT; + e.KeyInput.Key = key.getKeycode(); + e.KeyInput.Control = false; + e.KeyInput.Shift = false; + e.KeyInput.Char = key.getKeychar(); + e.KeyInput.SystemKeyCode = key.getScancode(); + e.KeyInput.PressedDown = pressed; m_receiver->OnEvent(e); } @@ -52,10 +55,10 @@ void TouchControls::loadButtonTexture(IGUIImage *gui_button, const std::string & void TouchControls::buttonEmitAction(button_info &btn, bool action) { - if (btn.keycode == KEY_UNKNOWN) + if (!btn.keypress) return; - emitKeyboardEvent(btn.keycode, action); + emitKeyboardEvent(btn.keypress, action); if (action) { if (btn.toggleable == button_info::FIRST_TEXTURE) { @@ -76,15 +79,18 @@ bool TouchControls::buttonsHandlePress(std::vector &buttons, size_t for (button_info &btn : buttons) { if (btn.gui_button.get() == element) { + // Allow moving the camera with the same finger that holds dig/place. + bool absorb = btn.id != dig_id && btn.id != place_id; + assert(std::find(btn.pointer_ids.begin(), btn.pointer_ids.end(), pointer_id) == btn.pointer_ids.end()); btn.pointer_ids.push_back(pointer_id); if (btn.pointer_ids.size() > 1) - return true; + return absorb; buttonEmitAction(btn, true); btn.repeat_counter = -BUTTON_REPEAT_DELAY; - return true; + return absorb; } } @@ -97,13 +103,16 @@ bool TouchControls::buttonsHandleRelease(std::vector &buttons, size for (button_info &btn : buttons) { auto it = std::find(btn.pointer_ids.begin(), btn.pointer_ids.end(), pointer_id); if (it != btn.pointer_ids.end()) { + // Don't absorb since we didn't absorb the press event either. + bool absorb = btn.id != dig_id && btn.id != place_id; + btn.pointer_ids.erase(it); if (!btn.pointer_ids.empty()) - return true; + return absorb; buttonEmitAction(btn, false); - return true; + return absorb; } } @@ -115,6 +124,8 @@ bool TouchControls::buttonsStep(std::vector &buttons, float dtime) bool has_pointers = false; for (button_info &btn : buttons) { + if (btn.id == dig_id || btn.id == place_id) + continue; // key repeats would cause glitches here if (btn.pointer_ids.empty()) continue; has_pointers = true; @@ -131,15 +142,16 @@ bool TouchControls::buttonsStep(std::vector &buttons, float dtime) return has_pointers; } -static EKEY_CODE id_to_keycode(touch_gui_button_id id) +static std::string id_to_setting(touch_gui_button_id id) { - EKEY_CODE code; - // ESC isn't part of the keymap. - if (id == exit_id) - return KEY_ESCAPE; - std::string key = ""; switch (id) { + case dig_id: + key = "dig"; + break; + case place_id: + key = "place"; + break; case jump_id: key = "jump"; break; @@ -188,18 +200,32 @@ static EKEY_CODE id_to_keycode(touch_gui_button_id id) default: break; } - assert(!key.empty()); - std::string resolved = g_settings->get("keymap_" + key); - try { - code = keyname_to_keycode(resolved.c_str()); - } catch (UnknownKeycode &e) { - code = KEY_UNKNOWN; - warningstream << "TouchControls: Unknown key '" << resolved - << "' for '" << key << "', hiding button." << std::endl; - } - return code; + return key.empty() ? key : "keymap_" + key; } +static KeyPress id_to_keypress(touch_gui_button_id id) +{ + // ESC isn't part of the keymap. + if (id == exit_id) + return EscapeKey; + + auto setting_name = id_to_setting(id); + + assert(!setting_name.empty()); + auto kp = getKeySetting(setting_name); + if (!kp) + warningstream << "TouchControls: Unbound or invalid key for " + << setting_name << ", hiding button." << std::endl; + return kp; +} + + +static const char *setting_names[] = { + "touch_interaction_style", + "touchscreen_threshold", "touch_long_tap_delay", + "fixed_virtual_joystick", "virtual_joystick_triggers_aux1", + "touch_layout", +}; TouchControls::TouchControls(IrrlichtDevice *device, ISimpleTextureSource *tsrc): m_device(device), @@ -207,13 +233,40 @@ TouchControls::TouchControls(IrrlichtDevice *device, ISimpleTextureSource *tsrc) m_receiver(device->getEventReceiver()), m_texturesource(tsrc) { + m_screensize = m_device->getVideoDriver()->getScreenSize(); + m_button_size = ButtonLayout::getButtonSize(m_screensize); + + readSettings(); + for (auto name : setting_names) + g_settings->registerChangedCallback(name, settingChangedCallback, this); + + // Also update layout when keybindings change (e.g. for convertibles) + for (u8 id = 0; id < touch_gui_button_id_END; id++) + if (auto name = id_to_setting((touch_gui_button_id)id); !name.empty()) + g_settings->registerChangedCallback(name, settingChangedCallback, this); +} + +void TouchControls::settingChangedCallback(const std::string &name, void *data) +{ + static_cast(data)->readSettings(); +} + +void TouchControls::readSettings() +{ + const std::string &s = g_settings->get("touch_interaction_style"); + if (!string_to_enum(es_TouchInteractionStyle, m_interaction_style, s)) { + m_interaction_style = TAP; + warningstream << "Invalid touch_interaction_style value" << std::endl; + } + m_touchscreen_threshold = g_settings->getU16("touchscreen_threshold"); m_long_tap_delay = g_settings->getU16("touch_long_tap_delay"); m_fixed_joystick = g_settings->getBool("fixed_virtual_joystick"); m_joystick_triggers_aux1 = g_settings->getBool("virtual_joystick_triggers_aux1"); - m_screensize = m_device->getVideoDriver()->getScreenSize(); - m_button_size = ButtonLayout::getButtonSize(m_screensize); + // Note that other settings also affect the layout: + // - ButtonLayout::loadFromSettings: "touch_interaction_style" and "virtual_joystick_triggers_aux1" + // - applyLayout: "fixed_virtual_joystick" applyLayout(ButtonLayout::loadFromSettings()); } @@ -279,8 +332,8 @@ void TouchControls::applyLayout(const ButtonLayout &layout) overflow_buttons.erase(std::remove_if( overflow_buttons.begin(), overflow_buttons.end(), [&](touch_gui_button_id id) { - // There's no sense in adding the overflow button to the overflow - // menu (also, it's impossible since it doesn't have a keycode). + // There would be no sense in adding the overflow button to the + // overflow menu. return !mayAddButton(id) || id == overflow_id; }), overflow_buttons.end()); @@ -314,18 +367,16 @@ void TouchControls::applyLayout(const ButtonLayout &layout) TouchControls::~TouchControls() { + g_settings->deregisterAllChangedCallbacks(this); releaseAll(); } bool TouchControls::mayAddButton(touch_gui_button_id id) { - if (!ButtonLayout::isButtonAllowed(id)) - return false; - if (id == aux1_id && m_joystick_triggers_aux1) - return false; - if (id != overflow_id && id_to_keycode(id) == KEY_UNKNOWN) - return false; - return true; + assert(ButtonLayout::isButtonValid(id)); + assert(ButtonLayout::isButtonAllowed(id)); + // The overflow button doesn't need a keycode to be valid. + return id == overflow_id || id_to_keypress(id); } void TouchControls::addButton(std::vector &buttons, touch_gui_button_id id, @@ -336,7 +387,8 @@ void TouchControls::addButton(std::vector &buttons, touch_gui_butto loadButtonTexture(btn_gui_button, image); button_info &btn = buttons.emplace_back(); - btn.keycode = id_to_keycode(id); + btn.id = id; + btn.keypress = id_to_keypress(id); btn.gui_button = grab_gui_element(btn_gui_button); } @@ -402,7 +454,8 @@ void TouchControls::handleReleaseEvent(size_t pointer_id) // If m_tap_state is already set to TapState::ShortTap, we must keep // that value. Otherwise, many short taps will be ignored if you tap // very fast. - if (!m_move_has_really_moved && !m_move_prevent_short_tap && + if (m_interaction_style != BUTTONS_CROSSHAIR && + !m_move_has_really_moved && !m_move_prevent_short_tap && m_tap_state != TapState::LongTap) { m_tap_state = TapState::ShortTap; } else { @@ -475,7 +528,7 @@ void TouchControls::translateEvent(const SEvent &event) toggleOverflowMenu(); // refresh since visibility of buttons has changed - element = m_guienv->getRootGUIElement()->getElementFromPoint(touch_pos); + element = m_guienv->getRootGUIElement()->getElementFromPoint(touch_pos); // continue processing, but avoid accidentally placing a node // when closing the overflow menu prevent_short_tap = true; @@ -518,10 +571,11 @@ void TouchControls::translateEvent(const SEvent &event) m_move_has_really_moved = false; m_move_downtime = porting::getTimeMs(); m_move_pos = touch_pos; - // DON'T reset m_tap_state here, otherwise many short taps - // will be ignored if you tap very fast. m_had_move_id = true; m_move_prevent_short_tap = prevent_short_tap; + + // DON'T reset m_tap_state here, otherwise many short taps + // will be ignored if you tap very fast. } } } @@ -601,7 +655,7 @@ void TouchControls::translateEvent(const SEvent &event) void TouchControls::applyJoystickStatus() { if (m_joystick_triggers_aux1) { - auto key = id_to_keycode(aux1_id); + auto key = id_to_keypress(aux1_id); emitKeyboardEvent(key, false); if (m_joystick_status_aux1) emitKeyboardEvent(key, true); @@ -627,7 +681,9 @@ void TouchControls::step(float dtime) applyJoystickStatus(); // if a new placed pointer isn't moved for some time start digging - if (m_has_move_id && !m_move_has_really_moved && m_tap_state == TapState::None) { + if (m_interaction_style != BUTTONS_CROSSHAIR && + m_has_move_id && !m_move_has_really_moved && + m_tap_state == TapState::None) { u64 delta = porting::getDeltaMs(m_move_downtime, porting::getTimeMs()); if (delta > m_long_tap_delay) { @@ -639,15 +695,13 @@ void TouchControls::step(float dtime) // Since not only the pointer position, but also the player position and // thus the camera position can change, it doesn't suffice to update the // shootline when a touch event occurs. - // Note that the shootline isn't used if touch_use_crosshair is enabled. // Only updating when m_has_move_id means that the shootline will stay at // it's last in-world position when the player doesn't need it. - if (!m_draw_crosshair && (m_has_move_id || m_had_move_id)) { - v2s32 pointer_pos = getPointerPos(); + if (m_interaction_style == TAP && (m_has_move_id || m_had_move_id)) { m_shootline = m_device ->getSceneManager() ->getSceneCollisionManager() - ->getRayFromScreenCoordinates(pointer_pos); + ->getRayFromScreenCoordinates(m_move_pos); } m_had_move_id = false; } @@ -710,11 +764,11 @@ void TouchControls::releaseAll() // Release those manually too since the change initiated by // handleReleaseEvent will only be applied later by applyContextControls. if (m_dig_pressed) { - emitMouseEvent(EMIE_LMOUSE_LEFT_UP); + emitKeyboardEvent(id_to_keypress(dig_id), false); m_dig_pressed = false; } if (m_place_pressed) { - emitMouseEvent(EMIE_RMOUSE_LEFT_UP); + emitKeyboardEvent(id_to_keypress(place_id), false); m_place_pressed = false; } } @@ -729,33 +783,11 @@ void TouchControls::show() setVisible(true); } -v2s32 TouchControls::getPointerPos() -{ - if (m_draw_crosshair) - return v2s32(m_screensize.X / 2, m_screensize.Y / 2); - // We can't just use m_pointer_pos[m_move_id] because applyContextControls - // may emit release events after m_pointer_pos[m_move_id] is erased. - return m_move_pos; -} - -void TouchControls::emitMouseEvent(EMOUSE_INPUT_EVENT type) -{ - v2s32 pointer_pos = getPointerPos(); - - SEvent event{}; - event.EventType = EET_MOUSE_INPUT_EVENT; - event.MouseInput.X = pointer_pos.X; - event.MouseInput.Y = pointer_pos.Y; - event.MouseInput.Shift = false; - event.MouseInput.Control = false; - event.MouseInput.ButtonStates = 0; - event.MouseInput.Event = type; - event.MouseInput.Simulated = true; - m_receiver->OnEvent(event); -} - void TouchControls::applyContextControls(const TouchInteractionMode &mode) { + if (m_interaction_style == BUTTONS_CROSSHAIR) + return; + // Since the pointed thing has already been determined when this function // is called, we cannot use this function to update the shootline. @@ -820,20 +852,20 @@ void TouchControls::applyContextControls(const TouchInteractionMode &mode) target_place_pressed |= now < m_place_pressed_until; if (target_dig_pressed && !m_dig_pressed) { - emitMouseEvent(EMIE_LMOUSE_PRESSED_DOWN); + emitKeyboardEvent(id_to_keypress(dig_id), true); m_dig_pressed = true; } else if (!target_dig_pressed && m_dig_pressed) { - emitMouseEvent(EMIE_LMOUSE_LEFT_UP); + emitKeyboardEvent(id_to_keypress(dig_id), false); m_dig_pressed = false; } if (target_place_pressed && !m_place_pressed) { - emitMouseEvent(EMIE_RMOUSE_PRESSED_DOWN); + emitKeyboardEvent(id_to_keypress(place_id), true); m_place_pressed = true; } else if (!target_place_pressed && m_place_pressed) { - emitMouseEvent(EMIE_RMOUSE_LEFT_UP); + emitKeyboardEvent(id_to_keypress(place_id), false); m_place_pressed = false; } } diff --git a/src/gui/touchcontrols.h b/src/gui/touchcontrols.h index bcd0f3178..52a3bd6b2 100644 --- a/src/gui/touchcontrols.h +++ b/src/gui/touchcontrols.h @@ -16,6 +16,7 @@ #include "itemdef.h" #include "touchscreenlayout.h" #include "util/basic_macros.h" +#include "client/keycode.h" namespace irr { @@ -56,8 +57,9 @@ enum class TapState struct button_info { + touch_gui_button_id id; float repeat_counter; - EKEY_CODE keycode; + KeyPress keypress; std::vector pointer_ids; std::shared_ptr gui_button = nullptr; @@ -93,6 +95,8 @@ public: return res; } + bool isShootlineAvailable() { return m_interaction_style == TAP; } + /** * Returns a line which describes what the player is pointing at. * The starting point and looking direction are significant, @@ -100,6 +104,9 @@ public: * the player can reach. * The line starts at the camera and ends on the camera's far plane. * The coordinates do not contain the camera offset. + * + * This may only be used if isShootlineAvailable returns true. + * Otherwise, the normal crosshair must be used. */ line3d getShootline() { return m_shootline; } @@ -107,7 +114,6 @@ public: float getJoystickSpeed() { return m_joystick_speed; } void step(float dtime); - inline void setUseCrosshair(bool use_crosshair) { m_draw_crosshair = use_crosshair; } void setVisible(bool visible); void hide(); @@ -120,19 +126,29 @@ public: bool isStatusTextOverriden() { return m_overflow_open; } IGUIStaticText *getStatusText() { return m_status_text.get(); } - ButtonLayout getLayout() { return m_layout; } - void applyLayout(const ButtonLayout &layout); - private: IrrlichtDevice *m_device = nullptr; IGUIEnvironment *m_guienv = nullptr; IEventReceiver *m_receiver = nullptr; ISimpleTextureSource *m_texturesource = nullptr; + bool m_visible = true; + + // changes to these two values are handled in TouchControls::step v2u32 m_screensize; s32 m_button_size; + + // cached settings + TouchInteractionStyle m_interaction_style; double m_touchscreen_threshold; u16 m_long_tap_delay; - bool m_visible = true; + bool m_fixed_joystick; + bool m_joystick_triggers_aux1; + + static void settingChangedCallback(const std::string &name, void *data); + void readSettings(); + + ButtonLayout m_layout; + void applyLayout(const ButtonLayout &layout); std::unordered_map m_hotbar_rects; std::optional m_hotbar_selection = std::nullopt; @@ -145,6 +161,8 @@ private: * A line starting at the camera and pointing towards the selected object. * The line ends on the camera's far plane. * The coordinates do not contain the camera offset. + * + * Only used for m_interaction_style == TAP */ line3d m_shootline; @@ -152,7 +170,9 @@ private: size_t m_move_id; bool m_move_has_really_moved = false; u64 m_move_downtime = 0; - // m_move_pos stays valid even after m_move_id has been released. + // m_move_pos stays valid even after the m_move_id pointer has been + // released and m_pointer_pos[m_move_id] has been erased + // (or even overwritten by a new pointer reusing the same id). v2s32 m_move_pos; // This is needed so that we don't miss if m_has_move_id is true for less // than one client step, i.e. press and release happen in the same step. @@ -165,9 +185,6 @@ private: float m_joystick_direction = 0.0f; // assume forward float m_joystick_speed = 0.0f; // no movement bool m_joystick_status_aux1 = false; - bool m_fixed_joystick = false; - bool m_joystick_triggers_aux1 = false; - bool m_draw_crosshair = false; std::shared_ptr m_joystick_btn_off; std::shared_ptr m_joystick_btn_bg; std::shared_ptr m_joystick_btn_center; @@ -187,7 +204,7 @@ private: // for its buttons. We only want static image display, not interactivity, // from Irrlicht. - void emitKeyboardEvent(EKEY_CODE keycode, bool pressed); + void emitKeyboardEvent(KeyPress keycode, bool pressed); void loadButtonTexture(IGUIImage *gui_button, const std::string &path); void buttonEmitAction(button_info &btn, bool action); @@ -227,8 +244,8 @@ private: // map to store the IDs and positions of currently pressed pointers std::unordered_map m_pointer_pos; - v2s32 getPointerPos(); - void emitMouseEvent(EMOUSE_INPUT_EVENT type); + // The following are not used if m_interaction_style == BUTTONS_CROSSHAIR + TouchInteractionMode m_last_mode = TouchInteractionMode_END; TapState m_tap_state = TapState::None; @@ -237,8 +254,6 @@ private: bool m_place_pressed = false; u64 m_place_pressed_until = 0; - - ButtonLayout m_layout; }; extern TouchControls *g_touchcontrols; diff --git a/src/gui/touchscreeneditor.cpp b/src/gui/touchscreeneditor.cpp index b30ce5a20..76403973f 100644 --- a/src/gui/touchscreeneditor.cpp +++ b/src/gui/touchscreeneditor.cpp @@ -15,6 +15,8 @@ #include "IGUIFont.h" #include "IGUIImage.h" #include "IGUIStaticText.h" +#include +#include GUITouchscreenLayout::GUITouchscreenLayout(gui::IGUIEnvironment* env, gui::IGUIElement* parent, s32 id, @@ -23,10 +25,7 @@ GUITouchscreenLayout::GUITouchscreenLayout(gui::IGUIEnvironment* env, GUIModalMenu(env, parent, id, menumgr), m_tsrc(tsrc) { - if (g_touchcontrols) - m_layout = g_touchcontrols->getLayout(); - else - m_layout = ButtonLayout::loadFromSettings(); + m_layout = ButtonLayout::loadFromSettings(); m_gui_help_text = grab_gui_element(Environment->addStaticText( L"", core::recti(), false, false, this, -1)); @@ -372,14 +371,12 @@ bool GUITouchscreenLayout::OnEvent(const SEvent& event) } if (event.GUIEvent.Caller == m_gui_reset_btn.get()) { - m_layout = ButtonLayout::predefined; + m_layout = ButtonLayout::loadDefault(); regenerateGui(screensize); return true; } if (event.GUIEvent.Caller == m_gui_done_btn.get()) { - if (g_touchcontrols) - g_touchcontrols->applyLayout(m_layout); std::ostringstream oss; m_layout.serializeJson(oss); g_settings->set("touch_layout", oss.str()); diff --git a/src/gui/touchscreeneditor.h b/src/gui/touchscreeneditor.h index 6c70eb693..cedc3b42a 100644 --- a/src/gui/touchscreeneditor.h +++ b/src/gui/touchscreeneditor.h @@ -21,8 +21,8 @@ class GUITouchscreenLayout : public GUIModalMenu { public: GUITouchscreenLayout(gui::IGUIEnvironment* env, - gui::IGUIElement* parent, s32 id, - IMenuManager *menumgr, ISimpleTextureSource *tsrc); + gui::IGUIElement* parent, s32 id, + IMenuManager *menumgr, ISimpleTextureSource *tsrc); ~GUITouchscreenLayout(); void regenerateGui(v2u32 screensize); diff --git a/src/gui/touchscreenlayout.cpp b/src/gui/touchscreenlayout.cpp index 0a88f5dd5..bd97526ff 100644 --- a/src/gui/touchscreenlayout.cpp +++ b/src/gui/touchscreenlayout.cpp @@ -12,8 +12,20 @@ #include "IGUIFont.h" #include "IGUIStaticText.h" +#include "util/enum_string.h" + +const struct EnumString es_TouchInteractionStyle[] = +{ + {TAP, "tap"}, + {TAP_CROSSHAIR, "tap_crosshair"}, + {BUTTONS_CROSSHAIR, "buttons_crosshair"}, + {0, NULL}, +}; const char *button_names[] = { + "dig", + "place", + "jump", "sneak", "zoom", @@ -41,6 +53,9 @@ const char *button_names[] = { // compare with GUIKeyChangeMenu::init_keys const char *button_titles[] = { + N_("Dig/punch/use"), + N_("Place/use"), + N_("Jump"), N_("Sneak"), N_("Zoom"), @@ -67,6 +82,9 @@ const char *button_titles[] = { }; const char *button_image_names[] = { + "dig_btn.png", + "place_btn.png", + "jump_btn.png", "down.png", "zoom.png", @@ -121,10 +139,21 @@ void ButtonMeta::setPos(v2s32 pos, v2u32 screensize, s32 button_size) offset.Y = (pos.Y - (position.Y * screensize.Y)) / button_size; } -bool ButtonLayout::isButtonAllowed(touch_gui_button_id id) +bool ButtonLayout::isButtonValid(touch_gui_button_id id) { return id != joystick_off_id && id != joystick_bg_id && id != joystick_center_id && - id != touch_gui_button_id_END; + id < touch_gui_button_id_END; +} + +static const char *buttons_crosshair = enum_to_string(es_TouchInteractionStyle, BUTTONS_CROSSHAIR); + +bool ButtonLayout::isButtonAllowed(touch_gui_button_id id) +{ + if (id == dig_id || id == place_id) + return g_settings->get("touch_interaction_style") == buttons_crosshair; + if (id == aux1_id) + return !g_settings->getBool("virtual_joystick_triggers_aux1"); + return true; } bool ButtonLayout::isButtonRequired(touch_gui_button_id id) @@ -139,7 +168,15 @@ s32 ButtonLayout::getButtonSize(v2u32 screensize) g_settings->getFloat("hud_scaling")); } -const ButtonLayout ButtonLayout::predefined {{ +const ButtonLayout::ButtonMap ButtonLayout::default_data { + {dig_id, { + v2f(1.0f, 1.0f), + v2f(-2.0f, -2.75f), + }}, + {place_id, { + v2f(1.0f, 1.0f), + v2f(-2.0f, -4.25f), + }}, {jump_id, { v2f(1.0f, 1.0f), v2f(-1.0f, -0.5f), @@ -160,28 +197,40 @@ const ButtonLayout ButtonLayout::predefined {{ v2f(1.0f, 1.0f), v2f(-0.75f, -5.0f), }}, -}}; +}; + +ButtonLayout ButtonLayout::postProcessLoaded(const ButtonMap &data) +{ + ButtonLayout layout; + for (const auto &[id, meta] : data) { + assert(isButtonValid(id)); + if (isButtonAllowed(id)) + layout.layout.emplace(id, meta); + else + layout.preserved_disallowed.emplace(id, meta); + } + return layout; +} + +ButtonLayout ButtonLayout::loadDefault() +{ + return postProcessLoaded(default_data); +} ButtonLayout ButtonLayout::loadFromSettings() { - bool restored = false; - ButtonLayout layout; - std::string str = g_settings->get("touch_layout"); if (!str.empty()) { std::istringstream iss(str); try { - layout.deserializeJson(iss); - restored = true; + ButtonMap data = deserializeJson(iss); + return postProcessLoaded(data); } catch (const Json::Exception &e) { warningstream << "Could not parse touchscreen layout: " << e.what() << std::endl; } } - if (!restored) - return predefined; - - return layout; + return loadDefault(); } std::unordered_map> ButtonLayout::texture_cache; @@ -224,7 +273,7 @@ std::vector ButtonLayout::getMissingButtons() std::vector missing_buttons; for (u8 i = 0; i < touch_gui_button_id_END; i++) { touch_gui_button_id btn = (touch_gui_button_id)i; - if (isButtonAllowed(btn) && layout.count(btn) == 0) + if (isButtonValid(btn) && isButtonAllowed(btn) && layout.count(btn) == 0) missing_buttons.push_back(btn); } return missing_buttons; @@ -233,16 +282,19 @@ std::vector ButtonLayout::getMissingButtons() void ButtonLayout::serializeJson(std::ostream &os) const { Json::Value root = Json::objectValue; + root["version"] = 1; root["layout"] = Json::objectValue; - for (const auto &[id, meta] : layout) { - Json::Value button = Json::objectValue; - button["position_x"] = meta.position.X; - button["position_y"] = meta.position.Y; - button["offset_x"] = meta.offset.X; - button["offset_y"] = meta.offset.Y; + for (const auto &list : {layout, preserved_disallowed}) { + for (const auto &[id, meta] : list) { + Json::Value button = Json::objectValue; + button["position_x"] = meta.position.X; + button["position_y"] = meta.position.Y; + button["offset_x"] = meta.offset.X; + button["offset_y"] = meta.offset.Y; - root["layout"][button_names[id]] = button; + root["layout"][button_names[id]] = button; + } } fastWriteJson(root, os); @@ -257,13 +309,19 @@ static touch_gui_button_id button_name_to_id(const std::string &name) return touch_gui_button_id_END; } -void ButtonLayout::deserializeJson(std::istream &is) +ButtonLayout::ButtonMap ButtonLayout::deserializeJson(std::istream &is) { - layout.clear(); + ButtonMap data; Json::Value root; is >> root; + u8 version; + if (root["version"].isUInt()) + version = root["version"].asUInt(); + else + version = 0; + if (!root["layout"].isObject()) throw Json::RuntimeError("invalid type for layout"); @@ -271,7 +329,7 @@ void ButtonLayout::deserializeJson(std::istream &is) Json::ValueIterator iter; for (iter = obj.begin(); iter != obj.end(); iter++) { touch_gui_button_id id = button_name_to_id(iter.name()); - if (!isButtonAllowed(id)) + if (!isButtonValid(id)) throw Json::RuntimeError("invalid button name"); Json::Value &value = *iter; @@ -290,8 +348,20 @@ void ButtonLayout::deserializeJson(std::istream &is) meta.offset.X = value["offset_x"].asFloat(); meta.offset.Y = value["offset_y"].asFloat(); - layout.emplace(id, meta); + data.emplace(id, meta); } + + if (version < 1) { + // Version 0 did not have dig/place buttons, so add them in. + // Otherwise, the missing buttons would cause confusion if the user + // switches to "touch_interaction_style = buttons_crosshair". + // This may result in overlapping buttons (could be fixed by resolving + // collisions in postProcessLoaded). + data.emplace(dig_id, default_data.at(dig_id)); + data.emplace(place_id, default_data.at(place_id)); + } + + return data; } void layout_button_grid(v2u32 screensize, ISimpleTextureSource *tsrc, diff --git a/src/gui/touchscreenlayout.h b/src/gui/touchscreenlayout.h index 9c7d72fbf..7a181d701 100644 --- a/src/gui/touchscreenlayout.h +++ b/src/gui/touchscreenlayout.h @@ -7,6 +7,7 @@ #include "irr_ptr.h" #include "irrlichttypes_bloated.h" #include "rect.h" +#include "util/enum_string.h" #include #include @@ -20,9 +21,20 @@ namespace irr::video class ITexture; } +enum TouchInteractionStyle : u8 +{ + TAP, + TAP_CROSSHAIR, + BUTTONS_CROSSHAIR, +}; +extern const struct EnumString es_TouchInteractionStyle[]; + enum touch_gui_button_id : u8 { - jump_id = 0, + dig_id = 0, + place_id, + + jump_id, sneak_id, zoom_id, aux1_id, @@ -71,15 +83,34 @@ struct ButtonMeta { }; struct ButtonLayout { + using ButtonMap = std::unordered_map; + + static bool isButtonValid(touch_gui_button_id id); static bool isButtonAllowed(touch_gui_button_id id); static bool isButtonRequired(touch_gui_button_id id); static s32 getButtonSize(v2u32 screensize); + + // Returns the default layout. + // Note: Indirectly depends on settings. + static ButtonLayout loadDefault(); + // Reads the layout from the "touch_layout" setting. Falls back to loadDefault + // if the setting is absent or invalid. + // Note: Indirectly depends on additional settings. static ButtonLayout loadFromSettings(); static video::ITexture *getTexture(touch_gui_button_id btn, ISimpleTextureSource *tsrc); static void clearTextureCache(); - std::unordered_map layout; + ButtonMap layout; + + // Contains disallowed buttons that have been loaded. + // These are only preserved to be saved again later. + // This exists to prevent data loss: If you edit the layout while some button + // is temporarily disallowed, this prevents that button's custom position + // from being lost. See isButtonAllowed. + // This may result in overlapping buttons when the buttons are allowed again + // (could be fixed by resolving collisions in postProcessLoaded). + ButtonMap preserved_disallowed; core::recti getRect(touch_gui_button_id btn, v2u32 screensize, s32 button_size, ISimpleTextureSource *tsrc); @@ -87,11 +118,12 @@ struct ButtonLayout { std::vector getMissingButtons(); void serializeJson(std::ostream &os) const; - void deserializeJson(std::istream &is); - - static const ButtonLayout predefined; private: + static const ButtonMap default_data; + static ButtonMap deserializeJson(std::istream &is); + static ButtonLayout postProcessLoaded(const ButtonMap &map); + static std::unordered_map> texture_cache; }; diff --git a/src/httpfetch.cpp b/src/httpfetch.cpp index b6e4dd263..13daaefb6 100644 --- a/src/httpfetch.cpp +++ b/src/httpfetch.cpp @@ -16,14 +16,13 @@ #include "porting.h" #include "util/container.h" #include "util/thread.h" +#include "util/numeric.h" #include "version.h" #include "settings.h" -#include "noise.h" static std::mutex g_httpfetch_mutex; static std::unordered_map> g_httpfetch_results; -static PcgRandom g_callerid_randomness; static std::string default_user_agent() { @@ -78,18 +77,18 @@ u64 httpfetch_caller_alloc_secure() // Generate random caller IDs and make sure they're not // already used or reserved. // Give up after 100 tries to prevent infinite loop - size_t tries = 100; + int tries = 100; u64 caller; do { - caller = (((u64) g_callerid_randomness.next()) << 32) | - g_callerid_randomness.next(); + // Global RNG is seeded securely, so we can use it. + myrand_bytes(&caller, sizeof(caller)); if (--tries < 1) { FATAL_ERROR("httpfetch_caller_alloc_secure: ran out of caller IDs"); return HTTPFETCH_DISCARD; } - } while (caller >= HTTPFETCH_CID_START && + } while (caller < HTTPFETCH_CID_START || g_httpfetch_results.find(caller) != g_httpfetch_results.end()); verbosestream << "httpfetch_caller_alloc_secure: allocating " @@ -702,11 +701,6 @@ void httpfetch_init(int parallel_limit) FATAL_ERROR_IF(res != CURLE_OK, "cURL init failed"); g_httpfetch_thread = std::make_unique(parallel_limit); - - // Initialize g_callerid_randomness for httpfetch_caller_alloc_secure - u64 randbuf[2]; - porting::secure_rand_fill_buf(randbuf, sizeof(u64) * 2); - g_callerid_randomness = PcgRandom(randbuf[0], randbuf[1]); } void httpfetch_cleanup() @@ -744,7 +738,7 @@ static void httpfetch_request_clear(u64 caller) bool httpfetch_sync_interruptible(const HTTPFetchRequest &fetch_request, HTTPFetchResult &fetch_result, long interval) { - if (Thread *thread = Thread::getCurrentThread()) { + if (const Thread *thread = Thread::getCurrentThread()) { HTTPFetchRequest req = fetch_request; req.caller = httpfetch_caller_alloc_secure(); httpfetch_async(req); diff --git a/src/hud.h b/src/hud.h index 214d14512..2b02e9988 100644 --- a/src/hud.h +++ b/src/hud.h @@ -7,7 +7,7 @@ #include "irrlichttypes_bloated.h" #include -#include "common/c_types.h" +#include "util/enum_string.h" #define HUD_DIR_LEFT_RIGHT 0 #define HUD_DIR_RIGHT_LEFT 1 diff --git a/src/inventory.cpp b/src/inventory.cpp index 246086d95..ae8d4038e 100644 --- a/src/inventory.cpp +++ b/src/inventory.cpp @@ -693,11 +693,11 @@ bool InventoryList::containsItem(const ItemStack &item, bool match_meta) const return false; } -ItemStack InventoryList::removeItem(const ItemStack &item) +ItemStack InventoryList::removeItem(const ItemStack &item, bool match_meta) { ItemStack removed; for (auto i = m_items.rbegin(); i != m_items.rend(); ++i) { - if (i->name == item.name) { + if (i->name == item.name && (!match_meta || i->metadata == item.metadata)) { u32 still_to_remove = item.count - removed.count; ItemStack leftover = removed.addItem(i->takeItem(still_to_remove), m_itemdef); diff --git a/src/inventory.h b/src/inventory.h index d39e9e97c..a20d4bfc7 100644 --- a/src/inventory.h +++ b/src/inventory.h @@ -102,18 +102,27 @@ struct ItemStack } // Get tool digging properties, or those of the hand if not a tool + // If not hand assumes default hand "" const ToolCapabilities& getToolCapabilities( - const IItemDefManager *itemdef) const + const IItemDefManager *itemdef, const ItemStack *hand = nullptr) const { - const ToolCapabilities *item_cap = - itemdef->get(name).tool_capabilities; + const ToolCapabilities *item_cap = itemdef->get(name).tool_capabilities; - if (item_cap == NULL) - // Fall back to the hand's tool capabilities - item_cap = itemdef->get("").tool_capabilities; + if (item_cap) { + return metadata.getToolCapabilities(*item_cap); // Check for override + } - assert(item_cap != NULL); - return metadata.getToolCapabilities(*item_cap); // Check for override + // Fall back to the hand's tool capabilities + if (hand) { + item_cap = itemdef->get(hand->name).tool_capabilities; + if (item_cap) { + return hand->metadata.getToolCapabilities(*item_cap); + } + } + + item_cap = itemdef->get("").tool_capabilities; + assert(item_cap); + return *item_cap; } const std::optional &getWearBarParams( @@ -262,7 +271,7 @@ public: // If not as many items exist as requested, removes as // many as possible. // Returns the items that were actually removed. - ItemStack removeItem(const ItemStack &item); + ItemStack removeItem(const ItemStack &item, bool match_meta); // Takes some items from a slot. // If there are not enough, takes as many as it can. diff --git a/src/irrlicht_changes/CGUITTFont.cpp b/src/irrlicht_changes/CGUITTFont.cpp index 980752149..ab5aeb091 100644 --- a/src/irrlicht_changes/CGUITTFont.cpp +++ b/src/irrlicht_changes/CGUITTFont.cpp @@ -31,43 +31,105 @@ john@suckerfreegames.com */ -#include +#include "CGUITTFont.h" + +#include "irr_ptr.h" #include "log.h" #include "filesys.h" #include "debug.h" - -#include "CGUITTFont.h" #include "IFileSystem.h" #include "IGUIEnvironment.h" +#include +#include + namespace irr { namespace gui { -// Manages the FT_Face cache. -struct SGUITTFace : public irr::IReferenceCounted +std::map SGUITTFace::faces; +FT_Library SGUITTFace::freetype_library = nullptr; +std::size_t SGUITTFace::n_faces = 0; + +FT_Library SGUITTFace::getFreeTypeLibrary() { - SGUITTFace() - { - memset((void*)&face, 0, sizeof(FT_Face)); + if (freetype_library) + return freetype_library; + FT_Library ft; + if (FT_Init_FreeType(&ft)) + FATAL_ERROR("initializing freetype failed"); + freetype_library = ft; + return freetype_library; +} + +SGUITTFace::SGUITTFace(std::string &&buffer) : face_buffer(std::move(buffer)) +{ + memset((void*)&face, 0, sizeof(FT_Face)); + n_faces++; +} + +SGUITTFace::~SGUITTFace() +{ + FT_Done_Face(face); + n_faces--; + // If there are no more faces referenced by FreeType, clean up. + if (n_faces == 0) { + assert(freetype_library); + FT_Done_FreeType(freetype_library); + freetype_library = nullptr; + } +} + +SGUITTFace* SGUITTFace::createFace(std::string &&buffer) +{ + irr_ptr face(new SGUITTFace(std::move(buffer))); + auto ft = getFreeTypeLibrary(); + if (!ft) + return nullptr; + return (FT_New_Memory_Face(ft, + reinterpret_cast(face->face_buffer.data()), + face->face_buffer.size(), 0, &face->face)) + ? nullptr : face.release(); +} + +SGUITTFace* SGUITTFace::loadFace(const io::path &filename) +{ + auto it = faces.find(filename); + if (it != faces.end()) { + it->second->grab(); + return it->second; } - ~SGUITTFace() - { - FT_Done_Face(face); + std::string buffer; + if (!fs::ReadFile(filename.c_str(), buffer, true)) { + errorstream << "CGUITTFont: Reading file " << filename.c_str() << " failed." << std::endl; + return nullptr; } - FT_Face face; - std::string face_buffer; -}; + auto *face = SGUITTFace::createFace(std::move(buffer)); + if (!face) { + errorstream << "CGUITTFont: FT_New_Memory_Face failed." << std::endl; + return nullptr; + } + faces.emplace(filename, face); + return face; +} -// Static variables. -FT_Library CGUITTFont::c_library; -std::map CGUITTFont::c_faces; -bool CGUITTFont::c_libraryLoaded = false; +void SGUITTFace::dropFilename() +{ + if (!filename.has_value()) + return; -// + auto it = faces.find(*filename); + if (it == faces.end()) + return; + + SGUITTFace* f = it->second; + // Drop our face. If this was the last face, the destructor will clean up. + if (f->drop()) + faces.erase(*filename); +} video::IImage* SGUITTGlyph::createGlyphImage(const FT_Bitmap& bits, video::IVideoDriver* driver) const { @@ -203,17 +265,12 @@ void SGUITTGlyph::unload() ////////////////////// -CGUITTFont* CGUITTFont::createTTFont(IGUIEnvironment *env, const io::path& filename, const u32 size, const bool antialias, const bool transparency, const u32 shadow, const u32 shadow_alpha) +CGUITTFont* CGUITTFont::createTTFont(IGUIEnvironment *env, + SGUITTFace *face, u32 size, bool antialias, + bool transparency, u32 shadow, u32 shadow_alpha) { - if (!c_libraryLoaded) - { - if (FT_Init_FreeType(&c_library)) - return 0; - c_libraryLoaded = true; - } - CGUITTFont* font = new CGUITTFont(env); - bool ret = font->load(filename, size, antialias, transparency); + bool ret = font->load(face, size, antialias, transparency); if (!ret) { font->drop(); @@ -246,54 +303,20 @@ shadow_offset(0), shadow_alpha(0), fallback(0) setInvisibleCharacters(L" "); } -bool CGUITTFont::load(const io::path& filename, const u32 size, const bool antialias, const bool transparency) +bool CGUITTFont::load(SGUITTFace *face, const u32 size, const bool antialias, const bool transparency) { - // Some sanity checks. - if (!Driver) return false; - if (size == 0) return false; - if (filename.empty()) return false; + if (!Driver || size == 0 || !face) + return false; this->size = size; - this->filename = filename; // Update the font loading flags when the font is first loaded. this->use_monochrome = !antialias; this->use_transparency = transparency; update_load_flags(); - infostream << "CGUITTFont: Creating new font: " << filename.c_str() << " " - << size << "pt " << (antialias ? "+antialias " : "-antialias ") - << (transparency ? "+transparency" : "-transparency") << std::endl; - - // Grab the face. - SGUITTFace* face = nullptr; - auto node = c_faces.find(filename); - if (node == c_faces.end()) { - face = new SGUITTFace(); - - if (!fs::ReadFile(filename.c_str(), face->face_buffer, true)) { - delete face; - return false; - } - - // Create the face. - if (FT_New_Memory_Face(c_library, - reinterpret_cast(face->face_buffer.data()), - face->face_buffer.size(), 0, &face->face)) - { - errorstream << "CGUITTFont: FT_New_Memory_Face failed." << std::endl; - delete face; - return false; - } - - c_faces.emplace(filename, face); - } else { - // Using another instance of this face. - face = node->second; - face->grab(); - } - // Store our face. + face->grab(); tt_face = face->face; // Store font metrics. @@ -322,24 +345,6 @@ CGUITTFont::~CGUITTFont() reset_images(); Glyphs.clear(); - // We aren't using this face anymore. - auto n = c_faces.find(filename); - if (n != c_faces.end()) - { - SGUITTFace* f = n->second; - - // Drop our face. If this was the last face, the destructor will clean up. - if (f->drop()) - c_faces.erase(filename); - - // If there are no more faces referenced by FreeType, clean up. - if (c_faces.empty()) - { - FT_Done_FreeType(c_library); - c_libraryLoaded = false; - } - } - // Drop our driver now. if (Driver) Driver->drop(); @@ -892,6 +897,8 @@ video::IImage* CGUITTFont::createTextureFromChar(const char32_t& ch) // Acquire a read-only lock of the corresponding page texture. void* ptr = tex->lock(video::ETLM_READ_ONLY); + if (!ptr) + return nullptr; video::ECOLOR_FORMAT format = tex->getColorFormat(); core::dimension2du tex_size = tex->getOriginalSize(); diff --git a/src/irrlicht_changes/CGUITTFont.h b/src/irrlicht_changes/CGUITTFont.h index c010cf181..082942856 100644 --- a/src/irrlicht_changes/CGUITTFont.h +++ b/src/irrlicht_changes/CGUITTFont.h @@ -3,6 +3,7 @@ Copyright (c) 2009-2010 John Norman Copyright (c) 2016 Nathanaëlle Courant Copyright (c) 2023 Caleb Butler + Copyright (c) 2024 Luanti contributors This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any @@ -32,23 +33,52 @@ #pragma once -#include #include -#include FT_FREETYPE_H +#include #include "IGUIEnvironment.h" #include "IGUIFont.h" #include "IVideoDriver.h" #include "IrrlichtDevice.h" -#include "SMesh.h" #include "util/enriched_string.h" #include "util/basic_macros.h" +#include +#include + namespace irr { namespace gui { - struct SGUITTFace; + // Manages the FT_Face cache. + struct SGUITTFace : public irr::IReferenceCounted + { + private: + + static std::map faces; + static FT_Library freetype_library; + static std::size_t n_faces; + + static FT_Library getFreeTypeLibrary(); + + public: + + SGUITTFace(std::string &&buffer); + + ~SGUITTFace(); + + std::optional filename; + + FT_Face face; + /// Must not be deallocated until we are done with the face! + std::string face_buffer; + + static SGUITTFace* createFace(std::string &&buffer); + + static SGUITTFace* loadFace(const io::path &filename); + + void dropFilename(); + }; class CGUITTFont; //! Structure representing a single TrueType glyph. @@ -170,9 +200,13 @@ namespace gui //! Updates the texture atlas with new glyphs. void updateTexture() { - if (!dirty) return; + if (!dirty) + return; void* ptr = texture->lock(); + if (!ptr) + return; + video::ECOLOR_FORMAT format = texture->getColorFormat(); core::dimension2du size = texture->getOriginalSize(); video::IImage* pageholder = driver->createImageFromData(format, size, ptr, true, false); @@ -215,12 +249,13 @@ namespace gui public: //! Creates a new TrueType font and returns a pointer to it. The pointer must be drop()'ed when finished. //! \param env The IGUIEnvironment the font loads out of. - //! \param filename The filename of the font. //! \param size The size of the font glyphs in pixels. Since this is the size of the individual glyphs, the true height of the font may change depending on the characters used. //! \param antialias set the use_monochrome (opposite to antialias) flag //! \param transparency set the use_transparency flag //! \return Returns a pointer to a CGUITTFont. Will return 0 if the font failed to load. - static CGUITTFont* createTTFont(IGUIEnvironment *env, const io::path& filename, const u32 size, const bool antialias = true, const bool transparency = true, const u32 shadow = 0, const u32 shadow_alpha = 255); + static CGUITTFont* createTTFont(IGUIEnvironment *env, + SGUITTFace *face, u32 size, bool antialias = true, + bool transparency = true, u32 shadow = 0, u32 shadow_alpha = 255); //! Destructor virtual ~CGUITTFont(); @@ -329,11 +364,6 @@ namespace gui core::dimension2du max_page_texture_size; private: - // Manages the FreeType library. - static FT_Library c_library; - static std::map c_faces; - static bool c_libraryLoaded; - // Helper functions for the same-named public member functions above // (Since std::u32string is nicer to work with than wchar_t *) core::dimension2d getDimension(const std::u32string& text) const; @@ -343,7 +373,7 @@ namespace gui std::u32string convertWCharToU32String(const wchar_t* const) const; CGUITTFont(IGUIEnvironment *env); - bool load(const io::path& filename, const u32 size, const bool antialias, const bool transparency); + bool load(SGUITTFace *face, const u32 size, const bool antialias, const bool transparency); void reset_images(); void update_glyph_pages() const; void update_load_flags() @@ -361,7 +391,7 @@ namespace gui core::vector2di getKerning(const char32_t thisLetter, const char32_t previousLetter) const; video::IVideoDriver* Driver; - io::path filename; + std::optional filename; FT_Face tt_face; FT_Size_Metrics font_metrics; FT_Int32 load_flags; diff --git a/src/irrlichttypes.h b/src/irrlichttypes.h index 0994bbd94..0474786a1 100644 --- a/src/irrlichttypes.h +++ b/src/irrlichttypes.h @@ -4,12 +4,7 @@ #pragma once -/* - * IrrlichtMt already includes stdint.h in irrTypes.h. This works everywhere - * we need it to (including recent MSVC), so should be fine here too. - */ #include - #include using namespace irr; diff --git a/src/irrlichttypes_extrabloated.h b/src/irrlichttypes_extrabloated.h deleted file mode 100644 index 98c0e2cea..000000000 --- a/src/irrlichttypes_extrabloated.h +++ /dev/null @@ -1,21 +0,0 @@ -// Luanti -// SPDX-License-Identifier: LGPL-2.1-or-later -// Copyright (C) 2010-2013 celeron55, Perttu Ahola - -#pragma once - -#include "irrlichttypes_bloated.h" -#include "config.h" // IS_CLIENT_BUILD - -#if IS_CLIENT_BUILD -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#endif diff --git a/src/itemdef.cpp b/src/itemdef.cpp index 23f948f8c..17f46dedc 100644 --- a/src/itemdef.cpp +++ b/src/itemdef.cpp @@ -7,14 +7,6 @@ #include "nodedef.h" #include "tool.h" -#include "inventory.h" -#if CHECK_CLIENT_BUILD() -#include "client/mapblock_mesh.h" -#include "client/mesh.h" -#include "client/wieldmesh.h" -#include "client/client.h" -#include "client/texturesource.h" -#endif #include "log.h" #include "settings.h" #include "util/serialize.h" @@ -360,34 +352,10 @@ void ItemDefinition::deSerialize(std::istream &is, u16 protocol_version) class CItemDefManager: public IWritableItemDefManager { -#if CHECK_CLIENT_BUILD() - struct ClientCached - { - video::ITexture *inventory_texture; - ItemMesh wield_mesh; - Palette *palette; - - ClientCached(): - inventory_texture(NULL), - palette(NULL) - {} - - ~ClientCached() { - if (wield_mesh.mesh) - wield_mesh.mesh->drop(); - } - - DISABLE_CLASS_COPY(ClientCached); - }; -#endif public: CItemDefManager() { - -#if CHECK_CLIENT_BUILD() - m_main_thread = std::this_thread::get_id(); -#endif clear(); } @@ -435,94 +403,6 @@ public: return m_item_definitions.find(name) != m_item_definitions.cend(); } -#if CHECK_CLIENT_BUILD() -protected: - ClientCached* createClientCachedDirect(const ItemStack &item, Client *client) const - { - // This is not thread-safe - sanity_check(std::this_thread::get_id() == m_main_thread); - - const ItemDefinition &def = item.getDefinition(this); - std::string inventory_image = item.getInventoryImage(this); - std::string inventory_overlay = item.getInventoryOverlay(this); - std::string cache_key = def.name; - if (!inventory_image.empty()) - cache_key += "/" + inventory_image; - if (!inventory_overlay.empty()) - cache_key += ":" + inventory_overlay; - - // Skip if already in cache - auto it = m_clientcached.find(cache_key); - if (it != m_clientcached.end()) - return it->second.get(); - - infostream << "Lazily creating item texture and mesh for \"" - << cache_key << "\"" << std::endl; - - ITextureSource *tsrc = client->getTextureSource(); - - // Create new ClientCached - auto cc = std::make_unique(); - - cc->inventory_texture = NULL; - if (!inventory_image.empty()) - cc->inventory_texture = tsrc->getTexture(inventory_image); - getItemMesh(client, item, &(cc->wield_mesh)); - - cc->palette = tsrc->getPalette(def.palette_image); - - // Put in cache - ClientCached *ptr = cc.get(); - m_clientcached[cache_key] = std::move(cc); - return ptr; - } - -public: - // Get item inventory texture - virtual video::ITexture* getInventoryTexture(const ItemStack &item, - Client *client) const - { - ClientCached *cc = createClientCachedDirect(item, client); - if (!cc) - return nullptr; - return cc->inventory_texture; - } - - // Get item wield mesh - virtual ItemMesh* getWieldMesh(const ItemStack &item, Client *client) const - { - ClientCached *cc = createClientCachedDirect(item, client); - if (!cc) - return nullptr; - return &(cc->wield_mesh); - } - - // Get item palette - virtual Palette* getPalette(const ItemStack &item, Client *client) const - { - ClientCached *cc = createClientCachedDirect(item, client); - if (!cc) - return nullptr; - return cc->palette; - } - - virtual video::SColor getItemstackColor(const ItemStack &stack, - Client *client) const - { - // Look for direct color definition - const std::string &colorstring = stack.metadata.getString("color", 0); - video::SColor directcolor; - if (!colorstring.empty() && parseColorString(colorstring, directcolor, true)) - return directcolor; - // See if there is a palette - Palette *palette = getPalette(stack, client); - const std::string &index = stack.metadata.getString("palette_index", 0); - if (palette && !index.empty()) - return (*palette)[mystoi(index, 0, 255)]; - // Fallback color - return get(stack.name).color; - } -#endif void applyTextureOverrides(const std::vector &overrides) { infostream << "ItemDefManager::applyTextureOverrides(): Applying " @@ -666,12 +546,6 @@ private: std::map m_item_definitions; // Aliases StringMap m_aliases; -#if CHECK_CLIENT_BUILD() - // The id of the thread that is allowed to use irrlicht directly - std::thread::id m_main_thread; - // Cached textures and meshes - mutable std::unordered_map> m_clientcached; -#endif }; IWritableItemDefManager* createItemDefManager() diff --git a/src/itemdef.h b/src/itemdef.h index fdad86a69..3feee79d1 100644 --- a/src/itemdef.h +++ b/src/itemdef.h @@ -17,14 +17,7 @@ #include "util/pointabilities.h" #include "util/pointedthing.h" -class IGameDef; -class Client; struct ToolCapabilities; -struct ItemMesh; -struct ItemStack; -typedef std::vector Palette; // copied from src/client/texturesource.h -namespace irr::video { class ITexture; } -using namespace irr; /* Base item definition @@ -142,30 +135,6 @@ public: virtual bool isKnown(const std::string &name) const=0; virtual void serialize(std::ostream &os, u16 protocol_version)=0; - - /* Client-specific methods */ - // TODO: should be moved elsewhere in the future - - // Get item inventory texture - virtual video::ITexture* getInventoryTexture(const ItemStack &item, Client *client) const - { return nullptr; } - - /** - * Get wield mesh - * @returns nullptr if there is an inventory image - */ - virtual ItemMesh* getWieldMesh(const ItemStack &item, Client *client) const - { return nullptr; } - - // Get item palette - virtual Palette* getPalette(const ItemStack &item, Client *client) const - { return nullptr; } - - // Returns the base color of an item stack: the color of all - // tiles that do not define their own color. - virtual video::SColor getItemstackColor(const ItemStack &stack, - Client *client) const - { return video::SColor(0); } }; class IWritableItemDefManager : public IItemDefManager diff --git a/src/main.cpp b/src/main.cpp index 2d0c2aa79..d62ee1f21 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -51,8 +51,8 @@ extern "C" { #endif #if defined(__MINGW32__) && !defined(__clang__) -// see https://github.com/minetest/minetest/issues/14140 or -// https://github.com/minetest/minetest/issues/10137 for one of the various issues we had +// see or +// for some of the issues we had #error ================================== #error MinGW gcc has a broken TLS implementation and is not supported for building \ Luanti. Look at testTLS() in test_threading.cpp and see for yourself. \ @@ -700,12 +700,18 @@ static bool init_common(const Settings &cmd_args, int argc, char *argv[]) init_log_streams(cmd_args); // Initialize random seed - { - u32 seed = static_cast(time(nullptr)) << 16; - seed |= porting::getTimeUs() & 0xffff; - srand(seed); - mysrand(seed); + u64 seed; + if (!porting::secure_rand_fill_buf(&seed, sizeof(seed))) { + verbosestream << "Secure randomness not available to seed global RNG." << std::endl; + std::ostringstream oss; + // some stuff that's hard to predict: + oss << time(nullptr) << porting::getTimeUs() << argc << g_settings_path; + print_version(oss); + std::string data = oss.str(); + seed = murmur_hash_64_ua(data.c_str(), data.size(), 0xc0ffee); } + srand(seed); + mysrand(seed); // Initialize HTTP fetcher httpfetch_init(g_settings->getS32("curl_parallel_limit")); @@ -830,9 +836,7 @@ static bool game_configure(GameParams *game_params, const Settings &cmd_args) return false; } - game_configure_subgame(game_params, cmd_args); - - return true; + return game_configure_subgame(game_params, cmd_args); } static void game_configure_port(GameParams *game_params, const Settings &cmd_args) @@ -1014,17 +1018,25 @@ static bool determine_subgame(GameParams *game_params) if (game_params->game_spec.isValid()) { gamespec = game_params->game_spec; infostream << "Using commanded gameid [" << gamespec.id << "]" << std::endl; - } else { - if (game_params->is_dedicated_server) { - std::string contentdb_url = g_settings->get("contentdb_url"); + } else if (game_params->is_dedicated_server) { + auto games = getAvailableGameIds(); + // If there's exactly one obvious choice then do the right thing + if (games.size() > 1) + games.erase("devtest"); + if (games.size() == 1) { + gamespec = findSubgame(*games.begin()); + infostream << "Automatically selecting gameid [" << gamespec.id << "]" << std::endl; + } else { + // Else, force the user to choose + auto &url = g_settings->get("contentdb_url"); - // If this is a dedicated server and no gamespec has been specified, - // print a friendly error pointing to ContentDB. - errorstream << "To run a " PROJECT_NAME_C " server, you need to select a game using the '--gameid' argument." << std::endl - << "Check out " << contentdb_url << " for a selection of games to pick from and download." << std::endl; + errorstream << "To run a " PROJECT_NAME_C " server, you need to select a game using the '--gameid' argument." << std::endl; + if (games.empty()) + errorstream << "Check out " << url << " for a selection of games to pick from and download." << std::endl; + else + errorstream << "Use '--gameid list' to print a list of all installed games." << std::endl; + return false; } - - return false; } } else { // World exists std::string world_gameid = getWorldGameId(game_params->world_path, false); @@ -1045,6 +1057,8 @@ static bool determine_subgame(GameParams *game_params) } if (!gamespec.isValid()) { + if (!game_params->is_dedicated_server) + return true; // not an error, this would prevent the main menu from running errorstream << "Game [" << gamespec.id << "] could not be found." << std::endl; return false; @@ -1215,7 +1229,7 @@ static bool migrate_map_database(const GameParams &game_params, const Settings & std::vector blocks; old_db->listAllLoadableBlocks(blocks); new_db->beginSave(); - for (std::vector::const_iterator it = blocks.begin(); it != blocks.end(); ++it) { + for (auto it = blocks.begin(); it != blocks.end(); ++it) { if (kill) return false; std::string data; diff --git a/src/map.cpp b/src/map.cpp index e8ccac0cc..d88200846 100644 --- a/src/map.cpp +++ b/src/map.cpp @@ -292,12 +292,13 @@ void Map::timerUpdate(float dtime, float unload_timeout, s32 max_loaded_blocks, // If there is no practical limit, we spare creation of mapblock_queue if (max_loaded_blocks < 0) { + MapBlockVect blocks; for (auto §or_it : m_sectors) { MapSector *sector = sector_it.second; bool all_blocks_deleted = true; - MapBlockVect blocks; + blocks.clear(); sector->getBlocks(blocks); for (MapBlock *block : blocks) { @@ -336,10 +337,11 @@ void Map::timerUpdate(float dtime, float unload_timeout, s32 max_loaded_blocks, } } else { std::priority_queue mapblock_queue; + MapBlockVect blocks; for (auto §or_it : m_sectors) { MapSector *sector = sector_it.second; - MapBlockVect blocks; + blocks.clear(); sector->getBlocks(blocks); for (MapBlock *block : blocks) { @@ -417,16 +419,16 @@ void Map::timerUpdate(float dtime, float unload_timeout, s32 max_loaded_blocks, void Map::unloadUnreferencedBlocks(std::vector *unloaded_blocks) { - timerUpdate(0.0, -1.0, 0, unloaded_blocks); + timerUpdate(0, -1, 0, unloaded_blocks); } -void Map::deleteSectors(std::vector §orList) +void Map::deleteSectors(const std::vector §orList) { for (v2s16 j : sectorList) { MapSector *sector = m_sectors[j]; // If sector is in sector cache, remove it from there - if(m_sector_cache == sector) - m_sector_cache = NULL; + if (m_sector_cache == sector) + m_sector_cache = nullptr; // Remove from map and delete m_sectors.erase(j); delete sector; diff --git a/src/map.h b/src/map.h index a4f0e4524..db4d8be28 100644 --- a/src/map.h +++ b/src/map.h @@ -191,7 +191,7 @@ public: // Deletes sectors and their blocks from memory // Takes cache into account // If deleted sector is in sector cache, clears cache - void deleteSectors(std::vector &list); + void deleteSectors(const std::vector &list); // For debug printing. Prints "Map: ", "ServerMap: " or "ClientMap: " virtual void PrintInfo(std::ostream &out); diff --git a/src/mapblock.cpp b/src/mapblock.cpp index 3039ff3e1..6987c36a6 100644 --- a/src/mapblock.cpp +++ b/src/mapblock.cpp @@ -120,20 +120,19 @@ bool MapBlock::saveStaticObject(u16 id, const StaticObject &obj, u32 reason) return true; } -// This method is only for Server, don't call it on client void MapBlock::step(float dtime, const std::function &on_timer_cb) { - // Run script callbacks for elapsed node_timers + // Run callbacks for elapsed node_timers std::vector elapsed_timers = m_node_timers.step(dtime); - if (!elapsed_timers.empty()) { - MapNode n; - v3s16 p; - for (const NodeTimer &elapsed_timer : elapsed_timers) { - n = getNodeNoEx(elapsed_timer.position); - p = elapsed_timer.position + getPosRelative(); - if (on_timer_cb(p, n, elapsed_timer.elapsed)) - setNodeTimer(NodeTimer(elapsed_timer.timeout, 0, elapsed_timer.position)); - } + MapNode n; + v3s16 p; + for (const auto &it : elapsed_timers) { + n = getNodeNoEx(it.position); + p = it.position + getPosRelative(); + if (on_timer_cb(p, n, it.elapsed)) + setNodeTimer(NodeTimer(it.timeout, 0, it.position)); + if (isOrphan()) + return; } } @@ -344,7 +343,7 @@ void MapBlock::serialize(std::ostream &os_compressed, u8 version, bool disk, int Buffer buf; const u8 content_width = 2; const u8 params_width = 2; - if(disk) + if(disk) { MapNode *tmp_nodes = new MapNode[nodecount]; memcpy(tmp_nodes, data, nodecount * sizeof(MapNode)); diff --git a/src/mapblock.h b/src/mapblock.h index da5e95dff..9a13b686f 100644 --- a/src/mapblock.h +++ b/src/mapblock.h @@ -313,6 +313,7 @@ public: bool onObjectsActivation(); bool saveStaticObject(u16 id, const StaticObject &obj, u32 reason); + /// @note This method is only for Server, don't call it on client void step(float dtime, const std::function &on_timer_cb); //// @@ -337,6 +338,7 @@ public: return m_timestamp; } + /// @deprecated don't use in new code, unclear semantics. inline u32 getDiskTimestamp() { return m_disk_timestamp; diff --git a/src/mapgen/cavegen.cpp b/src/mapgen/cavegen.cpp index 0c3ec1f81..f31ec21fb 100644 --- a/src/mapgen/cavegen.cpp +++ b/src/mapgen/cavegen.cpp @@ -61,8 +61,8 @@ void CavesNoiseIntersection::generateCaves(MMVManip *vm, assert(vm); assert(biomemap); - noise_cave1->perlinMap3D(nmin.X, nmin.Y - 1, nmin.Z); - noise_cave2->perlinMap3D(nmin.X, nmin.Y - 1, nmin.Z); + noise_cave1->noiseMap3D(nmin.X, nmin.Y - 1, nmin.Z); + noise_cave2->noiseMap3D(nmin.X, nmin.Y - 1, nmin.Z); const v3s32 &em = vm->m_area.getExtent(); u32 index2d = 0; // Biomemap index @@ -218,7 +218,7 @@ bool CavernsNoise::generateCaverns(MMVManip *vm, v3s16 nmin, v3s16 nmax) assert(vm); // Calculate noise - noise_cavern->perlinMap3D(nmin.X, nmin.Y - 1, nmin.Z); + noise_cavern->noiseMap3D(nmin.X, nmin.Y - 1, nmin.Z); // Cache cavern_amp values float *cavern_amp = new float[m_csize.Y + 1]; @@ -532,7 +532,7 @@ void CavesRandomWalk::carveRoute(v3f vec, float f, bool randomize_xz) // If cave liquid not defined by biome, fallback to old hardcoded behavior. // TODO 'np_caveliquids' is deprecated and should eventually be removed. // Cave liquids are now defined and located using biome definitions. - float nval = NoisePerlin3D(np_caveliquids, startp.X, + float nval = NoiseFractal3D(np_caveliquids, startp.X, startp.Y, startp.Z, seed); liquidnode = (nval < 0.40f && node_max.Y < water_level - 256) ? lavanode : waternode; diff --git a/src/mapgen/dungeongen.cpp b/src/mapgen/dungeongen.cpp index 249c462ba..f99ed8348 100644 --- a/src/mapgen/dungeongen.cpp +++ b/src/mapgen/dungeongen.cpp @@ -114,7 +114,7 @@ void DungeonGen::generate(MMVManip *vm, u32 bseed, v3s16 nmin, v3s16 nmax) u32 i = vm->m_area.index(nmin.X, y, z); for (s16 x = nmin.X; x <= nmax.X; x++) { if (vm->m_data[i].getContent() == dp.c_wall) { - if (NoisePerlin3D(&dp.np_alt_wall, x, y, z, blockseed) > 0.0f) + if (NoiseFractal3D(&dp.np_alt_wall, x, y, z, blockseed) > 0.0f) vm->m_data[i].setContent(dp.c_alt_wall); } i++; diff --git a/src/mapgen/mapgen.cpp b/src/mapgen/mapgen.cpp index 3778c3807..e8c60c0de 100644 --- a/src/mapgen/mapgen.cpp +++ b/src/mapgen/mapgen.cpp @@ -37,7 +37,7 @@ #include "cavegen.h" #include "dungeongen.h" -FlagDesc flagdesc_mapgen[] = { +const FlagDesc flagdesc_mapgen[] = { {"caves", MG_CAVES}, {"dungeons", MG_DUNGEONS}, {"light", MG_LIGHT}, @@ -47,7 +47,7 @@ FlagDesc flagdesc_mapgen[] = { {NULL, 0} }; -FlagDesc flagdesc_gennotify[] = { +const FlagDesc flagdesc_gennotify[] = { {"dungeon", 1 << GENNOTIFY_DUNGEON}, {"temple", 1 << GENNOTIFY_TEMPLE}, {"cave_begin", 1 << GENNOTIFY_CAVE_BEGIN}, @@ -632,7 +632,7 @@ void MapgenBasic::generateBiomes() const v3s32 &em = vm->m_area.getExtent(); u32 index = 0; - noise_filler_depth->perlinMap2D(node_min.X, node_min.Z); + noise_filler_depth->noiseMap2D(node_min.X, node_min.Z); for (s16 z = node_min.Z; z <= node_max.Z; z++) for (s16 x = node_min.X; x <= node_max.X; x++, index++) { @@ -763,7 +763,7 @@ void MapgenBasic::generateBiomes() // If no stone surface detected in mapchunk column and a water surface // biome fallback exists, add it to the biomemap. This avoids water // surface decorations failing in deep water. - if (biomemap[index] == BIOME_NONE && water_biome_index != 0) + if (biomemap[index] == BIOME_NONE && water_biome_index != 0) biomemap[index] = water_biome_index; } } @@ -897,7 +897,7 @@ void MapgenBasic::generateDungeons(s16 max_stone_y) return; u16 num_dungeons = std::fmax(std::floor( - NoisePerlin3D(&np_dungeons, node_min.X, node_min.Y, node_min.Z, seed)), 0.0f); + NoiseFractal3D(&np_dungeons, node_min.X, node_min.Y, node_min.Z, seed)), 0.0f); if (num_dungeons == 0) return; diff --git a/src/mapgen/mapgen.h b/src/mapgen/mapgen.h index a81b9a361..31313b35f 100644 --- a/src/mapgen/mapgen.h +++ b/src/mapgen/mapgen.h @@ -29,8 +29,8 @@ class Settings; class MMVManip; class NodeDefManager; -extern FlagDesc flagdesc_mapgen[]; -extern FlagDesc flagdesc_gennotify[]; +extern const FlagDesc flagdesc_mapgen[]; +extern const FlagDesc flagdesc_gennotify[]; class Biome; class BiomeGen; diff --git a/src/mapgen/mapgen_carpathian.cpp b/src/mapgen/mapgen_carpathian.cpp index 46048b51f..7d00b3d38 100644 --- a/src/mapgen/mapgen_carpathian.cpp +++ b/src/mapgen/mapgen_carpathian.cpp @@ -24,7 +24,7 @@ #include "mapgen_carpathian.h" -FlagDesc flagdesc_mapgen_carpathian[] = { +const FlagDesc flagdesc_mapgen_carpathian[] = { {"caverns", MGCARPATHIAN_CAVERNS}, {"rivers", MGCARPATHIAN_RIVERS}, {NULL, 0} @@ -329,34 +329,34 @@ int MapgenCarpathian::getSpawnLevelAtPoint(v2s16 p) { // If rivers are enabled, first check if in a river channel if (spflags & MGCARPATHIAN_RIVERS) { - float river = std::fabs(NoisePerlin2D(&noise_rivers->np, p.X, p.Y, seed)) - + float river = std::fabs(NoiseFractal2D(&noise_rivers->np, p.X, p.Y, seed)) - river_width; if (river < 0.0f) return MAX_MAP_GENERATION_LIMIT; // Unsuitable spawn point } - float height1 = NoisePerlin2D(&noise_height1->np, p.X, p.Y, seed); - float height2 = NoisePerlin2D(&noise_height2->np, p.X, p.Y, seed); - float height3 = NoisePerlin2D(&noise_height3->np, p.X, p.Y, seed); - float height4 = NoisePerlin2D(&noise_height4->np, p.X, p.Y, seed); + float height1 = NoiseFractal2D(&noise_height1->np, p.X, p.Y, seed); + float height2 = NoiseFractal2D(&noise_height2->np, p.X, p.Y, seed); + float height3 = NoiseFractal2D(&noise_height3->np, p.X, p.Y, seed); + float height4 = NoiseFractal2D(&noise_height4->np, p.X, p.Y, seed); - float hterabs = std::fabs(NoisePerlin2D(&noise_hills_terrain->np, p.X, p.Y, seed)); - float n_hills = NoisePerlin2D(&noise_hills->np, p.X, p.Y, seed); + float hterabs = std::fabs(NoiseFractal2D(&noise_hills_terrain->np, p.X, p.Y, seed)); + float n_hills = NoiseFractal2D(&noise_hills->np, p.X, p.Y, seed); float hill_mnt = hterabs * hterabs * hterabs * n_hills * n_hills; - float rterabs = std::fabs(NoisePerlin2D(&noise_ridge_terrain->np, p.X, p.Y, seed)); - float n_ridge_mnt = NoisePerlin2D(&noise_ridge_mnt->np, p.X, p.Y, seed); + float rterabs = std::fabs(NoiseFractal2D(&noise_ridge_terrain->np, p.X, p.Y, seed)); + float n_ridge_mnt = NoiseFractal2D(&noise_ridge_mnt->np, p.X, p.Y, seed); float ridge_mnt = rterabs * rterabs * rterabs * (1.0f - std::fabs(n_ridge_mnt)); - float sterabs = std::fabs(NoisePerlin2D(&noise_step_terrain->np, p.X, p.Y, seed)); - float n_step_mnt = NoisePerlin2D(&noise_step_mnt->np, p.X, p.Y, seed); + float sterabs = std::fabs(NoiseFractal2D(&noise_step_terrain->np, p.X, p.Y, seed)); + float n_step_mnt = NoiseFractal2D(&noise_step_mnt->np, p.X, p.Y, seed); float step_mnt = sterabs * sterabs * sterabs * getSteps(n_step_mnt); float valley = 1.0f; float river = 0.0f; if ((spflags & MGCARPATHIAN_RIVERS) && node_max.Y >= water_level - 16) { - river = std::fabs(NoisePerlin2D(&noise_rivers->np, p.X, p.Y, seed)) - river_width; + river = std::fabs(NoiseFractal2D(&noise_rivers->np, p.X, p.Y, seed)) - river_width; if (river <= valley_width) { // Within river valley if (river < 0.0f) { @@ -376,7 +376,7 @@ int MapgenCarpathian::getSpawnLevelAtPoint(v2s16 p) u8 cons_non_solid = 0; // consecutive non-solid nodes for (s16 y = water_level; y <= water_level + 32; y++) { - float mnt_var = NoisePerlin3D(&noise_mnt_var->np, p.X, y, p.Y, seed); + float mnt_var = NoiseFractal3D(&noise_mnt_var->np, p.X, y, p.Y, seed); float hill1 = getLerp(height1, height2, mnt_var); float hill2 = getLerp(height3, height4, mnt_var); float hill3 = getLerp(height3, height2, mnt_var); @@ -429,20 +429,20 @@ int MapgenCarpathian::generateTerrain() MapNode mn_water(c_water_source); // Calculate noise for terrain generation - noise_height1->perlinMap2D(node_min.X, node_min.Z); - noise_height2->perlinMap2D(node_min.X, node_min.Z); - noise_height3->perlinMap2D(node_min.X, node_min.Z); - noise_height4->perlinMap2D(node_min.X, node_min.Z); - noise_hills_terrain->perlinMap2D(node_min.X, node_min.Z); - noise_ridge_terrain->perlinMap2D(node_min.X, node_min.Z); - noise_step_terrain->perlinMap2D(node_min.X, node_min.Z); - noise_hills->perlinMap2D(node_min.X, node_min.Z); - noise_ridge_mnt->perlinMap2D(node_min.X, node_min.Z); - noise_step_mnt->perlinMap2D(node_min.X, node_min.Z); - noise_mnt_var->perlinMap3D(node_min.X, node_min.Y - 1, node_min.Z); + noise_height1->noiseMap2D(node_min.X, node_min.Z); + noise_height2->noiseMap2D(node_min.X, node_min.Z); + noise_height3->noiseMap2D(node_min.X, node_min.Z); + noise_height4->noiseMap2D(node_min.X, node_min.Z); + noise_hills_terrain->noiseMap2D(node_min.X, node_min.Z); + noise_ridge_terrain->noiseMap2D(node_min.X, node_min.Z); + noise_step_terrain->noiseMap2D(node_min.X, node_min.Z); + noise_hills->noiseMap2D(node_min.X, node_min.Z); + noise_ridge_mnt->noiseMap2D(node_min.X, node_min.Z); + noise_step_mnt->noiseMap2D(node_min.X, node_min.Z); + noise_mnt_var->noiseMap3D(node_min.X, node_min.Y - 1, node_min.Z); if (spflags & MGCARPATHIAN_RIVERS) - noise_rivers->perlinMap2D(node_min.X, node_min.Z); + noise_rivers->noiseMap2D(node_min.X, node_min.Z); //// Place nodes const v3s32 &em = vm->m_area.getExtent(); diff --git a/src/mapgen/mapgen_carpathian.h b/src/mapgen/mapgen_carpathian.h index c2c0d48fe..754634af8 100644 --- a/src/mapgen/mapgen_carpathian.h +++ b/src/mapgen/mapgen_carpathian.h @@ -12,7 +12,7 @@ class BiomeManager; -extern FlagDesc flagdesc_mapgen_carpathian[]; +extern const FlagDesc flagdesc_mapgen_carpathian[]; struct MapgenCarpathianParams : public MapgenParams diff --git a/src/mapgen/mapgen_flat.cpp b/src/mapgen/mapgen_flat.cpp index e96e4e45a..cbd5202d0 100644 --- a/src/mapgen/mapgen_flat.cpp +++ b/src/mapgen/mapgen_flat.cpp @@ -23,7 +23,7 @@ #include "mapgen_flat.h" -FlagDesc flagdesc_mapgen_flat[] = { +const FlagDesc flagdesc_mapgen_flat[] = { {"lakes", MGFLAT_LAKES}, {"hills", MGFLAT_HILLS}, {"caverns", MGFLAT_CAVERNS}, @@ -164,7 +164,7 @@ int MapgenFlat::getSpawnLevelAtPoint(v2s16 p) s16 stone_level = ground_level; float n_terrain = ((spflags & MGFLAT_LAKES) || (spflags & MGFLAT_HILLS)) ? - NoisePerlin2D(&noise_terrain->np, p.X, p.Y, seed) : + NoiseFractal2D(&noise_terrain->np, p.X, p.Y, seed) : 0.0f; if ((spflags & MGFLAT_LAKES) && n_terrain < lake_threshold) { @@ -172,7 +172,7 @@ int MapgenFlat::getSpawnLevelAtPoint(v2s16 p) stone_level = ground_level - depress; } else if ((spflags & MGFLAT_HILLS) && n_terrain > hill_threshold) { s16 rise = (n_terrain - hill_threshold) * hill_steepness; - stone_level = ground_level + rise; + stone_level = ground_level + rise; } if (ground_level < water_level) @@ -284,7 +284,7 @@ s16 MapgenFlat::generateTerrain() bool use_noise = (spflags & MGFLAT_LAKES) || (spflags & MGFLAT_HILLS); if (use_noise) - noise_terrain->perlinMap2D(node_min.X, node_min.Z); + noise_terrain->noiseMap2D(node_min.X, node_min.Z); for (s16 z = node_min.Z; z <= node_max.Z; z++) for (s16 x = node_min.X; x <= node_max.X; x++, ni2d++) { @@ -296,7 +296,7 @@ s16 MapgenFlat::generateTerrain() stone_level = ground_level - depress; } else if ((spflags & MGFLAT_HILLS) && n_terrain > hill_threshold) { s16 rise = (n_terrain - hill_threshold) * hill_steepness; - stone_level = ground_level + rise; + stone_level = ground_level + rise; } u32 vi = vm->m_area.index(x, node_min.Y - 1, z); diff --git a/src/mapgen/mapgen_flat.h b/src/mapgen/mapgen_flat.h index 46ff46154..6eb303765 100644 --- a/src/mapgen/mapgen_flat.h +++ b/src/mapgen/mapgen_flat.h @@ -14,7 +14,7 @@ class BiomeManager; -extern FlagDesc flagdesc_mapgen_flat[]; +extern const FlagDesc flagdesc_mapgen_flat[]; struct MapgenFlatParams : public MapgenParams { diff --git a/src/mapgen/mapgen_fractal.cpp b/src/mapgen/mapgen_fractal.cpp index 940fe0083..71c49b035 100644 --- a/src/mapgen/mapgen_fractal.cpp +++ b/src/mapgen/mapgen_fractal.cpp @@ -24,7 +24,7 @@ #include "mapgen_fractal.h" -FlagDesc flagdesc_mapgen_fractal[] = { +const FlagDesc flagdesc_mapgen_fractal[] = { {"terrain", MGFRACTAL_TERRAIN}, {NULL, 0} }; @@ -104,15 +104,15 @@ void MapgenFractalParams::readParams(const Settings *settings) settings->getU16NoEx("mgfractal_fractal", fractal); settings->getU16NoEx("mgfractal_iterations", iterations); - std::optional mgfractal_scale; - if (settings->getV3FNoEx("mgfractal_scale", mgfractal_scale) && mgfractal_scale.has_value()) { - scale = *mgfractal_scale; - } + std::optional mgfractal_scale; + if (settings->getV3FNoEx("mgfractal_scale", mgfractal_scale) && mgfractal_scale.has_value()) { + scale = *mgfractal_scale; + } - std::optional mgfractal_offset; - if (settings->getV3FNoEx("mgfractal_offset", mgfractal_offset) && mgfractal_offset.has_value()) { - offset = *mgfractal_offset; - } + std::optional mgfractal_offset; + if (settings->getV3FNoEx("mgfractal_offset", mgfractal_offset) && mgfractal_offset.has_value()) { + offset = *mgfractal_offset; + } settings->getFloatNoEx("mgfractal_slice_w", slice_w); settings->getFloatNoEx("mgfractal_julia_x", julia_x); @@ -177,7 +177,7 @@ int MapgenFractal::getSpawnLevelAtPoint(v2s16 p) // If terrain present, don't start search below terrain or water level if (noise_seabed) { - s16 seabed_level = NoisePerlin2D(&noise_seabed->np, p.X, p.Y, seed); + s16 seabed_level = NoiseFractal2D(&noise_seabed->np, p.X, p.Y, seed); search_start = MYMAX(search_start, MYMAX(seabed_level, water_level)); } @@ -409,7 +409,7 @@ s16 MapgenFractal::generateTerrain() u32 index2d = 0; if (noise_seabed) - noise_seabed->perlinMap2D(node_min.X, node_min.Z); + noise_seabed->noiseMap2D(node_min.X, node_min.Z); for (s16 z = node_min.Z; z <= node_max.Z; z++) { for (s16 y = node_min.Y - 1; y <= node_max.Y + 1; y++) { diff --git a/src/mapgen/mapgen_fractal.h b/src/mapgen/mapgen_fractal.h index 0a71bd1d1..1070f7f25 100644 --- a/src/mapgen/mapgen_fractal.h +++ b/src/mapgen/mapgen_fractal.h @@ -12,7 +12,7 @@ class BiomeManager; -extern FlagDesc flagdesc_mapgen_fractal[]; +extern const FlagDesc flagdesc_mapgen_fractal[]; struct MapgenFractalParams : public MapgenParams diff --git a/src/mapgen/mapgen_v5.cpp b/src/mapgen/mapgen_v5.cpp index 07d1abda7..6d42f5833 100644 --- a/src/mapgen/mapgen_v5.cpp +++ b/src/mapgen/mapgen_v5.cpp @@ -23,7 +23,7 @@ #include "mapgen_v5.h" -FlagDesc flagdesc_mapgen_v5[] = { +const FlagDesc flagdesc_mapgen_v5[] = { {"caverns", MGV5_CAVERNS}, {NULL, 0} }; @@ -150,12 +150,12 @@ void MapgenV5Params::setDefaultSettings(Settings *settings) int MapgenV5::getSpawnLevelAtPoint(v2s16 p) { - float f = 0.55 + NoisePerlin2D(&noise_factor->np, p.X, p.Y, seed); + float f = 0.55 + NoiseFractal2D(&noise_factor->np, p.X, p.Y, seed); if (f < 0.01) f = 0.01; else if (f >= 1.0) f *= 1.6; - float h = NoisePerlin2D(&noise_height->np, p.X, p.Y, seed); + float h = NoiseFractal2D(&noise_height->np, p.X, p.Y, seed); // noise_height 'offset' is the average level of terrain. At least 50% of // terrain will be below this. @@ -166,7 +166,7 @@ int MapgenV5::getSpawnLevelAtPoint(v2s16 p) // Starting spawn search at max_spawn_y + 128 ensures 128 nodes of open // space above spawn position. Avoids spawning in possibly sealed voids. for (s16 y = max_spawn_y + 128; y >= water_level; y--) { - float n_ground = NoisePerlin3D(&noise_ground->np, p.X, y, p.Y, seed); + float n_ground = NoiseFractal3D(&noise_ground->np, p.X, y, p.Y, seed); if (n_ground * f > y - h) { // If solid if (y < water_level || y > max_spawn_y) @@ -272,9 +272,9 @@ int MapgenV5::generateBaseTerrain() u32 index2d = 0; int stone_surface_max_y = -MAX_MAP_GENERATION_LIMIT; - noise_factor->perlinMap2D(node_min.X, node_min.Z); - noise_height->perlinMap2D(node_min.X, node_min.Z); - noise_ground->perlinMap3D(node_min.X, node_min.Y - 1, node_min.Z); + noise_factor->noiseMap2D(node_min.X, node_min.Z); + noise_height->noiseMap2D(node_min.X, node_min.Z); + noise_ground->noiseMap3D(node_min.X, node_min.Y - 1, node_min.Z); for (s16 z=node_min.Z; z<=node_max.Z; z++) { for (s16 y=node_min.Y - 1; y<=node_max.Y + 1; y++) { diff --git a/src/mapgen/mapgen_v5.h b/src/mapgen/mapgen_v5.h index 8c8c1c27f..7901347dc 100644 --- a/src/mapgen/mapgen_v5.h +++ b/src/mapgen/mapgen_v5.h @@ -12,7 +12,7 @@ class BiomeManager; -extern FlagDesc flagdesc_mapgen_v5[]; +extern const FlagDesc flagdesc_mapgen_v5[]; struct MapgenV5Params : public MapgenParams { diff --git a/src/mapgen/mapgen_v6.cpp b/src/mapgen/mapgen_v6.cpp index 44243618e..2b4d37c6b 100644 --- a/src/mapgen/mapgen_v6.cpp +++ b/src/mapgen/mapgen_v6.cpp @@ -25,7 +25,7 @@ #include "mapgen_v6.h" -FlagDesc flagdesc_mapgen_v6[] = { +const FlagDesc flagdesc_mapgen_v6[] = { {"jungles", MGV6_JUNGLES}, {"biomeblend", MGV6_BIOMEBLEND}, {"mudflow", MGV6_MUDFLOW}, @@ -289,13 +289,13 @@ float MapgenV6::baseTerrainLevelFromNoise(v2s16 p) if (spflags & MGV6_FLAT) return water_level; - float terrain_base = NoisePerlin2D_PO(&noise_terrain_base->np, + float terrain_base = NoiseFractal2D_PO(&noise_terrain_base->np, p.X, 0.5, p.Y, 0.5, seed); - float terrain_higher = NoisePerlin2D_PO(&noise_terrain_higher->np, + float terrain_higher = NoiseFractal2D_PO(&noise_terrain_higher->np, p.X, 0.5, p.Y, 0.5, seed); - float steepness = NoisePerlin2D_PO(&noise_steepness->np, + float steepness = NoiseFractal2D_PO(&noise_steepness->np, p.X, 0.5, p.Y, 0.5, seed); - float height_select = NoisePerlin2D_PO(&noise_height_select->np, + float height_select = NoiseFractal2D_PO(&noise_height_select->np, p.X, 0.5, p.Y, 0.5, seed); return baseTerrainLevel(terrain_base, terrain_higher, @@ -355,7 +355,7 @@ BiomeV6Type MapgenV6::getBiome(v2s16 p) float MapgenV6::getHumidity(v2s16 p) { - /*double noise = noise2d_perlin( + /*double noise = noise2d_fractal( 0.5+(float)p.X/500, 0.5+(float)p.Y/500, seed+72384, 4, 0.66); noise = (noise + 1.0)/2.0;*/ @@ -374,11 +374,11 @@ float MapgenV6::getHumidity(v2s16 p) float MapgenV6::getTreeAmount(v2s16 p) { - /*double noise = noise2d_perlin( + /*double noise = noise2d_fractal( 0.5+(float)p.X/125, 0.5+(float)p.Y/125, seed+2, 4, 0.66);*/ - float noise = NoisePerlin2D(np_trees, p.X, p.Y, seed); + float noise = NoiseFractal2D(np_trees, p.X, p.Y, seed); float zeroval = -0.39; if (noise < zeroval) return 0; @@ -389,11 +389,11 @@ float MapgenV6::getTreeAmount(v2s16 p) bool MapgenV6::getHaveAppleTree(v2s16 p) { - /*is_apple_tree = noise2d_perlin( + /*is_apple_tree = noise2d_fractal( 0.5+(float)p.X/100, 0.5+(float)p.Z/100, data->seed+342902, 3, 0.45) > 0.2;*/ - float noise = NoisePerlin2D(np_apple_trees, p.X, p.Y, seed); + float noise = NoiseFractal2D(np_apple_trees, p.X, p.Y, seed); return noise > 0.2; } @@ -404,7 +404,7 @@ float MapgenV6::getMudAmount(int index) if (spflags & MGV6_FLAT) return MGV6_AVERAGE_MUD_AMOUNT; - /*return ((float)AVERAGE_MUD_AMOUNT + 2.0 * noise2d_perlin( + /*return ((float)AVERAGE_MUD_AMOUNT + 2.0 * noise2d_fractal( 0.5+(float)p.X/200, 0.5+(float)p.Y/200, seed+91013, 3, 0.55));*/ @@ -415,7 +415,7 @@ float MapgenV6::getMudAmount(int index) bool MapgenV6::getHaveBeach(int index) { // Determine whether to have sand here - /*double sandnoise = noise2d_perlin( + /*double sandnoise = noise2d_fractal( 0.2+(float)p2d.X/250, 0.7+(float)p2d.Y/250, seed+59420, 3, 0.50);*/ @@ -427,7 +427,7 @@ bool MapgenV6::getHaveBeach(int index) BiomeV6Type MapgenV6::getBiome(int index, v2s16 p) { // Just do something very simple as for now - /*double d = noise2d_perlin( + /*double d = noise2d_fractal( 0.6+(float)p2d.X/250, 0.2+(float)p2d.Y/250, seed+9130, 3, 0.50);*/ @@ -547,7 +547,7 @@ void MapgenV6::makeChunk(BlockMakeData *data) if ((flags & MG_DUNGEONS) && stone_surface_max_y >= node_min.Y && full_node_min.Y >= dungeon_ymin && full_node_max.Y <= dungeon_ymax) { u16 num_dungeons = std::fmax(std::floor( - NoisePerlin3D(&np_dungeons, node_min.X, node_min.Y, node_min.Z, seed)), 0.0f); + NoiseFractal3D(&np_dungeons, node_min.X, node_min.Y, node_min.Z, seed)), 0.0f); if (num_dungeons >= 1) { PseudoRandom ps(blockseed + 4713); @@ -633,17 +633,17 @@ void MapgenV6::calculateNoise() int fz = full_node_min.Z; if (!(spflags & MGV6_FLAT)) { - noise_terrain_base->perlinMap2D_PO(x, 0.5, z, 0.5); - noise_terrain_higher->perlinMap2D_PO(x, 0.5, z, 0.5); - noise_steepness->perlinMap2D_PO(x, 0.5, z, 0.5); - noise_height_select->perlinMap2D_PO(x, 0.5, z, 0.5); - noise_mud->perlinMap2D_PO(x, 0.5, z, 0.5); + noise_terrain_base->noiseMap2D_PO(x, 0.5, z, 0.5); + noise_terrain_higher->noiseMap2D_PO(x, 0.5, z, 0.5); + noise_steepness->noiseMap2D_PO(x, 0.5, z, 0.5); + noise_height_select->noiseMap2D_PO(x, 0.5, z, 0.5); + noise_mud->noiseMap2D_PO(x, 0.5, z, 0.5); } - noise_beach->perlinMap2D_PO(x, 0.2, z, 0.7); + noise_beach->noiseMap2D_PO(x, 0.2, z, 0.7); - noise_biome->perlinMap2D_PO(fx, 0.6, fz, 0.2); - noise_humidity->perlinMap2D_PO(fx, 0.0, fz, 0.0); + noise_biome->noiseMap2D_PO(fx, 0.6, fz, 0.2); + noise_humidity->noiseMap2D_PO(fx, 0.0, fz, 0.0); // Humidity map does not need range limiting 0 to 1, // only humidity at point does } @@ -1075,7 +1075,7 @@ void MapgenV6::growGrass() // Add surface nodes void MapgenV6::generateCaves(int max_stone_y) { - float cave_amount = NoisePerlin2D(np_cave, node_min.X, node_min.Y, seed); + float cave_amount = NoiseFractal2D(np_cave, node_min.X, node_min.Y, seed); int volume_nodes = (node_max.X - node_min.X + 1) * (node_max.Y - node_min.Y + 1) * MAP_BLOCKSIZE; cave_amount = MYMAX(0.0, cave_amount); diff --git a/src/mapgen/mapgen_v6.h b/src/mapgen/mapgen_v6.h index 6d776665a..820577187 100644 --- a/src/mapgen/mapgen_v6.h +++ b/src/mapgen/mapgen_v6.h @@ -27,7 +27,7 @@ #define MGV6_TEMPLES 0x40 -extern FlagDesc flagdesc_mapgen_v6[]; +extern const FlagDesc flagdesc_mapgen_v6[]; enum BiomeV6Type diff --git a/src/mapgen/mapgen_v7.cpp b/src/mapgen/mapgen_v7.cpp index fe052f3b7..fdd971d28 100644 --- a/src/mapgen/mapgen_v7.cpp +++ b/src/mapgen/mapgen_v7.cpp @@ -24,7 +24,7 @@ #include "mapgen_v7.h" -FlagDesc flagdesc_mapgen_v7[] = { +const FlagDesc flagdesc_mapgen_v7[] = { {"mountains", MGV7_MOUNTAINS}, {"ridges", MGV7_RIDGES}, {"floatlands", MGV7_FLOATLANDS}, @@ -251,7 +251,7 @@ int MapgenV7::getSpawnLevelAtPoint(v2s16 p) // If rivers are enabled, first check if in a river if (spflags & MGV7_RIDGES) { float width = 0.2f; - float uwatern = NoisePerlin2D(&noise_ridge_uwater->np, p.X, p.Y, seed) * + float uwatern = NoiseFractal2D(&noise_ridge_uwater->np, p.X, p.Y, seed) * 2.0f; if (std::fabs(uwatern) <= width) return MAX_MAP_GENERATION_LIMIT; // Unsuitable spawn point @@ -390,16 +390,16 @@ void MapgenV7::makeChunk(BlockMakeData *data) float MapgenV7::baseTerrainLevelAtPoint(s16 x, s16 z) { - float hselect = NoisePerlin2D(&noise_height_select->np, x, z, seed); + float hselect = NoiseFractal2D(&noise_height_select->np, x, z, seed); hselect = rangelim(hselect, 0.0f, 1.0f); - float persist = NoisePerlin2D(&noise_terrain_persist->np, x, z, seed); + float persist = NoiseFractal2D(&noise_terrain_persist->np, x, z, seed); noise_terrain_base->np.persist = persist; - float height_base = NoisePerlin2D(&noise_terrain_base->np, x, z, seed); + float height_base = NoiseFractal2D(&noise_terrain_base->np, x, z, seed); noise_terrain_alt->np.persist = persist; - float height_alt = NoisePerlin2D(&noise_terrain_alt->np, x, z, seed); + float height_alt = NoiseFractal2D(&noise_terrain_alt->np, x, z, seed); if (height_alt > height_base) return height_alt; @@ -424,9 +424,9 @@ float MapgenV7::baseTerrainLevelFromMap(int index) bool MapgenV7::getMountainTerrainAtPoint(s16 x, s16 y, s16 z) { float mnt_h_n = - std::fmax(NoisePerlin2D(&noise_mount_height->np, x, z, seed), 1.0f); + std::fmax(NoiseFractal2D(&noise_mount_height->np, x, z, seed), 1.0f); float density_gradient = -((float)(y - mount_zero_level) / mnt_h_n); - float mnt_n = NoisePerlin3D(&noise_mountain->np, x, y, z, seed); + float mnt_n = NoiseFractal3D(&noise_mountain->np, x, y, z, seed); return mnt_n + density_gradient >= 0.0f; } @@ -472,16 +472,16 @@ int MapgenV7::generateTerrain() MapNode n_water(c_water_source); //// Calculate noise for terrain generation - noise_terrain_persist->perlinMap2D(node_min.X, node_min.Z); + noise_terrain_persist->noiseMap2D(node_min.X, node_min.Z); float *persistmap = noise_terrain_persist->result; - noise_terrain_base->perlinMap2D(node_min.X, node_min.Z, persistmap); - noise_terrain_alt->perlinMap2D(node_min.X, node_min.Z, persistmap); - noise_height_select->perlinMap2D(node_min.X, node_min.Z); + noise_terrain_base->noiseMap2D(node_min.X, node_min.Z, persistmap); + noise_terrain_alt->noiseMap2D(node_min.X, node_min.Z, persistmap); + noise_height_select->noiseMap2D(node_min.X, node_min.Z); if (spflags & MGV7_MOUNTAINS) { - noise_mount_height->perlinMap2D(node_min.X, node_min.Z); - noise_mountain->perlinMap3D(node_min.X, node_min.Y - 1, node_min.Z); + noise_mount_height->noiseMap2D(node_min.X, node_min.Z); + noise_mountain->noiseMap3D(node_min.X, node_min.Y - 1, node_min.Z); } //// Floatlands @@ -497,7 +497,7 @@ int MapgenV7::generateTerrain() node_max.Y >= floatland_ymin && node_min.Y <= floatland_ymax) { gen_floatlands = true; // Calculate noise for floatland generation - noise_floatland->perlinMap3D(node_min.X, node_min.Y - 1, node_min.Z); + noise_floatland->noiseMap3D(node_min.X, node_min.Y - 1, node_min.Z); // Cache floatland noise offset values, for floatland tapering for (s16 y = node_min.Y - 1; y <= node_max.Y + 1; y++, cache_index++) { @@ -518,8 +518,8 @@ int MapgenV7::generateTerrain() bool gen_rivers = (spflags & MGV7_RIDGES) && node_max.Y >= water_level - 16 && !gen_floatlands; if (gen_rivers) { - noise_ridge->perlinMap3D(node_min.X, node_min.Y - 1, node_min.Z); - noise_ridge_uwater->perlinMap2D(node_min.X, node_min.Z); + noise_ridge->noiseMap3D(node_min.X, node_min.Y - 1, node_min.Z); + noise_ridge_uwater->noiseMap2D(node_min.X, node_min.Z); } //// Place nodes diff --git a/src/mapgen/mapgen_v7.h b/src/mapgen/mapgen_v7.h index 49e036b82..10a0aa12e 100644 --- a/src/mapgen/mapgen_v7.h +++ b/src/mapgen/mapgen_v7.h @@ -16,7 +16,7 @@ class BiomeManager; -extern FlagDesc flagdesc_mapgen_v7[]; +extern const FlagDesc flagdesc_mapgen_v7[]; struct MapgenV7Params : public MapgenParams { diff --git a/src/mapgen/mapgen_valleys.cpp b/src/mapgen/mapgen_valleys.cpp index 55185c445..9d17e50e4 100644 --- a/src/mapgen/mapgen_valleys.cpp +++ b/src/mapgen/mapgen_valleys.cpp @@ -32,7 +32,7 @@ Licensing changed by permission of Gael de Sailly. #include -FlagDesc flagdesc_mapgen_valleys[] = { +const FlagDesc flagdesc_mapgen_valleys[] = { {"altitude_chill", MGVALLEYS_ALT_CHILL}, {"humid_rivers", MGVALLEYS_HUMID_RIVERS}, {"vary_river_depth", MGVALLEYS_VARY_RIVER_DEPTH}, @@ -280,15 +280,15 @@ void MapgenValleys::makeChunk(BlockMakeData *data) int MapgenValleys::getSpawnLevelAtPoint(v2s16 p) { // Check if in a river channel - float n_rivers = NoisePerlin2D(&noise_rivers->np, p.X, p.Y, seed); + float n_rivers = NoiseFractal2D(&noise_rivers->np, p.X, p.Y, seed); if (std::fabs(n_rivers) <= river_size_factor) // Unsuitable spawn point return MAX_MAP_GENERATION_LIMIT; - float n_slope = NoisePerlin2D(&noise_inter_valley_slope->np, p.X, p.Y, seed); - float n_terrain_height = NoisePerlin2D(&noise_terrain_height->np, p.X, p.Y, seed); - float n_valley = NoisePerlin2D(&noise_valley_depth->np, p.X, p.Y, seed); - float n_valley_profile = NoisePerlin2D(&noise_valley_profile->np, p.X, p.Y, seed); + float n_slope = NoiseFractal2D(&noise_inter_valley_slope->np, p.X, p.Y, seed); + float n_terrain_height = NoiseFractal2D(&noise_terrain_height->np, p.X, p.Y, seed); + float n_valley = NoiseFractal2D(&noise_valley_depth->np, p.X, p.Y, seed); + float n_valley_profile = NoiseFractal2D(&noise_valley_profile->np, p.X, p.Y, seed); float valley_d = n_valley * n_valley; float base = n_terrain_height + valley_d; @@ -309,7 +309,7 @@ int MapgenValleys::getSpawnLevelAtPoint(v2s16 p) // Starting spawn search at max_spawn_y + 128 ensures 128 nodes of open // space above spawn position. Avoids spawning in possibly sealed voids. for (s16 y = max_spawn_y + 128; y >= water_level; y--) { - float n_fill = NoisePerlin3D(&noise_inter_valley_fill->np, p.X, y, p.Y, seed); + float n_fill = NoiseFractal3D(&noise_inter_valley_fill->np, p.X, y, p.Y, seed); float surface_delta = (float)y - surface_y; float density = slope * n_fill - surface_delta; @@ -336,13 +336,13 @@ int MapgenValleys::generateTerrain() MapNode n_stone(c_stone); MapNode n_water(c_water_source); - noise_inter_valley_slope->perlinMap2D(node_min.X, node_min.Z); - noise_rivers->perlinMap2D(node_min.X, node_min.Z); - noise_terrain_height->perlinMap2D(node_min.X, node_min.Z); - noise_valley_depth->perlinMap2D(node_min.X, node_min.Z); - noise_valley_profile->perlinMap2D(node_min.X, node_min.Z); + noise_inter_valley_slope->noiseMap2D(node_min.X, node_min.Z); + noise_rivers->noiseMap2D(node_min.X, node_min.Z); + noise_terrain_height->noiseMap2D(node_min.X, node_min.Z); + noise_valley_depth->noiseMap2D(node_min.X, node_min.Z); + noise_valley_profile->noiseMap2D(node_min.X, node_min.Z); - noise_inter_valley_fill->perlinMap3D(node_min.X, node_min.Y - 1, node_min.Z); + noise_inter_valley_fill->noiseMap3D(node_min.X, node_min.Y - 1, node_min.Z); const v3s32 &em = vm->m_area.getExtent(); s16 surface_max_y = -MAX_MAP_GENERATION_LIMIT; diff --git a/src/mapgen/mapgen_valleys.h b/src/mapgen/mapgen_valleys.h index c0e3bd129..7e318bb59 100644 --- a/src/mapgen/mapgen_valleys.h +++ b/src/mapgen/mapgen_valleys.h @@ -24,7 +24,7 @@ Licensing changed by permission of Gael de Sailly. class BiomeManager; class BiomeGenOriginal; -extern FlagDesc flagdesc_mapgen_valleys[]; +extern const FlagDesc flagdesc_mapgen_valleys[]; struct MapgenValleysParams : public MapgenParams { diff --git a/src/mapgen/mg_biome.cpp b/src/mapgen/mg_biome.cpp index a0bb6dee2..42b4b0862 100644 --- a/src/mapgen/mg_biome.cpp +++ b/src/mapgen/mg_biome.cpp @@ -165,14 +165,14 @@ BiomeGen *BiomeGenOriginal::clone(BiomeManager *biomemgr) const float BiomeGenOriginal::calcHeatAtPoint(v3s16 pos) const { - return NoisePerlin2D(&m_params->np_heat, pos.X, pos.Z, m_params->seed) + - NoisePerlin2D(&m_params->np_heat_blend, pos.X, pos.Z, m_params->seed); + return NoiseFractal2D(&m_params->np_heat, pos.X, pos.Z, m_params->seed) + + NoiseFractal2D(&m_params->np_heat_blend, pos.X, pos.Z, m_params->seed); } float BiomeGenOriginal::calcHumidityAtPoint(v3s16 pos) const { - return NoisePerlin2D(&m_params->np_humidity, pos.X, pos.Z, m_params->seed) + - NoisePerlin2D(&m_params->np_humidity_blend, pos.X, pos.Z, m_params->seed); + return NoiseFractal2D(&m_params->np_humidity, pos.X, pos.Z, m_params->seed) + + NoiseFractal2D(&m_params->np_humidity_blend, pos.X, pos.Z, m_params->seed); } Biome *BiomeGenOriginal::calcBiomeAtPoint(v3s16 pos) const @@ -185,10 +185,10 @@ void BiomeGenOriginal::calcBiomeNoise(v3s16 pmin) { m_pmin = pmin; - noise_heat->perlinMap2D(pmin.X, pmin.Z); - noise_humidity->perlinMap2D(pmin.X, pmin.Z); - noise_heat_blend->perlinMap2D(pmin.X, pmin.Z); - noise_humidity_blend->perlinMap2D(pmin.X, pmin.Z); + noise_heat->noiseMap2D(pmin.X, pmin.Z); + noise_humidity->noiseMap2D(pmin.X, pmin.Z); + noise_heat_blend->noiseMap2D(pmin.X, pmin.Z); + noise_humidity_blend->noiseMap2D(pmin.X, pmin.Z); for (s32 i = 0; i < m_csize.X * m_csize.Z; i++) { noise_heat->result[i] += noise_heat_blend->result[i]; diff --git a/src/mapgen/mg_biome.h b/src/mapgen/mg_biome.h index 8adce5db6..37e09136e 100644 --- a/src/mapgen/mg_biome.h +++ b/src/mapgen/mg_biome.h @@ -8,6 +8,7 @@ #include "objdef.h" #include "nodedef.h" #include "noise.h" +#include "debug.h" // FATAL_ERROR_IF class Server; class Settings; diff --git a/src/mapgen/mg_decoration.cpp b/src/mapgen/mg_decoration.cpp index e8f381ec6..8810a654d 100644 --- a/src/mapgen/mg_decoration.cpp +++ b/src/mapgen/mg_decoration.cpp @@ -15,7 +15,7 @@ #include "mapgen/treegen.h" -FlagDesc flagdesc_deco[] = { +const FlagDesc flagdesc_deco[] = { {"place_center_x", DECO_PLACE_CENTER_X}, {"place_center_y", DECO_PLACE_CENTER_Y}, {"place_center_z", DECO_PLACE_CENTER_Z}, @@ -36,21 +36,17 @@ DecorationManager::DecorationManager(IGameDef *gamedef) : } -size_t DecorationManager::placeAllDecos(Mapgen *mg, u32 blockseed, +void DecorationManager::placeAllDecos(Mapgen *mg, u32 blockseed, v3s16 nmin, v3s16 nmax) { - size_t nplaced = 0; - for (size_t i = 0; i != m_objects.size(); i++) { Decoration *deco = (Decoration *)m_objects[i]; if (!deco) continue; - nplaced += deco->placeDeco(mg, blockseed, nmin, nmax); + deco->placeDeco(mg, blockseed, nmin, nmax); blockseed++; } - - return nplaced; } DecorationManager *DecorationManager::clone() const @@ -128,38 +124,31 @@ bool Decoration::canPlaceDecoration(MMVManip *vm, v3s16 p) } -size_t Decoration::placeDeco(Mapgen *mg, u32 blockseed, v3s16 nmin, v3s16 nmax) +void Decoration::placeDeco(Mapgen *mg, u32 blockseed, v3s16 nmin, v3s16 nmax) { + // Skip if y ranges do not overlap + if (nmax.Y < y_min || y_max < nmin.Y) + return; + PcgRandom ps(blockseed + 53); int carea_size = nmax.X - nmin.X + 1; // Divide area into parts // If chunksize is changed it may no longer be divisable by sidelen - if (carea_size % sidelen) + if (carea_size % sidelen != 0) sidelen = carea_size; - s16 divlen = carea_size / sidelen; int area = sidelen * sidelen; - for (s16 z0 = 0; z0 < divlen; z0++) - for (s16 x0 = 0; x0 < divlen; x0++) { - v2s16 p2d_center( // Center position of part of division - nmin.X + sidelen / 2 + sidelen * x0, - nmin.Z + sidelen / 2 + sidelen * z0 - ); - v2s16 p2d_min( // Minimum edge of part of division - nmin.X + sidelen * x0, - nmin.Z + sidelen * z0 - ); - v2s16 p2d_max( // Maximum edge of part of division - nmin.X + sidelen + sidelen * x0 - 1, - nmin.Z + sidelen + sidelen * z0 - 1 - ); + for (s16 z0 = 0; z0 < carea_size; z0 += sidelen) + for (s16 x0 = 0; x0 < carea_size; x0 += sidelen) { + v2s16 p2d_min(nmin.X + x0, nmin.Z + z0); + v2s16 p2d_max(nmin.X + x0 + sidelen - 1, nmin.Z + z0 + sidelen - 1); bool cover = false; // Amount of decorations float nval = (flags & DECO_USE_NOISE) ? - NoisePerlin2D(&np, p2d_center.X, p2d_center.Y, mapseed) : + NoiseFractal2D(&np, p2d_min.X + sidelen / 2, p2d_min.Y + sidelen / 2, mapseed) : fill_ratio; u32 deco_count = 0; @@ -262,7 +251,7 @@ size_t Decoration::placeDeco(Mapgen *mg, u32 blockseed, v3s16 nmin, v3s16 nmax) } } - return 0; + return; } diff --git a/src/mapgen/mg_decoration.h b/src/mapgen/mg_decoration.h index c8d187d2a..15f38c394 100644 --- a/src/mapgen/mg_decoration.h +++ b/src/mapgen/mg_decoration.h @@ -33,7 +33,7 @@ enum DecorationType { #define DECO_ALL_FLOORS 0x40 #define DECO_ALL_CEILINGS 0x80 -extern FlagDesc flagdesc_deco[]; +extern const FlagDesc flagdesc_deco[]; class Decoration : public ObjDef, public NodeResolver { @@ -44,7 +44,7 @@ public: virtual void resolveNodeNames(); bool canPlaceDecoration(MMVManip *vm, v3s16 p); - size_t placeDeco(Mapgen *mg, u32 blockseed, v3s16 nmin, v3s16 nmax); + void placeDeco(Mapgen *mg, u32 blockseed, v3s16 nmin, v3s16 nmax); virtual size_t generate(MMVManip *vm, PcgRandom *pr, v3s16 p, bool ceiling) = 0; @@ -135,7 +135,7 @@ public: } } - size_t placeAllDecos(Mapgen *mg, u32 blockseed, v3s16 nmin, v3s16 nmax); + void placeAllDecos(Mapgen *mg, u32 blockseed, v3s16 nmin, v3s16 nmax); private: DecorationManager() {}; diff --git a/src/mapgen/mg_ore.cpp b/src/mapgen/mg_ore.cpp index d5817f682..d3b943f8a 100644 --- a/src/mapgen/mg_ore.cpp +++ b/src/mapgen/mg_ore.cpp @@ -13,7 +13,7 @@ #include -FlagDesc flagdesc_ore[] = { +const FlagDesc flagdesc_ore[] = { {"absheight", OREFLAG_ABSHEIGHT}, // Non-functional {"puff_cliffs", OREFLAG_PUFF_CLIFFS}, {"puff_additive_composition", OREFLAG_PUFF_ADDITIVE}, @@ -150,7 +150,7 @@ void OreScatter::generate(MMVManip *vm, int mapseed, u32 blockseed, int z0 = pr.range(nmin.Z, nmax.Z - csize + 1); if ((flags & OREFLAG_USE_NOISE) && - (NoisePerlin3D(&np, x0, y0, z0, mapseed) < nthresh)) + (NoiseFractal3D(&np, x0, y0, z0, mapseed) < nthresh)) continue; if (biomemap && !biomes.empty()) { @@ -212,7 +212,7 @@ void OreSheet::generate(MMVManip *vm, int mapseed, u32 blockseed, noise = new Noise(&np, 0, sx, sz); } noise->seed = mapseed + y_start; - noise->perlinMap2D(nmin.X, nmin.Z); + noise->noiseMap2D(nmin.X, nmin.Z); size_t index = 0; for (int z = nmin.Z; z <= nmax.Z; z++) @@ -286,7 +286,7 @@ void OrePuff::generate(MMVManip *vm, int mapseed, u32 blockseed, } noise->seed = mapseed + y_start; - noise->perlinMap2D(nmin.X, nmin.Z); + noise->noiseMap2D(nmin.X, nmin.Z); bool noise_generated = false; size_t index = 0; @@ -304,8 +304,8 @@ void OrePuff::generate(MMVManip *vm, int mapseed, u32 blockseed, if (!noise_generated) { noise_generated = true; - noise_puff_top->perlinMap2D(nmin.X, nmin.Z); - noise_puff_bottom->perlinMap2D(nmin.X, nmin.Z); + noise_puff_top->noiseMap2D(nmin.X, nmin.Z); + noise_puff_bottom->noiseMap2D(nmin.X, nmin.Z); } float ntop = noise_puff_top->result[index]; @@ -324,7 +324,7 @@ void OrePuff::generate(MMVManip *vm, int mapseed, u32 blockseed, int y1 = ymid + ntop; if ((flags & OREFLAG_PUFF_ADDITIVE) && (y0 > y1)) - SWAP(int, y0, y1); + std::swap(y0, y1); for (int y = y0; y <= y1; y++) { u32 i = vm->m_area.index(x, y, z); @@ -393,7 +393,7 @@ void OreBlob::generate(MMVManip *vm, int mapseed, u32 blockseed, // This simple optimization makes calls 6x faster on average if (!noise_generated) { noise_generated = true; - noise->perlinMap3D(x0, y0, z0); + noise->noiseMap3D(x0, y0, z0); } float noiseval = noise->result[index]; @@ -443,7 +443,7 @@ void OreVein::generate(MMVManip *vm, int mapseed, u32 blockseed, int sizex = nmax.X - nmin.X + 1; int sizey = nmax.Y - nmin.Y + 1; - // Because this ore uses 3D noise the perlinmap Y size can be different in + // Because this ore uses 3D noise the noisemap Y size can be different in // different mapchunks due to ore Y limits. So recreate the noise objects // if Y size has changed. // Because these noise objects are created multiple times for this ore type @@ -478,8 +478,8 @@ void OreVein::generate(MMVManip *vm, int mapseed, u32 blockseed, // Same lazy generation optimization as in OreBlob if (!noise_generated) { noise_generated = true; - noise->perlinMap3D(nmin.X, nmin.Y, nmin.Z); - noise2->perlinMap3D(nmin.X, nmin.Y, nmin.Z); + noise->noiseMap3D(nmin.X, nmin.Y, nmin.Z); + noise2->noiseMap3D(nmin.X, nmin.Y, nmin.Z); } // randval ranges from -1..1 @@ -532,7 +532,7 @@ void OreStratum::generate(MMVManip *vm, int mapseed, u32 blockseed, int sz = nmax.Z - nmin.Z + 1; noise = new Noise(&np, 0, sx, sz); } - noise->perlinMap2D(nmin.X, nmin.Z); + noise->noiseMap2D(nmin.X, nmin.Z); } if (flags & OREFLAG_USE_NOISE2) { @@ -541,7 +541,7 @@ void OreStratum::generate(MMVManip *vm, int mapseed, u32 blockseed, int sz = nmax.Z - nmin.Z + 1; noise_stratum_thickness = new Noise(&np_stratum_thickness, 0, sx, sz); } - noise_stratum_thickness->perlinMap2D(nmin.X, nmin.Z); + noise_stratum_thickness->noiseMap2D(nmin.X, nmin.Z); } size_t index = 0; diff --git a/src/mapgen/mg_ore.h b/src/mapgen/mg_ore.h index eed13ebfc..ae9faee11 100644 --- a/src/mapgen/mg_ore.h +++ b/src/mapgen/mg_ore.h @@ -33,7 +33,7 @@ enum OreType { ORE_STRATUM, }; -extern FlagDesc flagdesc_ore[]; +extern const FlagDesc flagdesc_ore[]; class Ore : public ObjDef, public NodeResolver { public: diff --git a/src/mapgen/mg_schematic.cpp b/src/mapgen/mg_schematic.cpp index 8caed8157..9e5c078c8 100644 --- a/src/mapgen/mg_schematic.cpp +++ b/src/mapgen/mg_schematic.cpp @@ -127,7 +127,7 @@ void Schematic::blitToVManip(MMVManip *vm, v3s16 p, Rotation rot, bool force_pla i_start = sx - 1; i_step_x = zstride; i_step_z = -xstride; - SWAP(s16, sx, sz); + std::swap(sx, sz); break; case ROTATE_180: i_start = zstride * (sz - 1) + sx - 1; @@ -138,7 +138,7 @@ void Schematic::blitToVManip(MMVManip *vm, v3s16 p, Rotation rot, bool force_pla i_start = zstride * (sz - 1); i_step_x = -zstride; i_step_z = xstride; - SWAP(s16, sx, sz); + std::swap(sx, sz); break; default: i_start = 0; @@ -222,7 +222,6 @@ void Schematic::placeOnMap(ServerMap *map, v3s16 p, u32 flags, Rotation rot, bool force_place) { std::map modified_blocks; - std::map::iterator it; assert(map != NULL); assert(schemdata != NULL); diff --git a/src/mapgen/treegen.cpp b/src/mapgen/treegen.cpp index 8198cf266..f59696bea 100644 --- a/src/mapgen/treegen.cpp +++ b/src/mapgen/treegen.cpp @@ -276,29 +276,29 @@ treegen::error make_ltree(MMVManip &vmanip, v3s16 p0, Key for Special L-System Symbols used in Axioms - G - move forward one unit with the pen up - F - move forward one unit with the pen down drawing trunks and branches - f - move forward one unit with the pen down drawing leaves (100% chance) - T - move forward one unit with the pen down drawing trunks only - R - move forward one unit with the pen down placing fruit - A - replace with rules set A - B - replace with rules set B - C - replace with rules set C - D - replace with rules set D - a - replace with rules set A, chance 90% - b - replace with rules set B, chance 80% - c - replace with rules set C, chance 70% - d - replace with rules set D, chance 60% - + - yaw the turtle right by angle degrees - - - yaw the turtle left by angle degrees - & - pitch the turtle down by angle degrees - ^ - pitch the turtle up by angle degrees - / - roll the turtle to the right by angle degrees - * - roll the turtle to the left by angle degrees - [ - save in stack current state info - ] - recover from stack state info + G - move forward one unit with the pen up + F - move forward one unit with the pen down drawing trunks and branches + f - move forward one unit with the pen down drawing leaves (100% chance) + T - move forward one unit with the pen down drawing trunks only + R - move forward one unit with the pen down placing fruit + A - replace with rules set A + B - replace with rules set B + C - replace with rules set C + D - replace with rules set D + a - replace with rules set A, chance 90% + b - replace with rules set B, chance 80% + c - replace with rules set C, chance 70% + d - replace with rules set D, chance 60% + + - yaw the turtle right by angle degrees + - - yaw the turtle left by angle degrees + & - pitch the turtle down by angle degrees + ^ - pitch the turtle up by angle degrees + / - roll the turtle to the right by angle degrees + * - roll the turtle to the left by angle degrees + [ - save in stack current state info + ] - recover from stack state info - */ + */ s16 x,y,z; for (s16 i = 0; i < (s16)axiom.size(); i++) { diff --git a/src/mapnode.cpp b/src/mapnode.cpp index 22fc36086..a82cbe041 100644 --- a/src/mapnode.cpp +++ b/src/mapnode.cpp @@ -561,7 +561,7 @@ void MapNode::serialize(u8 *dest, u8 version) const writeU8(dest+2, param1); writeU8(dest+3, param2); } -void MapNode::deSerialize(u8 *source, u8 version) +void MapNode::deSerialize(const u8 *source, u8 version) { if (!ser_ver_supported_read(version)) throw VersionMismatchException("ERROR: MapNode format not supported"); diff --git a/src/mapnode.h b/src/mapnode.h index a909757bc..5366caea2 100644 --- a/src/mapnode.h +++ b/src/mapnode.h @@ -145,7 +145,7 @@ struct alignas(u32) MapNode MapNode() = default; - MapNode(content_t content, u8 a_param1=0, u8 a_param2=0) noexcept + constexpr MapNode(content_t content, u8 a_param1=0, u8 a_param2=0) noexcept : param0(content), param1(a_param1), param2(a_param2) @@ -157,6 +157,10 @@ struct alignas(u32) MapNode && param1 == other.param1 && param2 == other.param2); } + bool operator!=(const MapNode &other) const noexcept + { + return !(*this == other); + } // To be used everywhere content_t getContent() const noexcept @@ -292,7 +296,7 @@ struct alignas(u32) MapNode static u32 serializedLength(u8 version); void serialize(u8 *dest, u8 version) const; - void deSerialize(u8 *source, u8 version); + void deSerialize(const u8 *source, u8 version); // Serializes or deserializes a list of nodes in bulk format (first the // content of all nodes, then the param1 of all nodes, then the param2 diff --git a/src/mapsector.h b/src/mapsector.h index bc5a2a731..d977bc63c 100644 --- a/src/mapsector.h +++ b/src/mapsector.h @@ -8,6 +8,7 @@ #include "irr_v2d.h" #include "mapblock.h" #include +#include #include #include diff --git a/src/migratesettings.h b/src/migratesettings.h index 5f6396914..4839f9479 100644 --- a/src/migratesettings.h +++ b/src/migratesettings.h @@ -28,4 +28,11 @@ void migrate_settings() } g_settings->remove("disable_anticheat"); } + + // Convert touch_use_crosshair to touch_interaction_style + if (g_settings->existsLocal("touch_use_crosshair")) { + bool value = g_settings->getBool("touch_use_crosshair"); + g_settings->set("touch_interaction_style", value ? "tap_crosshair" : "tap"); + g_settings->remove("touch_use_crosshair"); + } } diff --git a/src/network/clientopcodes.cpp b/src/network/clientopcodes.cpp index 27d56c311..9a9cb5968 100644 --- a/src/network/clientopcodes.cpp +++ b/src/network/clientopcodes.cpp @@ -83,7 +83,7 @@ const ToClientCommandHandler toClientCommandTable[TOCLIENT_NUM_MSG_TYPES] = { "TOCLIENT_MOVEMENT", TOCLIENT_STATE_CONNECTED, &Client::handleCommand_Movement }, // 0x45 { "TOCLIENT_SPAWN_PARTICLE", TOCLIENT_STATE_CONNECTED, &Client::handleCommand_SpawnParticle }, // 0x46 { "TOCLIENT_ADD_PARTICLESPAWNER", TOCLIENT_STATE_CONNECTED, &Client::handleCommand_AddParticleSpawner }, // 0x47 - null_command_handler, + { "TOCLIENT_CAMERA", TOCLIENT_STATE_CONNECTED, &Client::handleCommand_Camera }, // 0x48 { "TOCLIENT_HUDADD", TOCLIENT_STATE_CONNECTED, &Client::handleCommand_HudAdd }, // 0x49 { "TOCLIENT_HUDRM", TOCLIENT_STATE_CONNECTED, &Client::handleCommand_HudRemove }, // 0x4a { "TOCLIENT_HUDCHANGE", TOCLIENT_STATE_CONNECTED, &Client::handleCommand_HudChange }, // 0x4b diff --git a/src/network/clientpackethandler.cpp b/src/network/clientpackethandler.cpp index 6423640f3..18e35e3f2 100644 --- a/src/network/clientpackethandler.cpp +++ b/src/network/clientpackethandler.cpp @@ -132,17 +132,10 @@ void Client::handleCommand_AuthAccept(NetworkPacket* pkt) { deleteAuthData(); - v3f playerpos; - *pkt >> playerpos >> m_map_seed >> m_recommended_send_interval + v3f unused; + *pkt >> unused >> m_map_seed >> m_recommended_send_interval >> m_sudo_auth_methods; - playerpos -= v3f(0, BS / 2, 0); - - // Set player position - LocalPlayer *player = m_env.getLocalPlayer(); - assert(player != NULL); - player->setPosition(playerpos); - infostream << "Client: received map seed: " << m_map_seed << std::endl; infostream << "Client: received recommended send interval " << m_recommended_send_interval<getCommand() != TOCLIENT_ACCESS_DENIED) { - // Legacy code from 0.4.12 and older but is still used - // in some places of the server code + // Servers older than 5.6 still send TOCLIENT_ACCESS_DENIED_LEGACY sometimes. + // see commit a65f6f07f3a5601207b790edcc8cc945133112f7 if (pkt->getSize() >= 2) { std::wstring wide_reason; *pkt >> wide_reason; @@ -231,9 +225,6 @@ void Client::handleCommand_AccessDenied(NetworkPacket* pkt) void Client::handleCommand_RemoveNode(NetworkPacket* pkt) { - if (pkt->getSize() < 6) - return; - v3s16 p; *pkt >> p; removeNode(p); @@ -241,22 +232,19 @@ void Client::handleCommand_RemoveNode(NetworkPacket* pkt) void Client::handleCommand_AddNode(NetworkPacket* pkt) { - if (pkt->getSize() < 6 + MapNode::serializedLength(m_server_ser_ver)) - return; - v3s16 p; *pkt >> p; + auto *ptr = reinterpret_cast(pkt->getRemainingString()); + pkt->skip(MapNode::serializedLength(m_server_ser_ver)); // performs length check + MapNode n; - n.deSerialize(pkt->getU8Ptr(6), m_server_ser_ver); + n.deSerialize(ptr, m_server_ser_ver); - bool remove_metadata = true; - u32 index = 6 + MapNode::serializedLength(m_server_ser_ver); - if ((pkt->getSize() >= index + 1) && pkt->getU8(index)) { - remove_metadata = false; - } + bool keep_metadata; + *pkt >> keep_metadata; - addNode(p, n, remove_metadata); + addNode(p, n, !keep_metadata); } void Client::handleCommand_NodemetaChanged(NetworkPacket *pkt) @@ -272,7 +260,7 @@ void Client::handleCommand_NodemetaChanged(NetworkPacket *pkt) meta_updates_list.deSerialize(sstr, m_itemdef, true); Map &map = m_env.getMap(); - for (NodeMetadataMap::const_iterator i = meta_updates_list.begin(); + for (auto i = meta_updates_list.begin(); i != meta_updates_list.end(); ++i) { v3s16 pos = i->first; @@ -294,7 +282,7 @@ void Client::handleCommand_BlockData(NetworkPacket* pkt) v3s16 p; *pkt >> p; - std::string datastring(pkt->getString(6), pkt->getSize() - 6); + std::string datastring(pkt->getRemainingString(), pkt->getRemainingBytes()); std::istringstream istr(datastring, std::ios_base::binary); MapSector *sector; @@ -358,46 +346,15 @@ void Client::handleCommand_TimeOfDay(NetworkPacket* pkt) return; u16 time_of_day; - *pkt >> time_of_day; - time_of_day = time_of_day % 24000; - float time_speed = 0; - if (pkt->getSize() >= 2 + 4) { - *pkt >> time_speed; - } - else { - // Old message; try to approximate speed of time by ourselves - float time_of_day_f = (float)time_of_day / 24000.0f; - float tod_diff_f = 0; - - if (time_of_day_f < 0.2 && m_last_time_of_day_f > 0.8) - tod_diff_f = time_of_day_f - m_last_time_of_day_f + 1.0f; - else - tod_diff_f = time_of_day_f - m_last_time_of_day_f; - - m_last_time_of_day_f = time_of_day_f; - float time_diff = m_time_of_day_update_timer; - m_time_of_day_update_timer = 0; - - if (m_time_of_day_set) { - time_speed = (3600.0f * 24.0f) * tod_diff_f / time_diff; - infostream << "Client: Measured time_of_day speed (old format): " - << time_speed << " tod_diff_f=" << tod_diff_f - << " time_diff=" << time_diff << std::endl; - } - } + float time_speed; + *pkt >> time_speed; // Update environment m_env.setTimeOfDay(time_of_day); m_env.setTimeOfDaySpeed(time_speed); - m_time_of_day_set = true; - - //u32 dr = m_env.getDayNightRatio(); - //infostream << "Client: time_of_day=" << time_of_day - // << " time_speed=" << time_speed - // << " dr=" << dr << std::endl; } void Client::handleCommand_ChatMessage(NetworkPacket *pkt) @@ -611,7 +568,7 @@ void Client::handleCommand_MovePlayer(NetworkPacket* pkt) player->setPosition(pos); infostream << "Client got TOCLIENT_MOVE_PLAYER" - << " pos=(" << pos.X << "," << pos.Y << "," << pos.Z << ")" + << " pos=" << pos << " pitch=" << pitch << " yaw=" << yaw << std::endl; @@ -649,10 +606,6 @@ void Client::handleCommand_DeathScreenLegacy(NetworkPacket* pkt) void Client::handleCommand_AnnounceMedia(NetworkPacket* pkt) { - u16 num_files; - - *pkt >> num_files; - infostream << "Client: Received media announcement: packet size: " << pkt->getSize() << std::endl; @@ -662,9 +615,7 @@ void Client::handleCommand_AnnounceMedia(NetworkPacket* pkt) "we already saw another announcement" : "all media has been received already"; errorstream << "Client: Received media announcement but " - << problem << "! " - << " files=" << num_files - << " size=" << pkt->getSize() << std::endl; + << problem << "!" << std::endl; return; } @@ -672,16 +623,36 @@ void Client::handleCommand_AnnounceMedia(NetworkPacket* pkt) // updating content definitions sanity_check(!m_mesh_update_manager->isRunning()); - for (u16 i = 0; i < num_files; i++) { + if (m_proto_ver >= 48) { + // compressed table of media names + std::vector names; + { + std::istringstream iss(pkt->readLongString(), std::ios::binary); + std::stringstream ss(std::ios::in | std::ios::out | std::ios::binary); + decompressZstd(iss, ss); + names = deserializeString16Array(ss); + } + + // raw hash for each media file + for (auto &name : names) { + auto sha1_raw = pkt->readRawString(20); + m_media_downloader->addFile(name, sha1_raw); + } + } else { + u16 num_files; + *pkt >> num_files; + std::string name, sha1_base64; + for (u16 i = 0; i < num_files; i++) { + *pkt >> name >> sha1_base64; - *pkt >> name >> sha1_base64; - - std::string sha1_raw = base64_decode(sha1_base64); - m_media_downloader->addFile(name, sha1_raw); + std::string sha1_raw = base64_decode(sha1_base64); + m_media_downloader->addFile(name, sha1_raw); + } } { + // Remote media servers std::string str; *pkt >> str; @@ -700,18 +671,6 @@ void Client::handleCommand_AnnounceMedia(NetworkPacket* pkt) void Client::handleCommand_Media(NetworkPacket* pkt) { - /* - u16 command - u16 total number of file bunches - u16 index of this bunch - u32 number of files in this bunch - for each file { - u16 length of name - string name - u32 length of data - data - } - */ u16 num_bunches; u16 bunch_i; u32 num_files; @@ -738,6 +697,12 @@ void Client::handleCommand_Media(NetworkPacket* pkt) *pkt >> name; data = pkt->readLongString(); + if (m_proto_ver >= 48) { + std::istringstream iss(data, std::ios::binary); + std::ostringstream oss(std::ios::binary); + decompressZstd(iss, oss); + data = oss.str(); + } bool ok = false; if (init_phase) { @@ -772,7 +737,10 @@ void Client::handleCommand_NodeDef(NetworkPacket* pkt) // Decompress node definitions std::istringstream tmp_is(pkt->readLongString(), std::ios::binary); std::stringstream tmp_os(std::ios::binary | std::ios::in | std::ios::out); - decompressZlib(tmp_is, tmp_os); + if (m_proto_ver >= 48) + decompressZstd(tmp_is, tmp_os); + else + decompressZlib(tmp_is, tmp_os); // Deserialize node definitions m_nodedef->deSerialize(tmp_os, m_proto_ver); @@ -791,7 +759,10 @@ void Client::handleCommand_ItemDef(NetworkPacket* pkt) // Decompress item definitions std::istringstream tmp_is(pkt->readLongString(), std::ios::binary); std::stringstream tmp_os(std::ios::binary | std::ios::in | std::ios::out); - decompressZlib(tmp_is, tmp_os); + if (m_proto_ver >= 48) + decompressZstd(tmp_is, tmp_os); + else + decompressZlib(tmp_is, tmp_os); // Deserialize node definitions m_itemdef->deSerialize(tmp_os, m_proto_ver); @@ -851,6 +822,8 @@ void Client::handleCommand_PlaySound(NetworkPacket* pkt) pos = cao->getPosition() * (1.0f/BS); vel = cao->getVelocity() * (1.0f/BS); } + // Note that the server sends 'pos' correctly even for attached sounds, + // so this fallback path is not a mistake. m_sound->playSoundAt(client_id, spec, pos, vel); break; } @@ -883,7 +856,7 @@ void Client::handleCommand_StopSound(NetworkPacket* pkt) *pkt >> server_id; - std::unordered_map::iterator i = m_sounds_server_to_client.find(server_id); + auto i = m_sounds_server_to_client.find(server_id); if (i != m_sounds_server_to_client.end()) { int client_id = i->second; m_sound->stopSound(client_id); @@ -898,9 +871,7 @@ void Client::handleCommand_FadeSound(NetworkPacket *pkt) *pkt >> sound_id >> step >> gain; - std::unordered_map::const_iterator i = - m_sounds_server_to_client.find(sound_id); - + auto i = m_sounds_server_to_client.find(sound_id); if (i != m_sounds_server_to_client.end()) m_sound->fadeSound(i->second, step, gain); } @@ -958,8 +929,8 @@ void Client::handleCommand_DetachedInventory(NetworkPacket* pkt) inv = inv_it->second; } - u16 ignore; - *pkt >> ignore; // this used to be the length of the following string, ignore it + // this used to be the length of the following string, ignore it + pkt->skip(2); std::string contents(pkt->getRemainingString(), pkt->getRemainingBytes()); std::istringstream is(contents, std::ios::binary); @@ -1009,7 +980,7 @@ void Client::handleCommand_AddParticleSpawner(NetworkPacket* pkt) p.amount = readU16(is); p.time = readF32(is); if (p.time < 0) - throw SerializationError("particle spawner time < 0"); + throw PacketError("particle spawner time < 0"); bool missing_end_values = false; if (m_proto_ver >= 42) { @@ -1324,10 +1295,7 @@ void Client::handleCommand_HudSetSky(NetworkPacket* pkt) for (size_t i = 0; i < count; i++) skybox.textures.emplace_back(deSerializeString16(is)); - skybox.clouds = true; - try { - skybox.clouds = readU8(is); - } catch (...) {} + skybox.clouds = readU8(is) != 0; // Use default skybox settings: SunParams sun = SkyboxDefaults::getSunDefaults(); @@ -1530,7 +1498,19 @@ void Client::handleCommand_EyeOffset(NetworkPacket* pkt) *pkt >> player->eye_offset_third_front; } catch (PacketError &e) { player->eye_offset_third_front = player->eye_offset_third; - }; + } +} + +void Client::handleCommand_Camera(NetworkPacket* pkt) +{ + LocalPlayer *player = m_env.getLocalPlayer(); + assert(player); + + u8 tmp; + *pkt >> tmp; + player->allowed_camera_mode = static_cast(tmp); + + m_client_event_queue.push(new ClientEvent(CE_UPDATE_CAMERA)); } void Client::handleCommand_UpdatePlayerList(NetworkPacket* pkt) diff --git a/src/network/mtp/impl.cpp b/src/network/mtp/impl.cpp index 02ee6bfda..07bdfc735 100644 --- a/src/network/mtp/impl.cpp +++ b/src/network/mtp/impl.cpp @@ -53,6 +53,15 @@ u16 BufferedPacket::getSeqnum() const return readU16(&data[BASE_HEADER_SIZE + 1]); } +void BufferedPacket::setSenderPeerId(session_t id) +{ + if (size() < BASE_HEADER_SIZE) { + assert(false); // should never happen + return; + } + writeU16(&data[4], id); +} + BufferedPacketPtr makePacket(const Address &address, const SharedBuffer &data, u32 protocol_id, session_t sender_peer_id, u8 channel) { @@ -337,6 +346,13 @@ void ReliablePacketBuffer::insert(BufferedPacketPtr &p_ptr, u16 next_expected) m_oldest_non_answered_ack = m_list.front()->getSeqnum(); } +void ReliablePacketBuffer::fixPeerId(session_t new_id) +{ + MutexAutoLock listlock(m_list_mutex); + for (auto &packet : m_list) + packet->setSenderPeerId(new_id); +} + void ReliablePacketBuffer::incrementTimeouts(float dtime) { MutexAutoLock listlock(m_list_mutex); @@ -569,6 +585,13 @@ ConnectionCommandPtr ConnectionCommand::resend_one(session_t peer_id) return c; } +ConnectionCommandPtr ConnectionCommand::peer_id_set(session_t own_peer_id) +{ + auto c = create(CONNCMD_PEER_ID_SET); + c->peer_id = own_peer_id; + return c; +} + ConnectionCommandPtr ConnectionCommand::send(session_t peer_id, u8 channelnum, NetworkPacket *pkt, bool reliable) { @@ -1615,6 +1638,14 @@ void Connection::DisconnectPeer(session_t peer_id) putCommand(ConnectionCommand::disconnect_peer(peer_id)); } +void Connection::SetPeerID(session_t id) +{ + m_peer_id = id; + // fix peer id in existing queued reliable packets + if (id != PEER_ID_INEXISTENT) + putCommand(ConnectionCommand::peer_id_set(id)); +} + void Connection::doResendOne(session_t peer_id) { assert(peer_id != PEER_ID_INEXISTENT); diff --git a/src/network/mtp/impl.h b/src/network/mtp/impl.h index 1bc408a01..3f81fe27b 100644 --- a/src/network/mtp/impl.h +++ b/src/network/mtp/impl.h @@ -14,6 +14,7 @@ #include "network/networkprotocol.h" #include #include +#include #include namespace con @@ -24,7 +25,6 @@ class ConnectionSendThread; class Peer; -// FIXME: Peer refcounting should generally be replaced by std::shared_ptr class PeerHelper { public: @@ -256,7 +256,7 @@ protected: UDPPeer* createServerPeer(const Address& sender); bool deletePeer(session_t peer_id, bool timeout); - void SetPeerID(session_t id) { m_peer_id = id; } + void SetPeerID(session_t id); void doResendOne(session_t peer_id); diff --git a/src/network/mtp/internal.h b/src/network/mtp/internal.h index cc82b09f6..dc3ad55d7 100644 --- a/src/network/mtp/internal.h +++ b/src/network/mtp/internal.h @@ -33,7 +33,7 @@ channel: /* Packet types: -CONTROL: This is a packet used by the protocol. +PACKET_TYPE_CONTROL: This is a packet used by the protocol. - When this is processed, nothing is handed to the user. Header (2 byte): [0] u8 type @@ -48,25 +48,18 @@ controltype and data description: packet to get a reply CONTROLTYPE_DISCO */ -enum ControlType : u8 { - CONTROLTYPE_ACK = 0, - CONTROLTYPE_SET_PEER_ID = 1, - CONTROLTYPE_PING = 2, - CONTROLTYPE_DISCO = 3, -}; /* -ORIGINAL: This is a plain packet with no control and no error +PACKET_TYPE_ORIGINAL: This is a plain packet with no control and no error checking at all. - When this is processed, it is directly handed to the user. Header (1 byte): [0] u8 type */ -//#define TYPE_ORIGINAL 1 #define ORIGINAL_HEADER_SIZE 1 /* -SPLIT: These are sequences of packets forming one bigger piece of +PACKET_TYPE_SPLIT: These are sequences of packets forming one bigger piece of data. - When processed and all the packet_nums 0...packet_count-1 are present (this should be buffered), the resulting data shall be @@ -80,10 +73,9 @@ data. [3] u16 chunk_count [5] u16 chunk_num */ -//#define TYPE_SPLIT 2 /* -RELIABLE: Delivery of all RELIABLE packets shall be forced by ACKs, +PACKET_TYPE_RELIABLE: Delivery of all RELIABLE packets shall be forced by ACKs, and they shall be delivered in the same order as sent. This is done with a buffer in the receiving and transmitting end. - When this is processed, the contents of each packet is recursively @@ -93,15 +85,29 @@ with a buffer in the receiving and transmitting end. [1] u16 seqnum */ -//#define TYPE_RELIABLE 3 #define RELIABLE_HEADER_SIZE 3 #define SEQNUM_INITIAL 65500 #define SEQNUM_MAX 65535 +/****/ + +template +class ConstSharedPtr { +public: + ConstSharedPtr(T *ptr) : ptr(ptr) {} + ConstSharedPtr(const std::shared_ptr &ptr) : ptr(ptr) {} + + const T* get() const noexcept { return ptr.get(); } + const T& operator*() const noexcept { return *ptr.get(); } + const T* operator->() const noexcept { return ptr.get(); } + +private: + std::shared_ptr ptr; +}; + namespace con { - enum PacketType : u8 { PACKET_TYPE_CONTROL = 0, PACKET_TYPE_ORIGINAL = 1, @@ -110,6 +116,13 @@ enum PacketType : u8 { PACKET_TYPE_MAX }; +enum ControlType : u8 { + CONTROLTYPE_ACK = 0, + CONTROLTYPE_SET_PEER_ID = 1, + CONTROLTYPE_PING = 2, + CONTROLTYPE_DISCO = 3, +}; + inline bool seqnum_higher(u16 totest, u16 base) { if (totest > base) @@ -187,6 +200,7 @@ struct BufferedPacket { DISABLE_CLASS_COPY(BufferedPacket) u16 getSeqnum() const; + void setSenderPeerId(session_t id); inline size_t size() const { return m_data.size(); } @@ -250,6 +264,8 @@ public: BufferedPacketPtr popFirst(); BufferedPacketPtr popSeqnum(u16 seqnum); void insert(BufferedPacketPtr &p_ptr, u16 next_expected); + /// Adjusts the sender peer ID for all packets + void fixPeerId(session_t id); void incrementTimeouts(float dtime); u32 getTimedOuts(float timeout); @@ -307,7 +323,8 @@ enum ConnectionCommandType{ CONNCMD_SEND_TO_ALL, CONCMD_ACK, CONCMD_CREATE_PEER, - CONNCMD_RESEND_ONE + CONNCMD_RESEND_ONE, + CONNCMD_PEER_ID_SET }; // This is very similar to ConnectionEvent @@ -328,6 +345,7 @@ struct ConnectionCommand static ConnectionCommandPtr disconnect(); static ConnectionCommandPtr disconnect_peer(session_t peer_id); static ConnectionCommandPtr resend_one(session_t peer_id); + static ConnectionCommandPtr peer_id_set(session_t own_peer_id); static ConnectionCommandPtr send(session_t peer_id, u8 channelnum, NetworkPacket *pkt, bool reliable); static ConnectionCommandPtr ack(session_t peer_id, u8 channelnum, const Buffer &data); static ConnectionCommandPtr createPeer(session_t peer_id, const Buffer &data); diff --git a/src/network/mtp/threads.cpp b/src/network/mtp/threads.cpp index 9976e9a04..69853ad61 100644 --- a/src/network/mtp/threads.cpp +++ b/src/network/mtp/threads.cpp @@ -476,6 +476,11 @@ void ConnectionSendThread::processNonReliableCommand(ConnectionCommandPtr &c_ptr << " UDP processing CONNCMD_DISCONNECT_PEER" << std::endl); disconnect_peer(c.peer_id); return; + case CONNCMD_PEER_ID_SET: + LOG(dout_con << m_connection->getDesc() + << " UDP processing CONNCMD_PEER_ID_SET" << std::endl); + fix_peer_id(c.peer_id); + return; case CONNCMD_SEND: LOG(dout_con << m_connection->getDesc() << " UDP processing CONNCMD_SEND" << std::endl); @@ -579,6 +584,26 @@ void ConnectionSendThread::disconnect_peer(session_t peer_id) dynamic_cast(&peer)->m_pending_disconnect = true; } +void ConnectionSendThread::fix_peer_id(session_t own_peer_id) +{ + auto peer_ids = m_connection->getPeerIDs(); + for (const session_t peer_id : peer_ids) { + PeerHelper peer = m_connection->getPeerNoEx(peer_id); + if (!peer) + continue; + + auto *udp_peer = dynamic_cast(&peer); + if (!udp_peer) + continue; + + for (int ch = 0; ch < CHANNEL_COUNT; ch++) { + auto &channel = udp_peer->channels[ch]; + + channel.outgoing_reliables_sent.fixPeerId(own_peer_id); + } + } +} + void ConnectionSendThread::send(session_t peer_id, u8 channelnum, const SharedBuffer &data) { diff --git a/src/network/mtp/threads.h b/src/network/mtp/threads.h index bf660bddf..e5a1db2e5 100644 --- a/src/network/mtp/threads.h +++ b/src/network/mtp/threads.h @@ -70,6 +70,7 @@ private: void connect(Address address); void disconnect(); void disconnect_peer(session_t peer_id); + void fix_peer_id(session_t own_peer_id); void send(session_t peer_id, u8 channelnum, const SharedBuffer &data); void sendReliable(ConnectionCommandPtr &c); void sendToAll(u8 channelnum, const SharedBuffer &data); diff --git a/src/network/networkpacket.cpp b/src/network/networkpacket.cpp index 7c82b2199..ca7c53f5f 100644 --- a/src/network/networkpacket.cpp +++ b/src/network/networkpacket.cpp @@ -49,7 +49,13 @@ const char* NetworkPacket::getString(u32 from_offset) const { checkReadOffset(from_offset, 0); - return (char*)&m_data[from_offset]; + return reinterpret_cast(&m_data[from_offset]); +} + +void NetworkPacket::skip(u32 count) +{ + checkReadOffset(m_read_offset, count); + m_read_offset += count; } void NetworkPacket::putRawString(const char* src, u32 len) @@ -63,6 +69,18 @@ void NetworkPacket::putRawString(const char* src, u32 len) m_read_offset += len; } +void NetworkPacket::readRawString(char *dst, u32 len) +{ + checkReadOffset(m_read_offset, len); + + if (len == 0) + return; + + memcpy(dst, &m_data[m_read_offset], len); + m_read_offset += len; +} + + NetworkPacket& NetworkPacket::operator>>(std::string& dst) { checkReadOffset(m_read_offset, 2); @@ -311,24 +329,6 @@ NetworkPacket& NetworkPacket::operator>>(u8& dst) return *this; } -u8 NetworkPacket::getU8(u32 offset) -{ - checkReadOffset(offset, 1); - - return readU8(&m_data[offset]); -} - -u8* NetworkPacket::getU8Ptr(u32 from_offset) -{ - if (m_datasize == 0) { - return NULL; - } - - checkReadOffset(from_offset, 1); - - return &m_data[from_offset]; -} - NetworkPacket& NetworkPacket::operator>>(u16& dst) { checkReadOffset(m_read_offset, 2); @@ -339,13 +339,6 @@ NetworkPacket& NetworkPacket::operator>>(u16& dst) return *this; } -u16 NetworkPacket::getU16(u32 from_offset) -{ - checkReadOffset(from_offset, 2); - - return readU16(&m_data[from_offset]); -} - NetworkPacket& NetworkPacket::operator>>(u32& dst) { checkReadOffset(m_read_offset, 4); diff --git a/src/network/networkpacket.h b/src/network/networkpacket.h index 4e4fd78bb..107d07cfd 100644 --- a/src/network/networkpacket.h +++ b/src/network/networkpacket.h @@ -8,6 +8,8 @@ #include "irrlichttypes_bloated.h" #include "networkprotocol.h" #include +#include +#include #include class NetworkPacket @@ -35,18 +37,32 @@ public: session_t getPeerId() const { return m_peer_id; } u16 getCommand() const { return m_command; } u32 getRemainingBytes() const { return m_datasize - m_read_offset; } - const char *getRemainingString() { return getString(m_read_offset); } - // Returns a c-string without copying. + // Returns a pointer to buffer data. // A better name for this would be getRawString() const char *getString(u32 from_offset) const; - // major difference to putCString(): doesn't write len into the buffer + const char *getRemainingString() const { return getString(m_read_offset); } + + // Perform length check and skip ahead by `count` bytes. + void skip(u32 count); + + // Appends bytes from string buffer to packet void putRawString(const char *src, u32 len); void putRawString(std::string_view src) { putRawString(src.data(), src.size()); } + // Reads bytes from packet into string buffer + void readRawString(char *dst, u32 len); + std::string readRawString(u32 len) + { + std::string s; + s.resize(len); + readRawString(&s[0], len); + return s; + } + NetworkPacket &operator>>(std::string &dst); NetworkPacket &operator<<(std::string_view src); @@ -63,14 +79,9 @@ public: NetworkPacket &operator>>(bool &dst); NetworkPacket &operator<<(bool src); - u8 getU8(u32 offset); - NetworkPacket &operator>>(u8 &dst); NetworkPacket &operator<<(u8 src); - u8 *getU8Ptr(u32 offset); - - u16 getU16(u32 from_offset); NetworkPacket &operator>>(u16 &dst); NetworkPacket &operator<<(u16 src); @@ -114,6 +125,7 @@ public: private: void checkReadOffset(u32 from_offset, u32 field_size) const; + // resize data buffer for writing inline void checkDataSize(u32 field_size) { if (m_read_offset + field_size > m_datasize) { @@ -124,7 +136,7 @@ private: std::vector m_data; u32 m_datasize = 0; - u32 m_read_offset = 0; + u32 m_read_offset = 0; // read and write offset u16 m_command = 0; session_t m_peer_id = 0; }; diff --git a/src/network/networkprotocol.cpp b/src/network/networkprotocol.cpp index 6884be504..5d4bd6edf 100644 --- a/src/network/networkprotocol.cpp +++ b/src/network/networkprotocol.cpp @@ -63,9 +63,13 @@ Add particle blend mode "clip" Add artificial light color, beta_r0, vignette, specular intensity, foliage translucency and cdl parameters to Lighting packets [scheduled bump for 5.11.0] + PROTOCOL VERSION 48 + Add compression to some existing packets + [scheduled bump for 5.12.0] */ -const u16 LATEST_PROTOCOL_VERSION = 47; +// Note: Also update core.protocol_versions in builtin when bumping +const u16 LATEST_PROTOCOL_VERSION = 48; // See also formspec [Version History] in doc/lua_api.md const u16 FORMSPEC_API_VERSION = 8; diff --git a/src/network/networkprotocol.h b/src/network/networkprotocol.h index 0d63bd24f..5ce3f4221 100644 --- a/src/network/networkprotocol.h +++ b/src/network/networkprotocol.h @@ -4,8 +4,7 @@ #pragma once -#include "irrTypes.h" -using namespace irr; +#include "irrlichttypes.h" extern const u16 LATEST_PROTOCOL_VERSION; @@ -33,24 +32,28 @@ enum ToClientCommand : u16 u32 supported auth methods std::string unused (used to be username) */ + TOCLIENT_AUTH_ACCEPT = 0x03, /* Message from server to accept auth. - v3s16 player's position + v3f(0,BS/2,0) floatToInt'd + v3f unused u64 map seed f1000 recommended send interval u32 : supported auth methods for sudo mode (where the user can change their password) */ + TOCLIENT_ACCEPT_SUDO_MODE = 0x04, /* Sent to client to show it is in sudo mode now. */ + TOCLIENT_DENY_SUDO_MODE = 0x05, /* Signals client that sudo mode auth failed. */ + TOCLIENT_ACCESS_DENIED = 0x0A, /* u8 reason @@ -59,18 +62,26 @@ enum ToClientCommand : u16 */ TOCLIENT_BLOCKDATA = 0x20, + /* + v3s16 position + serialized MapBlock + */ + TOCLIENT_ADDNODE = 0x21, /* v3s16 position serialized mapnode - u8 keep_metadata // Added in protocol version 22 + u8 keep_metadata */ + TOCLIENT_REMOVENODE = 0x22, + /* + v3s16 position + */ TOCLIENT_INVENTORY = 0x27, /* - [0] u16 command - [2] serialized inventory + serialized inventory */ TOCLIENT_TIME_OF_DAY = 0x29, @@ -167,40 +178,38 @@ enum ToClientCommand : u16 TOCLIENT_MEDIA = 0x38, /* - u16 total number of texture bunches + u16 total number of bunches u16 index of this bunch u32 number of files in this bunch for each file { u16 length of name string name u32 length of data - data + data (zstd-compressed) } - u16 length of remote media server url (if applicable) - string url */ TOCLIENT_NODEDEF = 0x3a, /* - u32 length of the next item - serialized NodeDefManager + u32 length of buffer + serialized NodeDefManager (zstd-compressed) */ TOCLIENT_ANNOUNCE_MEDIA = 0x3c, /* - u32 number of files - for each texture { - u16 length of name - string name - u16 length of sha1_digest - string sha1_digest + u32 length of compressed name array + string16array names (zstd-compressed) + for each file { + char[20] sha1_digest } + u16 length of remote media server url + string url */ TOCLIENT_ITEMDEF = 0x3d, /* - u32 length of next item - serialized ItemDefManager + u32 length of buffer + serialized ItemDefManager (zstd-compressed) */ TOCLIENT_PLAY_SOUND = 0x3f, @@ -442,6 +451,11 @@ enum ToClientCommand : u16 */ + TOCLIENT_CAMERA = 0x48, + /* + u8 allowed_camera_mode + */ + TOCLIENT_HUDADD = 0x49, /* u32 id @@ -716,18 +730,16 @@ enum ToServerCommand : u16 TOSERVER_PLAYERPOS = 0x23, /* - [0] u16 command - [2] v3s32 position*100 - [2+12] v3s32 speed*100 - [2+12+12] s32 pitch*100 - [2+12+12+4] s32 yaw*100 - [2+12+12+4+4] u32 keyPressed - [2+12+12+4+4+4] u8 fov*80 - [2+12+12+4+4+4+1] u8 ceil(wanted_range / MAP_BLOCKSIZE) - [2+12+12+4+4+4+1+1] u8 camera_inverted (bool) - [2+12+12+4+4+4+1+1+1] f32 movement_speed - [2+12+12+4+4+4+1+1+1+4] f32 movement_direction - + v3s32 position*100 + v3s32 speed*100 + s32 pitch*100 + s32 yaw*100 + u32 keyPressed + u8 fov*80 + u8 ceil(wanted_range / MAP_BLOCKSIZE) + u8 camera_inverted (bool) + f32 movement_speed + f32 movement_direction */ TOSERVER_GOTBLOCKS = 0x24, diff --git a/src/network/serveropcodes.cpp b/src/network/serveropcodes.cpp index 43febbb1b..b50e13082 100644 --- a/src/network/serveropcodes.cpp +++ b/src/network/serveropcodes.cpp @@ -183,7 +183,7 @@ const ClientCommandFactory clientCommandFactoryTable[TOCLIENT_NUM_MSG_TYPES] = { "TOCLIENT_MOVEMENT", 0, true }, // 0x45 { "TOCLIENT_SPAWN_PARTICLE", 0, true }, // 0x46 { "TOCLIENT_ADD_PARTICLESPAWNER", 0, true }, // 0x47 - null_command_factory, // 0x48 + { "TOCLIENT_CAMERA", 0, true }, // 0x48 { "TOCLIENT_HUDADD", 1, true }, // 0x49 { "TOCLIENT_HUDRM", 1, true }, // 0x4a { "TOCLIENT_HUDCHANGE", 1, true }, // 0x4b diff --git a/src/network/serverpackethandler.cpp b/src/network/serverpackethandler.cpp index 89fe3bf22..d9a38e878 100644 --- a/src/network/serverpackethandler.cpp +++ b/src/network/serverpackethandler.cpp @@ -30,6 +30,8 @@ #include "util/srp.h" #include "clientdynamicinfo.h" +#include + void Server::handleCommand_Deprecated(NetworkPacket* pkt) { infostream << "Server: " << toServerCommandTable[pkt->getCommand()].name @@ -323,13 +325,6 @@ void Server::handleCommand_Init2(NetworkPacket* pkt) SendTimeOfDay(peer_id, time, time_speed); SendCSMRestrictionFlags(peer_id); - - // Warnings about protocol version can be issued here - if (client->net_proto_version < LATEST_PROTOCOL_VERSION) { - SendChatMessage(peer_id, ChatMessage(CHATMESSAGE_TYPE_SYSTEM, - L"# Server: WARNING: YOUR CLIENT'S VERSION MAY NOT BE FULLY COMPATIBLE " - L"WITH THIS SERVER!")); - } } void Server::handleCommand_RequestMedia(NetworkPacket* pkt) @@ -419,13 +414,10 @@ void Server::handleCommand_GotBlocks(NetworkPacket* pkt) u8 count; *pkt >> count; - if ((s16)pkt->getSize() < 1 + (int)count * 6) { - throw con::InvalidIncomingDataException - ("GOTBLOCKS length is too short"); - } - ClientInterface::AutoLock lock(m_clients); RemoteClient *client = m_clients.lockedGetClientNoEx(pkt->getPeerId()); + if (!client) + return; for (u16 i = 0; i < count; i++) { v3s16 p; @@ -468,7 +460,11 @@ void Server::process_PlayerPos(RemotePlayer *player, PlayerSAO *playersao, *pkt >> bits; if (pkt->getRemainingBytes() >= 8) { - *pkt >> player->control.movement_speed; + f32 movement_speed; + *pkt >> movement_speed; + if (movement_speed != movement_speed) // NaN + movement_speed = 0.0f; + player->control.movement_speed = std::clamp(movement_speed, 0.0f, 1.0f); *pkt >> player->control.movement_direction; } else { player->control.movement_speed = 0.0f; @@ -505,20 +501,14 @@ void Server::handleCommand_PlayerPos(NetworkPacket* pkt) { session_t peer_id = pkt->getPeerId(); RemotePlayer *player = m_env->getPlayer(peer_id); - if (player == NULL) { - errorstream << - "Server::ProcessData(): Canceling: No player for peer_id=" << - peer_id << " disconnecting peer!" << std::endl; - DisconnectPeer(peer_id); + if (!player) { + warningstream << FUNCTION_NAME << ": player is null" << std::endl; return; } PlayerSAO *playersao = player->getPlayerSAO(); - if (playersao == NULL) { - errorstream << - "Server::ProcessData(): Canceling: No player object for peer_id=" << - peer_id << " disconnecting peer!" << std::endl; - DisconnectPeer(peer_id); + if (!playersao) { + warningstream << FUNCTION_NAME << ": player SAO is null" << std::endl; return; } @@ -548,12 +538,10 @@ void Server::handleCommand_DeletedBlocks(NetworkPacket* pkt) u8 count; *pkt >> count; - RemoteClient *client = getClient(pkt->getPeerId()); - - if ((s16)pkt->getSize() < 1 + (int)count * 6) { - throw con::InvalidIncomingDataException - ("DELETEDBLOCKS length is too short"); - } + ClientInterface::AutoLock lock(m_clients); + RemoteClient *client = m_clients.lockedGetClientNoEx(pkt->getPeerId()); + if (!client) + return; for (u16 i = 0; i < count; i++) { v3s16 p; @@ -566,28 +554,19 @@ void Server::handleCommand_InventoryAction(NetworkPacket* pkt) { session_t peer_id = pkt->getPeerId(); RemotePlayer *player = m_env->getPlayer(peer_id); - - if (player == NULL) { - errorstream << - "Server::ProcessData(): Canceling: No player for peer_id=" << - peer_id << " disconnecting peer!" << std::endl; - DisconnectPeer(peer_id); + if (!player) { + warningstream << FUNCTION_NAME << ": player is null" << std::endl; return; } PlayerSAO *playersao = player->getPlayerSAO(); - if (playersao == NULL) { - errorstream << - "Server::ProcessData(): Canceling: No player object for peer_id=" << - peer_id << " disconnecting peer!" << std::endl; - DisconnectPeer(peer_id); + if (!playersao) { + warningstream << FUNCTION_NAME << ": player SAO is null" << std::endl; return; } // Strip command and create a stream std::string datastring(pkt->getString(0), pkt->getSize()); - verbosestream << "TOSERVER_INVENTORY_ACTION: data=" << datastring - << std::endl; std::istringstream is(datastring, std::ios_base::binary); // Create an action std::unique_ptr a(InventoryAction::deSerialize(is)); @@ -607,6 +586,24 @@ void Server::handleCommand_InventoryAction(NetworkPacket* pkt) where the client made a bad prediction. */ + auto mark_player_inv_list_dirty = [this](const InventoryLocation &loc, + const std::string &list_name) { + + // Undo the client prediction of the affected list. See `clientApply`. + if (loc.type != InventoryLocation::PLAYER) + return; + + Inventory *inv = m_inventory_mgr->getInventory(loc); + if (!inv) + return; + + InventoryList *list = inv->getList(list_name); + if (!list) + return; + + list->setModified(true); + }; + const bool player_has_interact = checkPriv(player->getName(), "interact"); auto check_inv_access = [player, player_has_interact, this] ( @@ -651,8 +648,12 @@ void Server::handleCommand_InventoryAction(NetworkPacket* pkt) ma->to_inv.applyCurrentPlayer(player->getName()); m_inventory_mgr->setInventoryModified(ma->from_inv); - if (ma->from_inv != ma->to_inv) + mark_player_inv_list_dirty(ma->from_inv, ma->from_list); + bool inv_different = ma->from_inv != ma->to_inv; + if (inv_different) m_inventory_mgr->setInventoryModified(ma->to_inv); + if (inv_different || ma->from_list != ma->to_list) + mark_player_inv_list_dirty(ma->to_inv, ma->to_list); if (!check_inv_access(ma->from_inv) || !check_inv_access(ma->to_inv)) @@ -689,6 +690,7 @@ void Server::handleCommand_InventoryAction(NetworkPacket* pkt) da->from_inv.applyCurrentPlayer(player->getName()); m_inventory_mgr->setInventoryModified(da->from_inv); + mark_player_inv_list_dirty(da->from_inv, da->from_list); /* Disable dropping items out of craftpreview @@ -721,6 +723,7 @@ void Server::handleCommand_InventoryAction(NetworkPacket* pkt) ca->craft_inv.applyCurrentPlayer(player->getName()); m_inventory_mgr->setInventoryModified(ca->craft_inv); + // Note: `ICraftAction::clientApply` is empty, thus nothing to revert. // Disallow crafting if not allowed to interact if (!player_has_interact) { @@ -747,15 +750,12 @@ void Server::handleCommand_ChatMessage(NetworkPacket* pkt) session_t peer_id = pkt->getPeerId(); RemotePlayer *player = m_env->getPlayer(peer_id); - if (player == NULL) { - errorstream << - "Server::ProcessData(): Canceling: No player for peer_id=" << - peer_id << " disconnecting peer!" << std::endl; - DisconnectPeer(peer_id); + if (!player) { + warningstream << FUNCTION_NAME << ": player is null" << std::endl; return; } - std::string name = player->getName(); + const auto &name = player->getName(); std::wstring answer_to_sender = handleChat(name, message, true, player); if (!answer_to_sender.empty()) { @@ -773,29 +773,22 @@ void Server::handleCommand_Damage(NetworkPacket* pkt) session_t peer_id = pkt->getPeerId(); RemotePlayer *player = m_env->getPlayer(peer_id); - - if (player == NULL) { - errorstream << - "Server::ProcessData(): Canceling: No player for peer_id=" << - peer_id << " disconnecting peer!" << std::endl; - DisconnectPeer(peer_id); + if (!player) { + warningstream << FUNCTION_NAME << ": player is null" << std::endl; return; } PlayerSAO *playersao = player->getPlayerSAO(); - if (playersao == NULL) { - errorstream << - "Server::ProcessData(): Canceling: No player object for peer_id=" << - peer_id << " disconnecting peer!" << std::endl; - DisconnectPeer(peer_id); + if (!playersao) { + warningstream << FUNCTION_NAME << ": player SAO is null" << std::endl; return; } if (!playersao->isImmortal()) { if (playersao->isDead()) { - verbosestream << "Server::ProcessData(): Info: " + verbosestream << "Server: " "Ignoring damage as player " << player->getName() - << " is already dead." << std::endl; + << " is already dead" << std::endl; return; } @@ -815,21 +808,14 @@ void Server::handleCommand_PlayerItem(NetworkPacket* pkt) session_t peer_id = pkt->getPeerId(); RemotePlayer *player = m_env->getPlayer(peer_id); - - if (player == NULL) { - errorstream << - "Server::ProcessData(): Canceling: No player for peer_id=" << - peer_id << " disconnecting peer!" << std::endl; - DisconnectPeer(peer_id); + if (!player) { + warningstream << FUNCTION_NAME << ": player is null" << std::endl; return; } PlayerSAO *playersao = player->getPlayerSAO(); - if (playersao == NULL) { - errorstream << - "Server::ProcessData(): Canceling: No player object for peer_id=" << - peer_id << " disconnecting peer!" << std::endl; - DisconnectPeer(peer_id); + if (!playersao) { + warningstream << FUNCTION_NAME << ": player SAO is null" << std::endl; return; } @@ -838,7 +824,7 @@ void Server::handleCommand_PlayerItem(NetworkPacket* pkt) *pkt >> item; if (item >= player->getMaxHotbarItemcount()) { - actionstream << "Player: " << player->getName() + actionstream << "Player " << player->getName() << " tried to access item=" << item << " out of hotbar_itemcount=" << player->getMaxHotbarItemcount() @@ -852,8 +838,8 @@ void Server::handleCommand_PlayerItem(NetworkPacket* pkt) bool Server::checkInteractDistance(RemotePlayer *player, const f32 d, const std::string &what) { ItemStack selected_item, hand_item; - player->getWieldedItem(&selected_item, &hand_item); - f32 max_d = BS * getToolRange(selected_item, hand_item, m_itemdef); + const ItemStack &tool_item = player->getWieldedItem(&selected_item, &hand_item); + f32 max_d = BS * getToolRange(tool_item, hand_item, m_itemdef); // Cube diagonal * 1.5 for maximal supported node extents: // sqrt(3) * 1.5 ≅ 2.6 @@ -903,21 +889,14 @@ void Server::handleCommand_Interact(NetworkPacket *pkt) session_t peer_id = pkt->getPeerId(); RemotePlayer *player = m_env->getPlayer(peer_id); - - if (player == NULL) { - errorstream << - "Server::ProcessData(): Canceling: No player for peer_id=" << - peer_id << " disconnecting peer!" << std::endl; - DisconnectPeer(peer_id); + if (!player) { + warningstream << FUNCTION_NAME << ": player is null" << std::endl; return; } PlayerSAO *playersao = player->getPlayerSAO(); - if (playersao == NULL) { - errorstream << - "Server::ProcessData(): Canceling: No player object for peer_id=" << - peer_id << " disconnecting peer!" << std::endl; - DisconnectPeer(peer_id); + if (!playersao) { + warningstream << FUNCTION_NAME << ": player SAO is null" << std::endl; return; } @@ -942,7 +921,7 @@ void Server::handleCommand_Interact(NetworkPacket *pkt) // Update wielded item if (item_i >= player->getMaxHotbarItemcount()) { - actionstream << "Player: " << player->getName() + actionstream << "Player " << player->getName() << " tried to access item=" << item_i << " out of hotbar_itemcount=" << player->getMaxHotbarItemcount() @@ -1061,7 +1040,7 @@ void Server::handleCommand_Interact(NetworkPacket *pkt) ItemStack selected_item, hand_item; ItemStack tool_item = playersao->getWieldedItem(&selected_item, &hand_item); ToolCapabilities toolcap = - tool_item.getToolCapabilities(m_itemdef); + tool_item.getToolCapabilities(m_itemdef, &hand_item); v3f dir = (pointed_object->getBasePosition() - (playersao->getBasePosition() + playersao->getEyeOffset()) ).normalize(); @@ -1118,12 +1097,12 @@ void Server::handleCommand_Interact(NetworkPacket *pkt) // Get player's wielded item // See also: Game::handleDigging ItemStack selected_item, hand_item; - player->getWieldedItem(&selected_item, &hand_item); + ItemStack &tool_item = player->getWieldedItem(&selected_item, &hand_item); // Get diggability and expected digging time DigParams params = getDigParams(m_nodedef->get(n).groups, - &selected_item.getToolCapabilities(m_itemdef), - selected_item.wear); + &tool_item.getToolCapabilities(m_itemdef, &hand_item), + tool_item.wear); // If can't dig, try hand if (!params.diggable) { params = getDigParams(m_nodedef->get(n).groups, @@ -1333,21 +1312,14 @@ void Server::handleCommand_NodeMetaFields(NetworkPacket* pkt) { session_t peer_id = pkt->getPeerId(); RemotePlayer *player = m_env->getPlayer(peer_id); - - if (player == NULL) { - errorstream << - "Server::ProcessData(): Canceling: No player for peer_id=" << - peer_id << " disconnecting peer!" << std::endl; - DisconnectPeer(peer_id); + if (!player) { + warningstream << FUNCTION_NAME << ": player is null" << std::endl; return; } PlayerSAO *playersao = player->getPlayerSAO(); - if (playersao == NULL) { - errorstream << - "Server::ProcessData(): Canceling: No player object for peer_id=" << - peer_id << " disconnecting peer!" << std::endl; - DisconnectPeer(peer_id); + if (!playersao) { + warningstream << FUNCTION_NAME << ": player SAO is null" << std::endl; return; } @@ -1420,25 +1392,26 @@ void Server::handleCommand_InventoryFields(NetworkPacket* pkt) } // verify that we displayed the formspec to the user - const auto peer_state_iterator = m_formspec_state_data.find(peer_id); - if (peer_state_iterator != m_formspec_state_data.end()) { - const std::string &server_formspec_name = peer_state_iterator->second; + const auto it = m_formspec_state_data.find(peer_id); + if (it != m_formspec_state_data.end()) { + const auto &server_formspec_name = it->second; if (client_formspec_name == server_formspec_name) { - auto it = fields.find("quit"); - if (it != fields.end() && it->second == "true") - m_formspec_state_data.erase(peer_state_iterator); + // delete state if formspec was closed + auto it2 = fields.find("quit"); + if (it2 != fields.end() && it2->second == "true") + m_formspec_state_data.erase(it); m_script->on_playerReceiveFields(playersao, client_formspec_name, fields); return; } - actionstream << "'" << player->getName() - << "' submitted formspec ('" << client_formspec_name + actionstream << player->getName() + << " submitted formspec ('" << client_formspec_name << "') but the name of the formspec doesn't match the" " expected name ('" << server_formspec_name << "')"; } else { - actionstream << "'" << player->getName() - << "' submitted formspec ('" << client_formspec_name + actionstream << player->getName() + << " submitted formspec ('" << client_formspec_name << "') but server hasn't sent formspec to client"; } actionstream << ", possible exploitation attempt" << std::endl; diff --git a/src/network/socket.cpp b/src/network/socket.cpp index 112230f00..397b5ea51 100644 --- a/src/network/socket.cpp +++ b/src/network/socket.cpp @@ -87,25 +87,16 @@ bool UDPSocket::init(bool ipv6, bool noExceptions) m_handle = socket(m_addr_family, SOCK_DGRAM, IPPROTO_UDP); if (m_handle < 0) { - if (noExceptions) { + auto msg = std::string("Failed to create socket: ") + + SOCKET_ERR_STR(LAST_SOCKET_ERR()); + verbosestream << msg << std::endl; + if (noExceptions) return false; - } - - throw SocketException(std::string("Failed to create socket: error ") + - SOCKET_ERR_STR(LAST_SOCKET_ERR())); + throw SocketException(msg); } setTimeoutMs(0); - if (m_addr_family == AF_INET6) { - // Allow our socket to accept both IPv4 and IPv6 connections - // required on Windows: - // https://msdn.microsoft.com/en-us/library/windows/desktop/bb513665(v=vs.85).aspx - int value = 0; - setsockopt(m_handle, IPPROTO_IPV6, IPV6_V6ONLY, - reinterpret_cast(&value), sizeof(value)); - } - return true; } @@ -129,6 +120,20 @@ void UDPSocket::Bind(Address addr) throw SocketException(errmsg); } + if (m_addr_family == AF_INET6) { + // Allow our socket to accept both IPv4 and IPv6 connections + // required on Windows: + // + int value = 0; + if (setsockopt(m_handle, IPPROTO_IPV6, IPV6_V6ONLY, + reinterpret_cast(&value), sizeof(value)) != 0) { + auto errmsg = SOCKET_ERR_STR(LAST_SOCKET_ERR()); + errorstream << "Failed to disable V6ONLY: " << errmsg + << "\nTry disabling ipv6_server to fix this." << std::endl; + throw SocketException(errmsg); + } + } + int ret = 0; if (m_addr_family == AF_INET6) { diff --git a/src/nodedef.cpp b/src/nodedef.cpp index a82738505..8ef6f8493 100644 --- a/src/nodedef.cpp +++ b/src/nodedef.cpp @@ -669,7 +669,7 @@ void ContentFeatures::deSerialize(std::istream &is, u16 protocol_version) #if CHECK_CLIENT_BUILD() static void fillTileAttribs(ITextureSource *tsrc, TileLayer *layer, const TileSpec &tile, const TileDef &tiledef, video::SColor color, - u8 material_type, u32 shader_id, bool backface_culling, + MaterialType material_type, u32 shader_id, bool backface_culling, const TextureSettings &tsettings) { layer->shader_id = shader_id; @@ -919,6 +919,8 @@ void ContentFeatures::updateTextures(ITextureSource *tsrc, IShaderSource *shdsrc fillTileAttribs(tsrc, &tiles[j].layers[1], tiles[j], tdef_overlay[j], color, overlay_material, overlay_shader, tdef[j].backface_culling, tsettings); + + tiles[j].layers[0].need_polygon_offset = !tiles[j].layers[1].empty(); } MaterialType special_material = material_type; @@ -1067,8 +1069,7 @@ void NodeDefManager::clear() bool NodeDefManager::getId(const std::string &name, content_t &result) const { - std::unordered_map::const_iterator - i = m_name_id_mapping_with_aliases.find(name); + auto i = m_name_id_mapping_with_aliases.find(name); if(i == m_name_id_mapping_with_aliases.end()) return false; result = i->second; @@ -1298,7 +1299,7 @@ content_t NodeDefManager::set(const std::string &name, const ContentFeatures &de // Get new id id = allocateId(); if (id == CONTENT_IGNORE) { - warningstream << "NodeDefManager: Absolute " + errorstream << "NodeDefManager: Absolute " "limit reached" << std::endl; return CONTENT_IGNORE; } @@ -1306,15 +1307,14 @@ content_t NodeDefManager::set(const std::string &name, const ContentFeatures &de addNameIdMapping(id, name); } - // If there is already ContentFeatures registered for this id, clear old groups - if (id < m_content_features.size()) - eraseIdFromGroups(id); + // Clear old groups in case of re-registration + eraseIdFromGroups(id); m_content_features[id] = def; m_content_features[id].floats = itemgroup_get(def.groups, "float") != 0; m_content_lighting_flag_cache[id] = def.getLightingFlags(); - verbosestream << "NodeDefManager: registering content id \"" << id - << "\": name=\"" << def.name << "\""<= m_content_features.size()) - m_content_features.resize((u32)(i) + 1); + m_content_features.resize((size_t)(i) + 1); m_content_features[i] = f; m_content_features[i].floats = itemgroup_get(f.groups, "float") != 0; m_content_lighting_flag_cache[i] = f.getLightingFlags(); @@ -1597,13 +1596,6 @@ void NodeDefManager::resetNodeResolveState() m_pending_resolve_callbacks.clear(); } -static void removeDupes(std::vector &list) -{ - std::sort(list.begin(), list.end()); - auto new_end = std::unique(list.begin(), list.end()); - list.erase(new_end, list.end()); -} - void NodeDefManager::resolveCrossrefs() { for (ContentFeatures &f : m_content_features) { @@ -1618,7 +1610,7 @@ void NodeDefManager::resolveCrossrefs() for (const std::string &name : f.connects_to) { getIds(name, f.connects_to_ids); } - removeDupes(f.connects_to_ids); + SORT_AND_UNIQUE(f.connects_to_ids); } } diff --git a/src/nodedef.h b/src/nodedef.h index 24bb0c460..71a61896b 100644 --- a/src/nodedef.h +++ b/src/nodedef.h @@ -7,6 +7,7 @@ #include "irrlichttypes_bloated.h" #include #include +#include // shared_ptr #include #include "mapnode.h" #include "nameidmapping.h" diff --git a/src/nodetimer.cpp b/src/nodetimer.cpp index 04ea3d5bc..bdf842a26 100644 --- a/src/nodetimer.cpp +++ b/src/nodetimer.cpp @@ -117,7 +117,7 @@ std::vector NodeTimerList::step(float dtime) if (m_next_trigger_time == -1. || m_time < m_next_trigger_time) { return elapsed_timers; } - std::multimap::iterator i = m_timers.begin(); + auto i = m_timers.begin(); // Process timers for (; i != m_timers.end() && i->first <= m_time; ++i) { NodeTimer t = i->second; diff --git a/src/nodetimer.h b/src/nodetimer.h index a61abf172..c2990c166 100644 --- a/src/nodetimer.h +++ b/src/nodetimer.h @@ -50,8 +50,7 @@ public: // Get timer NodeTimer get(const v3s16 &p) { - std::map::iterator>::iterator n = - m_iterators.find(p); + auto n = m_iterators.find(p); if (n == m_iterators.end()) return NodeTimer(); NodeTimer t = n->second->second; @@ -60,8 +59,7 @@ public: } // Deletes timer void remove(v3s16 p) { - std::map::iterator>::iterator n = - m_iterators.find(p); + auto n = m_iterators.find(p); if(n != m_iterators.end()) { double removed_time = n->second->first; m_timers.erase(n->second); @@ -81,7 +79,7 @@ public: void insert(const NodeTimer &timer) { v3s16 p = timer.position; double trigger_time = m_time + (double)(timer.timeout - timer.elapsed); - std::multimap::iterator it = m_timers.emplace(trigger_time, timer); + auto it = m_timers.emplace(trigger_time, timer); m_iterators.emplace(p, it); if (m_next_trigger_time == -1. || trigger_time < m_next_trigger_time) m_next_trigger_time = trigger_time; diff --git a/src/noise.cpp b/src/noise.cpp index ee1f1acdb..347780b1a 100644 --- a/src/noise.cpp +++ b/src/noise.cpp @@ -38,7 +38,9 @@ // Unsigned magic seed prevents undefined behavior. #define NOISE_MAGIC_SEED 1013U -FlagDesc flagdesc_noiseparams[] = { +#define myfloor(x) ((x) < 0 ? (int)(x) - 1 : (int)(x)) + +const FlagDesc flagdesc_noiseparams[] = { {"defaults", NOISE_FLAG_DEFAULTS}, {"eased", NOISE_FLAG_EASED}, {"absvalue", NOISE_FLAG_ABSVALUE}, @@ -160,8 +162,8 @@ void PcgRandom::getState(u64 state[2]) const void PcgRandom::setState(const u64 state[2]) { - m_state = state[0]; - m_inc = state[1]; + m_state = state[0]; + m_inc = state[1]; } /////////////////////////////////////////////////////////////////////////////// @@ -232,7 +234,7 @@ inline float triLinearInterpolation( return linearInterpolation(u, v, z); } -float noise2d_gradient(float x, float y, s32 seed, bool eased) +float noise2d_value(float x, float y, s32 seed, bool eased) { // Calculate the integer coordinates int x0 = myfloor(x); @@ -250,7 +252,7 @@ float noise2d_gradient(float x, float y, s32 seed, bool eased) } -float noise3d_gradient(float x, float y, float z, s32 seed, bool eased) +float noise3d_value(float x, float y, float z, s32 seed, bool eased) { // Calculate the integer coordinates int x0 = myfloor(x); @@ -278,7 +280,7 @@ float noise3d_gradient(float x, float y, float z, s32 seed, bool eased) } -float noise2d_perlin(float x, float y, s32 seed, +float noise2d_fractal(float x, float y, s32 seed, int octaves, float persistence, bool eased) { float a = 0; @@ -286,7 +288,7 @@ float noise2d_perlin(float x, float y, s32 seed, float g = 1.0; for (int i = 0; i < octaves; i++) { - a += g * noise2d_gradient(x * f, y * f, seed + i, eased); + a += g * noise2d_value(x * f, y * f, seed + i, eased); f *= 2.0; g *= persistence; } @@ -303,10 +305,10 @@ float contour(float v) } -///////////////////////// [ New noise ] //////////////////////////// +///////////////////////// [ Fractal value noise ] //////////////////////////// -float NoisePerlin2D(const NoiseParams *np, float x, float y, s32 seed) +float NoiseFractal2D(const NoiseParams *np, float x, float y, s32 seed) { float a = 0; float f = 1.0; @@ -317,7 +319,7 @@ float NoisePerlin2D(const NoiseParams *np, float x, float y, s32 seed) seed += np->seed; for (size_t i = 0; i < np->octaves; i++) { - float noiseval = noise2d_gradient(x * f, y * f, seed + i, + float noiseval = noise2d_value(x * f, y * f, seed + i, np->flags & (NOISE_FLAG_DEFAULTS | NOISE_FLAG_EASED)); if (np->flags & NOISE_FLAG_ABSVALUE) @@ -332,7 +334,7 @@ float NoisePerlin2D(const NoiseParams *np, float x, float y, s32 seed) } -float NoisePerlin3D(const NoiseParams *np, float x, float y, float z, s32 seed) +float NoiseFractal3D(const NoiseParams *np, float x, float y, float z, s32 seed) { float a = 0; float f = 1.0; @@ -344,7 +346,7 @@ float NoisePerlin3D(const NoiseParams *np, float x, float y, float z, s32 seed) seed += np->seed; for (size_t i = 0; i < np->octaves; i++) { - float noiseval = noise3d_gradient(x * f, y * f, z * f, seed + i, + float noiseval = noise3d_value(x * f, y * f, z * f, seed + i, np->flags & NOISE_FLAG_EASED); if (np->flags & NOISE_FLAG_ABSVALUE) @@ -373,7 +375,7 @@ Noise::Noise(const NoiseParams *np_, s32 seed, u32 sx, u32 sy, u32 sz) Noise::~Noise() { - delete[] gradient_buf; + delete[] value_buf; delete[] persist_buf; delete[] noise_buf; delete[] result; @@ -392,15 +394,15 @@ void Noise::allocBuffers() this->noise_buf = NULL; resizeNoiseBuf(sz > 1); - delete[] gradient_buf; + delete[] value_buf; delete[] persist_buf; delete[] result; try { size_t bufsize = sx * sy * sz; - this->persist_buf = NULL; - this->gradient_buf = new float[bufsize]; - this->result = new float[bufsize]; + this->persist_buf = NULL; + this->value_buf = new float[bufsize]; + this->result = new float[bufsize]; } catch (std::bad_alloc &e) { throw InvalidNoiseParamsException(); } @@ -488,7 +490,7 @@ void Noise::resizeNoiseBuf(bool is3d) * next octave. */ #define idx(x, y) ((y) * nlx + (x)) -void Noise::gradientMap2D( +void Noise::valueMap2D( float x, float y, float step_x, float step_y, s32 seed) @@ -525,7 +527,7 @@ void Noise::gradientMap2D( u = orig_u; noisex = 0; for (i = 0; i != sx; i++) { - gradient_buf[index++] = + value_buf[index++] = biLinearInterpolation(v00, v10, v01, v11, u, v, eased); u += step_x; @@ -550,7 +552,7 @@ void Noise::gradientMap2D( #define idx(x, y, z) ((z) * nly * nlx + (y) * nlx + (x)) -void Noise::gradientMap3D( +void Noise::valueMap3D( float x, float y, float z, float step_x, float step_y, float step_z, s32 seed) @@ -603,7 +605,7 @@ void Noise::gradientMap3D( u = orig_u; noisex = 0; for (i = 0; i != sx; i++) { - gradient_buf[index++] = triLinearInterpolation( + value_buf[index++] = triLinearInterpolation( v000, v100, v010, v110, v001, v101, v011, v111, u, v, w, @@ -641,7 +643,7 @@ void Noise::gradientMap3D( #undef idx -float *Noise::perlinMap2D(float x, float y, float *persistence_map) +float *Noise::noiseMap2D(float x, float y, float *persistence_map) { float f = 1.0, g = 1.0; size_t bufsize = sx * sy; @@ -659,7 +661,7 @@ float *Noise::perlinMap2D(float x, float y, float *persistence_map) } for (size_t oct = 0; oct < np.octaves; oct++) { - gradientMap2D(x * f, y * f, + valueMap2D(x * f, y * f, f / np.spread.X, f / np.spread.Y, seed + np.seed + oct); @@ -678,7 +680,7 @@ float *Noise::perlinMap2D(float x, float y, float *persistence_map) } -float *Noise::perlinMap3D(float x, float y, float z, float *persistence_map) +float *Noise::noiseMap3D(float x, float y, float z, float *persistence_map) { float f = 1.0, g = 1.0; size_t bufsize = sx * sy * sz; @@ -697,7 +699,7 @@ float *Noise::perlinMap3D(float x, float y, float z, float *persistence_map) } for (size_t oct = 0; oct < np.octaves; oct++) { - gradientMap3D(x * f, y * f, z * f, + valueMap3D(x * f, y * f, z * f, f / np.spread.X, f / np.spread.Y, f / np.spread.Z, seed + np.seed + oct); @@ -724,22 +726,22 @@ void Noise::updateResults(float g, float *gmap, if (np.flags & NOISE_FLAG_ABSVALUE) { if (persistence_map) { for (size_t i = 0; i != bufsize; i++) { - result[i] += gmap[i] * std::fabs(gradient_buf[i]); + result[i] += gmap[i] * std::fabs(value_buf[i]); gmap[i] *= persistence_map[i]; } } else { for (size_t i = 0; i != bufsize; i++) - result[i] += g * std::fabs(gradient_buf[i]); + result[i] += g * std::fabs(value_buf[i]); } } else { if (persistence_map) { for (size_t i = 0; i != bufsize; i++) { - result[i] += gmap[i] * gradient_buf[i]; + result[i] += gmap[i] * value_buf[i]; gmap[i] *= persistence_map[i]; } } else { for (size_t i = 0; i != bufsize; i++) - result[i] += g * gradient_buf[i]; + result[i] += g * value_buf[i]; } } } diff --git a/src/noise.h b/src/noise.h index c864c8fbb..154c7fe94 100644 --- a/src/noise.h +++ b/src/noise.h @@ -36,7 +36,7 @@ #undef RANDOM_MAX #endif -extern FlagDesc flagdesc_noiseparams[]; +extern const FlagDesc flagdesc_noiseparams[]; // Note: this class is not polymorphic so that its high level of // optimizability may be preserved in the common use case @@ -151,7 +151,7 @@ public: u32 sy; u32 sz; float *noise_buf = nullptr; - float *gradient_buf = nullptr; + float *value_buf = nullptr; float *persist_buf = nullptr; float *result = nullptr; @@ -162,31 +162,31 @@ public: void setSpreadFactor(v3f spread); void setOctaves(int octaves); - void gradientMap2D( + void valueMap2D( float x, float y, float step_x, float step_y, s32 seed); - void gradientMap3D( + void valueMap3D( float x, float y, float z, float step_x, float step_y, float step_z, s32 seed); - float *perlinMap2D(float x, float y, float *persistence_map=NULL); - float *perlinMap3D(float x, float y, float z, float *persistence_map=NULL); + float *noiseMap2D(float x, float y, float *persistence_map=NULL); + float *noiseMap3D(float x, float y, float z, float *persistence_map=NULL); - inline float *perlinMap2D_PO(float x, float xoff, float y, float yoff, + inline float *noiseMap2D_PO(float x, float xoff, float y, float yoff, float *persistence_map=NULL) { - return perlinMap2D( + return noiseMap2D( x + xoff * np.spread.X, y + yoff * np.spread.Y, persistence_map); } - inline float *perlinMap3D_PO(float x, float xoff, float y, float yoff, + inline float *noiseMap3D_PO(float x, float xoff, float y, float yoff, float z, float zoff, float *persistence_map=NULL) { - return perlinMap3D( + return noiseMap3D( x + xoff * np.spread.X, y + yoff * np.spread.Y, z + zoff * np.spread.Z, @@ -201,22 +201,22 @@ private: }; -float NoisePerlin2D(const NoiseParams *np, float x, float y, s32 seed); -float NoisePerlin3D(const NoiseParams *np, float x, float y, float z, s32 seed); +float NoiseFractal2D(const NoiseParams *np, float x, float y, s32 seed); +float NoiseFractal3D(const NoiseParams *np, float x, float y, float z, s32 seed); -inline float NoisePerlin2D_PO(NoiseParams *np, float x, float xoff, +inline float NoiseFractal2D_PO(NoiseParams *np, float x, float xoff, float y, float yoff, s32 seed) { - return NoisePerlin2D(np, + return NoiseFractal2D(np, x + xoff * np->spread.X, y + yoff * np->spread.Y, seed); } -inline float NoisePerlin3D_PO(NoiseParams *np, float x, float xoff, +inline float NoiseFractal3D_PO(NoiseParams *np, float x, float xoff, float y, float yoff, float z, float zoff, s32 seed) { - return NoisePerlin3D(np, + return NoiseFractal3D(np, x + xoff * np->spread.X, y + yoff * np->spread.Y, z + zoff * np->spread.Z, @@ -227,10 +227,10 @@ inline float NoisePerlin3D_PO(NoiseParams *np, float x, float xoff, float noise2d(int x, int y, s32 seed); float noise3d(int x, int y, int z, s32 seed); -float noise2d_gradient(float x, float y, s32 seed, bool eased=true); -float noise3d_gradient(float x, float y, float z, s32 seed, bool eased=false); +float noise2d_value(float x, float y, s32 seed, bool eased=true); +float noise3d_value(float x, float y, float z, s32 seed, bool eased=false); -float noise2d_perlin(float x, float y, s32 seed, +float noise2d_fractal(float x, float y, s32 seed, int octaves, float persistence, bool eased=true); inline float easeCurve(float t) diff --git a/src/object_properties.cpp b/src/object_properties.cpp index 63a0ef01b..35bf2e63e 100644 --- a/src/object_properties.cpp +++ b/src/object_properties.cpp @@ -8,15 +8,28 @@ #include "exceptions.h" #include "log.h" #include "util/serialize.h" +#include "util/enum_string.h" #include #include static const video::SColor NULL_BGCOLOR{0, 1, 1, 1}; +const struct EnumString es_ObjectVisual[] = +{ + {OBJECTVISUAL_UNKNOWN, "unknown"}, + {OBJECTVISUAL_SPRITE, "sprite"}, + {OBJECTVISUAL_UPRIGHT_SPRITE, "upright_sprite"}, + {OBJECTVISUAL_CUBE, "cube"}, + {OBJECTVISUAL_MESH, "mesh"}, + {OBJECTVISUAL_ITEM, "item"}, + {OBJECTVISUAL_WIELDITEM, "wielditem"}, + {OBJECTVISUAL_NODE, "node"}, + {0, nullptr}, +}; + ObjectProperties::ObjectProperties() { textures.emplace_back("no_texture.png"); - colors.emplace_back(255,255,255,255); } std::string ObjectProperties::dump() const @@ -27,7 +40,7 @@ std::string ObjectProperties::dump() const os << ", physical=" << physical; os << ", collideWithObjects=" << collideWithObjects; os << ", collisionbox=" << collisionbox.MinEdge << "," << collisionbox.MaxEdge; - os << ", visual=" << visual; + os << ", visual=" << enum_to_string(es_ObjectVisual, visual); os << ", mesh=" << mesh; os << ", visual_size=" << visual_size; os << ", textures=["; @@ -64,6 +77,8 @@ std::string ObjectProperties::dump() const os << ", static_save=" << static_save; os << ", eye_height=" << eye_height; os << ", zoom_fov=" << zoom_fov; + os << ", node=(" << (int)node.getContent() << ", " << (int)node.getParam1() + << ", " << (int)node.getParam2() << ")"; os << ", use_texture_alpha=" << use_texture_alpha; os << ", damage_texture_modifier=" << damage_texture_modifier; os << ", shaded=" << shaded; @@ -80,8 +95,8 @@ static auto tie(const ObjectProperties &o) o.nametag_color, o.nametag_bgcolor, o.spritediv, o.initial_sprite_basepos, o.stepheight, o.automatic_rotate, o.automatic_face_movement_dir_offset, o.automatic_face_movement_max_rotation_per_sec, o.eye_height, o.zoom_fov, - o.hp_max, o.breath_max, o.glow, o.pointable, o.physical, o.collideWithObjects, - o.rotate_selectionbox, o.is_visible, o.makes_footstep_sound, + o.node, o.hp_max, o.breath_max, o.glow, o.pointable, o.physical, + o.collideWithObjects, o.rotate_selectionbox, o.is_visible, o.makes_footstep_sound, o.automatic_face_movement_dir, o.backface_culling, o.static_save, o.use_texture_alpha, o.shaded, o.show_on_minimap ); @@ -136,7 +151,10 @@ void ObjectProperties::serialize(std::ostream &os) const writeV3F32(os, selectionbox.MinEdge); writeV3F32(os, selectionbox.MaxEdge); Pointabilities::serializePointabilityType(os, pointable); - os << serializeString16(visual); + + // Convert to string for compatibility + os << serializeString16(enum_to_string(es_ObjectVisual, visual)); + writeV3F32(os, visual_size); writeU16(os, textures.size()); for (const std::string &texture : textures) { @@ -171,6 +189,7 @@ void ObjectProperties::serialize(std::ostream &os) const writeU8(os, shaded); writeU8(os, show_on_minimap); + // use special value to tell apart nil, fully transparent and other colors if (!nametag_bgcolor) writeARGB8(os, NULL_BGCOLOR); else if (nametag_bgcolor.value().getAlpha() == 0) @@ -179,8 +198,31 @@ void ObjectProperties::serialize(std::ostream &os) const writeARGB8(os, nametag_bgcolor.value()); writeU8(os, rotate_selectionbox); + writeU16(os, node.getContent()); + writeU8(os, node.getParam1()); + writeU8(os, node.getParam2()); + // Add stuff only at the bottom. - // Never remove anything, because we don't want new versions of this + // Never remove anything, because we don't want new versions of this! +} + +namespace { + // Type-safe wrapper for bools as u8 + inline bool readBool(std::istream &is) + { + return readU8(is) != 0; + } + + // Wrapper for primitive reading functions that don't throw (awful) + template + bool tryRead(T& val, std::istream& is) + { + T tmp = reader(is); + if (is.eof()) + return false; + val = tmp; + return true; + } } void ObjectProperties::deSerialize(std::istream &is) @@ -197,7 +239,14 @@ void ObjectProperties::deSerialize(std::istream &is) selectionbox.MinEdge = readV3F32(is); selectionbox.MaxEdge = readV3F32(is); pointable = Pointabilities::deSerializePointabilityType(is); - visual = deSerializeString16(is); + + std::string visual_string{deSerializeString16(is)}; + if (!string_to_enum(es_ObjectVisual, visual, visual_string)) { + infostream << "ObjectProperties::deSerialize(): visual \"" << visual_string + << "\" not supported" << std::endl; + visual = OBJECTVISUAL_UNKNOWN; + } + visual_size = readV3F32(is); textures.clear(); u32 texture_count = readU16(is); @@ -230,26 +279,32 @@ void ObjectProperties::deSerialize(std::istream &is) eye_height = readF32(is); zoom_fov = readF32(is); use_texture_alpha = readU8(is); + try { damage_texture_modifier = deSerializeString16(is); - u8 tmp = readU8(is); - if (is.eof()) - return; - shaded = tmp; - tmp = readU8(is); - if (is.eof()) - return; - show_on_minimap = tmp; + } catch (SerializationError &e) { + return; + } - auto bgcolor = readARGB8(is); - if (bgcolor != NULL_BGCOLOR) - nametag_bgcolor = bgcolor; - else - nametag_bgcolor = std::nullopt; + if (!tryRead(shaded, is)) + return; - tmp = readU8(is); - if (is.eof()) - return; - rotate_selectionbox = tmp; - } catch (SerializationError &e) {} + if (!tryRead(show_on_minimap, is)) + return; + + auto bgcolor = readARGB8(is); + if (bgcolor != NULL_BGCOLOR) + nametag_bgcolor = bgcolor; + else + nametag_bgcolor = std::nullopt; + + if (!tryRead(rotate_selectionbox, is)) + return; + + if (!tryRead(node.param0, is)) + return; + node.param1 = readU8(is); + node.param2 = readU8(is); + + // Add new properties down here and remember to use either tryRead<> or a try-catch. } diff --git a/src/object_properties.h b/src/object_properties.h index d97b4997e..b898c982d 100644 --- a/src/object_properties.h +++ b/src/object_properties.h @@ -10,18 +10,35 @@ #include #include #include "util/pointabilities.h" +#include "mapnode.h" + +struct EnumString; + +enum ObjectVisual : u8 { + OBJECTVISUAL_UNKNOWN, + OBJECTVISUAL_SPRITE, + OBJECTVISUAL_UPRIGHT_SPRITE, + OBJECTVISUAL_CUBE, + OBJECTVISUAL_MESH, + OBJECTVISUAL_ITEM, + OBJECTVISUAL_WIELDITEM, + OBJECTVISUAL_NODE, +}; + +extern const EnumString es_ObjectVisual[]; + struct ObjectProperties { /* member variables ordered roughly by size */ std::vector textures; - std::vector colors; + std::vector colors; // Currently unused // Values are BS=1 aabb3f collisionbox = aabb3f(-0.5f, -0.5f, -0.5f, 0.5f, 0.5f, 0.5f); // Values are BS=1 aabb3f selectionbox = aabb3f(-0.5f, -0.5f, -0.5f, 0.5f, 0.5f, 0.5f); - std::string visual = "sprite"; + ObjectVisual visual = OBJECTVISUAL_SPRITE; std::string mesh; std::string damage_texture_modifier = "^[brighten"; std::string nametag; @@ -39,6 +56,7 @@ struct ObjectProperties f32 automatic_face_movement_max_rotation_per_sec = -1.0f; float eye_height = 1.625f; float zoom_fov = 0.0f; + MapNode node = MapNode(CONTENT_IGNORE); u16 hp_max = 1; u16 breath_max = 0; s8 glow = 0; diff --git a/src/particles.h b/src/particles.h index 00d04dbeb..81c8c4809 100644 --- a/src/particles.h +++ b/src/particles.h @@ -20,12 +20,6 @@ namespace ParticleParamTypes { - template - using enableIf = typename std::enable_if::type; - // std::enable_if_t does not appear to be present in GCC???? - // std::is_enum_v also missing. wtf. these are supposed to be - // present as of c++14 - template using BlendFunction = T(float,T,T); #define DECL_PARAM_SRZRS(type) \ void serializeParameterValue (std::ostream& os, type v); \ @@ -57,12 +51,12 @@ namespace ParticleParamTypes * that's hideous and unintuitive. instead, we supply the following functions to * transparently map enumeration types to their underlying values. */ - template ::value, bool> = true> + template , bool> = true> void serializeParameterValue(std::ostream& os, E k) { serializeParameterValue(os, (std::underlying_type_t)k); } - template ::value, bool> = true> + template , bool> = true> void deSerializeParameterValue(std::istream& is, E& k) { std::underlying_type_t v; deSerializeParameterValue(is, v); diff --git a/src/pathfinder.cpp b/src/pathfinder.cpp index 656abf901..d2cfebb4f 100644 --- a/src/pathfinder.cpp +++ b/src/pathfinder.cpp @@ -578,7 +578,7 @@ MapGridNodeContainer::MapGridNodeContainer(Pathfinder *pathf) PathGridnode &MapGridNodeContainer::access(v3s16 p) { - std::map::iterator it = m_nodes.find(p); + auto it = m_nodes.find(p); if (it != m_nodes.end()) { return it->second; } @@ -758,8 +758,7 @@ std::vector Pathfinder::getPath(v3s16 source, } //convert all index positions to "normal" positions and insert //them into full_path in reverse - std::vector::reverse_iterator rit = index_path.rbegin(); - for (; rit != index_path.rend(); ++rit) { + for (auto rit = index_path.rbegin(); rit != index_path.rend(); ++rit) { full_path.push_back(getIndexElement(*rit).pos); } //manually add true_destination to end of path, if needed @@ -880,10 +879,10 @@ PathCost Pathfinder::calcCost(v3s16 pos, v3s16 dir) DEBUG_OUT("Pathfinder cost below height found" << std::endl); } else { - INFO_TARGET << "Pathfinder:" + DEBUG_OUT("Pathfinder:" " distance to surface below too big: " << (testpos.Y - pos2.Y) << " max: " << m_maxdrop - << std::endl; + << std::endl); } } else { @@ -1419,8 +1418,7 @@ std::string Pathfinder::dirToName(PathDirections dir) void Pathfinder::printPath(const std::vector &path) { unsigned int current = 0; - for (std::vector::iterator i = path.begin(); - i != path.end(); ++i) { + for (auto i = path.begin(); i != path.end(); ++i) { std::cout << std::setw(3) << current << ":" << *i << std::endl; current++; } diff --git a/src/player.cpp b/src/player.cpp index 3704f177d..10f66ec11 100644 --- a/src/player.cpp +++ b/src/player.cpp @@ -15,6 +15,13 @@ #include "porting.h" // strlcpy #include +const struct EnumString es_CameraMode[] = { + {CAMERA_MODE_ANY, "any"}, + {CAMERA_MODE_FIRST, "first"}, + {CAMERA_MODE_THIRD, "third"}, + {CAMERA_MODE_THIRD_FRONT, "third_front"}, + {0, nullptr} +}; bool is_valid_player_name(std::string_view name) { diff --git a/src/player.h b/src/player.h index 25c80039c..80a3c98c1 100644 --- a/src/player.h +++ b/src/player.h @@ -126,6 +126,17 @@ struct PlayerPhysicsOverride } }; +/// @note numeric values are part of network protocol +enum CameraMode { + // not a mode. indicates that any may be used. + CAMERA_MODE_ANY = 0, + CAMERA_MODE_FIRST, + CAMERA_MODE_THIRD, + CAMERA_MODE_THIRD_FRONT +}; + +extern const struct EnumString es_CameraMode[]; + class Map; struct HudElement; class Environment; @@ -160,6 +171,8 @@ public: return size; } + CameraMode allowed_camera_mode = CAMERA_MODE_ANY; + v3f eye_offset_first; v3f eye_offset_third; v3f eye_offset_third_front; diff --git a/src/porting.cpp b/src/porting.cpp index faef75b7c..11ff63a88 100644 --- a/src/porting.cpp +++ b/src/porting.cpp @@ -270,7 +270,7 @@ const std::string &get_sysinfo() } -bool getCurrentWorkingDir(char *buf, size_t len) +[[maybe_unused]] static bool getCurrentWorkingDir(char *buf, size_t len) { #ifdef _WIN32 DWORD ret = GetCurrentDirectory(len, buf); diff --git a/src/porting.h b/src/porting.h index 8b753f518..f7d623d33 100644 --- a/src/porting.h +++ b/src/porting.h @@ -55,11 +55,6 @@ #define strncasecmp(x, y, n) strnicmp(x, y, n) #endif -#ifdef __MINGW32__ - // was broken in 2013, unclear if still needed - #define strtok_r(x, y, z) mystrtok_r(x, y, z) -#endif - #if !HAVE_STRLCPY #define strlcpy(d, s, n) mystrlcpy(d, s, n) #endif @@ -67,9 +62,9 @@ #ifndef _WIN32 // POSIX #include #include - #if defined(__MACH__) && defined(__APPLE__) - #include - #endif + #if defined(__MACH__) && defined(__APPLE__) + #include + #endif #endif namespace porting @@ -82,7 +77,7 @@ namespace porting void signal_handler_init(); // Returns a pointer to a bool. // When the bool is true, program should quit. -bool * signal_handler_killstatus(); +[[nodiscard]] bool *signal_handler_killstatus(); /* Path of static data directory. @@ -110,11 +105,13 @@ extern std::string path_cache; /* Gets the path of our executable. */ +[[nodiscard]] bool getCurrentExecPath(char *buf, size_t len); /* Concatenate subpath to path_share. */ +[[nodiscard]] std::string getDataPath(const char *subpath); /* @@ -285,7 +282,8 @@ inline const char *getPlatformName() ; } -bool secure_rand_fill_buf(void *buf, size_t len); +// Securely fills buffer with bytes from system's random source +[[nodiscard]] bool secure_rand_fill_buf(void *buf, size_t len); // Call once near beginning of main function. void osSpecificInit(); @@ -313,10 +311,10 @@ static inline void TriggerMemoryTrim() { (void)0; } #ifdef _WIN32 // Quotes an argument for use in a CreateProcess() commandline (not cmd.exe!!) -std::string QuoteArgv(const std::string &arg); +[[nodiscard]] std::string QuoteArgv(const std::string &arg); // Convert an error code (e.g. from GetLastError()) into a string. -std::string ConvertError(DWORD error_code); +[[nodiscard]] std::string ConvertError(DWORD error_code); #endif // snprintf wrapper diff --git a/src/raycast.cpp b/src/raycast.cpp index c84cb01e7..fa6ad9cbd 100644 --- a/src/raycast.cpp +++ b/src/raycast.cpp @@ -124,13 +124,13 @@ bool boxLineCollision(const aabb3f &box, const v3f start, return false; } -bool boxLineCollision(const aabb3f &box, const v3f rotation, - const v3f start, const v3f dir, +bool boxLineCollision(const aabb3f &box, v3f rotation_radians, + v3f start, v3f dir, v3f *collision_point, v3f *collision_normal, v3f *raw_collision_normal) { // Inversely transform the ray rather than rotating the box faces; // this allows us to continue using a simple ray - AABB intersection - core::quaternion rot(rotation * core::DEGTORAD); + core::quaternion rot(rotation_radians); rot.makeInverse(); bool collision = boxLineCollision(box, rot * start, rot * dir, collision_point, collision_normal); diff --git a/src/reflowscan.cpp b/src/reflowscan.cpp index 091dfa323..2a4f67c78 100644 --- a/src/reflowscan.cpp +++ b/src/reflowscan.cpp @@ -121,41 +121,48 @@ void ReflowScan::scanColumn(int x, int z) bool was_checked = false; bool was_pushed = false; - // Scan through the whole block - for (s16 y = MAP_BLOCKSIZE - 1; y >= 0; y--) { - MapNode node = block->getNodeNoCheck(dx, y, dz); - const ContentFeatures &f = m_ndef->get(node); - bool is_ignore = node.getContent() == CONTENT_IGNORE; - bool is_liquid = f.isLiquid(); + // if there is no liquid above and the current block is air + // we can skip scanning the block + if (!was_liquid && block->isAir()) { + // continue after the block with air + was_ignore = false; + } else { + // Scan through the whole block + for (s16 y = MAP_BLOCKSIZE - 1; y >= 0; y--) { + MapNode node = block->getNodeNoCheck(dx, y, dz); + const ContentFeatures &f = m_ndef->get(node); + bool is_ignore = node.getContent() == CONTENT_IGNORE; + bool is_liquid = f.isLiquid(); - if (is_ignore || was_ignore || is_liquid == was_liquid) { - // Neither topmost node of liquid column nor topmost node below column - was_checked = false; - was_pushed = false; - } else if (is_liquid) { - // This is the topmost node in the column - bool is_pushed = false; - if (f.liquid_type == LIQUID_FLOWING || - isLiquidHorizontallyFlowable(x, y, z)) { - m_liquid_queue->push_back(m_rel_block_pos + v3s16(x, y, z)); - is_pushed = true; - } - // Remember waschecked and waspushed to avoid repeated - // checks/pushes in case the column consists of only this node - was_checked = true; - was_pushed = is_pushed; - } else { - // This is the topmost node below a liquid column - if (!was_pushed && (f.floodable || - (!was_checked && isLiquidHorizontallyFlowable(x, y + 1, z)))) { - // Activate the lowest node in the column which is one - // node above this one - m_liquid_queue->push_back(m_rel_block_pos + v3s16(x, y + 1, z)); + if (is_ignore || was_ignore || is_liquid == was_liquid) { + // Neither topmost node of liquid column nor topmost node below column + was_checked = false; + was_pushed = false; + } else if (is_liquid) { + // This is the topmost node in the column + bool is_pushed = false; + if (f.liquid_type == LIQUID_FLOWING || + isLiquidHorizontallyFlowable(x, y, z)) { + m_liquid_queue->push_back(m_rel_block_pos + v3s16(x, y, z)); + is_pushed = true; + } + // Remember waschecked and waspushed to avoid repeated + // checks/pushes in case the column consists of only this node + was_checked = true; + was_pushed = is_pushed; + } else { + // This is the topmost node below a liquid column + if (!was_pushed && (f.floodable || + (!was_checked && isLiquidHorizontallyFlowable(x, y + 1, z)))) { + // Activate the lowest node in the column which is one + // node above this one + m_liquid_queue->push_back(m_rel_block_pos + v3s16(x, y + 1, z)); + } } + + was_liquid = is_liquid; + was_ignore = is_ignore; } - - was_liquid = is_liquid; - was_ignore = is_ignore; } // Check the node below the current block diff --git a/src/script/CMakeLists.txt b/src/script/CMakeLists.txt index ccb5785bd..fd46f522f 100644 --- a/src/script/CMakeLists.txt +++ b/src/script/CMakeLists.txt @@ -15,6 +15,7 @@ set(common_SCRIPT_SRCS set(client_SCRIPT_SRCS ${CMAKE_CURRENT_SOURCE_DIR}/scripting_mainmenu.cpp ${CMAKE_CURRENT_SOURCE_DIR}/scripting_client.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/scripting_pause_menu.cpp ${client_SCRIPT_COMMON_SRCS} ${client_SCRIPT_CPP_API_SRCS} ${client_SCRIPT_LUA_API_SRCS} diff --git a/src/script/common/CMakeLists.txt b/src/script/common/CMakeLists.txt index 3e84b46c7..f771861d7 100644 --- a/src/script/common/CMakeLists.txt +++ b/src/script/common/CMakeLists.txt @@ -1,7 +1,6 @@ set(common_SCRIPT_COMMON_SRCS ${CMAKE_CURRENT_SOURCE_DIR}/c_content.cpp ${CMAKE_CURRENT_SOURCE_DIR}/c_converter.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/c_types.cpp ${CMAKE_CURRENT_SOURCE_DIR}/c_internal.cpp ${CMAKE_CURRENT_SOURCE_DIR}/c_packer.cpp ${CMAKE_CURRENT_SOURCE_DIR}/helper.cpp diff --git a/src/script/common/c_content.cpp b/src/script/common/c_content.cpp index e343d50db..0e802d9c7 100644 --- a/src/script/common/c_content.cpp +++ b/src/script/common/c_content.cpp @@ -32,6 +32,23 @@ struct EnumString es_TileAnimationType[] = {0, nullptr}, }; +struct EnumString es_ItemType[] = +{ + {ITEM_NONE, "none"}, + {ITEM_NODE, "node"}, + {ITEM_CRAFT, "craft"}, + {ITEM_TOOL, "tool"}, + {0, NULL}, +}; + +struct EnumString es_TouchInteractionMode[] = +{ + {LONG_DIG_SHORT_PLACE, "long_dig_short_place"}, + {SHORT_DIG_LONG_PLACE, "short_dig_long_place"}, + {TouchInteractionMode_USER, "user"}, + {0, NULL}, +}; + /******************************************************************************/ void read_item_definition(lua_State* L, int index, const ItemDefinition &default_def, ItemDefinition &def) @@ -175,7 +192,7 @@ void push_item_definition(lua_State *L, const ItemDefinition &i) void push_item_definition_full(lua_State *L, const ItemDefinition &i) { - std::string type(es_ItemType[(int)i.type].str); + std::string type(enum_to_string(es_ItemType, i.type)); lua_newtable(L); lua_pushstring(L, i.name.c_str()); @@ -233,11 +250,11 @@ void push_item_definition_full(lua_State *L, const ItemDefinition &i) lua_createtable(L, 0, 3); const TouchInteraction &inter = i.touch_interaction; - lua_pushstring(L, es_TouchInteractionMode[inter.pointed_nothing].str); + lua_pushstring(L, enum_to_string(es_TouchInteractionMode, inter.pointed_nothing)); lua_setfield(L, -2,"pointed_nothing"); - lua_pushstring(L, es_TouchInteractionMode[inter.pointed_node].str); + lua_pushstring(L, enum_to_string(es_TouchInteractionMode, inter.pointed_node)); lua_setfield(L, -2,"pointed_node"); - lua_pushstring(L, es_TouchInteractionMode[inter.pointed_object].str); + lua_pushstring(L, enum_to_string(es_TouchInteractionMode, inter.pointed_object)); lua_setfield(L, -2,"pointed_object"); lua_setfield(L, -2, "touch_interaction"); } @@ -277,11 +294,13 @@ const std::array object_property_keys = { "shaded", "damage_texture_modifier", "show_on_minimap", + // "node" is intentionally not here as it's gated behind `fallback` below! }; /******************************************************************************/ void read_object_properties(lua_State *L, int index, - ServerActiveObject *sao, ObjectProperties *prop, IItemDefManager *idef) + ServerActiveObject *sao, ObjectProperties *prop, IItemDefManager *idef, + bool fallback) { if(index < 0) index = lua_gettop(L) + 1 + index; @@ -334,7 +353,14 @@ void read_object_properties(lua_State *L, int index, } lua_pop(L, 1); - getstringfield(L, -1, "visual", prop->visual); + // Don't set if nil + std::string visual; + if (getstringfield(L, -1, "visual", visual)) { + if (!string_to_enum(es_ObjectVisual, prop->visual, visual)) { + script_log_unique(L, "Unsupported ObjectVisual: " + visual, warningstream); + prop->visual = OBJECTVISUAL_UNKNOWN; + } + } getstringfield(L, -1, "mesh", prop->mesh); @@ -382,6 +408,16 @@ void read_object_properties(lua_State *L, int index, } lua_pop(L, 1); + // This hack exists because the name 'node' easily collides with mods own + // usage (or in this case literally builtin/game/falling.lua). + if (!fallback) { + lua_getfield(L, -1, "node"); + if (lua_istable(L, -1)) { + prop->node = readnode(L, -1); + } + lua_pop(L, 1); + } + lua_getfield(L, -1, "spritediv"); if(lua_istable(L, -1)) prop->spritediv = read_v2s16(L, -1); @@ -473,7 +509,7 @@ void push_object_properties(lua_State *L, const ObjectProperties *prop) lua_setfield(L, -2, "selectionbox"); push_pointability_type(L, prop->pointable); lua_setfield(L, -2, "pointable"); - lua_pushlstring(L, prop->visual.c_str(), prop->visual.size()); + lua_pushstring(L, enum_to_string(es_ObjectVisual, prop->visual)); lua_setfield(L, -2, "visual"); lua_pushlstring(L, prop->mesh.c_str(), prop->mesh.size()); lua_setfield(L, -2, "mesh"); @@ -496,6 +532,8 @@ void push_object_properties(lua_State *L, const ObjectProperties *prop) } lua_setfield(L, -2, "colors"); + pushnode(L, prop->node); + lua_setfield(L, -2, "node"); push_v2s16(L, prop->spritediv); lua_setfield(L, -2, "spritediv"); push_v2s16(L, prop->initial_sprite_basepos); @@ -902,7 +940,7 @@ void read_content_features(lua_State *L, ContentFeatures &f, int index) lua_getfield(L, index, "selection_box"); if(lua_istable(L, -1)) f.selection_box = read_nodebox(L, -1); - lua_pop(L, 1); + lua_pop(L, 1); lua_getfield(L, index, "collision_box"); if(lua_istable(L, -1)) @@ -955,10 +993,10 @@ void read_content_features(lua_State *L, ContentFeatures &f, int index) void push_content_features(lua_State *L, const ContentFeatures &c) { - std::string paramtype(ScriptApiNode::es_ContentParamType[(int)c.param_type].str); - std::string paramtype2(ScriptApiNode::es_ContentParamType2[(int)c.param_type_2].str); - std::string drawtype(ScriptApiNode::es_DrawType[(int)c.drawtype].str); - std::string liquid_type(ScriptApiNode::es_LiquidType[(int)c.liquid_type].str); + std::string paramtype(enum_to_string(ScriptApiNode::es_ContentParamType, c.param_type)); + std::string paramtype2(enum_to_string(ScriptApiNode::es_ContentParamType2, c.param_type_2)); + std::string drawtype(enum_to_string(ScriptApiNode::es_DrawType, c.drawtype)); + std::string liquid_type(enum_to_string(ScriptApiNode::es_LiquidType, c.liquid_type)); /* Missing "tiles" because I don't see a usecase (at least not yet). */ @@ -1144,8 +1182,7 @@ void push_palette(lua_State *L, const std::vector *palette) lua_createtable(L, palette->size(), 0); int newTable = lua_gettop(L); int index = 1; - std::vector::const_iterator iter; - for (iter = palette->begin(); iter != palette->end(); ++iter) { + for (auto iter = palette->begin(); iter != palette->end(); ++iter) { push_ARGB8(L, (*iter)); lua_rawseti(L, newTable, index); index++; @@ -1325,21 +1362,6 @@ int getenumfield(lua_State *L, int table, return result; } -/******************************************************************************/ -bool string_to_enum(const EnumString *spec, int &result, - const std::string &str) -{ - const EnumString *esp = spec; - while(esp->str){ - if (!strcmp(str.c_str(), esp->str)) { - result = esp->num; - return true; - } - esp++; - } - return false; -} - /******************************************************************************/ ItemStack read_item(lua_State* L, int index, IItemDefManager *idef) { @@ -1456,7 +1478,7 @@ void push_wear_bar_params(lua_State *L, const WearBarParams ¶ms) { lua_newtable(L); - setstringfield(L, -1, "blend", WearBarParams::es_BlendMode[params.blend].str); + setstringfield(L, -1, "blend", enum_to_string(WearBarParams::es_BlendMode, params.blend)); lua_newtable(L); for (const std::pair item: params.colorStops) { @@ -1813,7 +1835,7 @@ void push_hit_params(lua_State *L,const HitParams ¶ms) /******************************************************************************/ bool getflagsfield(lua_State *L, int table, const char *fieldname, - FlagDesc *flagdesc, u32 *flags, u32 *flagmask) + const FlagDesc *flagdesc, u32 *flags, u32 *flagmask) { lua_getfield(L, table, fieldname); @@ -1824,7 +1846,7 @@ bool getflagsfield(lua_State *L, int table, const char *fieldname, return success; } -bool read_flags(lua_State *L, int index, FlagDesc *flagdesc, +bool read_flags(lua_State *L, int index, const FlagDesc *flagdesc, u32 *flags, u32 *flagmask) { if (lua_isstring(L, index)) { @@ -1839,7 +1861,7 @@ bool read_flags(lua_State *L, int index, FlagDesc *flagdesc, return true; } -u32 read_flags_table(lua_State *L, int table, FlagDesc *flagdesc, u32 *flagmask) +u32 read_flags_table(lua_State *L, int table, const FlagDesc *flagdesc, u32 *flagmask) { u32 flags = 0, mask = 0; char fnamebuf[64] = "no"; @@ -1864,7 +1886,7 @@ u32 read_flags_table(lua_State *L, int table, FlagDesc *flagdesc, u32 *flagmask) return flags; } -void push_flags_string(lua_State *L, FlagDesc *flagdesc, u32 flags, u32 flagmask) +void push_flags_string(lua_State *L, const FlagDesc *flagdesc, u32 flags, u32 flagmask) { std::string flagstring = writeFlagString(flags, flagdesc, flagmask); lua_pushlstring(L, flagstring.c_str(), flagstring.size()); @@ -2312,7 +2334,7 @@ void push_hud_element(lua_State *L, HudElement *elem) { lua_newtable(L); - lua_pushstring(L, es_HudElementType[(u8)elem->type].str); + lua_pushstring(L, enum_to_string(es_HudElementType, elem->type)); lua_setfield(L, -2, "type"); push_v2f(L, elem->pos); diff --git a/src/script/common/c_content.h b/src/script/common/c_content.h index 3c8780c1a..f57c15797 100644 --- a/src/script/common/c_content.h +++ b/src/script/common/c_content.h @@ -25,7 +25,6 @@ extern "C" { #include "itemgroup.h" #include "itemdef.h" #include "util/pointabilities.h" -#include "c_types.h" // We do an explicit path include because by default c_content.h include src/client/hud.h // prior to the src/hud.h, which is not good on server only build #include "../../hud.h" @@ -58,134 +57,101 @@ struct collisionMoveResult; namespace treegen { struct TreeDef; } extern struct EnumString es_TileAnimationType[]; +extern struct EnumString es_ItemType[]; +extern struct EnumString es_TouchInteractionMode[]; extern const std::array object_property_keys; -void read_content_features (lua_State *L, ContentFeatures &f, - int index); -void push_content_features (lua_State *L, - const ContentFeatures &c); +void read_content_features(lua_State *L, ContentFeatures &f, int index); +void push_content_features(lua_State *L, const ContentFeatures &c); -void push_nodebox (lua_State *L, - const NodeBox &box); -void push_palette (lua_State *L, - const std::vector *palette); +void push_nodebox(lua_State *L, const NodeBox &box); +void push_palette(lua_State *L, const std::vector *palette); -TileDef read_tiledef (lua_State *L, int index, - u8 drawtype, bool special); +TileDef read_tiledef(lua_State *L, int index, u8 drawtype, bool special); -void read_simplesoundspec (lua_State *L, int index, - SoundSpec &spec); -NodeBox read_nodebox (lua_State *L, int index); +void read_simplesoundspec(lua_State *L, int index, SoundSpec &spec); +NodeBox read_nodebox(lua_State *L, int index); -void read_server_sound_params (lua_State *L, int index, - ServerPlayingSound ¶ms); +void read_server_sound_params(lua_State *L, int index, + ServerPlayingSound ¶ms); -void push_dig_params (lua_State *L, - const DigParams ¶ms); -void push_hit_params (lua_State *L, - const HitParams ¶ms); +void push_dig_params(lua_State *L, const DigParams ¶ms); +void push_hit_params(lua_State *L, const HitParams ¶ms); -ItemStack read_item (lua_State *L, int index, IItemDefManager *idef); +ItemStack read_item(lua_State *L, int index, IItemDefManager *idef); struct TileAnimationParams read_animation_definition(lua_State *L, int index); -PointabilityType read_pointability_type (lua_State *L, int index); -Pointabilities read_pointabilities (lua_State *L, int index); -void push_pointability_type (lua_State *L, PointabilityType pointable); -void push_pointabilities (lua_State *L, const Pointabilities &pointabilities); +PointabilityType read_pointability_type(lua_State *L, int index); +Pointabilities read_pointabilities(lua_State *L, int index); +void push_pointability_type(lua_State *L, PointabilityType pointable); +void push_pointabilities(lua_State *L, const Pointabilities &pointabilities); -ToolCapabilities read_tool_capabilities (lua_State *L, int table); -void push_tool_capabilities (lua_State *L, - const ToolCapabilities &prop); -WearBarParams read_wear_bar_params (lua_State *L, int table); -void push_wear_bar_params (lua_State *L, - const WearBarParams &prop); +ToolCapabilities read_tool_capabilities(lua_State *L, int table); +void push_tool_capabilities(lua_State *L, const ToolCapabilities &prop); +WearBarParams read_wear_bar_params(lua_State *L, int table); +void push_wear_bar_params(lua_State *L, const WearBarParams &prop); -void read_item_definition (lua_State *L, int index, const ItemDefinition &default_def, - ItemDefinition &def); -void push_item_definition (lua_State *L, - const ItemDefinition &i); -void push_item_definition_full (lua_State *L, - const ItemDefinition &i); +void read_item_definition(lua_State *L, int index, + const ItemDefinition &default_def, ItemDefinition &def); +void push_item_definition(lua_State *L, const ItemDefinition &i); +void push_item_definition_full(lua_State *L, const ItemDefinition &i); -void read_object_properties (lua_State *L, int index, - ServerActiveObject *sao, - ObjectProperties *prop, - IItemDefManager *idef); +/// @param fallback set to true if reading from bare entity table (not initial_properties) +void read_object_properties(lua_State *L, int index, + ServerActiveObject *sao, ObjectProperties *prop, + IItemDefManager *idef, bool fallback = false); -void push_object_properties (lua_State *L, - const ObjectProperties *prop); +void push_object_properties(lua_State *L, const ObjectProperties *prop); -void push_inventory_list (lua_State *L, - const InventoryList &invlist); -void push_inventory_lists (lua_State *L, - const Inventory &inv); -void read_inventory_list (lua_State *L, int tableindex, - Inventory *inv, const char *name, - IGameDef *gdef, int forcesize=-1); +void push_inventory_list(lua_State *L, const InventoryList &invlist); +void push_inventory_lists(lua_State *L, const Inventory &inv); +void read_inventory_list(lua_State *L, int tableindex, + Inventory *inv, const char *name, + IGameDef *gdef, int forcesize=-1); -MapNode readnode (lua_State *L, int index); -void pushnode (lua_State *L, const MapNode &n); +MapNode readnode(lua_State *L, int index); +void pushnode(lua_State *L, const MapNode &n); -void read_groups (lua_State *L, int index, - ItemGroupList &result); +void read_groups(lua_State *L, int index, ItemGroupList &result); -void push_groups (lua_State *L, - const ItemGroupList &groups); +void push_groups(lua_State *L, const ItemGroupList &groups); -//TODO rename to "read_enum_field" -int getenumfield (lua_State *L, int table, - const char *fieldname, - const EnumString *spec, - int default_); +// TODO: rename to "read_enum_field" and replace with type-safe template +int getenumfield(lua_State *L, int table, const char *fieldname, + const EnumString *spec, int default_); -bool getflagsfield (lua_State *L, int table, - const char *fieldname, - FlagDesc *flagdesc, - u32 *flags, u32 *flagmask); +bool getflagsfield(lua_State *L, int table, const char *fieldname, + const FlagDesc *flagdesc, u32 *flags, u32 *flagmask); -bool read_flags (lua_State *L, int index, - FlagDesc *flagdesc, - u32 *flags, u32 *flagmask); +bool read_flags(lua_State *L, int index, const FlagDesc *flagdesc, + u32 *flags, u32 *flagmask); -void push_flags_string (lua_State *L, FlagDesc *flagdesc, - u32 flags, u32 flagmask); +void push_flags_string(lua_State *L, const FlagDesc *flagdesc, + u32 flags, u32 flagmask); -u32 read_flags_table (lua_State *L, int table, - FlagDesc *flagdesc, u32 *flagmask); +u32 read_flags_table(lua_State *L, int table, + const FlagDesc *flagdesc, u32 *flagmask); -void push_items (lua_State *L, - const std::vector &items); +void push_items(lua_State *L, const std::vector &items); -std::vector read_items (lua_State *L, - int index, - IGameDef* gdef); +std::vector read_items(lua_State *L, int index, IGameDef* gdef); -void push_simplesoundspec (lua_State *L, - const SoundSpec &spec); +void push_simplesoundspec(lua_State *L, const SoundSpec &spec); -bool string_to_enum (const EnumString *spec, - int &result, - const std::string &str); +bool read_noiseparams(lua_State *L, int index, NoiseParams *np); +void push_noiseparams(lua_State *L, NoiseParams *np); -bool read_noiseparams (lua_State *L, int index, - NoiseParams *np); -void push_noiseparams (lua_State *L, NoiseParams *np); +bool read_tree_def(lua_State *L, int idx, + const NodeDefManager *ndef, treegen::TreeDef &tree_def); -bool read_tree_def (lua_State *L, int idx, - const NodeDefManager *ndef, - treegen::TreeDef &tree_def); +void luaentity_get(lua_State *L,u16 id); -void luaentity_get (lua_State *L,u16 id); - -bool push_json_value (lua_State *L, - const Json::Value &value, - int nullindex); -void read_json_value (lua_State *L, Json::Value &root, - int index, u16 max_depth); +bool push_json_value(lua_State *L, const Json::Value &value, int nullindex); +void read_json_value(lua_State *L, Json::Value &root, int index, u16 max_depth); /*! * Pushes a Lua `pointed_thing` to the given Lua stack. @@ -195,13 +161,13 @@ void read_json_value (lua_State *L, Json::Value &root, void push_pointed_thing(lua_State *L, const PointedThing &pointed, bool csm = false, bool hitpoint = false); -void push_objectRef (lua_State *L, const u16 id); +void push_objectRef(lua_State *L, const u16 id); -void read_hud_element (lua_State *L, HudElement *elem); +void read_hud_element(lua_State *L, HudElement *elem); -void push_hud_element (lua_State *L, HudElement *elem); +void push_hud_element(lua_State *L, HudElement *elem); -bool read_hud_change (lua_State *L, HudElementStat &stat, HudElement *elem, void **value); +bool read_hud_change(lua_State *L, HudElementStat &stat, HudElement *elem, void **value); void push_collision_move_result(lua_State *L, const collisionMoveResult &res); diff --git a/src/script/common/c_converter.cpp b/src/script/common/c_converter.cpp index 4e9175f53..138063d54 100644 --- a/src/script/common/c_converter.cpp +++ b/src/script/common/c_converter.cpp @@ -16,6 +16,7 @@ extern "C" { #include "constants.h" #include #include +#include "common/c_types.h" #define CHECK_TYPE(index, name, type) do { \ diff --git a/src/script/common/c_converter.h b/src/script/common/c_converter.h index df47e3b28..b55f1c9c9 100644 --- a/src/script/common/c_converter.h +++ b/src/script/common/c_converter.h @@ -12,29 +12,28 @@ #pragma once #include +#include #include #include "irrlichttypes_bloated.h" -#include "common/c_types.h" extern "C" { #include } -std::string getstringfield_default(lua_State *L, int table, - const char *fieldname, const std::string &default_); -bool getboolfield_default(lua_State *L, int table, - const char *fieldname, bool default_); -float getfloatfield_default(lua_State *L, int table, - const char *fieldname, float default_); -int getintfield_default(lua_State *L, int table, - const char *fieldname, int default_); +std::string getstringfield_default(lua_State *L, int table, + const char *fieldname, const std::string &default_); +bool getboolfield_default(lua_State *L, int table, + const char *fieldname, bool default_); +float getfloatfield_default(lua_State *L, int table, + const char *fieldname, float default_); +int getintfield_default(lua_State *L, int table, + const char *fieldname, int default_); bool check_field_or_nil(lua_State *L, int index, int type, const char *fieldname); template -bool getintfield(lua_State *L, int table, - const char *fieldname, T &result) +bool getintfield(lua_State *L, int table, const char *fieldname, T &result) { lua_getfield(L, table, fieldname); bool got = false; @@ -47,43 +46,41 @@ bool getintfield(lua_State *L, int table, } // Retrieve an v3s16 where all components are optional (falls back to default) -v3s16 getv3s16field_default(lua_State *L, int table, - const char *fieldname, v3s16 default_); +v3s16 getv3s16field_default(lua_State *L, int table, + const char *fieldname, v3s16 default_); -bool getstringfield(lua_State *L, int table, - const char *fieldname, std::string &result); -bool getstringfield(lua_State *L, int table, - const char *fieldname, std::string_view &result); -size_t getstringlistfield(lua_State *L, int table, - const char *fieldname, - std::vector *result); -bool getboolfield(lua_State *L, int table, - const char *fieldname, bool &result); -bool getfloatfield(lua_State *L, int table, - const char *fieldname, float &result); +bool getstringfield(lua_State *L, int table, + const char *fieldname, std::string &result); +bool getstringfield(lua_State *L, int table, + const char *fieldname, std::string_view &result); +size_t getstringlistfield(lua_State *L, int table, + const char *fieldname, std::vector *result); +bool getboolfield(lua_State *L, int table, + const char *fieldname, bool &result); +bool getfloatfield(lua_State *L, int table, + const char *fieldname, float &result); -void setstringfield(lua_State *L, int table, - const char *fieldname, const std::string &value); -void setintfield(lua_State *L, int table, - const char *fieldname, int value); -void setfloatfield(lua_State *L, int table, - const char *fieldname, float value); -void setboolfield(lua_State *L, int table, - const char *fieldname, bool value); +void setstringfield(lua_State *L, int table, + const char *fieldname, const std::string &value); +void setintfield(lua_State *L, int table, + const char *fieldname, int value); +void setfloatfield(lua_State *L, int table, + const char *fieldname, float value); +void setboolfield(lua_State *L, int table, + const char *fieldname, bool value); -v3f checkFloatPos (lua_State *L, int index); -v2f check_v2f (lua_State *L, int index); -v3f check_v3f (lua_State *L, int index); -v3s16 check_v3s16 (lua_State *L, int index); +v3f checkFloatPos(lua_State *L, int index); +v2f check_v2f(lua_State *L, int index); +v3f check_v3f(lua_State *L, int index); +v3s16 check_v3s16(lua_State *L, int index); -v3f read_v3f (lua_State *L, int index); -v2f read_v2f (lua_State *L, int index); -v2s16 read_v2s16 (lua_State *L, int index); -v2s32 read_v2s32 (lua_State *L, int index); -video::SColor read_ARGB8 (lua_State *L, int index); -bool read_color (lua_State *L, int index, - video::SColor *color); -bool is_color_table (lua_State *L, int index); +v3f read_v3f(lua_State *L, int index); +v2f read_v2f(lua_State *L, int index); +v2s16 read_v2s16(lua_State *L, int index); +v2s32 read_v2s32(lua_State *L, int index); +video::SColor read_ARGB8(lua_State *L, int index); +bool read_color(lua_State *L, int index, video::SColor *color); +bool is_color_table (lua_State *L, int index); /** * Read a floating-point axis-aligned box from Lua. @@ -96,32 +93,30 @@ bool is_color_table (lua_State *L, int index); * * @return the box corresponding to lua table */ -aabb3f read_aabb3f (lua_State *L, int index, f32 scale); +aabb3f read_aabb3f(lua_State *L, int index, f32 scale); -v3s16 read_v3s16 (lua_State *L, int index); +v3s16 read_v3s16(lua_State *L, int index); std::vector read_aabb3f_vector (lua_State *L, int index, f32 scale); -size_t read_stringlist (lua_State *L, int index, - std::vector *result); +size_t read_stringlist(lua_State *L, int index, + std::vector *result); -void push_v2s16 (lua_State *L, v2s16 p); -void push_v2s32 (lua_State *L, v2s32 p); -void push_v2u32 (lua_State *L, v2u32 p); -void push_v3s16 (lua_State *L, v3s16 p); -void push_aabb3f (lua_State *L, aabb3f box, f32 divisor = 1.0f); -void push_ARGB8 (lua_State *L, video::SColor color); -void pushFloatPos (lua_State *L, v3f p); -void push_v3f (lua_State *L, v3f p); -void push_v2f (lua_State *L, v2f p); -void push_aabb3f_vector (lua_State *L, const std::vector &boxes, - f32 divisor = 1.0f); +void push_v2s16(lua_State *L, v2s16 p); +void push_v2s32(lua_State *L, v2s32 p); +void push_v2u32(lua_State *L, v2u32 p); +void push_v3s16(lua_State *L, v3s16 p); +void push_aabb3f(lua_State *L, aabb3f box, f32 divisor = 1.0f); +void push_ARGB8(lua_State *L, video::SColor color); +void pushFloatPos(lua_State *L, v3f p); +void push_v3f(lua_State *L, v3f p); +void push_v2f(lua_State *L, v2f p); +void push_aabb3f_vector(lua_State *L, const std::vector &boxes, + f32 divisor = 1.0f); -void warn_if_field_exists(lua_State *L, int table, - const char *fieldname, - std::string_view name, - std::string_view message); +void warn_if_field_exists(lua_State *L, int table, const char *fieldname, + std::string_view name, std::string_view message); size_t write_array_slice_float(lua_State *L, int table_index, float *data, - v3u16 data_size, v3u16 slice_offset, v3u16 slice_size); + v3u16 data_size, v3u16 slice_offset, v3u16 slice_size); // This must match the implementation in builtin/game/misc_s.lua // Note that this returns a floating point result as Lua integers are 32-bit diff --git a/src/script/common/c_internal.cpp b/src/script/common/c_internal.cpp index eb74bfa8e..7d489fa76 100644 --- a/src/script/common/c_internal.cpp +++ b/src/script/common/c_internal.cpp @@ -10,6 +10,7 @@ #include "porting.h" #include "settings.h" #include // std::find +#include "common/c_types.h" // LuaError std::string script_get_backtrace(lua_State *L) { diff --git a/src/script/common/c_internal.h b/src/script/common/c_internal.h index ce948801b..401b2115e 100644 --- a/src/script/common/c_internal.h +++ b/src/script/common/c_internal.h @@ -11,6 +11,7 @@ #pragma once +#include #include extern "C" { @@ -19,7 +20,7 @@ extern "C" { } #include "config.h" -#include "common/c_types.h" +#include "util/enum_string.h" /* diff --git a/src/script/common/c_packer.cpp b/src/script/common/c_packer.cpp index 0a4045e1b..7083e3f4a 100644 --- a/src/script/common/c_packer.cpp +++ b/src/script/common/c_packer.cpp @@ -13,6 +13,7 @@ #include "log.h" #include "debug.h" #include "threading/mutex_auto_lock.h" +#include "common/c_types.h" // LuaError extern "C" { #include diff --git a/src/script/common/c_types.cpp b/src/script/common/c_types.cpp deleted file mode 100644 index 57d6c4244..000000000 --- a/src/script/common/c_types.cpp +++ /dev/null @@ -1,27 +0,0 @@ -// Luanti -// SPDX-License-Identifier: LGPL-2.1-or-later -// Copyright (C) 2013 celeron55, Perttu Ahola - -#include - -#include "common/c_types.h" -#include "common/c_internal.h" -#include "itemdef.h" - - -struct EnumString es_ItemType[] = - { - {ITEM_NONE, "none"}, - {ITEM_NODE, "node"}, - {ITEM_CRAFT, "craft"}, - {ITEM_TOOL, "tool"}, - {0, NULL}, - }; - -struct EnumString es_TouchInteractionMode[] = - { - {LONG_DIG_SHORT_PLACE, "long_dig_short_place"}, - {SHORT_DIG_LONG_PLACE, "short_dig_long_place"}, - {TouchInteractionMode_USER, "user"}, - {0, NULL}, - }; diff --git a/src/script/common/c_types.h b/src/script/common/c_types.h index 6560524b8..160b29eb5 100644 --- a/src/script/common/c_types.h +++ b/src/script/common/c_types.h @@ -9,15 +9,8 @@ extern "C" { } #include - #include "exceptions.h" -struct EnumString -{ - int num; - const char *str; -}; - class StackUnroller { private: @@ -41,7 +34,3 @@ class LuaError : public ModError public: LuaError(const std::string &s) : ModError(s) {} }; - - -extern EnumString es_ItemType[]; -extern EnumString es_TouchInteractionMode[]; diff --git a/src/script/cpp_api/CMakeLists.txt b/src/script/cpp_api/CMakeLists.txt index d9d157d5f..123364141 100644 --- a/src/script/cpp_api/CMakeLists.txt +++ b/src/script/cpp_api/CMakeLists.txt @@ -16,6 +16,8 @@ set(common_SCRIPT_CPP_API_SRCS set(client_SCRIPT_CPP_API_SRCS ${CMAKE_CURRENT_SOURCE_DIR}/s_client.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/s_client_common.cpp ${CMAKE_CURRENT_SOURCE_DIR}/s_mainmenu.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/s_pause_menu.cpp PARENT_SCOPE) diff --git a/src/script/cpp_api/s_base.cpp b/src/script/cpp_api/s_base.cpp index 9cf886efd..9022cd8c3 100644 --- a/src/script/cpp_api/s_base.cpp +++ b/src/script/cpp_api/s_base.cpp @@ -203,9 +203,13 @@ void ScriptApiBase::checkSetByBuiltin() { lua_State *L = getStack(); - if (m_gamedef) { - CHECK(CUSTOM_RIDX_READ_VECTOR, "read_vector"); - CHECK(CUSTOM_RIDX_PUSH_VECTOR, "push_vector"); + CHECK(CUSTOM_RIDX_READ_VECTOR, "read_vector"); + CHECK(CUSTOM_RIDX_PUSH_VECTOR, "push_vector"); + + if (getType() == ScriptingType::Server || + (getType() == ScriptingType::Async && m_gamedef) || + getType() == ScriptingType::Emerge || + getType() == ScriptingType::Client) { CHECK(CUSTOM_RIDX_READ_NODE, "read_node"); CHECK(CUSTOM_RIDX_PUSH_NODE, "push_node"); } diff --git a/src/script/cpp_api/s_base.h b/src/script/cpp_api/s_base.h index 34ac22595..b532e9cd9 100644 --- a/src/script/cpp_api/s_base.h +++ b/src/script/cpp_api/s_base.h @@ -18,7 +18,6 @@ extern "C" { } #include "irrlichttypes.h" -#include "common/c_types.h" #include "common/c_internal.h" #include "debug.h" #include "config.h" @@ -47,7 +46,8 @@ enum class ScriptingType: u8 { Client, MainMenu, Server, - Emerge + Emerge, + PauseMenu, }; class Server; diff --git a/src/script/cpp_api/s_client.cpp b/src/script/cpp_api/s_client.cpp index 772bc2412..f383d8172 100644 --- a/src/script/cpp_api/s_client.cpp +++ b/src/script/cpp_api/s_client.cpp @@ -126,34 +126,6 @@ void ScriptApiClient::environment_step(float dtime) } } -void ScriptApiClient::on_formspec_input(const std::string &formname, - const StringMap &fields) -{ - SCRIPTAPI_PRECHECKHEADER - - // Get core.registered_on_chat_messages - lua_getglobal(L, "core"); - lua_getfield(L, -1, "registered_on_formspec_input"); - // Call callbacks - // param 1 - lua_pushstring(L, formname.c_str()); - // param 2 - lua_newtable(L); - StringMap::const_iterator it; - for (it = fields.begin(); it != fields.end(); ++it) { - const std::string &name = it->first; - const std::string &value = it->second; - lua_pushstring(L, name.c_str()); - lua_pushlstring(L, value.c_str(), value.size()); - lua_settable(L, -3); - } - try { - runCallbacks(2, RUN_CALLBACKS_MODE_OR_SC); - } catch (LuaError &e) { - getClient()->setFatalError(e); - } -} - bool ScriptApiClient::on_dignode(v3s16 p, MapNode node) { SCRIPTAPI_PRECHECKHEADER diff --git a/src/script/cpp_api/s_client.h b/src/script/cpp_api/s_client.h index 89a065752..2308e13f4 100644 --- a/src/script/cpp_api/s_client.h +++ b/src/script/cpp_api/s_client.h @@ -35,7 +35,6 @@ public: void on_damage_taken(int32_t damage_amount); void on_hp_modification(int32_t newhp); void environment_step(float dtime); - void on_formspec_input(const std::string &formname, const StringMap &fields); bool on_dignode(v3s16 p, MapNode node); bool on_punchnode(v3s16 p, MapNode node); diff --git a/src/script/cpp_api/s_client_common.cpp b/src/script/cpp_api/s_client_common.cpp new file mode 100644 index 000000000..7e5909fae --- /dev/null +++ b/src/script/cpp_api/s_client_common.cpp @@ -0,0 +1,39 @@ +// Luanti +// SPDX-License-Identifier: LGPL-2.1-or-later +// Copyright (C) 2013 celeron55, Perttu Ahola +// Copyright (C) 2017 nerzhul, Loic Blot +// Copyright (C) 2025 grorp + +#include "s_client_common.h" +#include "s_internal.h" +#include "client/client.h" + +bool ScriptApiClientCommon::on_formspec_input(const std::string &formname, + const StringMap &fields) +{ + SCRIPTAPI_PRECHECKHEADER + + // Get core.registered_on_formspec_inputs + lua_getglobal(L, "core"); + lua_getfield(L, -1, "registered_on_formspec_input"); + // Call callbacks + // param 1 + lua_pushstring(L, formname.c_str()); + // param 2 + lua_newtable(L); + StringMap::const_iterator it; + for (it = fields.begin(); it != fields.end(); ++it) { + const std::string &name = it->first; + const std::string &value = it->second; + lua_pushstring(L, name.c_str()); + lua_pushlstring(L, value.c_str(), value.size()); + lua_settable(L, -3); + } + try { + runCallbacks(2, RUN_CALLBACKS_MODE_OR_SC); + } catch (LuaError &e) { + getClient()->setFatalError(e); + return true; + } + return readParam(L, -1); +} diff --git a/src/script/cpp_api/s_client_common.h b/src/script/cpp_api/s_client_common.h new file mode 100644 index 000000000..b75ce53e1 --- /dev/null +++ b/src/script/cpp_api/s_client_common.h @@ -0,0 +1,16 @@ +// Luanti +// SPDX-License-Identifier: LGPL-2.1-or-later +// Copyright (C) 2013 celeron55, Perttu Ahola +// Copyright (C) 2017 nerzhul, Loic Blot +// Copyright (C) 2025 grorp + +#pragma once + +#include "cpp_api/s_base.h" +#include "util/string.h" + +class ScriptApiClientCommon : virtual public ScriptApiBase +{ +public: + bool on_formspec_input(const std::string &formname, const StringMap &fields); +}; diff --git a/src/script/cpp_api/s_entity.cpp b/src/script/cpp_api/s_entity.cpp index c1b7244df..fd4d9fed6 100644 --- a/src/script/cpp_api/s_entity.cpp +++ b/src/script/cpp_api/s_entity.cpp @@ -197,13 +197,17 @@ void ScriptApiEntity::luaentity_GetProperties(u16 id, // Set default values that differ from ObjectProperties defaults prop->hp_max = 10; + auto *idef = getServer()->idef(); + // Deprecated: read object properties directly + // TODO: this should be changed to not read the legacy place + // if `initial_properties` exists! logDeprecationForExistingProperties(L, -1, entity_name); - read_object_properties(L, -1, self, prop, getServer()->idef()); + read_object_properties(L, -1, self, prop, idef, true); // Read initial_properties lua_getfield(L, -1, "initial_properties"); - read_object_properties(L, -1, self, prop, getServer()->idef()); + read_object_properties(L, -1, self, prop, idef); lua_pop(L, 1); } diff --git a/src/script/cpp_api/s_internal.h b/src/script/cpp_api/s_internal.h index 3379d15c6..dc5823df1 100644 --- a/src/script/cpp_api/s_internal.h +++ b/src/script/cpp_api/s_internal.h @@ -15,6 +15,7 @@ #include "common/c_internal.h" #include "cpp_api/s_base.h" #include "threading/mutex_auto_lock.h" +#include "common/c_types.h" #ifdef SCRIPTAPI_LOCK_DEBUG #include diff --git a/src/script/cpp_api/s_pause_menu.cpp b/src/script/cpp_api/s_pause_menu.cpp new file mode 100644 index 000000000..9f4cdfb94 --- /dev/null +++ b/src/script/cpp_api/s_pause_menu.cpp @@ -0,0 +1,20 @@ +// Luanti +// SPDX-License-Identifier: LGPL-2.1-or-later +// Copyright (C) 2025 grorp + +#include "s_pause_menu.h" +#include "cpp_api/s_internal.h" + +void ScriptApiPauseMenu::open_settings() +{ + SCRIPTAPI_PRECHECKHEADER + + int error_handler = PUSH_ERROR_HANDLER(L); + + lua_getglobal(L, "core"); + lua_getfield(L, -1, "open_settings"); + + PCALL_RES(lua_pcall(L, 0, 0, error_handler)); + + lua_pop(L, 2); // Pop core, error handler +} diff --git a/src/script/cpp_api/s_pause_menu.h b/src/script/cpp_api/s_pause_menu.h new file mode 100644 index 000000000..b8feac81a --- /dev/null +++ b/src/script/cpp_api/s_pause_menu.h @@ -0,0 +1,13 @@ +// Luanti +// SPDX-License-Identifier: LGPL-2.1-or-later +// Copyright (C) 2025 grorp + +#pragma once + +#include "cpp_api/s_base.h" + +class ScriptApiPauseMenu : virtual public ScriptApiBase +{ +public: + void open_settings(); +}; diff --git a/src/script/cpp_api/s_security.cpp b/src/script/cpp_api/s_security.cpp index 38094ab8c..834650fdc 100644 --- a/src/script/cpp_api/s_security.cpp +++ b/src/script/cpp_api/s_security.cpp @@ -659,6 +659,13 @@ bool ScriptApiSecurity::checkPathWithGamedef(lua_State *L, } } + // Allow read-only access to builtin + if (!write_required) { + str = fs::AbsolutePath(Server::getBuiltinLuaPath()); + if (!str.empty() && fs::PathStartsWith(abs_path, str)) + return true; + } + // Allow read-only access to game directory if (!write_required) { const SubgameSpec *game_spec = gamedef->getGameSpec(); @@ -773,7 +780,7 @@ int ScriptApiSecurity::sl_g_loadfile(lua_State *L) std::string path = readParam(L, 1); const std::string *contents = script->getClient()->getModFile(path); if (!contents) { - std::string error_msg = "Coudln't find script called: " + path; + std::string error_msg = "Couldn't find script called: " + path; lua_pushnil(L); lua_pushstring(L, error_msg.c_str()); return 2; diff --git a/src/script/lua_api/CMakeLists.txt b/src/script/lua_api/CMakeLists.txt index 2e12f8c56..ef1be9525 100644 --- a/src/script/lua_api/CMakeLists.txt +++ b/src/script/lua_api/CMakeLists.txt @@ -29,11 +29,14 @@ set(common_SCRIPT_LUA_API_SRCS set(client_SCRIPT_LUA_API_SRCS ${CMAKE_CURRENT_SOURCE_DIR}/l_camera.cpp ${CMAKE_CURRENT_SOURCE_DIR}/l_client.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/l_client_common.cpp ${CMAKE_CURRENT_SOURCE_DIR}/l_client_sound.cpp ${CMAKE_CURRENT_SOURCE_DIR}/l_localplayer.cpp ${CMAKE_CURRENT_SOURCE_DIR}/l_mainmenu.cpp ${CMAKE_CURRENT_SOURCE_DIR}/l_mainmenu_sound.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/l_menu_common.cpp ${CMAKE_CURRENT_SOURCE_DIR}/l_minimap.cpp ${CMAKE_CURRENT_SOURCE_DIR}/l_particles_local.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/l_pause_menu.cpp ${CMAKE_CURRENT_SOURCE_DIR}/l_storage.cpp PARENT_SCOPE) diff --git a/src/script/lua_api/l_client.cpp b/src/script/lua_api/l_client.cpp index 7735bff92..2aef6d470 100644 --- a/src/script/lua_api/l_client.cpp +++ b/src/script/lua_api/l_client.cpp @@ -127,21 +127,6 @@ int ModApiClient::l_get_player_names(lua_State *L) return 1; } -// show_formspec(formspec) -int ModApiClient::l_show_formspec(lua_State *L) -{ - if (!lua_isstring(L, 1) || !lua_isstring(L, 2)) - return 0; - - ClientEvent *event = new ClientEvent(); - event->type = CE_SHOW_LOCAL_FORMSPEC; - event->show_formspec.formname = new std::string(luaL_checkstring(L, 1)); - event->show_formspec.formspec = new std::string(luaL_checkstring(L, 2)); - getClient(L)->pushToEventQueue(event); - lua_pushboolean(L, true); - return 1; -} - // disconnect() int ModApiClient::l_disconnect(lua_State *L) { @@ -325,7 +310,6 @@ void ModApiClient::Initialize(lua_State *L, int top) API_FCT(send_chat_message); API_FCT(clear_out_chat_queue); API_FCT(get_player_names); - API_FCT(show_formspec); API_FCT(gettext); API_FCT(get_node_or_nil); API_FCT(disconnect); diff --git a/src/script/lua_api/l_client.h b/src/script/lua_api/l_client.h index fb5c53171..777b128cc 100644 --- a/src/script/lua_api/l_client.h +++ b/src/script/lua_api/l_client.h @@ -33,9 +33,6 @@ private: // get_player_names() static int l_get_player_names(lua_State *L); - // show_formspec(name, formspec) - static int l_show_formspec(lua_State *L); - // disconnect() static int l_disconnect(lua_State *L); diff --git a/src/script/lua_api/l_client_common.cpp b/src/script/lua_api/l_client_common.cpp new file mode 100644 index 000000000..21d040fa1 --- /dev/null +++ b/src/script/lua_api/l_client_common.cpp @@ -0,0 +1,33 @@ +// Luanti +// SPDX-License-Identifier: LGPL-2.1-or-later +// Copyright (C) 2013 celeron55, Perttu Ahola +// Copyright (C) 2017 nerzhul, Loic Blot +// Copyright (C) 2025 grorp + +#include "l_client_common.h" + +#include "client/client.h" +#include "client/clientevent.h" +#include "cpp_api/s_base.h" +#include "lua_api/l_internal.h" + + +// show_formspec(formspec) +int ModApiClientCommon::l_show_formspec(lua_State *L) +{ + ClientEvent *event = new ClientEvent(); + event->type = getScriptApiBase(L)->getType() == ScriptingType::PauseMenu + ? CE_SHOW_PAUSE_MENU_FORMSPEC + : CE_SHOW_CSM_FORMSPEC; + event->show_formspec.formname = new std::string(luaL_checkstring(L, 1)); + event->show_formspec.formspec = new std::string(luaL_checkstring(L, 2)); + getClient(L)->pushToEventQueue(event); + lua_pushboolean(L, true); + return 1; +} + + +void ModApiClientCommon::Initialize(lua_State *L, int top) +{ + API_FCT(show_formspec); +} diff --git a/src/script/lua_api/l_client_common.h b/src/script/lua_api/l_client_common.h new file mode 100644 index 000000000..5063032ab --- /dev/null +++ b/src/script/lua_api/l_client_common.h @@ -0,0 +1,19 @@ +// Luanti +// SPDX-License-Identifier: LGPL-2.1-or-later +// Copyright (C) 2013 celeron55, Perttu Ahola +// Copyright (C) 2017 nerzhul, Loic Blot +// Copyright (C) 2025 grorp + +#pragma once + +#include "lua_api/l_base.h" + +class ModApiClientCommon : public ModApiBase +{ +private: + // show_formspec(name, formspec) + static int l_show_formspec(lua_State *L); + +public: + static void Initialize(lua_State *L, int top); +}; diff --git a/src/script/lua_api/l_craft.cpp b/src/script/lua_api/l_craft.cpp index be6eb4102..f3b6fd41c 100644 --- a/src/script/lua_api/l_craft.cpp +++ b/src/script/lua_api/l_craft.cpp @@ -411,7 +411,7 @@ static void push_craft_recipe(lua_State *L, IGameDef *gdef, CraftOutput output = recipe->getOutput(input, gdef); lua_newtable(L); // items - std::vector::const_iterator iter = input.items.begin(); + auto iter = input.items.begin(); for (u16 j = 1; iter != input.items.end(); ++iter, j++) { if (iter->empty()) continue; @@ -457,7 +457,7 @@ static void push_craft_recipes(lua_State *L, IGameDef *gdef, lua_createtable(L, recipes.size(), 0); - std::vector::const_iterator it = recipes.begin(); + auto it = recipes.begin(); for (unsigned i = 0; it != recipes.end(); ++it) { lua_newtable(L); push_craft_recipe(L, gdef, *it, output); diff --git a/src/script/lua_api/l_env.cpp b/src/script/lua_api/l_env.cpp index 5ebb2c3e4..195e002ec 100644 --- a/src/script/lua_api/l_env.cpp +++ b/src/script/lua_api/l_env.cpp @@ -847,9 +847,8 @@ int ModApiEnv::l_find_node_near(lua_State *L) void ModApiEnvBase::checkArea(v3s16 &minp, v3s16 &maxp) { auto volume = VoxelArea(minp, maxp).getVolume(); - // Volume limit equal to 8 default mapchunks, (80 * 2) ^ 3 = 4,096,000 - if (volume > 4096000) { - throw LuaError("Area volume exceeds allowed value of 4096000"); + if (volume > MAX_WORKING_VOLUME) { + throw LuaError("Area volume exceeds allowed value of " + std::to_string(MAX_WORKING_VOLUME)); } // Clamp to map range to avoid problems @@ -1024,9 +1023,9 @@ int ModApiEnv::l_find_nodes_in_area_under_air(lua_State *L) return findNodesInAreaUnderAir(L, minp, maxp, filter, getNode); } -// get_perlin(seeddiff, octaves, persistence, scale) -// returns world-specific PerlinNoise -int ModApiEnv::l_get_perlin(lua_State *L) +// get_value_noise(seeddiff, octaves, persistence, scale) +// returns world-specific ValueNoise +int ModApiEnv::l_get_value_noise(lua_State *L) { GET_ENV_PTR_NO_MAP_LOCK; @@ -1043,16 +1042,16 @@ int ModApiEnv::l_get_perlin(lua_State *L) params.seed += (int)env->getServerMap().getSeed(); - LuaPerlinNoise *n = new LuaPerlinNoise(¶ms); + LuaValueNoise *n = new LuaValueNoise(¶ms); *(void **)(lua_newuserdata(L, sizeof(void *))) = n; - luaL_getmetatable(L, "PerlinNoise"); + luaL_getmetatable(L, "ValueNoise"); lua_setmetatable(L, -2); return 1; } -// get_perlin_map(noiseparams, size) -// returns world-specific PerlinNoiseMap -int ModApiEnv::l_get_perlin_map(lua_State *L) +// get_value_noise_map(noiseparams, size) +// returns world-specific ValueNoiseMap +int ModApiEnv::l_get_value_noise_map(lua_State *L) { GET_ENV_PTR_NO_MAP_LOCK; @@ -1062,9 +1061,9 @@ int ModApiEnv::l_get_perlin_map(lua_State *L) v3s16 size = read_v3s16(L, 2); s32 seed = (s32)(env->getServerMap().getSeed()); - LuaPerlinNoiseMap *n = new LuaPerlinNoiseMap(&np, seed, size); + LuaValueNoiseMap *n = new LuaValueNoiseMap(&np, seed, size); *(void **)(lua_newuserdata(L, sizeof(void *))) = n; - luaL_getmetatable(L, "PerlinNoiseMap"); + luaL_getmetatable(L, "ValueNoiseMap"); lua_setmetatable(L, -2); return 1; } @@ -1416,8 +1415,8 @@ void ModApiEnv::Initialize(lua_State *L, int top) API_FCT(load_area); API_FCT(emerge_area); API_FCT(delete_area); - API_FCT(get_perlin); - API_FCT(get_perlin_map); + API_FCT(get_value_noise); + API_FCT(get_value_noise_map); API_FCT(get_voxel_manip); API_FCT(clear_objects); API_FCT(spawn_tree); diff --git a/src/script/lua_api/l_env.h b/src/script/lua_api/l_env.h index 49b3458a6..e755166a7 100644 --- a/src/script/lua_api/l_env.h +++ b/src/script/lua_api/l_env.h @@ -179,13 +179,13 @@ private: // delete_area(p1, p2) -> true/false static int l_delete_area(lua_State *L); - // get_perlin(seeddiff, octaves, persistence, scale) - // returns world-specific PerlinNoise - static int l_get_perlin(lua_State *L); + // get_value_noise(seeddiff, octaves, persistence, scale) + // returns world-specific ValueNoise + static int l_get_value_noise(lua_State *L); - // get_perlin_map(noiseparams, size) - // returns world-specific PerlinNoiseMap - static int l_get_perlin_map(lua_State *L); + // get_value_noise_map(noiseparams, size) + // returns world-specific ValueNoiseMap + static int l_get_value_noise_map(lua_State *L); // get_voxel_manip() // returns world-specific voxel manipulator diff --git a/src/script/lua_api/l_inventory.cpp b/src/script/lua_api/l_inventory.cpp index d1c357329..10bebb85e 100644 --- a/src/script/lua_api/l_inventory.cpp +++ b/src/script/lua_api/l_inventory.cpp @@ -96,38 +96,37 @@ int InvRef::l_set_size(lua_State *L) NO_MAP_LOCK_REQUIRED; InvRef *ref = checkObject(L, 1); const char *listname = luaL_checkstring(L, 2); + Inventory *inv; + InventoryList *list; int newsize = luaL_checknumber(L, 3); - if (newsize < 0) { - lua_pushboolean(L, false); - return 1; + if (newsize < 0) + goto fail; + + inv = getinv(L, ref); + if (!inv) + goto fail; + + if (newsize == 0) { + inv->deleteList(listname); + goto done; } - Inventory *inv = getinv(L, ref); - if(inv == NULL){ - lua_pushboolean(L, false); - return 1; - } - if(newsize == 0){ - inv->deleteList(listname); - reportInventoryChange(L, ref); - lua_pushboolean(L, true); - return 1; - } - InventoryList *list = inv->getList(listname); - if(list){ + list = inv->getList(listname); + if (list) { list->setSize(newsize); } else { list = inv->addList(listname, newsize); if (!list) - { - lua_pushboolean(L, false); - return 1; - } + goto fail; } +done: reportInventoryChange(L, ref); lua_pushboolean(L, true); return 1; +fail: + lua_pushboolean(L, false); + return 1; } // set_width(self, listname, size) @@ -136,28 +135,28 @@ int InvRef::l_set_width(lua_State *L) NO_MAP_LOCK_REQUIRED; InvRef *ref = checkObject(L, 1); const char *listname = luaL_checkstring(L, 2); + Inventory *inv; + InventoryList *list; int newwidth = luaL_checknumber(L, 3); - if (newwidth < 0) { - lua_pushboolean(L, false); - return 1; - } + if (newwidth < 0) + goto fail; - Inventory *inv = getinv(L, ref); - if(inv == NULL){ - lua_pushboolean(L, false); - return 1; - } - InventoryList *list = inv->getList(listname); - if(list){ - list->setWidth(newwidth); - } else { - lua_pushboolean(L, false); - return 1; - } + inv = getinv(L, ref); + if (!inv) + goto fail; + + list = inv->getList(listname); + if (!list) + goto fail; + + list->setWidth(newwidth); reportInventoryChange(L, ref); lua_pushboolean(L, true); return 1; +fail: + lua_pushboolean(L, false); + return 1; } // get_stack(self, listname, i) -> itemstack @@ -320,9 +319,7 @@ int InvRef::l_contains_item(lua_State *L) const char *listname = luaL_checkstring(L, 2); ItemStack item = read_item(L, 3, getServer(L)->idef()); InventoryList *list = getlist(L, ref, listname); - bool match_meta = false; - if (lua_isboolean(L, 4)) - match_meta = readParam(L, 4); + bool match_meta = readParam(L, 4, false); if (list) { lua_pushboolean(L, list->containsItem(item, match_meta)); } else { @@ -331,7 +328,7 @@ int InvRef::l_contains_item(lua_State *L) return 1; } -// remove_item(self, listname, itemstack or itemstring or table or nil) -> itemstack +// remove_item(self, listname, itemstack or itemstring or table or nil, [match_meta]) -> itemstack // Returns the items that were actually removed int InvRef::l_remove_item(lua_State *L) { @@ -340,8 +337,9 @@ int InvRef::l_remove_item(lua_State *L) const char *listname = luaL_checkstring(L, 2); ItemStack item = read_item(L, 3, getServer(L)->idef()); InventoryList *list = getlist(L, ref, listname); + bool match_meta = readParam(L, 4, false); if(list){ - ItemStack removed = list->removeItem(item); + ItemStack removed = list->removeItem(item, match_meta); if(!removed.empty()) reportInventoryChange(L, ref); LuaItemStack::create(L, removed); diff --git a/src/script/lua_api/l_item.cpp b/src/script/lua_api/l_item.cpp index 37e23e59f..04182041e 100644 --- a/src/script/lua_api/l_item.cpp +++ b/src/script/lua_api/l_item.cpp @@ -445,13 +445,13 @@ int LuaItemStack::l_equals(lua_State *L) NO_MAP_LOCK_REQUIRED; LuaItemStack *o1 = checkObject(L, 1); - // checks for non-userdata argument + // checks for non-userdata argument if (!lua_isuserdata(L, 2)) { lua_pushboolean(L, false); return 1; } - // check that the argument is an ItemStack + // check that the argument is an ItemStack if (!lua_getmetatable(L, 2)) { lua_pushboolean(L, false); return 1; diff --git a/src/script/lua_api/l_mainmenu.cpp b/src/script/lua_api/l_mainmenu.cpp index 0353efe1d..7070952e6 100644 --- a/src/script/lua_api/l_mainmenu.cpp +++ b/src/script/lua_api/l_mainmenu.cpp @@ -29,6 +29,12 @@ #include "threading/mutex_auto_lock.h" #include "common/c_converter.h" #include "gui/guiOpenURL.h" +#include "gettext.h" +#include "log.h" +#include "util/string.h" + +#include +#include /******************************************************************************/ std::string ModApiMainMenu::getTextData(lua_State *L, const std::string &name) @@ -125,10 +131,13 @@ int ModApiMainMenu::l_start(lua_State *L) data->simple_singleplayer_mode = getBoolData(L,"singleplayer",valid); data->do_reconnect = getBoolData(L, "do_reconnect", valid); if (!data->do_reconnect) { - data->name = getTextData(L,"playername"); - data->password = getTextData(L,"password"); - data->address = getTextData(L,"address"); - data->port = getTextData(L,"port"); + // Get rid of trailing whitespace in name (may be added by autocompletion + // on Android, which would then cause SERVER_ACCESSDENIED_WRONG_CHARS_IN_NAME). + data->name = trim(getTextData(L, "playername")); + data->password = getTextData(L, "password"); + // There's no reason for these to have leading/trailing whitespace either. + data->address = trim(getTextData(L, "address")); + data->port = trim(getTextData(L, "port")); const auto val = getTextData(L, "allow_login_or_register"); if (val == "login") @@ -350,6 +359,15 @@ int ModApiMainMenu::l_get_content_info(lua_State *L) spec.path = path; parseContentInfo(spec); + if (spec.type == "unknown") { + // In <=5.11.0 the API call was erroneously not documented as + // being able to return type "unknown". + // TODO inspect call sites and make sure this is handled, then we can + // likely remove the warning. + warningstream << "Requested content info has type \"unknown\" " + << "(at " << path << ")" << std::endl; + } + lua_newtable(L); lua_pushstring(L, spec.name.c_str()); @@ -364,11 +382,6 @@ int ModApiMainMenu::l_get_content_info(lua_State *L) lua_pushstring(L, spec.author.c_str()); lua_setfield(L, -2, "author"); - if (!spec.title.empty()) { - lua_pushstring(L, spec.title.c_str()); - lua_setfield(L, -2, "title"); - } - lua_pushinteger(L, spec.release); lua_setfield(L, -2, "release"); @@ -384,7 +397,12 @@ int ModApiMainMenu::l_get_content_info(lua_State *L) if (spec.type == "mod") { ModSpec spec; spec.path = path; - parseModContents(spec); + // Since the content was already determined to be a mod, + // the parsing is guaranteed to succeed unless the init.lua + // file happens to be deleted between the content parse and + // the mod parse. + [[maybe_unused]] bool success = parseModContents(spec); + assert(success); // Dependencies lua_newtable(L); @@ -875,27 +893,6 @@ int ModApiMainMenu::l_download_file(lua_State *L) return 1; } -/******************************************************************************/ -int ModApiMainMenu::l_get_video_drivers(lua_State *L) -{ - auto drivers = RenderingEngine::getSupportedVideoDrivers(); - - lua_newtable(L); - for (u32 i = 0; i != drivers.size(); i++) { - auto &info = RenderingEngine::getVideoDriverInfo(drivers[i]); - - lua_newtable(L); - lua_pushstring(L, info.name.c_str()); - lua_setfield(L, -2, "name"); - lua_pushstring(L, info.friendly_name.c_str()); - lua_setfield(L, -2, "friendly_name"); - - lua_rawseti(L, -2, i + 1); - } - - return 1; -} - /******************************************************************************/ int ModApiMainMenu::l_get_language(lua_State *L) { @@ -907,16 +904,6 @@ int ModApiMainMenu::l_get_language(lua_State *L) return 1; } -/******************************************************************************/ -int ModApiMainMenu::l_gettext(lua_State *L) -{ - const char *srctext = luaL_checkstring(L, 1); - const char *text = *srctext ? gettext(srctext) : ""; - lua_pushstring(L, text); - - return 1; -} - /******************************************************************************/ int ModApiMainMenu::l_get_window_info(lua_State *L) { @@ -949,14 +936,6 @@ int ModApiMainMenu::l_get_window_info(lua_State *L) } /******************************************************************************/ -int ModApiMainMenu::l_get_active_driver(lua_State *L) -{ - auto drivertype = RenderingEngine::get_video_driver()->getDriverType(); - lua_pushstring(L, RenderingEngine::getVideoDriverInfo(drivertype).name.c_str()); - return 1; -} - - int ModApiMainMenu::l_get_active_renderer(lua_State *L) { lua_pushstring(L, RenderingEngine::get_video_driver()->getName()); @@ -980,14 +959,6 @@ int ModApiMainMenu::l_get_active_irrlicht_device(lua_State *L) return 1; } -/******************************************************************************/ -int ModApiMainMenu::l_irrlicht_device_supports_touch(lua_State *L) -{ - lua_pushboolean(L, RenderingEngine::get_raw_device()->supportsTouchEvents()); - return 1; -} - - /******************************************************************************/ int ModApiMainMenu::l_get_min_supp_proto(lua_State *L) { @@ -1122,13 +1093,9 @@ void ModApiMainMenu::Initialize(lua_State *L, int top) API_FCT(show_path_select_dialog); API_FCT(download_file); API_FCT(get_language); - API_FCT(gettext); - API_FCT(get_video_drivers); API_FCT(get_window_info); - API_FCT(get_active_driver); API_FCT(get_active_renderer); API_FCT(get_active_irrlicht_device); - API_FCT(irrlicht_device_supports_touch); API_FCT(get_min_supp_proto); API_FCT(get_max_supp_proto); API_FCT(get_formspec_version); @@ -1165,5 +1132,4 @@ void ModApiMainMenu::InitializeAsync(lua_State *L, int top) API_FCT(get_max_supp_proto); API_FCT(get_formspec_version); API_FCT(get_language); - API_FCT(gettext); } diff --git a/src/script/lua_api/l_mainmenu.h b/src/script/lua_api/l_mainmenu.h index 704924bf3..63f45d74b 100644 --- a/src/script/lua_api/l_mainmenu.h +++ b/src/script/lua_api/l_mainmenu.h @@ -53,8 +53,6 @@ private: static int l_get_language(lua_State *L); - static int l_gettext(lua_State *L); - //packages static int l_get_games(lua_State *L); @@ -89,14 +87,10 @@ private: static int l_get_window_info(lua_State *L); - static int l_get_active_driver(lua_State *L); - static int l_get_active_renderer(lua_State *L); static int l_get_active_irrlicht_device(lua_State *L); - static int l_irrlicht_device_supports_touch(lua_State *L); - //filesystem static int l_get_mainmenu_path(lua_State *L); @@ -133,8 +127,6 @@ private: static int l_download_file(lua_State *L); - static int l_get_video_drivers(lua_State *L); - //version compatibility static int l_get_min_supp_proto(lua_State *L); diff --git a/src/script/lua_api/l_mapgen.cpp b/src/script/lua_api/l_mapgen.cpp index aa017a0ea..49c28172b 100644 --- a/src/script/lua_api/l_mapgen.cpp +++ b/src/script/lua_api/l_mapgen.cpp @@ -250,7 +250,7 @@ bool read_schematic_def(lua_State *L, int index, u8 param2 = getintfield_default(L, -1, "param2", 0); //// Find or add new nodename-to-ID mapping - std::unordered_map::iterator it = name_id_map.find(name); + auto it = name_id_map.find(name); content_t name_index; if (it != name_id_map.end()) { name_index = it->second; @@ -428,7 +428,7 @@ size_t get_biome_list(lua_State *L, int index, if (is_single) { Biome *biome = get_or_load_biome(L, index, biomemgr); if (!biome) { - infostream << "get_biome_list: failed to get biome '" + warningstream << "get_biome_list: failed to get biome '" << (lua_isstring(L, index) ? lua_tostring(L, index) : "") << "'." << std::endl; return 1; @@ -445,7 +445,7 @@ size_t get_biome_list(lua_State *L, int index, Biome *biome = get_or_load_biome(L, -1, biomemgr); if (!biome) { fail_count++; - infostream << "get_biome_list: failed to get biome '" + warningstream << "get_biome_list: failed to get biome '" << (lua_isstring(L, -1) ? lua_tostring(L, -1) : "") << "'" << std::endl; continue; @@ -552,24 +552,33 @@ int ModApiMapgen::l_get_biome_data(lua_State *L) if (!biomegen) return 0; - const Biome *biome = biomegen->calcBiomeAtPoint(pos); - if (!biome || biome->index == OBJDEF_INVALID_INDEX) - return 0; - - lua_newtable(L); - - lua_pushinteger(L, biome->index); - lua_setfield(L, -2, "biome"); - if (biomegen->getType() == BIOMEGEN_ORIGINAL) { float heat = ((BiomeGenOriginal*) biomegen)->calcHeatAtPoint(pos); float humidity = ((BiomeGenOriginal*) biomegen)->calcHumidityAtPoint(pos); + const Biome *biome = ((BiomeGenOriginal*) biomegen)->calcBiomeFromNoise(heat, humidity, pos); + if (!biome || biome->index == OBJDEF_INVALID_INDEX) + return 0; + + lua_newtable(L); + + lua_pushinteger(L, biome->index); + lua_setfield(L, -2, "biome"); lua_pushnumber(L, heat); lua_setfield(L, -2, "heat"); lua_pushnumber(L, humidity); lua_setfield(L, -2, "humidity"); + + } else { + const Biome *biome = biomegen->calcBiomeAtPoint(pos); + if (!biome || biome->index == OBJDEF_INVALID_INDEX) + return 0; + + lua_newtable(L); + + lua_pushinteger(L, biome->index); + lua_setfield(L, -2, "biome"); } return 1; diff --git a/src/script/lua_api/l_menu_common.cpp b/src/script/lua_api/l_menu_common.cpp new file mode 100644 index 000000000..19c97c042 --- /dev/null +++ b/src/script/lua_api/l_menu_common.cpp @@ -0,0 +1,49 @@ +// Luanti +// SPDX-License-Identifier: LGPL-2.1-or-later +// Copyright (C) 2013 sapier +// Copyright (C) 2025 grorp + +#include "l_menu_common.h" + +#include "client/renderingengine.h" +#include "gettext.h" +#include "lua_api/l_internal.h" + + +int ModApiMenuCommon::l_gettext(lua_State *L) +{ + const char *srctext = luaL_checkstring(L, 1); + const char *text = *srctext ? gettext(srctext) : ""; + lua_pushstring(L, text); + + return 1; +} + + +int ModApiMenuCommon::l_get_active_driver(lua_State *L) +{ + auto drivertype = RenderingEngine::get_video_driver()->getDriverType(); + lua_pushstring(L, RenderingEngine::getVideoDriverInfo(drivertype).name.c_str()); + return 1; +} + + +int ModApiMenuCommon::l_irrlicht_device_supports_touch(lua_State *L) +{ + lua_pushboolean(L, RenderingEngine::get_raw_device()->supportsTouchEvents()); + return 1; +} + + +void ModApiMenuCommon::Initialize(lua_State *L, int top) +{ + API_FCT(gettext); + API_FCT(get_active_driver); + API_FCT(irrlicht_device_supports_touch); +} + + +void ModApiMenuCommon::InitializeAsync(lua_State *L, int top) +{ + API_FCT(gettext); +} diff --git a/src/script/lua_api/l_menu_common.h b/src/script/lua_api/l_menu_common.h new file mode 100644 index 000000000..e94e562e1 --- /dev/null +++ b/src/script/lua_api/l_menu_common.h @@ -0,0 +1,20 @@ +// Luanti +// SPDX-License-Identifier: LGPL-2.1-or-later +// Copyright (C) 2013 sapier +// Copyright (C) 2025 grorp + +#pragma once + +#include "l_base.h" + +class ModApiMenuCommon: public ModApiBase +{ +private: + static int l_gettext(lua_State *L); + static int l_get_active_driver(lua_State *L); + static int l_irrlicht_device_supports_touch(lua_State *L); + +public: + static void Initialize(lua_State *L, int top); + static void InitializeAsync(lua_State *L, int top); +}; diff --git a/src/script/lua_api/l_noise.cpp b/src/script/lua_api/l_noise.cpp index 3818218ee..5ad57835b 100644 --- a/src/script/lua_api/l_noise.cpp +++ b/src/script/lua_api/l_noise.cpp @@ -13,38 +13,38 @@ /////////////////////////////////////// /* - LuaPerlinNoise + LuaValueNoise */ -LuaPerlinNoise::LuaPerlinNoise(const NoiseParams *params) : +LuaValueNoise::LuaValueNoise(const NoiseParams *params) : np(*params) { } -int LuaPerlinNoise::l_get_2d(lua_State *L) +int LuaValueNoise::l_get_2d(lua_State *L) { NO_MAP_LOCK_REQUIRED; - LuaPerlinNoise *o = checkObject(L, 1); + LuaValueNoise *o = checkObject(L, 1); v2f p = readParam(L, 2); - lua_Number val = NoisePerlin2D(&o->np, p.X, p.Y, 0); + lua_Number val = NoiseFractal2D(&o->np, p.X, p.Y, 0); lua_pushnumber(L, val); return 1; } -int LuaPerlinNoise::l_get_3d(lua_State *L) +int LuaValueNoise::l_get_3d(lua_State *L) { NO_MAP_LOCK_REQUIRED; - LuaPerlinNoise *o = checkObject(L, 1); + LuaValueNoise *o = checkObject(L, 1); v3f p = check_v3f(L, 2); - lua_Number val = NoisePerlin3D(&o->np, p.X, p.Y, p.Z, 0); + lua_Number val = NoiseFractal3D(&o->np, p.X, p.Y, p.Z, 0); lua_pushnumber(L, val); return 1; } -int LuaPerlinNoise::create_object(lua_State *L) +int LuaValueNoise::create_object(lua_State *L) { NO_MAP_LOCK_REQUIRED; @@ -59,7 +59,7 @@ int LuaPerlinNoise::create_object(lua_State *L) params.spread = v3f(1, 1, 1) * readParam(L, 4); } - LuaPerlinNoise *o = new LuaPerlinNoise(¶ms); + LuaValueNoise *o = new LuaValueNoise(¶ms); *(void **)(lua_newuserdata(L, sizeof(void *))) = o; luaL_getmetatable(L, className); @@ -68,25 +68,25 @@ int LuaPerlinNoise::create_object(lua_State *L) } -int LuaPerlinNoise::gc_object(lua_State *L) +int LuaValueNoise::gc_object(lua_State *L) { - LuaPerlinNoise *o = *(LuaPerlinNoise **)(lua_touserdata(L, 1)); + LuaValueNoise *o = *(LuaValueNoise **)(lua_touserdata(L, 1)); delete o; return 0; } -void *LuaPerlinNoise::packIn(lua_State *L, int idx) +void *LuaValueNoise::packIn(lua_State *L, int idx) { - LuaPerlinNoise *o = checkObject(L, idx); + LuaValueNoise *o = checkObject(L, idx); return new NoiseParams(o->np); } -void LuaPerlinNoise::packOut(lua_State *L, void *ptr) +void LuaValueNoise::packOut(lua_State *L, void *ptr) { NoiseParams *np = reinterpret_cast(ptr); if (L) { - LuaPerlinNoise *o = new LuaPerlinNoise(np); + LuaValueNoise *o = new LuaValueNoise(np); *(void **)(lua_newuserdata(L, sizeof(void *))) = o; luaL_getmetatable(L, className); lua_setmetatable(L, -2); @@ -95,7 +95,7 @@ void LuaPerlinNoise::packOut(lua_State *L, void *ptr) } -void LuaPerlinNoise::Register(lua_State *L) +void LuaValueNoise::Register(lua_State *L) { static const luaL_Reg metamethods[] = { {"__gc", gc_object}, @@ -109,19 +109,19 @@ void LuaPerlinNoise::Register(lua_State *L) } -const char LuaPerlinNoise::className[] = "PerlinNoise"; -luaL_Reg LuaPerlinNoise::methods[] = { - luamethod_aliased(LuaPerlinNoise, get_2d, get2d), - luamethod_aliased(LuaPerlinNoise, get_3d, get3d), +const char LuaValueNoise::className[] = "ValueNoise"; +luaL_Reg LuaValueNoise::methods[] = { + luamethod_aliased(LuaValueNoise, get_2d, get2d), + luamethod_aliased(LuaValueNoise, get_3d, get3d), {0,0} }; /////////////////////////////////////// /* - LuaPerlinNoiseMap + LuaValueNoiseMap */ -LuaPerlinNoiseMap::LuaPerlinNoiseMap(const NoiseParams *np, s32 seed, v3s16 size) +LuaValueNoiseMap::LuaValueNoiseMap(const NoiseParams *np, s32 seed, v3s16 size) { try { noise = new Noise(np, seed, size.X, size.Y, size.Z); @@ -131,22 +131,22 @@ LuaPerlinNoiseMap::LuaPerlinNoiseMap(const NoiseParams *np, s32 seed, v3s16 size } -LuaPerlinNoiseMap::~LuaPerlinNoiseMap() +LuaValueNoiseMap::~LuaValueNoiseMap() { delete noise; } -int LuaPerlinNoiseMap::l_get_2d_map(lua_State *L) +int LuaValueNoiseMap::l_get_2d_map(lua_State *L) { NO_MAP_LOCK_REQUIRED; size_t i = 0; - LuaPerlinNoiseMap *o = checkObject(L, 1); + LuaValueNoiseMap *o = checkObject(L, 1); v2f p = readParam(L, 2); Noise *n = o->noise; - n->perlinMap2D(p.X, p.Y); + n->noiseMap2D(p.X, p.Y); lua_createtable(L, n->sy, 0); for (u32 y = 0; y != n->sy; y++) { @@ -161,16 +161,16 @@ int LuaPerlinNoiseMap::l_get_2d_map(lua_State *L) } -int LuaPerlinNoiseMap::l_get_2d_map_flat(lua_State *L) +int LuaValueNoiseMap::l_get_2d_map_flat(lua_State *L) { NO_MAP_LOCK_REQUIRED; - LuaPerlinNoiseMap *o = checkObject(L, 1); + LuaValueNoiseMap *o = checkObject(L, 1); v2f p = readParam(L, 2); bool use_buffer = lua_istable(L, 3); Noise *n = o->noise; - n->perlinMap2D(p.X, p.Y); + n->noiseMap2D(p.X, p.Y); size_t maplen = n->sx * n->sy; @@ -187,19 +187,19 @@ int LuaPerlinNoiseMap::l_get_2d_map_flat(lua_State *L) } -int LuaPerlinNoiseMap::l_get_3d_map(lua_State *L) +int LuaValueNoiseMap::l_get_3d_map(lua_State *L) { NO_MAP_LOCK_REQUIRED; size_t i = 0; - LuaPerlinNoiseMap *o = checkObject(L, 1); + LuaValueNoiseMap *o = checkObject(L, 1); v3f p = check_v3f(L, 2); if (!o->is3D()) return 0; Noise *n = o->noise; - n->perlinMap3D(p.X, p.Y, p.Z); + n->noiseMap3D(p.X, p.Y, p.Z); lua_createtable(L, n->sz, 0); for (u32 z = 0; z != n->sz; z++) { @@ -218,11 +218,11 @@ int LuaPerlinNoiseMap::l_get_3d_map(lua_State *L) } -int LuaPerlinNoiseMap::l_get_3d_map_flat(lua_State *L) +int LuaValueNoiseMap::l_get_3d_map_flat(lua_State *L) { NO_MAP_LOCK_REQUIRED; - LuaPerlinNoiseMap *o = checkObject(L, 1); + LuaValueNoiseMap *o = checkObject(L, 1); v3f p = check_v3f(L, 2); bool use_buffer = lua_istable(L, 3); @@ -230,7 +230,7 @@ int LuaPerlinNoiseMap::l_get_3d_map_flat(lua_State *L) return 0; Noise *n = o->noise; - n->perlinMap3D(p.X, p.Y, p.Z); + n->noiseMap3D(p.X, p.Y, p.Z); size_t maplen = n->sx * n->sy * n->sz; @@ -247,41 +247,41 @@ int LuaPerlinNoiseMap::l_get_3d_map_flat(lua_State *L) } -int LuaPerlinNoiseMap::l_calc_2d_map(lua_State *L) +int LuaValueNoiseMap::l_calc_2d_map(lua_State *L) { NO_MAP_LOCK_REQUIRED; - LuaPerlinNoiseMap *o = checkObject(L, 1); + LuaValueNoiseMap *o = checkObject(L, 1); v2f p = readParam(L, 2); Noise *n = o->noise; - n->perlinMap2D(p.X, p.Y); + n->noiseMap2D(p.X, p.Y); return 0; } -int LuaPerlinNoiseMap::l_calc_3d_map(lua_State *L) +int LuaValueNoiseMap::l_calc_3d_map(lua_State *L) { NO_MAP_LOCK_REQUIRED; - LuaPerlinNoiseMap *o = checkObject(L, 1); + LuaValueNoiseMap *o = checkObject(L, 1); v3f p = check_v3f(L, 2); if (!o->is3D()) return 0; Noise *n = o->noise; - n->perlinMap3D(p.X, p.Y, p.Z); + n->noiseMap3D(p.X, p.Y, p.Z); return 0; } -int LuaPerlinNoiseMap::l_get_map_slice(lua_State *L) +int LuaValueNoiseMap::l_get_map_slice(lua_State *L) { NO_MAP_LOCK_REQUIRED; - LuaPerlinNoiseMap *o = checkObject(L, 1); + LuaValueNoiseMap *o = checkObject(L, 1); v3s16 slice_offset = read_v3s16(L, 2); v3s16 slice_size = read_v3s16(L, 3); bool use_buffer = lua_istable(L, 4); @@ -302,14 +302,14 @@ int LuaPerlinNoiseMap::l_get_map_slice(lua_State *L) } -int LuaPerlinNoiseMap::create_object(lua_State *L) +int LuaValueNoiseMap::create_object(lua_State *L) { NoiseParams np; if (!read_noiseparams(L, 1, &np)) return 0; v3s16 size = read_v3s16(L, 2); - LuaPerlinNoiseMap *o = new LuaPerlinNoiseMap(&np, 0, size); + LuaValueNoiseMap *o = new LuaValueNoiseMap(&np, 0, size); *(void **)(lua_newuserdata(L, sizeof(void *))) = o; luaL_getmetatable(L, className); lua_setmetatable(L, -2); @@ -317,9 +317,9 @@ int LuaPerlinNoiseMap::create_object(lua_State *L) } -int LuaPerlinNoiseMap::gc_object(lua_State *L) +int LuaValueNoiseMap::gc_object(lua_State *L) { - LuaPerlinNoiseMap *o = *(LuaPerlinNoiseMap **)(lua_touserdata(L, 1)); + LuaValueNoiseMap *o = *(LuaValueNoiseMap **)(lua_touserdata(L, 1)); delete o; return 0; } @@ -331,9 +331,9 @@ struct NoiseMapParams { v3s16 size; }; -void *LuaPerlinNoiseMap::packIn(lua_State *L, int idx) +void *LuaValueNoiseMap::packIn(lua_State *L, int idx) { - LuaPerlinNoiseMap *o = checkObject(L, idx); + LuaValueNoiseMap *o = checkObject(L, idx); NoiseMapParams *ret = new NoiseMapParams(); ret->np = o->noise->np; ret->seed = o->noise->seed; @@ -341,11 +341,11 @@ void *LuaPerlinNoiseMap::packIn(lua_State *L, int idx) return ret; } -void LuaPerlinNoiseMap::packOut(lua_State *L, void *ptr) +void LuaValueNoiseMap::packOut(lua_State *L, void *ptr) { NoiseMapParams *p = reinterpret_cast(ptr); if (L) { - LuaPerlinNoiseMap *o = new LuaPerlinNoiseMap(&p->np, p->seed, p->size); + LuaValueNoiseMap *o = new LuaValueNoiseMap(&p->np, p->seed, p->size); *(void **)(lua_newuserdata(L, sizeof(void *))) = o; luaL_getmetatable(L, className); lua_setmetatable(L, -2); @@ -354,7 +354,7 @@ void LuaPerlinNoiseMap::packOut(lua_State *L, void *ptr) } -void LuaPerlinNoiseMap::Register(lua_State *L) +void LuaValueNoiseMap::Register(lua_State *L) { static const luaL_Reg metamethods[] = { {"__gc", gc_object}, @@ -368,15 +368,15 @@ void LuaPerlinNoiseMap::Register(lua_State *L) } -const char LuaPerlinNoiseMap::className[] = "PerlinNoiseMap"; -luaL_Reg LuaPerlinNoiseMap::methods[] = { - luamethod_aliased(LuaPerlinNoiseMap, get_2d_map, get2dMap), - luamethod_aliased(LuaPerlinNoiseMap, get_2d_map_flat, get2dMap_flat), - luamethod_aliased(LuaPerlinNoiseMap, calc_2d_map, calc2dMap), - luamethod_aliased(LuaPerlinNoiseMap, get_3d_map, get3dMap), - luamethod_aliased(LuaPerlinNoiseMap, get_3d_map_flat, get3dMap_flat), - luamethod_aliased(LuaPerlinNoiseMap, calc_3d_map, calc3dMap), - luamethod_aliased(LuaPerlinNoiseMap, get_map_slice, getMapSlice), +const char LuaValueNoiseMap::className[] = "ValueNoiseMap"; +luaL_Reg LuaValueNoiseMap::methods[] = { + luamethod_aliased(LuaValueNoiseMap, get_2d_map, get2dMap), + luamethod_aliased(LuaValueNoiseMap, get_2d_map_flat, get2dMap_flat), + luamethod_aliased(LuaValueNoiseMap, calc_2d_map, calc2dMap), + luamethod_aliased(LuaValueNoiseMap, get_3d_map, get3dMap), + luamethod_aliased(LuaValueNoiseMap, get_3d_map_flat, get3dMap_flat), + luamethod_aliased(LuaValueNoiseMap, calc_3d_map, calc3dMap), + luamethod_aliased(LuaValueNoiseMap, get_map_slice, getMapSlice), {0,0} }; diff --git a/src/script/lua_api/l_noise.h b/src/script/lua_api/l_noise.h index 595aa0694..9bcbd98b9 100644 --- a/src/script/lua_api/l_noise.h +++ b/src/script/lua_api/l_noise.h @@ -9,9 +9,9 @@ #include "noise.h" /* - LuaPerlinNoise + LuaValueNoise */ -class LuaPerlinNoise : public ModApiBase +class LuaValueNoise : public ModApiBase { private: NoiseParams np; @@ -27,11 +27,11 @@ private: static int l_get_3d(lua_State *L); public: - LuaPerlinNoise(const NoiseParams *params); - ~LuaPerlinNoise() = default; + LuaValueNoise(const NoiseParams *params); + ~LuaValueNoise() = default; - // LuaPerlinNoise(seed, octaves, persistence, scale) - // Creates an LuaPerlinNoise and leaves it on top of stack + // LuaValueNoise(seed, octaves, persistence, scale) + // Creates an LuaValueNoise and leaves it on top of stack static int create_object(lua_State *L); static void *packIn(lua_State *L, int idx); @@ -43,9 +43,9 @@ public: }; /* - LuaPerlinNoiseMap + LuaValueNoiseMap */ -class LuaPerlinNoiseMap : public ModApiBase +class LuaValueNoiseMap : public ModApiBase { Noise *noise; @@ -66,13 +66,13 @@ class LuaPerlinNoiseMap : public ModApiBase static int l_get_map_slice(lua_State *L); public: - LuaPerlinNoiseMap(const NoiseParams *np, s32 seed, v3s16 size); - ~LuaPerlinNoiseMap(); + LuaValueNoiseMap(const NoiseParams *np, s32 seed, v3s16 size); + ~LuaValueNoiseMap(); inline bool is3D() const { return noise->sz > 1; } - // LuaPerlinNoiseMap(np, size) - // Creates an LuaPerlinNoiseMap and leaves it on top of stack + // LuaValueNoiseMap(np, size) + // Creates an LuaValueNoiseMap and leaves it on top of stack static int create_object(lua_State *L); static void *packIn(lua_State *L, int idx); diff --git a/src/script/lua_api/l_object.cpp b/src/script/lua_api/l_object.cpp index 6ca82a3d8..e1fde579d 100644 --- a/src/script/lua_api/l_object.cpp +++ b/src/script/lua_api/l_object.cpp @@ -492,6 +492,39 @@ int ObjectRef::l_get_eye_offset(lua_State *L) return 3; } +int ObjectRef::l_set_camera(lua_State *L) +{ + NO_MAP_LOCK_REQUIRED; + ObjectRef *ref = checkObject(L, 1); + RemotePlayer *player = getplayer(ref); + if (player == nullptr) + return 0; + + luaL_checktype(L, 2, LUA_TTABLE); + + lua_getfield(L, -1, "mode"); + if (lua_isstring(L, -1)) + string_to_enum(es_CameraMode, player->allowed_camera_mode, lua_tostring(L, -1)); + lua_pop(L, 1); + + getServer(L)->SendCamera(player->getPeerId(), player); + return 0; +} + +int ObjectRef::l_get_camera(lua_State *L) +{ + NO_MAP_LOCK_REQUIRED; + ObjectRef *ref = checkObject(L, 1); + RemotePlayer *player = getplayer(ref); + if (player == nullptr) + return 0; + + lua_newtable(L); + setstringfield(L, -1, "mode", enum_to_string(es_CameraMode, player->allowed_camera_mode)); + + return 1; +} + // send_mapblock(self, pos) int ObjectRef::l_send_mapblock(lua_State *L) { @@ -2964,6 +2997,8 @@ luaL_Reg ObjectRef::methods[] = { luamethod(ObjectRef, respawn), luamethod(ObjectRef, set_flags), luamethod(ObjectRef, get_flags), + luamethod(ObjectRef, set_camera), + luamethod(ObjectRef, get_camera), {0,0} }; diff --git a/src/script/lua_api/l_object.h b/src/script/lua_api/l_object.h index 900ec243d..43415f5ef 100644 --- a/src/script/lua_api/l_object.h +++ b/src/script/lua_api/l_object.h @@ -378,6 +378,12 @@ private: // get_eye_offset(self) static int l_get_eye_offset(lua_State *L); + // set_camera(self, {params}) + static int l_set_camera(lua_State *L); + + // get_camera(self) + static int l_get_camera(lua_State *L); + // set_nametag_attributes(self, attributes) static int l_set_nametag_attributes(lua_State *L); diff --git a/src/script/lua_api/l_pause_menu.cpp b/src/script/lua_api/l_pause_menu.cpp new file mode 100644 index 000000000..c2a9a81e5 --- /dev/null +++ b/src/script/lua_api/l_pause_menu.cpp @@ -0,0 +1,37 @@ +// Luanti +// SPDX-License-Identifier: LGPL-2.1-or-later +// Copyright (C) 2025 grorp + +#include "l_pause_menu.h" +#include "gui/mainmenumanager.h" +#include "lua_api/l_internal.h" +#include "client/client.h" + + +int ModApiPauseMenu::l_show_keys_menu(lua_State *L) +{ + g_gamecallback->keyConfig(); + return 0; +} + + +int ModApiPauseMenu::l_show_touchscreen_layout(lua_State *L) +{ + g_gamecallback->touchscreenLayout(); + return 0; +} + + +int ModApiPauseMenu::l_is_internal_server(lua_State *L) +{ + lua_pushboolean(L, getClient(L)->m_internal_server); + return 1; +} + + +void ModApiPauseMenu::Initialize(lua_State *L, int top) +{ + API_FCT(show_keys_menu); + API_FCT(show_touchscreen_layout); + API_FCT(is_internal_server); +} diff --git a/src/script/lua_api/l_pause_menu.h b/src/script/lua_api/l_pause_menu.h new file mode 100644 index 000000000..2d7eb62d7 --- /dev/null +++ b/src/script/lua_api/l_pause_menu.h @@ -0,0 +1,18 @@ +// Luanti +// SPDX-License-Identifier: LGPL-2.1-or-later +// Copyright (C) 2025 grorp + +#pragma once + +#include "l_base.h" + +class ModApiPauseMenu: public ModApiBase +{ +private: + static int l_show_keys_menu(lua_State *L); + static int l_show_touchscreen_layout(lua_State *L); + static int l_is_internal_server(lua_State *L); + +public: + static void Initialize(lua_State *L, int top); +}; diff --git a/src/script/lua_api/l_rollback.cpp b/src/script/lua_api/l_rollback.cpp index 93137263c..9a4a3ca64 100644 --- a/src/script/lua_api/l_rollback.cpp +++ b/src/script/lua_api/l_rollback.cpp @@ -36,7 +36,7 @@ int ModApiRollback::l_rollback_get_node_actions(lua_State *L) } std::list actions = rollback->getNodeActors(pos, range, seconds, limit); - std::list::iterator iter = actions.begin(); + auto iter = actions.begin(); lua_createtable(L, actions.size(), 0); for (unsigned int i = 1; iter != actions.end(); ++iter, ++i) { @@ -86,8 +86,7 @@ int ModApiRollback::l_rollback_revert_actions_by(lua_State *L) lua_pushboolean(L, success); lua_createtable(L, log.size(), 0); unsigned long i = 0; - for(std::list::const_iterator iter = log.begin(); - iter != log.end(); ++i, ++iter) { + for(auto iter = log.begin(); iter != log.end(); ++i, ++iter) { lua_pushnumber(L, i); lua_pushstring(L, iter->c_str()); lua_settable(L, -3); diff --git a/src/script/lua_api/l_server.cpp b/src/script/lua_api/l_server.cpp index 061dbb206..74ee5e5c9 100644 --- a/src/script/lua_api/l_server.cpp +++ b/src/script/lua_api/l_server.cpp @@ -239,6 +239,10 @@ int ModApiServer::l_get_player_information(lua_State *L) lua_pushstring(L, info.lang_code.c_str()); lua_settable(L, table); + lua_pushstring(L, "version_string"); + lua_pushstring(L, info.vers_string.c_str()); + lua_settable(L, table); + #ifndef NDEBUG lua_pushstring(L,"serialization_version"); lua_pushnumber(L, info.ser_vers); @@ -256,10 +260,6 @@ int ModApiServer::l_get_player_information(lua_State *L) lua_pushnumber(L, info.patch); lua_settable(L, table); - lua_pushstring(L,"version_string"); - lua_pushstring(L, info.vers_string.c_str()); - lua_settable(L, table); - lua_pushstring(L,"state"); lua_pushstring(L, ClientInterface::state2Name(info.state).c_str()); lua_settable(L, table); diff --git a/src/script/lua_api/l_settings.cpp b/src/script/lua_api/l_settings.cpp index 241eb2542..089b8a01e 100644 --- a/src/script/lua_api/l_settings.cpp +++ b/src/script/lua_api/l_settings.cpp @@ -30,8 +30,9 @@ static inline int checkSettingSecurity(lua_State* L, const std::string &name) { #if CHECK_CLIENT_BUILD() - // Main menu is allowed everything - if (ModApiBase::getGuiEngine(L) != nullptr) + // Main menu and pause menu are allowed everything + auto context = ModApiBase::getScriptApiBase(L)->getType(); + if (context == ScriptingType::MainMenu || context == ScriptingType::PauseMenu) return 0; #endif @@ -181,16 +182,16 @@ int LuaSettings::l_get_flags(lua_State *L) // get_pos(self, key) -> vector or nil int LuaSettings::l_get_pos(lua_State *L) { - NO_MAP_LOCK_REQUIRED; - LuaSettings *o = checkObject(L, 1); - std::string key = luaL_checkstring(L, 2); + NO_MAP_LOCK_REQUIRED; + LuaSettings *o = checkObject(L, 1); + std::string key = luaL_checkstring(L, 2); - std::optional pos; - if (o->m_settings->getV3FNoEx(key, pos) && pos.has_value()) - push_v3f(L, *pos); - else - lua_pushnil(L); - return 1; + std::optional pos; + if (o->m_settings->getV3FNoEx(key, pos) && pos.has_value()) + push_v3f(L, *pos); + else + lua_pushnil(L); + return 1; } // set(self, key, value) @@ -246,17 +247,17 @@ int LuaSettings::l_set_np_group(lua_State *L) // set_pos(self, key, value) int LuaSettings::l_set_pos(lua_State *L) { - NO_MAP_LOCK_REQUIRED; - LuaSettings *o = checkObject(L, 1); + NO_MAP_LOCK_REQUIRED; + LuaSettings *o = checkObject(L, 1); - std::string key = luaL_checkstring(L, 2); - v3f value = check_v3f(L, 3); + std::string key = luaL_checkstring(L, 2); + v3f value = check_v3f(L, 3); - CHECK_SETTING_SECURITY(L, key); + CHECK_SETTING_SECURITY(L, key); - o->m_settings->setV3F(key, value); + o->m_settings->setV3F(key, value); - return 0; + return 0; } // remove(self, key) -> success @@ -388,11 +389,11 @@ const luaL_Reg LuaSettings::methods[] = { luamethod(LuaSettings, get_bool), luamethod(LuaSettings, get_np_group), luamethod(LuaSettings, get_flags), - luamethod(LuaSettings, get_pos), + luamethod(LuaSettings, get_pos), luamethod(LuaSettings, set), luamethod(LuaSettings, set_bool), luamethod(LuaSettings, set_np_group), - luamethod(LuaSettings, set_pos), + luamethod(LuaSettings, set_pos), luamethod(LuaSettings, remove), luamethod(LuaSettings, get_names), luamethod(LuaSettings, has), diff --git a/src/script/lua_api/l_settings.h b/src/script/lua_api/l_settings.h index 63741477a..d4f48d037 100644 --- a/src/script/lua_api/l_settings.h +++ b/src/script/lua_api/l_settings.h @@ -29,8 +29,8 @@ private: // get_flags(self, key) -> key/value table static int l_get_flags(lua_State *L); - // get_pos(self, key) -> vector or nil - static int l_get_pos(lua_State *L); + // get_pos(self, key) -> vector or nil + static int l_get_pos(lua_State *L); // set(self, key, value) static int l_set(lua_State *L); @@ -41,8 +41,8 @@ private: // set_np_group(self, key, value) static int l_set_np_group(lua_State *L); - // set_pos(self, key, value) - static int l_set_pos(lua_State *L); + // set_pos(self, key, value) + static int l_set_pos(lua_State *L); // remove(self, key) -> success static int l_remove(lua_State *L); diff --git a/src/script/lua_api/l_util.cpp b/src/script/lua_api/l_util.cpp index f84835e8b..5ac290b2e 100644 --- a/src/script/lua_api/l_util.cpp +++ b/src/script/lua_api/l_util.cpp @@ -2,7 +2,6 @@ // SPDX-License-Identifier: LGPL-2.1-or-later // Copyright (C) 2013 celeron55, Perttu Ahola -#include "irrlichttypes_extrabloated.h" #include "lua_api/l_util.h" #include "lua_api/l_internal.h" #include "lua_api/l_settings.h" @@ -55,7 +54,13 @@ int ModApiUtil::l_log(lua_State *L) auto name = readParam(L, 1); text = readParam(L, 2); if (name == "deprecated") { - log_deprecated(L, text, 2); + // core.log("deprecated", message [, stack_level]) + // Level 1 - immediate caller of core.log (probably engine code); + // Level 2 - caller of the function that called core.log, and so on + int stack_level = readParam(L, 3, 2); + if (stack_level < 1) + throw LuaError("invalid stack level"); + log_deprecated(L, text, stack_level); return 0; } level = Logger::stringToLevel(name); diff --git a/src/script/scripting_client.cpp b/src/script/scripting_client.cpp index dc9b6212c..45a80bba9 100644 --- a/src/script/scripting_client.cpp +++ b/src/script/scripting_client.cpp @@ -7,6 +7,7 @@ #include "client/client.h" #include "cpp_api/s_internal.h" #include "lua_api/l_client.h" +#include "lua_api/l_client_common.h" #include "lua_api/l_env.h" #include "lua_api/l_item.h" #include "lua_api/l_itemstackmeta.h" @@ -63,6 +64,7 @@ void ClientScripting::InitializeModApi(lua_State *L, int top) ClientSoundHandle::Register(L); ModApiUtil::InitializeClient(L, top); + ModApiClientCommon::Initialize(L, top); ModApiClient::Initialize(L, top); ModApiItem::InitializeClient(L, top); ModApiStorage::Initialize(L, top); diff --git a/src/script/scripting_client.h b/src/script/scripting_client.h index 872ad295a..75636ded1 100644 --- a/src/script/scripting_client.h +++ b/src/script/scripting_client.h @@ -9,6 +9,7 @@ #include "cpp_api/s_base.h" #include "cpp_api/s_client.h" +#include "cpp_api/s_client_common.h" #include "cpp_api/s_modchannels.h" #include "cpp_api/s_security.h" @@ -20,6 +21,7 @@ class Minimap; class ClientScripting: virtual public ScriptApiBase, public ScriptApiSecurity, + public ScriptApiClientCommon, public ScriptApiClient, public ScriptApiModChannels { diff --git a/src/script/scripting_emerge.cpp b/src/script/scripting_emerge.cpp index cc2c350d9..e60ec35d5 100644 --- a/src/script/scripting_emerge.cpp +++ b/src/script/scripting_emerge.cpp @@ -60,8 +60,8 @@ void EmergeScripting::InitializeModApi(lua_State *L, int top) ItemStackMetaRef::Register(L); LuaAreaStore::Register(L); LuaItemStack::Register(L); - LuaPerlinNoise::Register(L); - LuaPerlinNoiseMap::Register(L); + LuaValueNoise::Register(L); + LuaValueNoiseMap::Register(L); LuaPseudoRandom::Register(L); LuaPcgRandom::Register(L); LuaSecureRandom::Register(L); diff --git a/src/script/scripting_mainmenu.cpp b/src/script/scripting_mainmenu.cpp index 88f80a001..d0ab5d374 100644 --- a/src/script/scripting_mainmenu.cpp +++ b/src/script/scripting_mainmenu.cpp @@ -9,6 +9,7 @@ #include "lua_api/l_http.h" #include "lua_api/l_mainmenu.h" #include "lua_api/l_mainmenu_sound.h" +#include "lua_api/l_menu_common.h" #include "lua_api/l_util.h" #include "lua_api/l_settings.h" #include "log.h" @@ -53,12 +54,14 @@ void MainMenuScripting::initializeModApi(lua_State *L, int top) registerLuaClasses(L, top); // Initialize mod API modules + ModApiMenuCommon::Initialize(L, top); ModApiMainMenu::Initialize(L, top); ModApiUtil::Initialize(L, top); ModApiMainMenuSound::Initialize(L, top); ModApiHttp::Initialize(L, top); asyncEngine.registerStateInitializer(registerLuaClasses); + asyncEngine.registerStateInitializer(ModApiMenuCommon::InitializeAsync); asyncEngine.registerStateInitializer(ModApiMainMenu::InitializeAsync); asyncEngine.registerStateInitializer(ModApiUtil::InitializeAsync); asyncEngine.registerStateInitializer(ModApiHttp::InitializeAsync); diff --git a/src/script/scripting_pause_menu.cpp b/src/script/scripting_pause_menu.cpp new file mode 100644 index 000000000..b86510bcd --- /dev/null +++ b/src/script/scripting_pause_menu.cpp @@ -0,0 +1,70 @@ +// Luanti +// SPDX-License-Identifier: LGPL-2.1-or-later +// Copyright (C) 2025 grorp + +#include "scripting_pause_menu.h" +#include "client/client.h" +#include "cpp_api/s_internal.h" +#include "filesys.h" +#include "lua_api/l_client_common.h" +#include "lua_api/l_menu_common.h" +#include "lua_api/l_pause_menu.h" +#include "lua_api/l_settings.h" +#include "lua_api/l_util.h" +#include "porting.h" + +PauseMenuScripting::PauseMenuScripting(Client *client): + ScriptApiBase(ScriptingType::PauseMenu) +{ + setGameDef(client); + + SCRIPTAPI_PRECHECKHEADER + + initializeSecurity(); + + lua_getglobal(L, "core"); + int top = lua_gettop(L); + + // Initialize our lua_api modules + initializeModApi(L, top); + lua_pop(L, 1); + + // Push builtin initialization type + lua_pushstring(L, "pause_menu"); + lua_setglobal(L, "INIT"); + + infostream << "SCRIPTAPI: Initialized pause menu modules" << std::endl; +} + +void PauseMenuScripting::initializeModApi(lua_State *L, int top) +{ + // Register reference classes (userdata) + LuaSettings::Register(L); + + // Initialize mod API modules + ModApiPauseMenu::Initialize(L, top); + ModApiMenuCommon::Initialize(L, top); + ModApiClientCommon::Initialize(L, top); + ModApiUtil::Initialize(L, top); +} + +void PauseMenuScripting::loadBuiltin() +{ + loadScript(Client::getBuiltinLuaPath() + DIR_DELIM "init.lua"); + checkSetByBuiltin(); +} + +bool PauseMenuScripting::checkPathInternal(const std::string &abs_path, bool write_required, + bool *write_allowed) +{ + // NOTE: The pause menu env is on the same level of trust as the mainmenu env. + // However, since it doesn't need anything else at the moment, there's no + // reason to give it access to anything else. + // See also: `MainMenuScripting::mayModifyPath` for similar, but less restricted checks. + + if (write_required) + return false; + + std::string path_builtin = fs::AbsolutePath(Client::getBuiltinLuaPath()); + return !path_builtin.empty() && fs::PathStartsWith(abs_path, path_builtin); +} diff --git a/src/script/scripting_pause_menu.h b/src/script/scripting_pause_menu.h new file mode 100644 index 000000000..aeb1e65b6 --- /dev/null +++ b/src/script/scripting_pause_menu.h @@ -0,0 +1,28 @@ +// Luanti +// SPDX-License-Identifier: LGPL-2.1-or-later +// Copyright (C) 2025 grorp + +#pragma once + +#include "cpp_api/s_base.h" +#include "cpp_api/s_client_common.h" +#include "cpp_api/s_pause_menu.h" +#include "cpp_api/s_security.h" + +class PauseMenuScripting: + virtual public ScriptApiBase, + public ScriptApiPauseMenu, + public ScriptApiClientCommon, + public ScriptApiSecurity +{ +public: + PauseMenuScripting(Client *client); + void loadBuiltin(); + +protected: + bool checkPathInternal(const std::string &abs_path, bool write_required, + bool *write_allowed) override; + +private: + void initializeModApi(lua_State *L, int top); +}; diff --git a/src/script/scripting_server.cpp b/src/script/scripting_server.cpp index db1dfc34b..f30def03d 100644 --- a/src/script/scripting_server.cpp +++ b/src/script/scripting_server.cpp @@ -134,8 +134,8 @@ void ServerScripting::InitializeModApi(lua_State *L, int top) ItemStackMetaRef::Register(L); LuaAreaStore::Register(L); LuaItemStack::Register(L); - LuaPerlinNoise::Register(L); - LuaPerlinNoiseMap::Register(L); + LuaValueNoise::Register(L); + LuaValueNoiseMap::Register(L); LuaPseudoRandom::Register(L); LuaPcgRandom::Register(L); LuaRaycast::Register(L); @@ -172,8 +172,8 @@ void ServerScripting::InitializeAsync(lua_State *L, int top) ItemStackMetaRef::Register(L); LuaAreaStore::Register(L); LuaItemStack::Register(L); - LuaPerlinNoise::Register(L); - LuaPerlinNoiseMap::Register(L); + LuaValueNoise::Register(L); + LuaValueNoiseMap::Register(L); LuaPseudoRandom::Register(L); LuaPcgRandom::Register(L); LuaSecureRandom::Register(L); diff --git a/src/server.cpp b/src/server.cpp index b9914900f..b3b574cee 100644 --- a/src/server.cpp +++ b/src/server.cpp @@ -461,7 +461,7 @@ void Server::init() m_mod_storage_database = openModStorageDatabase(m_path_world); m_mod_storage_database->beginSave(); - m_modmgr = std::make_unique(m_path_world); + m_modmgr = std::make_unique(m_path_world, m_gamespec); // complain about mods with unsatisfied dependencies if (!m_modmgr->isConsistent()) { @@ -473,8 +473,15 @@ void Server::init() EnvAutoLock envlock(this); // Create the Map (loads map_meta.txt, overriding configured mapgen params) - auto startup_server_map = std::make_unique(m_path_world, this, - m_emerge.get(), m_metrics_backend.get()); + std::unique_ptr startup_server_map; + try { + startup_server_map = std::make_unique(m_path_world, this, + m_emerge.get(), m_metrics_backend.get()); + } catch (DatabaseException &e) { + throw ServerError(std::string( + "Failed to initialize the map database. The world may be " + "corrupted or in an unsupported format.\n") + e.what()); + } // Initialize scripting infostream << "Server: Initializing Lua" << std::endl; @@ -560,8 +567,7 @@ void Server::start() { init(); - infostream << "Starting server on " << m_bind_addr.serializeString() - << "..." << std::endl; + infostream << "Starting server thread..." << std::endl; // Stop thread if already running m_thread->stop(); @@ -960,6 +966,7 @@ void Server::AsyncRunStep(float dtime, bool initial_step) // We'll log the amount of each Profiler prof; + size_t block_count = 0; std::unordered_set node_meta_updates; while (!m_unsent_map_edit_queue.empty()) { @@ -1008,6 +1015,8 @@ void Server::AsyncRunStep(float dtime, bool initial_step) break; } + block_count += event->modified_blocks.size(); + /* Set blocks not sent to far players */ @@ -1019,11 +1028,9 @@ void Server::AsyncRunStep(float dtime, bool initial_step) delete event; } - if (event_count >= 5) { - infostream << "Server: MapEditEvents:" << std::endl; - prof.print(infostream); - } else if (event_count != 0) { - verbosestream << "Server: MapEditEvents:" << std::endl; + if (event_count != 0) { + verbosestream << "Server: MapEditEvents modified total " + << block_count << " blocks:" << std::endl; prof.print(verbosestream); } @@ -1303,9 +1310,7 @@ void Server::ProcessData(NetworkPacket *pkt) } if (m_clients.getClientState(peer_id) < CS_Active) { - if (command == TOSERVER_PLAYERPOS) return; - - errorstream << "Server: Got packet command " + warningstream << "Server: Got packet command " << static_cast(command) << " for peer id " << peer_id << " but client isn't active yet. Dropping packet." << std::endl; @@ -1480,17 +1485,20 @@ void Server::SendAccessDenied(session_t peer_id, AccessDeniedCode reason, void Server::SendItemDef(session_t peer_id, IItemDefManager *itemdef, u16 protocol_version) { + auto *client = m_clients.getClientNoEx(peer_id, CS_Created); + assert(client); + NetworkPacket pkt(TOCLIENT_ITEMDEF, 0, peer_id); - /* - u16 command - u32 length of the next item - zlib-compressed serialized ItemDefManager - */ - std::ostringstream tmp_os(std::ios::binary); - itemdef->serialize(tmp_os, protocol_version); std::ostringstream tmp_os2(std::ios::binary); - compressZlib(tmp_os.str(), tmp_os2); + { + std::ostringstream tmp_os(std::ios::binary); + itemdef->serialize(tmp_os, protocol_version); + if (client->net_proto_version >= 48) + compressZstd(tmp_os.str(), tmp_os2); + else + compressZlib(tmp_os.str(), tmp_os2); + } pkt.putLongString(tmp_os2.str()); // Make data buffer @@ -1503,18 +1511,20 @@ void Server::SendItemDef(session_t peer_id, void Server::SendNodeDef(session_t peer_id, const NodeDefManager *nodedef, u16 protocol_version) { + auto *client = m_clients.getClientNoEx(peer_id, CS_Created); + assert(client); + NetworkPacket pkt(TOCLIENT_NODEDEF, 0, peer_id); - /* - u16 command - u32 length of the next item - zlib-compressed serialized NodeDefManager - */ - std::ostringstream tmp_os(std::ios::binary); - nodedef->serialize(tmp_os, protocol_version); std::ostringstream tmp_os2(std::ios::binary); - compressZlib(tmp_os.str(), tmp_os2); - + { + std::ostringstream tmp_os(std::ios::binary); + nodedef->serialize(tmp_os, protocol_version); + if (client->net_proto_version >= 48) + compressZstd(tmp_os.str(), tmp_os2); + else + compressZlib(tmp_os.str(), tmp_os2); + } pkt.putLongString(tmp_os2.str()); // Make data buffer @@ -1559,10 +1569,6 @@ void Server::SendChatMessage(session_t peer_id, const ChatMessage &message) << static_cast(message.timestamp); if (peer_id != PEER_ID_INEXISTENT) { - RemotePlayer *player = m_env->getPlayer(peer_id); - if (!player) - return; - Send(&pkt); } else { m_clients.sendToAll(&pkt); @@ -1954,6 +1960,15 @@ void Server::SendSetLighting(session_t peer_id, const Lighting &lighting) Send(&pkt); } +void Server::SendCamera(session_t peer_id, Player *player) +{ + NetworkPacket pkt(TOCLIENT_CAMERA, 1, peer_id); + + pkt << static_cast(player->allowed_camera_mode); + + Send(&pkt); +} + void Server::SendTimeOfDay(session_t peer_id, u16 time, f32 time_speed) { NetworkPacket pkt(TOCLIENT_TIME_OF_DAY, 0, peer_id); @@ -1984,9 +1999,8 @@ void Server::SendMovePlayer(PlayerSAO *sao) pkt << sao->getBasePosition() << sao->getLookPitch() << sao->getRotation().Y; { - v3f pos = sao->getBasePosition(); verbosestream << "Server: Sending TOCLIENT_MOVE_PLAYER" - << " pos=(" << pos.X << "," << pos.Y << "," << pos.Z << ")" + << " pos=" << sao->getBasePosition() << " pitch=" << sao->getLookPitch() << " yaw=" << sao->getRotation().Y << std::endl; @@ -2160,10 +2174,6 @@ void Server::SendActiveObjectRemoveAdd(RemoteClient *client, PlayerSAO *playersa } Send(&pkt); - - verbosestream << "Server::SendActiveObjectRemoveAdd(): " - << removed_objects.size() << " removed, " << added_objects.size() - << " added, packet size is " << pkt.getSize() << std::endl; } void Server::SendActiveObjectMessages(session_t peer_id, const std::string &datas, @@ -2558,6 +2568,8 @@ bool Server::addMediaFile(const std::string &filename, ".x", ".b3d", ".obj", ".gltf", ".glb", // Translation file formats ".tr", ".po", ".mo", + // Fonts + ".ttf", ".woff", NULL }; if (removeStringEnd(filename, supported_ext).empty()) { @@ -2580,13 +2592,12 @@ bool Server::addMediaFile(const std::string &filename, } std::string sha1 = hashing::sha1(filedata); - std::string sha1_base64 = base64_encode(sha1); std::string sha1_hex = hex_encode(sha1); if (digest_to) *digest_to = sha1; // Put in list - m_media[filename] = MediaInfo(filepath, sha1_base64); + m_media[filename] = MediaInfo(filepath, sha1); verbosestream << "Server: " << sha1_hex << " is " << filename << std::endl; @@ -2634,9 +2645,9 @@ void Server::sendMediaAnnouncement(session_t peer_id, const std::string &lang_co std::string lang_suffixes[3]; for (size_t i = 0; i < 3; i++) { lang_suffixes[i].append(".").append(lang_code).append(translation_formats[i]); - } + } - auto include = [&] (const std::string &name, const MediaInfo &info) -> bool { + auto include = [&] (const std::string &name, const MediaInfo &info) -> bool { if (info.no_announce) return false; for (size_t j = 0; j < 3; j++) { @@ -2648,20 +2659,48 @@ void Server::sendMediaAnnouncement(session_t peer_id, const std::string &lang_co }; // Make packet + auto *client = m_clients.getClientNoEx(peer_id, CS_Created); + assert(client); NetworkPacket pkt(TOCLIENT_ANNOUNCE_MEDIA, 0, peer_id); - u16 media_sent = 0; - for (const auto &i : m_media) { - if (include(i.first, i.second)) - media_sent++; - } - pkt << media_sent; + size_t media_sent = 0; + if (client->net_proto_version < 48) { + for (const auto &i : m_media) { + if (include(i.first, i.second)) + media_sent++; + } + assert(media_sent < U16_MAX); + pkt << static_cast(media_sent); + for (const auto &i : m_media) { + if (include(i.first, i.second)) + pkt << i.first << base64_encode(i.second.sha1_digest); + } + } else { + std::vector names; + for (const auto &i : m_media) { + if (include(i.first, i.second)) + names.emplace_back(i.first); + } + media_sent = names.size(); - for (const auto &i : m_media) { - if (include(i.first, i.second)) - pkt << i.first << i.second.sha1_digest; + // compressed table of media names + { + std::ostringstream oss(std::ios::binary); + auto tmp = serializeString16Array(names); + compressZstd(tmp, oss); + pkt.putLongString(oss.str()); + } + + // then the raw hash for each file + for (const auto &i : m_media) { + if (include(i.first, i.second)) { + assert(i.second.sha1_digest.size() == 20); + pkt.putRawString(i.second.sha1_digest); + } + } } + // and the remote media server(s) pkt << g_settings->get("remote_media"); Send(&pkt); @@ -2691,8 +2730,11 @@ void Server::sendRequestedMedia(session_t peer_id, auto *client = getClient(peer_id, CS_DefinitionsSent); assert(client); + const bool compress = client->net_proto_version >= 48; + infostream << "Server::sendRequestedMedia(): Sending " - << tosend.size() << " files to " << client->getName() << std::endl; + << tosend.size() << " files to " << client->getName() + << (compress ? " (compressed)" : "") << std::endl; /* Read files and prepare bunches */ @@ -2710,6 +2752,7 @@ void Server::sendRequestedMedia(session_t peer_id, // the amount of bunches quite well (at the expense of overshooting). u32 file_size_bunch_total = 0; + size_t bytes_compressed = 0, bytes_uncompressed = 0; for (const std::string &name : tosend) { auto it = m_media.find(name); @@ -2736,9 +2779,19 @@ void Server::sendRequestedMedia(session_t peer_id, if (!fs::ReadFile(m.path, data, true)) { continue; } - file_size_bunch_total += data.size(); + bytes_uncompressed += data.size(); + if (compress) { + // Zstd is very fast and can handle non-compressible data efficiently + // so we can just throw it at every file. Still we don't want to + // spend too much here, so we use the lowest compression level. + std::ostringstream oss(std::ios::binary); + compressZstd(data, oss, 1); + data = oss.str(); + } + bytes_compressed += data.size(); // Put in list + file_size_bunch_total += data.size(); file_bunches.back().emplace_back(name, m.path, std::move(data)); // Start next bunch if got enough data @@ -2753,17 +2806,6 @@ void Server::sendRequestedMedia(session_t peer_id, const u16 num_bunches = file_bunches.size(); for (u16 i = 0; i < num_bunches; i++) { auto &bunch = file_bunches[i]; - /* - u16 total number of media bunches - u16 index of this bunch - u32 number of files in this bunch - for each file { - u16 length of name - string name - u32 length of data - data - } - */ NetworkPacket pkt(TOCLIENT_MEDIA, 4 + 0, peer_id); const u32 bunch_size = bunch.size(); @@ -2781,6 +2823,14 @@ void Server::sendRequestedMedia(session_t peer_id, << " size=" << pkt.getSize() << std::endl; Send(&pkt); } + + if (compress && bytes_uncompressed != 0) { + int percent = bytes_compressed / (float)bytes_uncompressed * 100; + int diff = (int)bytes_compressed - (int)bytes_uncompressed; + infostream << "Server::sendRequestedMedia(): size after compression " + << percent << "% (" << (diff > 0 ? '+' : '-') << std::abs(diff) + << " byte)" << std::endl; + } } void Server::stepPendingDynMediaCallbacks(float dtime) @@ -2920,7 +2970,7 @@ void Server::acceptAuth(session_t peer_id, bool forSudoMode) NetworkPacket resp_pkt(TOCLIENT_AUTH_ACCEPT, 1 + 6 + 8 + 4, peer_id); - resp_pkt << v3f(0,0,0) << (u64) m_env->getServerMap().getSeed() + resp_pkt << v3f() << (u64) m_env->getServerMap().getSeed() << g_settings->getFloat("dedicated_server_step") << client->allowed_auth_mechs; @@ -3704,7 +3754,11 @@ bool Server::dynamicAddMedia(const DynamicMediaArgs &a) // Push file to existing clients if (m_env) { NetworkPacket pkt(TOCLIENT_MEDIA_PUSH, 0); - pkt << raw_hash << filename << static_cast(a.ephemeral); + pkt << raw_hash << filename; + // NOTE: the meaning of a.ephemeral was accidentally inverted between proto 39 and 40, + // when dynamic_add_media v2 was added. As of 5.12.0 the server sends it correctly again. + // Compatibility code on the client-side was not added. + pkt << static_cast(!a.ephemeral); NetworkPacket legacy_pkt = pkt; @@ -3871,7 +3925,11 @@ std::string Server::getBuiltinLuaPath() void Server::setAsyncFatalError(const std::string &error) { + // print error right here in the thread that set it, for clearer logging + infostream << "setAsyncFatalError: " << error << std::endl; + m_async_fatal_error.set(error); + // make sure server steps stop happening immediately if (m_thread) m_thread->stop(); @@ -3898,13 +3956,13 @@ v3f Server::findSpawnPos() { ServerMap &map = m_env->getServerMap(); - std::optional staticSpawnPoint; + std::optional staticSpawnPoint; if (g_settings->getV3FNoEx("static_spawnpoint", staticSpawnPoint) && staticSpawnPoint.has_value()) - { - return *staticSpawnPoint * BS; - } + { + return *staticSpawnPoint * BS; + } - v3f nodeposf; + v3f nodeposf; bool is_good = false; // Limit spawn range to mapgen edges (determined by 'mapgen_limit') @@ -4207,7 +4265,7 @@ std::unordered_map Server::getMediaList() for (auto &it : m_media) { if (it.second.no_announce) continue; - ret.emplace(base64_decode(it.second.sha1_digest), it.second.path); + ret.emplace(it.second.sha1_digest, it.second.path); } return ret; } diff --git a/src/server.h b/src/server.h index 407d43d1b..c9869e1dd 100644 --- a/src/server.h +++ b/src/server.h @@ -23,6 +23,7 @@ #include "chatmessage.h" #include "sound.h" #include "translation.h" +#include "script/common/c_types.h" // LuaError #include #include #include @@ -44,6 +45,7 @@ class BanManager; class Inventory; class ModChannelMgr; class RemotePlayer; +class Player; class PlayerSAO; struct PlayerHPChangeReason; class IRollbackManager; @@ -88,7 +90,7 @@ enum ClientDeletionReason { struct MediaInfo { std::string path; - std::string sha1_digest; // base64-encoded + std::string sha1_digest; // true = not announced in TOCLIENT_ANNOUNCE_MEDIA (at player join) bool no_announce; // does what it says. used by some cases of dynamic media. @@ -408,6 +410,7 @@ public: void SendMovePlayerRel(session_t peer_id, const v3f &added_pos); void SendPlayerSpeed(session_t peer_id, const v3f &added_vel); void SendPlayerFov(session_t peer_id); + void SendCamera(session_t peer_id, Player *player); void SendMinimapModes(session_t peer_id, std::vector &modes, @@ -545,6 +548,7 @@ private: void SendCloudParams(session_t peer_id, const CloudParams ¶ms); void SendOverrideDayNightRatio(session_t peer_id, bool do_override, float ratio); void SendSetLighting(session_t peer_id, const Lighting &lighting); + void broadcastModChannelMessage(const std::string &channel, const std::string &message, session_t from_peer); diff --git a/src/server/CMakeLists.txt b/src/server/CMakeLists.txt index 3588451c0..98318e93d 100644 --- a/src/server/CMakeLists.txt +++ b/src/server/CMakeLists.txt @@ -1,13 +1,14 @@ set(common_server_SRCS ${CMAKE_CURRENT_SOURCE_DIR}/activeobjectmgr.cpp ${CMAKE_CURRENT_SOURCE_DIR}/ban.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/blockmodifier.cpp ${CMAKE_CURRENT_SOURCE_DIR}/clientiface.cpp ${CMAKE_CURRENT_SOURCE_DIR}/luaentity_sao.cpp ${CMAKE_CURRENT_SOURCE_DIR}/mods.cpp ${CMAKE_CURRENT_SOURCE_DIR}/player_sao.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/rollback.cpp ${CMAKE_CURRENT_SOURCE_DIR}/serveractiveobject.cpp ${CMAKE_CURRENT_SOURCE_DIR}/serverinventorymgr.cpp ${CMAKE_CURRENT_SOURCE_DIR}/serverlist.cpp ${CMAKE_CURRENT_SOURCE_DIR}/unit_sao.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/rollback.cpp PARENT_SCOPE) diff --git a/src/server/activeobjectmgr.cpp b/src/server/activeobjectmgr.cpp index 155cf50fb..452017786 100644 --- a/src/server/activeobjectmgr.cpp +++ b/src/server/activeobjectmgr.cpp @@ -26,7 +26,7 @@ void ActiveObjectMgr::clearIf(const std::function obj) return false; } - if (objectpos_over_limit(obj->getBasePosition())) { - v3f p = obj->getBasePosition(); + const v3f pos = obj->getBasePosition(); + if (objectpos_over_limit(pos)) { warningstream << "Server::ActiveObjectMgr::addActiveObjectRaw(): " - << "object position (" << p.X << "," << p.Y << "," << p.Z + << "object position (" << pos.X << "," << pos.Y << "," << pos.Z << ") outside maximum range" << std::endl; return false; } auto obj_id = obj->getId(); m_active_objects.put(obj_id, std::move(obj)); + m_spatial_index.insert(pos.toArray(), obj_id); auto new_size = m_active_objects.size(); verbosestream << "Server::ActiveObjectMgr::addActiveObjectRaw(): " @@ -100,6 +101,8 @@ void ActiveObjectMgr::removeObject(u16 id) if (!ok) { infostream << "Server::ActiveObjectMgr::removeObject(): " << "id=" << id << " not found" << std::endl; + } else { + m_spatial_index.remove(id); } } @@ -113,43 +116,47 @@ void ActiveObjectMgr::invalidateActiveObjectObserverCaches() } } -void ActiveObjectMgr::getObjectsInsideRadius(const v3f &pos, float radius, +void ActiveObjectMgr::updateObjectPos(u16 id, v3f pos) +{ + // HACK defensively only update if we already know the object, + // otherwise we're still waiting to be inserted into the index + // (or have already been removed). + if (m_active_objects.get(id)) + m_spatial_index.update(pos.toArray(), id); +} + +void ActiveObjectMgr::getObjectsInsideRadius(v3f pos, float radius, std::vector &result, std::function include_obj_cb) { - float r2 = radius * radius; - for (auto &activeObject : m_active_objects.iter()) { - ServerActiveObject *obj = activeObject.second.get(); - if (!obj) - continue; - const v3f &objectpos = obj->getBasePosition(); - if (objectpos.getDistanceFromSQ(pos) > r2) - continue; + float r_squared = radius * radius; + m_spatial_index.rangeQuery((pos - v3f(radius)).toArray(), (pos + v3f(radius)).toArray(), [&](auto objPos, u16 id) { + if (v3f(objPos).getDistanceFromSQ(pos) > r_squared) + return; + auto obj = m_active_objects.get(id).get(); + if (!obj) + return; if (!include_obj_cb || include_obj_cb(obj)) result.push_back(obj); - } + }); } void ActiveObjectMgr::getObjectsInArea(const aabb3f &box, std::vector &result, std::function include_obj_cb) { - for (auto &activeObject : m_active_objects.iter()) { - ServerActiveObject *obj = activeObject.second.get(); + m_spatial_index.rangeQuery(box.MinEdge.toArray(), box.MaxEdge.toArray(), [&](auto _, u16 id) { + auto obj = m_active_objects.get(id).get(); if (!obj) - continue; - const v3f &objectpos = obj->getBasePosition(); - if (!box.isPointInside(objectpos)) - continue; - + return; if (!include_obj_cb || include_obj_cb(obj)) result.push_back(obj); - } + }); } void ActiveObjectMgr::getAddedActiveObjectsAroundPos( - const v3f &player_pos, const std::string &player_name, + v3f player_pos, const std::string &player_name, f32 radius, f32 player_radius, const std::set ¤t_objects, std::vector &added_objects) diff --git a/src/server/activeobjectmgr.h b/src/server/activeobjectmgr.h index 854a75b18..9c65ad514 100644 --- a/src/server/activeobjectmgr.h +++ b/src/server/activeobjectmgr.h @@ -8,6 +8,7 @@ #include #include "../activeobjectmgr.h" #include "serveractiveobject.h" +#include "util/k_d_tree.h" namespace server { @@ -25,16 +26,21 @@ public: void invalidateActiveObjectObserverCaches(); - void getObjectsInsideRadius(const v3f &pos, float radius, + void updateObjectPos(u16 id, v3f pos); + + void getObjectsInsideRadius(v3f pos, float radius, std::vector &result, std::function include_obj_cb); void getObjectsInArea(const aabb3f &box, std::vector &result, std::function include_obj_cb); void getAddedActiveObjectsAroundPos( - const v3f &player_pos, const std::string &player_name, + v3f player_pos, const std::string &player_name, f32 radius, f32 player_radius, const std::set ¤t_objects, std::vector &added_objects); + +private: + k_d_tree::DynamicKdTrees<3, f32, u16> m_spatial_index; }; } // namespace server diff --git a/src/server/blockmodifier.cpp b/src/server/blockmodifier.cpp new file mode 100644 index 000000000..1983d5def --- /dev/null +++ b/src/server/blockmodifier.cpp @@ -0,0 +1,542 @@ +// Luanti +// SPDX-License-Identifier: LGPL-2.1-or-later +// Copyright (C) 2010-2017 celeron55, Perttu Ahola + +#include +#include "blockmodifier.h" +#include "serverenvironment.h" +#include "server.h" +#include "mapblock.h" +#include "nodedef.h" +#include "gamedef.h" + +/* + ABMs +*/ + +ABMWithState::ABMWithState(ActiveBlockModifier *abm_): + abm(abm_) +{ + // Initialize timer to random value to spread processing + float itv = abm->getTriggerInterval(); + itv = MYMAX(0.001f, itv); // No less than 1ms + int minval = MYMAX(-0.51f * itv, -60); // Clamp to + int maxval = MYMIN( 0.51f * itv, 60); // +-60 seconds + timer = myrand_range(minval, maxval); +} + +struct ActiveABM +{ + ActiveBlockModifier *abm; + std::vector required_neighbors; + std::vector without_neighbors; + int chance; + s16 min_y, max_y; +}; + +#define CONTENT_TYPE_CACHE_MAX 64 + +ABMHandler::ABMHandler(std::vector &abms, + float dtime_s, ServerEnvironment *env, + bool use_timers): + m_env(env) +{ + if (dtime_s < 0.001f) + return; + const NodeDefManager *ndef = env->getGameDef()->ndef(); + for (ABMWithState &abmws : abms) { + ActiveBlockModifier *abm = abmws.abm; + float trigger_interval = abm->getTriggerInterval(); + if (trigger_interval < 0.001f) + trigger_interval = 0.001f; + float actual_interval = dtime_s; + if (use_timers) { + abmws.timer += dtime_s; + if (abmws.timer < trigger_interval) + continue; + abmws.timer -= trigger_interval; + actual_interval = trigger_interval; + } + float chance = abm->getTriggerChance(); + if (chance == 0) + chance = 1; + + ActiveABM aabm; + aabm.abm = abm; + if (abm->getSimpleCatchUp()) { + float intervals = actual_interval / trigger_interval; + if (intervals == 0) + continue; + aabm.chance = chance / intervals; + if (aabm.chance == 0) + aabm.chance = 1; + } else { + aabm.chance = chance; + } + // y limits + aabm.min_y = abm->getMinY(); + aabm.max_y = abm->getMaxY(); + + // Trigger neighbors + for (const auto &s : abm->getRequiredNeighbors()) + ndef->getIds(s, aabm.required_neighbors); + SORT_AND_UNIQUE(aabm.required_neighbors); + + for (const auto &s : abm->getWithoutNeighbors()) + ndef->getIds(s, aabm.without_neighbors); + SORT_AND_UNIQUE(aabm.without_neighbors); + + // Trigger contents + std::vector ids; + for (const auto &s : abm->getTriggerContents()) + ndef->getIds(s, ids); + SORT_AND_UNIQUE(ids); + for (content_t c : ids) { + if (c >= m_aabms.size()) + m_aabms.resize(c + 256, nullptr); + if (!m_aabms[c]) + m_aabms[c] = new std::vector; + m_aabms[c]->push_back(aabm); + } + } +} + +ABMHandler::~ABMHandler() +{ + for (auto &aabms : m_aabms) + delete aabms; +} + +u32 ABMHandler::countObjects(MapBlock *block, ServerMap *map, u32 &wider) +{ + wider = 0; + u32 wider_unknown_count = 0; + for(s16 x=-1; x<=1; x++) + for(s16 y=-1; y<=1; y++) + for(s16 z=-1; z<=1; z++) + { + MapBlock *block2 = map->getBlockNoCreateNoEx( + block->getPos() + v3s16(x,y,z)); + if (!block2) { + wider_unknown_count++; + continue; + } + wider += block2->m_static_objects.size(); + } + // Extrapolate + u32 active_object_count = block->m_static_objects.getActiveSize(); + u32 wider_known_count = 3 * 3 * 3 - wider_unknown_count; + wider += wider_unknown_count * wider / wider_known_count; + return active_object_count; +} + +void ABMHandler::apply(MapBlock *block, int &blocks_scanned, int &abms_run, int &blocks_cached) +{ + if (m_aabms.empty()) + return; + + // Check the content type cache first + // to see whether there are any ABMs + // to be run at all for this block. + if (!block->contents.empty()) { + assert(!block->do_not_cache_contents); // invariant + blocks_cached++; + bool run_abms = false; + for (content_t c : block->contents) { + if (c < m_aabms.size() && m_aabms[c]) { + run_abms = true; + break; + } + } + if (!run_abms) + return; + } + blocks_scanned++; + + ServerMap *map = &m_env->getServerMap(); + + u32 active_object_count_wider; + u32 active_object_count = countObjects(block, map, active_object_count_wider); + m_env->m_added_objects = 0; + + bool want_contents_cached = block->contents.empty() && !block->do_not_cache_contents; + + v3s16 p0; + for(p0.Z=0; p0.ZgetNodeNoCheck(p0); + content_t c = n.getContent(); + + // Cache content types as we go + if (want_contents_cached && !CONTAINS(block->contents, c)) { + if (block->contents.size() >= CONTENT_TYPE_CACHE_MAX) { + // Too many different nodes... don't try to cache + want_contents_cached = false; + block->do_not_cache_contents = true; + decltype(block->contents) empty; + std::swap(block->contents, empty); + } else { + block->contents.push_back(c); + } + } + + if (c >= m_aabms.size() || !m_aabms[c]) + continue; + + v3s16 p = p0 + block->getPosRelative(); + for (ActiveABM &aabm : *m_aabms[c]) { + if (p.Y < aabm.min_y || p.Y > aabm.max_y) + continue; + + if (myrand() % aabm.chance != 0) + continue; + + // Check neighbors + const bool check_required_neighbors = !aabm.required_neighbors.empty(); + const bool check_without_neighbors = !aabm.without_neighbors.empty(); + if (check_required_neighbors || check_without_neighbors) { + v3s16 p1; + bool have_required = false; + for(p1.X = p0.X-1; p1.X <= p0.X+1; p1.X++) + for(p1.Y = p0.Y-1; p1.Y <= p0.Y+1; p1.Y++) + for(p1.Z = p0.Z-1; p1.Z <= p0.Z+1; p1.Z++) + { + if (p1 == p0) + continue; + content_t c; + if (block->isValidPosition(p1)) { + // if the neighbor is found on the same map block + // get it straight from there + const MapNode &n = block->getNodeNoCheck(p1); + c = n.getContent(); + } else { + // otherwise consult the map + MapNode n = map->getNode(p1 + block->getPosRelative()); + c = n.getContent(); + } + if (check_required_neighbors && !have_required) { + if (CONTAINS(aabm.required_neighbors, c)) { + if (!check_without_neighbors) + goto neighbor_found; + have_required = true; + } + } + if (check_without_neighbors) { + if (CONTAINS(aabm.without_neighbors, c)) + goto neighbor_invalid; + } + } + if (have_required || !check_required_neighbors) + goto neighbor_found; + // No required neighbor found +neighbor_invalid: + continue; + } + +neighbor_found: + + abms_run++; + // Call all the trigger variations + aabm.abm->trigger(m_env, p, n); + aabm.abm->trigger(m_env, p, n, + active_object_count, active_object_count_wider); + + if (block->isOrphan()) + return; + + // Count surrounding objects again if the abms added any + if (m_env->m_added_objects > 0) { + active_object_count = countObjects(block, map, active_object_count_wider); + m_env->m_added_objects = 0; + } + + // Update and check node after possible modification + n = block->getNodeNoCheck(p0); + if (n.getContent() != c) + break; + } + } +} + +/* + LBMs +*/ + +LBMContentMapping::~LBMContentMapping() +{ + map.clear(); + for (auto &it : lbm_list) + delete it; +} + +void LBMContentMapping::addLBM(LoadingBlockModifierDef *lbm_def, IGameDef *gamedef) +{ + // Add the lbm_def to the LBMContentMapping. + // Unknown names get added to the global NameIdMapping. + const NodeDefManager *nodedef = gamedef->ndef(); + + FATAL_ERROR_IF(CONTAINS(lbm_list, lbm_def), "Same LBM registered twice"); + lbm_list.push_back(lbm_def); + + std::vector c_ids; + + for (const auto &node : lbm_def->trigger_contents) { + bool found = nodedef->getIds(node, c_ids); + if (!found) { + content_t c_id = gamedef->allocateUnknownNodeId(node); + if (c_id == CONTENT_IGNORE) { + // Seems it can't be allocated. + warningstream << "Could not internalize node name \"" << node + << "\" while loading LBM \"" << lbm_def->name << "\"." << std::endl; + continue; + } + c_ids.push_back(c_id); + } + } + + SORT_AND_UNIQUE(c_ids); + + for (content_t c_id : c_ids) + map[c_id].push_back(lbm_def); +} + +const LBMContentMapping::lbm_vector * +LBMContentMapping::lookup(content_t c) const +{ + lbm_map::const_iterator it = map.find(c); + if (it == map.end()) + return nullptr; + return &(it->second); +} + +LBMManager::~LBMManager() +{ + for (auto &m_lbm_def : m_lbm_defs) + delete m_lbm_def.second; + + m_lbm_lookup.clear(); +} + +void LBMManager::addLBMDef(LoadingBlockModifierDef *lbm_def) +{ + // Precondition, in query mode the map isn't used anymore + FATAL_ERROR_IF(m_query_mode, + "attempted to modify LBMManager in query mode"); + + if (str_starts_with(lbm_def->name, ":")) + lbm_def->name.erase(0, 1); + + if (lbm_def->name.empty() || + !string_allowed(lbm_def->name, LBM_NAME_ALLOWED_CHARS)) { + throw ModError("Error adding LBM \"" + lbm_def->name + + "\": Does not follow naming conventions: " + "Only characters [a-z0-9_:] are allowed."); + } + + m_lbm_defs[lbm_def->name] = lbm_def; +} + +void LBMManager::loadIntroductionTimes(const std::string ×, + IGameDef *gamedef, u32 now) +{ + m_query_mode = true; + + auto introduction_times = parseIntroductionTimesString(times); + + // Put stuff from introduction_times into m_lbm_lookup + for (auto &[name, time] : introduction_times) { + auto def_it = m_lbm_defs.find(name); + if (def_it == m_lbm_defs.end()) { + infostream << "LBMManager: LBM " << name << " is not registered. " + "Discarding it." << std::endl; + continue; + } + auto *lbm_def = def_it->second; + if (lbm_def->run_at_every_load) { + continue; // These are handled below + } + if (time > now) { + warningstream << "LBMManager: LBM " << name << " was introduced in " + "the future. Pretending it's new." << std::endl; + // By skipping here it will be added as newly introduced. + continue; + } + + m_lbm_lookup[time].addLBM(lbm_def, gamedef); + + // Erase the entry so that we know later + // which elements didn't get put into m_lbm_lookup + m_lbm_defs.erase(def_it); + } + + // Now also add the elements from m_lbm_defs to m_lbm_lookup + // that weren't added in the previous step. + // They are introduced first time to this world, + // or are run at every load (introduction time hardcoded to U32_MAX). + + auto &lbms_we_introduce_now = m_lbm_lookup[now]; + auto &lbms_running_always = m_lbm_lookup[U32_MAX]; + for (auto &it : m_lbm_defs) { + if (it.second->run_at_every_load) + lbms_running_always.addLBM(it.second, gamedef); + else + lbms_we_introduce_now.addLBM(it.second, gamedef); + } + + // All pointer ownership now moved to LBMContentMapping + m_lbm_defs.clear(); + + // If these are empty delete them again to avoid pointless iteration. + if (lbms_we_introduce_now.empty()) + m_lbm_lookup.erase(now); + if (lbms_running_always.empty()) + m_lbm_lookup.erase(U32_MAX); + + infostream << "LBMManager: " << m_lbm_lookup.size() << + " unique times in lookup table" << std::endl; +} + +std::string LBMManager::createIntroductionTimesString() +{ + // Precondition, we must be in query mode + FATAL_ERROR_IF(!m_query_mode, + "attempted to query on non fully set up LBMManager"); + + std::ostringstream oss; + for (const auto &it : m_lbm_lookup) { + u32 time = it.first; + auto &lbm_list = it.second.getList(); + for (const auto &lbm_def : lbm_list) { + // Don't add if the LBM runs at every load, + // then introduction time is hardcoded and doesn't need to be stored. + if (lbm_def->run_at_every_load) + continue; + oss << lbm_def->name << "~" << time << ";"; + } + } + return oss.str(); +} + +std::unordered_map + LBMManager::parseIntroductionTimesString(const std::string ×) +{ + std::unordered_map ret; + + size_t idx = 0; + size_t idx_new; + while ((idx_new = times.find(';', idx)) != std::string::npos) { + std::string entry = times.substr(idx, idx_new - idx); + idx = idx_new + 1; + + std::vector components = str_split(entry, '~'); + if (components.size() != 2) + throw SerializationError("Introduction times entry \"" + + entry + "\" requires exactly one '~'!"); + if (components[0].empty()) + throw SerializationError("LBM name is empty"); + std::string name = std::move(components[0]); + if (name.front() == ':') // old versions didn't strip this + name.erase(0, 1); + u32 time = from_string(components[1]); + ret[std::move(name)] = time; + } + + return ret; +} + +namespace { + struct LBMToRun { + std::unordered_set p; // node positions + std::vector l; // ordered list of LBMs + + template + void insertLBMs(const C &container) { + for (auto &it : container) { + if (!CONTAINS(l, it)) + l.push_back(it); + } + } + }; +} + +void LBMManager::applyLBMs(ServerEnvironment *env, MapBlock *block, + const u32 stamp, const float dtime_s) +{ + // Precondition, we need m_lbm_lookup to be initialized + FATAL_ERROR_IF(!m_query_mode, + "attempted to query on non fully set up LBMManager"); + + // Collect a list of all LBMs and associated positions + std::unordered_map to_run; + + // Note: the iteration count of this outer loop is typically very low, so it's ok. + for (auto it = getLBMsIntroducedAfter(stamp); it != m_lbm_lookup.end(); ++it) { + v3s16 pos; + content_t c; + + // Cache previous lookups since it has a high performance penalty. + content_t previous_c = CONTENT_IGNORE; + const LBMContentMapping::lbm_vector *lbm_list = nullptr; + LBMToRun *batch = nullptr; + + for (pos.Z = 0; pos.Z < MAP_BLOCKSIZE; pos.Z++) + for (pos.Y = 0; pos.Y < MAP_BLOCKSIZE; pos.Y++) + for (pos.X = 0; pos.X < MAP_BLOCKSIZE; pos.X++) { + c = block->getNodeNoCheck(pos).getContent(); + + bool c_changed = false; + if (previous_c != c) { + c_changed = true; + lbm_list = it->second.lookup(c); + if (lbm_list) + batch = &to_run[c]; // creates entry + previous_c = c; + } + + if (!lbm_list) + continue; + batch->p.insert(pos); + if (c_changed) { + batch->insertLBMs(*lbm_list); + } else { + // we were here before so the list must be filled + assert(!batch->l.empty()); + } + } + } + + // Actually run them + bool first = true; + for (auto &[c, batch] : to_run) { + if (tracestream) { + tracestream << "Running " << batch.l.size() << " LBMs for node " + << env->getGameDef()->ndef()->get(c).name << " (" + << batch.p.size() << "x) in block " << block->getPos() << std::endl; + } + for (auto &lbm_def : batch.l) { + if (!first) { + // The fun part: since any LBM call can change the nodes inside of he + // block, we have to recheck the positions to see if the wanted node + // is still there. + // Note that we don't rescan the whole block, we don't want to include new changes. + for (auto it2 = batch.p.begin(); it2 != batch.p.end(); ) { + if (block->getNodeNoCheck(*it2).getContent() != c) + it2 = batch.p.erase(it2); + else + ++it2; + } + } else { + assert(!batch.p.empty()); + } + first = false; + + if (batch.p.empty()) + break; + lbm_def->trigger(env, block, batch.p, dtime_s); + if (block->isOrphan()) + return; + } + } +} diff --git a/src/server/blockmodifier.h b/src/server/blockmodifier.h new file mode 100644 index 000000000..602147ae0 --- /dev/null +++ b/src/server/blockmodifier.h @@ -0,0 +1,176 @@ +// Luanti +// SPDX-License-Identifier: LGPL-2.1-or-later +// Copyright (C) 2010-2017 celeron55, Perttu Ahola + +#pragma once + +#include +#include +#include +#include + +#include "irr_v3d.h" +#include "mapnode.h" + +class ServerEnvironment; +class ServerMap; +class MapBlock; +class IGameDef; + +/* + ABMs +*/ + +class ActiveBlockModifier +{ +public: + ActiveBlockModifier() = default; + virtual ~ActiveBlockModifier() = default; + + // Set of contents to trigger on + virtual const std::vector &getTriggerContents() const = 0; + // Set of required neighbors (trigger doesn't happen if none are found) + // Empty = do not check neighbors + virtual const std::vector &getRequiredNeighbors() const = 0; + // Set of without neighbors (trigger doesn't happen if any are found) + // Empty = do not check neighbors + virtual const std::vector &getWithoutNeighbors() const = 0; + // Trigger interval in seconds + virtual float getTriggerInterval() = 0; + // Random chance of (1 / return value), 0 is disallowed + virtual u32 getTriggerChance() = 0; + // Whether to modify chance to simulate time lost by an unnattended block + virtual bool getSimpleCatchUp() = 0; + // get min Y for apply abm + virtual s16 getMinY() = 0; + // get max Y for apply abm + virtual s16 getMaxY() = 0; + // This is called usually at interval for 1/chance of the nodes + virtual void trigger(ServerEnvironment *env, v3s16 p, MapNode n){}; + virtual void trigger(ServerEnvironment *env, v3s16 p, MapNode n, + u32 active_object_count, u32 active_object_count_wider){}; +}; + +struct ABMWithState +{ + ActiveBlockModifier *abm; + float timer = 0.0f; + + ABMWithState(ActiveBlockModifier *abm_); +}; + +struct ActiveABM; // hidden + +class ABMHandler +{ + ServerEnvironment *m_env; + // vector index = content_t + std::vector*> m_aabms; + +public: + ABMHandler(std::vector &abms, + float dtime_s, ServerEnvironment *env, + bool use_timers); + ~ABMHandler(); + + // Find out how many objects the given block and its neighbors contain. + // Returns the number of objects in the block, and also in 'wider' the + // number of objects in the block and all its neighbors. The latter + // may be an estimate if any neighbors are unloaded. + static u32 countObjects(MapBlock *block, ServerMap * map, u32 &wider); + + void apply(MapBlock *block, int &blocks_scanned, int &abms_run, int &blocks_cached); +}; + +/* + LBMs +*/ + +#define LBM_NAME_ALLOWED_CHARS "abcdefghijklmnopqrstuvwxyz0123456789_:" + +struct LoadingBlockModifierDef +{ + // Set of contents to trigger on + std::vector trigger_contents; + std::string name; + bool run_at_every_load = false; + + virtual ~LoadingBlockModifierDef() = default; + + /// @brief Called to invoke LBM + /// @param env environment + /// @param block the block in question + /// @param positions set of node positions (block-relative!) + /// @param dtime_s game time since last deactivation + virtual void trigger(ServerEnvironment *env, MapBlock *block, + const std::unordered_set &positions, float dtime_s) {}; +}; + +class LBMContentMapping +{ +public: + typedef std::vector lbm_vector; + typedef std::unordered_map lbm_map; + + LBMContentMapping() = default; + void addLBM(LoadingBlockModifierDef *lbm_def, IGameDef *gamedef); + const lbm_map::mapped_type *lookup(content_t c) const; + const lbm_vector &getList() const { return lbm_list; } + bool empty() const { return lbm_list.empty(); } + + // This struct owns the LBM pointers. + ~LBMContentMapping(); + DISABLE_CLASS_COPY(LBMContentMapping); + ALLOW_CLASS_MOVE(LBMContentMapping); + +private: + lbm_vector lbm_list; + lbm_map map; +}; + +class LBMManager +{ +public: + LBMManager() = default; + ~LBMManager(); + + // Don't call this after loadIntroductionTimes() ran. + void addLBMDef(LoadingBlockModifierDef *lbm_def); + + /// @param now current game time + void loadIntroductionTimes(const std::string ×, + IGameDef *gamedef, u32 now); + + // Don't call this before loadIntroductionTimes() ran. + std::string createIntroductionTimesString(); + + // Don't call this before loadIntroductionTimes() ran. + void applyLBMs(ServerEnvironment *env, MapBlock *block, + u32 stamp, float dtime_s); + + // Warning: do not make this std::unordered_map, order is relevant here + typedef std::map lbm_lookup_map; + +private: + // Once we set this to true, we can only query, + // not modify + bool m_query_mode = false; + + // For m_query_mode == false: + // The key of the map is the LBM def's name. + std::unordered_map m_lbm_defs; + + // For m_query_mode == true: + // The key of the map is the LBM def's first introduction time. + lbm_lookup_map m_lbm_lookup; + + /// @return map of LBM name -> timestamp + static std::unordered_map + parseIntroductionTimesString(const std::string ×); + + // Returns an iterator to the LBMs that were introduced + // after the given time. This is guaranteed to return + // valid values for everything + lbm_lookup_map::const_iterator getLBMsIntroducedAfter(u32 time) + { return m_lbm_lookup.lower_bound(time); } +}; diff --git a/src/server/clientiface.cpp b/src/server/clientiface.cpp index d05fedbb2..96db69bbe 100644 --- a/src/server/clientiface.cpp +++ b/src/server/clientiface.cpp @@ -339,25 +339,31 @@ void RemoteClient::GetNextBlocks ( if (d >= d_opt && block->isAir()) continue; } - /* - Check occlusion cache first. - */ - if (m_blocks_occ.find(p) != m_blocks_occ.end()) - continue; - /* - Note that we do this even before the block is loaded as this does not depend on its contents. - */ - if (m_occ_cull && - env->getMap().isBlockOccluded(p * MAP_BLOCKSIZE, cam_pos_nodes, d >= d_cull_opt)) { - m_blocks_occ.insert(p); - continue; + const bool want_emerge = !block || !block->isGenerated(); + + // if the block is already in the emerge queue we don't have to check again + if (!want_emerge || !emerge->isBlockInQueue(p)) { + /* + Check occlusion cache first. + */ + if (m_blocks_occ.find(p) != m_blocks_occ.end()) + continue; + + /* + Note that we do this even before the block is loaded as this does not depend on its contents. + */ + if (m_occ_cull && + env->getMap().isBlockOccluded(p * MAP_BLOCKSIZE, cam_pos_nodes, d >= d_cull_opt)) { + m_blocks_occ.insert(p); + continue; + } } /* Add inexistent block to emerge queue. */ - if (!block || !block->isGenerated()) { + if (want_emerge) { if (emerge->enqueueBlockEmerge(peer_id, p, generate)) { if (nearest_emerged_d == -1) nearest_emerged_d = d; diff --git a/src/server/luaentity_sao.cpp b/src/server/luaentity_sao.cpp index 5de0167d6..0ad3daba6 100644 --- a/src/server/luaentity_sao.cpp +++ b/src/server/luaentity_sao.cpp @@ -147,7 +147,7 @@ void LuaEntitySAO::step(float dtime, bool send_recommended) // Each frame, parent position is copied if the object is attached, otherwise it's calculated normally // If the object gets detached this comes into effect automatically from the last known origin if (auto *parent = getParent()) { - m_base_position = parent->getBasePosition(); + setBasePosition(parent->getBasePosition()); m_velocity = v3f(0,0,0); m_acceleration = v3f(0,0,0); } else { @@ -155,7 +155,7 @@ void LuaEntitySAO::step(float dtime, bool send_recommended) aabb3f box = m_prop.collisionbox; box.MinEdge *= BS; box.MaxEdge *= BS; - v3f p_pos = m_base_position; + v3f p_pos = getBasePosition(); v3f p_velocity = m_velocity; v3f p_acceleration = m_acceleration; moveresult = collisionMoveSimple(m_env, m_env->getGameDef(), @@ -165,11 +165,11 @@ void LuaEntitySAO::step(float dtime, bool send_recommended) moveresult_p = &moveresult; // Apply results - m_base_position = p_pos; + setBasePosition(p_pos); m_velocity = p_velocity; m_acceleration = p_acceleration; } else { - m_base_position += (m_velocity + m_acceleration * 0.5f * dtime) * dtime; + addPos((m_velocity + m_acceleration * 0.5f * dtime) * dtime); m_velocity += dtime * m_acceleration; } @@ -212,7 +212,7 @@ void LuaEntitySAO::step(float dtime, bool send_recommended) } else if(m_last_sent_position_timer > 0.2){ minchange = 0.05*BS; } - float move_d = m_base_position.getDistanceFrom(m_last_sent_position); + float move_d = getBasePosition().getDistanceFrom(m_last_sent_position); move_d += m_last_sent_move_precision; float vel_d = m_velocity.getDistanceFrom(m_last_sent_velocity); if (move_d > minchange || vel_d > minchange || @@ -236,7 +236,7 @@ std::string LuaEntitySAO::getClientInitializationData(u16 protocol_version) os << serializeString16(m_init_name); // name writeU8(os, 0); // is_player writeU16(os, getId()); //id - writeV3F32(os, m_base_position); + writeV3F32(os, getBasePosition()); writeV3F32(os, m_rotation); writeU16(os, m_hp); @@ -365,7 +365,7 @@ void LuaEntitySAO::setPos(const v3f &pos) { if(isAttached()) return; - m_base_position = pos; + setBasePosition(pos); sendPosition(false, true); } @@ -373,7 +373,7 @@ void LuaEntitySAO::moveTo(v3f pos, bool continuous) { if(isAttached()) return; - m_base_position = pos; + setBasePosition(pos); if(!continuous) sendPosition(true, true); } @@ -387,7 +387,7 @@ std::string LuaEntitySAO::getDescription() { std::ostringstream oss; oss << "LuaEntitySAO \"" << m_init_name << "\" "; - auto pos = floatToInt(m_base_position, BS); + auto pos = floatToInt(getBasePosition(), BS); oss << "at " << pos; return oss.str(); } @@ -503,10 +503,10 @@ void LuaEntitySAO::sendPosition(bool do_interpolate, bool is_movement_end) // Send attachment updates instantly to the client prior updating position sendOutdatedData(); - m_last_sent_move_precision = m_base_position.getDistanceFrom( + m_last_sent_move_precision = getBasePosition().getDistanceFrom( m_last_sent_position); m_last_sent_position_timer = 0; - m_last_sent_position = m_base_position; + m_last_sent_position = getBasePosition(); m_last_sent_velocity = m_velocity; //m_last_sent_acceleration = m_acceleration; m_last_sent_rotation = m_rotation; @@ -514,7 +514,7 @@ void LuaEntitySAO::sendPosition(bool do_interpolate, bool is_movement_end) float update_interval = m_env->getSendRecommendedInterval(); std::string str = generateUpdatePositionCommand( - m_base_position, + getBasePosition(), m_velocity, m_acceleration, m_rotation, @@ -534,8 +534,8 @@ bool LuaEntitySAO::getCollisionBox(aabb3f *toset) const toset->MinEdge = m_prop.collisionbox.MinEdge * BS; toset->MaxEdge = m_prop.collisionbox.MaxEdge * BS; - toset->MinEdge += m_base_position; - toset->MaxEdge += m_base_position; + toset->MinEdge += getBasePosition(); + toset->MaxEdge += getBasePosition(); return true; } diff --git a/src/server/mods.cpp b/src/server/mods.cpp index fb47439c9..e2d5debba 100644 --- a/src/server/mods.cpp +++ b/src/server/mods.cpp @@ -15,15 +15,8 @@ * All new calls to this class must be tested in test_servermodmanager.cpp */ -/** - * Creates a ServerModManager which targets worldpath - * @param worldpath - */ -ServerModManager::ServerModManager(const std::string &worldpath): - configuration() +ServerModManager::ServerModManager(const std::string &worldpath, SubgameSpec gamespec) { - SubgameSpec gamespec = findWorldSubgame(worldpath); - // Add all game mods and all world mods configuration.addGameMods(gamespec); configuration.addModsInPath(worldpath + DIR_DELIM + "worldmods", "worldmods"); @@ -42,21 +35,25 @@ void ServerModManager::loadMods(ServerScripting &script) for (const ModSpec &mod : configuration.getMods()) { infostream << mod.name << " "; } - infostream << std::endl; + // Load and run "mod" scripts + auto t0 = porting::getTimeMs(); for (const ModSpec &mod : configuration.getMods()) { mod.checkAndLog(); + auto t1 = porting::getTimeMs(); std::string script_path = mod.path + DIR_DELIM + "init.lua"; - auto t = porting::getTimeMs(); script.loadMod(script_path, mod.name); infostream << "Mod \"" << mod.name << "\" loaded after " - << (porting::getTimeMs() - t) << " ms" << std::endl; + << (porting::getTimeMs() - t1) << " ms" << std::endl; } // Run a callback when mods are loaded script.on_mods_loaded(); + + infostream << "All mods loaded after " << (porting::getTimeMs() - t0) + << " ms" << std::endl; } const ModSpec *ServerModManager::getModSpec(const std::string &modname) const @@ -87,5 +84,6 @@ void ServerModManager::getModsMediaPaths(std::vector &paths) const fs::GetRecursiveDirs(paths, spec.path + DIR_DELIM + "media"); fs::GetRecursiveDirs(paths, spec.path + DIR_DELIM + "models"); fs::GetRecursiveDirs(paths, spec.path + DIR_DELIM + "locale"); + fs::GetRecursiveDirs(paths, spec.path + DIR_DELIM + "fonts"); } } diff --git a/src/server/mods.h b/src/server/mods.h index a82d4d572..b10b232b2 100644 --- a/src/server/mods.h +++ b/src/server/mods.h @@ -21,10 +21,11 @@ class ServerModManager public: /** - * Creates a ServerModManager which targets worldpath - * @param worldpath + * Creates a ServerModManager + * @param worldpath path to world + * @param gamespec game used by the world */ - ServerModManager(const std::string &worldpath); + ServerModManager(const std::string &worldpath, SubgameSpec gamespec); /** * Creates an empty ServerModManager. For testing purposes. diff --git a/src/server/player_sao.cpp b/src/server/player_sao.cpp index 5d6b891fa..068b2b29f 100644 --- a/src/server/player_sao.cpp +++ b/src/server/player_sao.cpp @@ -26,13 +26,12 @@ PlayerSAO::PlayerSAO(ServerEnvironment *env_, RemotePlayer *player_, session_t p m_prop.selectionbox = aabb3f(-0.3f, 0.0f, -0.3f, 0.3f, 1.77f, 0.3f); m_prop.pointable = PointabilityType::POINTABLE; // Start of default appearance, this should be overwritten by Lua - m_prop.visual = "upright_sprite"; + m_prop.visual = OBJECTVISUAL_UPRIGHT_SPRITE; m_prop.visual_size = v3f(1, 2, 1); m_prop.textures.clear(); m_prop.textures.emplace_back("player.png"); m_prop.textures.emplace_back("player_back.png"); m_prop.colors.clear(); - m_prop.colors.emplace_back(255, 255, 255, 255); m_prop.spritediv = v2s16(1,1); m_prop.eye_height = 1.625f; // End of default appearance @@ -71,11 +70,10 @@ std::string PlayerSAO::getDescription() void PlayerSAO::addedToEnvironment(u32 dtime_s) { ServerActiveObject::addedToEnvironment(dtime_s); - ServerActiveObject::setBasePosition(m_base_position); m_player->setPlayerSAO(this); m_player->setPeerId(m_peer_id_initial); m_peer_id_initial = PEER_ID_INEXISTENT; // don't try to use it again. - m_last_good_position = m_base_position; + m_last_good_position = getBasePosition(); } // Called before removing from environment @@ -101,7 +99,7 @@ std::string PlayerSAO::getClientInitializationData(u16 protocol_version) os << serializeString16(m_player->getName()); // name writeU8(os, 1); // is_player writeS16(os, getId()); // id - writeV3F32(os, m_base_position); + writeV3F32(os, getBasePosition()); writeV3F32(os, m_rotation); writeU16(os, getHP()); @@ -185,7 +183,7 @@ void PlayerSAO::step(float dtime, bool send_recommended) // Sequence of damage points, starting 0.1 above feet and progressing // upwards in 1 node intervals, stopping below top damage point. for (float dam_height = 0.1f; dam_height < dam_top; dam_height++) { - v3s16 p = floatToInt(m_base_position + + v3s16 p = floatToInt(getBasePosition() + v3f(0.0f, dam_height * BS, 0.0f), BS); MapNode n = m_env->getMap().getNode(p); const ContentFeatures &c = m_env->getGameDef()->ndef()->get(n); @@ -197,7 +195,7 @@ void PlayerSAO::step(float dtime, bool send_recommended) } // Top damage point - v3s16 ptop = floatToInt(m_base_position + + v3s16 ptop = floatToInt(getBasePosition() + v3f(0.0f, dam_top * BS, 0.0f), BS); MapNode ntop = m_env->getMap().getNode(ptop); const ContentFeatures &c = m_env->getGameDef()->ndef()->get(ntop); @@ -274,7 +272,7 @@ void PlayerSAO::step(float dtime, bool send_recommended) if (isAttached()) pos = m_last_good_position; else - pos = m_base_position; + pos = getBasePosition(); std::string str = generateUpdatePositionCommand( pos, @@ -333,7 +331,7 @@ std::string PlayerSAO::generateUpdatePhysicsOverrideCommand() const void PlayerSAO::setBasePosition(v3f position) { - if (m_player && position != m_base_position) + if (m_player && position != getBasePosition()) m_player->setDirty(true); // This needs to be ran for attachments too @@ -637,7 +635,7 @@ bool PlayerSAO::checkMovementCheat() if (m_is_singleplayer || isAttached() || !(anticheat_flags & AC_MOVEMENT)) { - m_last_good_position = m_base_position; + m_last_good_position = getBasePosition(); return false; } @@ -702,7 +700,7 @@ bool PlayerSAO::checkMovementCheat() if (player_max_jump < 0.0001f) player_max_jump = 0.0001f; - v3f diff = (m_base_position - m_last_good_position); + v3f diff = (getBasePosition() - m_last_good_position); float d_vert = diff.Y; diff.Y = 0; float d_horiz = diff.getLength(); @@ -723,7 +721,7 @@ bool PlayerSAO::checkMovementCheat() required_time /= anticheat_movement_tolerance; if (m_move_pool.grab(required_time)) { - m_last_good_position = m_base_position; + m_last_good_position = getBasePosition(); } else { const float LAG_POOL_MIN = 5.0; float lag_pool_max = m_env->getMaxLagEstimate() * 2.0; @@ -745,8 +743,8 @@ bool PlayerSAO::getCollisionBox(aabb3f *toset) const toset->MinEdge = m_prop.collisionbox.MinEdge * BS; toset->MaxEdge = m_prop.collisionbox.MaxEdge * BS; - toset->MinEdge += m_base_position; - toset->MaxEdge += m_base_position; + toset->MinEdge += getBasePosition(); + toset->MaxEdge += getBasePosition(); return true; } diff --git a/src/server/player_sao.h b/src/server/player_sao.h index 0ce26f7cc..a19177a7e 100644 --- a/src/server/player_sao.h +++ b/src/server/player_sao.h @@ -170,7 +170,7 @@ public: void finalize(RemotePlayer *player, const std::set &privs); - v3f getEyePosition() const { return m_base_position + getEyeOffset(); } + v3f getEyePosition() const { return getBasePosition() + getEyeOffset(); } v3f getEyeOffset() const; float getZoomFOV() const; diff --git a/src/server/rollback.cpp b/src/server/rollback.cpp index ba93385e9..43ca70bb3 100644 --- a/src/server/rollback.cpp +++ b/src/server/rollback.cpp @@ -121,7 +121,7 @@ void RollbackManager::registerNewNode(const int id, const std::string &name) int RollbackManager::getActorId(const std::string &name) { - for (std::vector::const_iterator iter = knownActors.begin(); + for (auto iter = knownActors.begin(); iter != knownActors.end(); ++iter) { if (iter->name == name) { return iter->id; @@ -141,7 +141,7 @@ int RollbackManager::getActorId(const std::string &name) int RollbackManager::getNodeId(const std::string &name) { - for (std::vector::const_iterator iter = knownNodes.begin(); + for (auto iter = knownNodes.begin(); iter != knownNodes.end(); ++iter) { if (iter->name == name) { return iter->id; @@ -161,7 +161,7 @@ int RollbackManager::getNodeId(const std::string &name) const char * RollbackManager::getActorName(const int id) { - for (std::vector::const_iterator iter = knownActors.begin(); + for (auto iter = knownActors.begin(); iter != knownActors.end(); ++iter) { if (iter->id == id) { return iter->name.c_str(); @@ -174,7 +174,7 @@ const char * RollbackManager::getActorName(const int id) const char * RollbackManager::getNodeName(const int id) { - for (std::vector::const_iterator iter = knownNodes.begin(); + for (auto iter = knownNodes.begin(); iter != knownNodes.end(); ++iter) { if (iter->id == id) { return iter->name.c_str(); @@ -224,7 +224,12 @@ bool RollbackManager::createTables() " FOREIGN KEY (`oldNode`) REFERENCES `node`(`id`),\n" " FOREIGN KEY (`newNode`) REFERENCES `node`(`id`)\n" ");\n" - "CREATE INDEX IF NOT EXISTS `actionIndex` ON `action`(`x`,`y`,`z`,`timestamp`,`actor`);\n", + // We run queries with the following filters: + // - `timestamp` >= ? AND `actor` = ? + // - `timestamp` >= ? + // - `timestamp` >= ? AND + "CREATE INDEX IF NOT EXISTS `actionIndex` ON `action`(`x`,`y`,`z`,`timestamp`,`actor`);\n" + "CREATE INDEX IF NOT EXISTS `actionTimestampActorIndex` ON `action`(`timestamp`,`actor`);\n", NULL, NULL, NULL)); verbosestream << "SQL Rollback: SQLite3 database structure was created" << std::endl; @@ -766,9 +771,7 @@ void RollbackManager::flush() { sqlite3_exec(db, "BEGIN", NULL, NULL, NULL); - std::list::const_iterator iter; - - for (iter = action_todisk_buffer.begin(); + for (auto iter = action_todisk_buffer.begin(); iter != action_todisk_buffer.end(); ++iter) { if (iter->actor.empty()) { diff --git a/src/server/serveractiveobject.cpp b/src/server/serveractiveobject.cpp index 913c402ed..fa0c76a70 100644 --- a/src/server/serveractiveobject.cpp +++ b/src/server/serveractiveobject.cpp @@ -6,6 +6,7 @@ #include "inventory.h" #include "inventorymanager.h" #include "constants.h" // BS +#include "serverenvironment.h" ServerActiveObject::ServerActiveObject(ServerEnvironment *env, v3f pos): ActiveObject(0), @@ -14,6 +15,17 @@ ServerActiveObject::ServerActiveObject(ServerEnvironment *env, v3f pos): { } +void ServerActiveObject::setBasePosition(v3f pos) +{ + bool changed = m_base_position != pos; + m_base_position = pos; + if (changed && getEnv()) { + // getEnv() should never be null if the object is in an environment. + // It may however be null e.g. in tests or database migrations. + getEnv()->updateObjectPos(getId(), pos); + } +} + float ServerActiveObject::getMinimumSavedMovement() { return 2.0*BS; diff --git a/src/server/serveractiveobject.h b/src/server/serveractiveobject.h index 8b60bc5f8..da3dc17bd 100644 --- a/src/server/serveractiveobject.h +++ b/src/server/serveractiveobject.h @@ -63,7 +63,7 @@ public: Some simple getters/setters */ v3f getBasePosition() const { return m_base_position; } - void setBasePosition(v3f pos){ m_base_position = pos; } + void setBasePosition(v3f pos); ServerEnvironment* getEnv(){ return m_env; } /* @@ -245,7 +245,6 @@ protected: virtual void onMarkedForRemoval() {} ServerEnvironment *m_env; - v3f m_base_position; std::unordered_set m_attached_particle_spawners; /* @@ -273,4 +272,7 @@ protected: Queue of messages to be sent to the client */ std::queue m_messages_out; + +private: + v3f m_base_position; // setBasePosition updates index and MUST be called }; diff --git a/src/server/unit_sao.h b/src/server/unit_sao.h index 8cc27c967..6930cd583 100644 --- a/src/server/unit_sao.h +++ b/src/server/unit_sao.h @@ -30,7 +30,7 @@ public: v3f res; // First rotate by m_rotation, then rotate by the automatic rotate yaw (core::quaternion(v3f(0, -m_rotation_add_yaw * core::DEGTORAD, 0)) - * core::quaternion(rot.getRotationDegrees() * core::DEGTORAD)) + * core::quaternion(rot.getRotationRadians())) .toEuler(res); return res * core::RADTODEG; } diff --git a/src/serverenvironment.cpp b/src/serverenvironment.cpp index 04104d517..9014c7017 100644 --- a/src/serverenvironment.cpp +++ b/src/serverenvironment.cpp @@ -6,6 +6,7 @@ #include #include #include "serverenvironment.h" +#include "irr_aabb3d.h" #include "settings.h" #include "log.h" #include "mapblock.h" @@ -38,278 +39,13 @@ #include "server/luaentity_sao.h" #include "server/player_sao.h" -#define LBM_NAME_ALLOWED_CHARS "abcdefghijklmnopqrstuvwxyz0123456789_:" - // A number that is much smaller than the timeout for particle spawners should/could ever be #define PARTICLE_SPAWNER_NO_EXPIRY -1024.f -/* - ABMWithState -*/ +static constexpr s16 ACTIVE_OBJECT_RESAVE_DISTANCE_SQ = sqr(3); -ABMWithState::ABMWithState(ActiveBlockModifier *abm_): - abm(abm_) -{ - // Initialize timer to random value to spread processing - float itv = abm->getTriggerInterval(); - itv = MYMAX(0.001, itv); // No less than 1ms - int minval = MYMAX(-0.51*itv, -60); // Clamp to - int maxval = MYMIN(0.51*itv, 60); // +-60 seconds - timer = myrand_range(minval, maxval); -} +static constexpr u32 BLOCK_RESAVE_TIMESTAMP_DIFF = 60; // in units of game time -/* - LBMManager -*/ - -LBMContentMapping::~LBMContentMapping() -{ - map.clear(); - for (auto &it : lbm_list) - delete it; -} - -void LBMContentMapping::addLBM(LoadingBlockModifierDef *lbm_def, IGameDef *gamedef) -{ - // Add the lbm_def to the LBMContentMapping. - // Unknown names get added to the global NameIdMapping. - const NodeDefManager *nodedef = gamedef->ndef(); - - FATAL_ERROR_IF(CONTAINS(lbm_list, lbm_def), "Same LBM registered twice"); - lbm_list.push_back(lbm_def); - - std::vector c_ids; - - for (const auto &node : lbm_def->trigger_contents) { - bool found = nodedef->getIds(node, c_ids); - if (!found) { - content_t c_id = gamedef->allocateUnknownNodeId(node); - if (c_id == CONTENT_IGNORE) { - // Seems it can't be allocated. - warningstream << "Could not internalize node name \"" << node - << "\" while loading LBM \"" << lbm_def->name << "\"." << std::endl; - continue; - } - c_ids.push_back(c_id); - } - } - - SORT_AND_UNIQUE(c_ids); - - for (content_t c_id : c_ids) - map[c_id].push_back(lbm_def); -} - -const LBMContentMapping::lbm_vector * -LBMContentMapping::lookup(content_t c) const -{ - lbm_map::const_iterator it = map.find(c); - if (it == map.end()) - return NULL; - // This first dereferences the iterator, returning - // a std::vector - // reference, then we convert it to a pointer. - return &(it->second); -} - -LBMManager::~LBMManager() -{ - for (auto &m_lbm_def : m_lbm_defs) { - delete m_lbm_def.second; - } - - m_lbm_lookup.clear(); -} - -void LBMManager::addLBMDef(LoadingBlockModifierDef *lbm_def) -{ - // Precondition, in query mode the map isn't used anymore - FATAL_ERROR_IF(m_query_mode, - "attempted to modify LBMManager in query mode"); - - if (!string_allowed(lbm_def->name, LBM_NAME_ALLOWED_CHARS)) { - throw ModError("Error adding LBM \"" + lbm_def->name + - "\": Does not follow naming conventions: " - "Only characters [a-z0-9_:] are allowed."); - } - - m_lbm_defs[lbm_def->name] = lbm_def; -} - -void LBMManager::loadIntroductionTimes(const std::string ×, - IGameDef *gamedef, u32 now) -{ - m_query_mode = true; - - // name -> time map. - // Storing it in a map first instead of - // handling the stuff directly in the loop - // removes all duplicate entries. - std::unordered_map introduction_times; - - /* - The introduction times string consists of name~time entries, - with each entry terminated by a semicolon. The time is decimal. - */ - - size_t idx = 0; - size_t idx_new; - while ((idx_new = times.find(';', idx)) != std::string::npos) { - std::string entry = times.substr(idx, idx_new - idx); - std::vector components = str_split(entry, '~'); - if (components.size() != 2) - throw SerializationError("Introduction times entry \"" - + entry + "\" requires exactly one '~'!"); - const std::string &name = components[0]; - u32 time = from_string(components[1]); - introduction_times[name] = time; - idx = idx_new + 1; - } - - // Put stuff from introduction_times into m_lbm_lookup - for (auto &it : introduction_times) { - const std::string &name = it.first; - u32 time = it.second; - - auto def_it = m_lbm_defs.find(name); - if (def_it == m_lbm_defs.end()) { - // This seems to be an LBM entry for - // an LBM we haven't loaded. Discard it. - continue; - } - LoadingBlockModifierDef *lbm_def = def_it->second; - if (lbm_def->run_at_every_load) { - // This seems to be an LBM entry for - // an LBM that runs at every load. - // Don't add it just yet. - continue; - } - - m_lbm_lookup[time].addLBM(lbm_def, gamedef); - - // Erase the entry so that we know later - // what elements didn't get put into m_lbm_lookup - m_lbm_defs.erase(name); - } - - // Now also add the elements from m_lbm_defs to m_lbm_lookup - // that weren't added in the previous step. - // They are introduced first time to this world, - // or are run at every load (introducement time hardcoded to U32_MAX). - - LBMContentMapping &lbms_we_introduce_now = m_lbm_lookup[now]; - LBMContentMapping &lbms_running_always = m_lbm_lookup[U32_MAX]; - - for (auto &m_lbm_def : m_lbm_defs) { - if (m_lbm_def.second->run_at_every_load) { - lbms_running_always.addLBM(m_lbm_def.second, gamedef); - } else { - lbms_we_introduce_now.addLBM(m_lbm_def.second, gamedef); - } - } - - // Clear the list, so that we don't delete remaining elements - // twice in the destructor - m_lbm_defs.clear(); -} - -std::string LBMManager::createIntroductionTimesString() -{ - // Precondition, we must be in query mode - FATAL_ERROR_IF(!m_query_mode, - "attempted to query on non fully set up LBMManager"); - - std::ostringstream oss; - for (const auto &it : m_lbm_lookup) { - u32 time = it.first; - auto &lbm_list = it.second.getList(); - for (const auto &lbm_def : lbm_list) { - // Don't add if the LBM runs at every load, - // then introducement time is hardcoded - // and doesn't need to be stored - if (lbm_def->run_at_every_load) - continue; - oss << lbm_def->name << "~" << time << ";"; - } - } - return oss.str(); -} - -void LBMManager::applyLBMs(ServerEnvironment *env, MapBlock *block, - const u32 stamp, const float dtime_s) -{ - // Precondition, we need m_lbm_lookup to be initialized - FATAL_ERROR_IF(!m_query_mode, - "attempted to query on non fully set up LBMManager"); - - // Collect a list of all LBMs and associated positions - struct LBMToRun { - std::unordered_set p; // node positions - std::unordered_set l; - }; - std::unordered_map to_run; - - // Note: the iteration count of this outer loop is typically very low, so it's ok. - for (auto it = getLBMsIntroducedAfter(stamp); it != m_lbm_lookup.end(); ++it) { - v3s16 pos; - content_t c; - - // Cache previous lookups since it has a high performance penalty. - content_t previous_c = CONTENT_IGNORE; - const LBMContentMapping::lbm_vector *lbm_list = nullptr; - LBMToRun *batch = nullptr; - - for (pos.Z = 0; pos.Z < MAP_BLOCKSIZE; pos.Z++) - for (pos.Y = 0; pos.Y < MAP_BLOCKSIZE; pos.Y++) - for (pos.X = 0; pos.X < MAP_BLOCKSIZE; pos.X++) { - c = block->getNodeNoCheck(pos).getContent(); - - bool c_changed = false; - if (previous_c != c) { - c_changed = true; - lbm_list = it->second.lookup(c); - batch = &to_run[c]; - previous_c = c; - } - - if (!lbm_list) - continue; - batch->p.insert(pos); - if (c_changed) { - batch->l.insert(lbm_list->begin(), lbm_list->end()); - } else { - // we were here before so the list must be filled - assert(!batch->l.empty()); - } - } - } - - // Actually run them - bool first = true; - for (auto &[c, batch] : to_run) { - for (auto &lbm_def : batch.l) { - if (!first) { - // The fun part: since any LBM call can change the nodes inside of he - // block, we have to recheck the positions to see if the wanted node - // is still there. - // Note that we don't rescan the whole block, we don't want to include new changes. - for (auto it2 = batch.p.begin(); it2 != batch.p.end(); ) { - if (block->getNodeNoCheck(*it2).getContent() != c) - it2 = batch.p.erase(it2); - else - ++it2; - } - } - first = false; - - if (batch.p.empty()) - break; - lbm_def->trigger(env, block, batch.p, dtime_s); - if (block->isOrphan()) - return; - } - } -} /* ActiveBlockList @@ -360,10 +96,8 @@ void ActiveBlockList::update(std::vector &active_players, */ std::set newlist = m_forceloaded_list; std::set extralist; - m_abm_list = m_forceloaded_list; for (const PlayerSAO *playersao : active_players) { v3s16 pos = getNodeBlockPos(floatToInt(playersao->getBasePosition(), BS)); - fillRadiusBlock(pos, active_block_range, m_abm_list); fillRadiusBlock(pos, active_block_range, newlist); s16 player_ao_range = std::min(active_object_range, playersao->getWantedRange()); @@ -383,6 +117,8 @@ void ActiveBlockList::update(std::vector &active_players, } } + m_abm_list = newlist; + /* Find out which blocks on the new list are not on the old list */ @@ -414,6 +150,7 @@ void ActiveBlockList::update(std::vector &active_players, Do some least-effort sanity checks to hopefully catch code bugs. */ assert(newlist.size() >= extralist.size()); + assert(newlist.size() >= m_abm_list.size()); assert(blocks_removed.size() <= m_list.size()); if (!blocks_added.empty()) { assert(newlist.count(*blocks_added.begin()) > 0); @@ -459,6 +196,11 @@ ServerEnvironment::ServerEnvironment(std::unique_ptr map, m_script(server->getScriptIface()), m_server(server) { + m_cache_active_block_mgmt_interval = g_settings->getFloat("active_block_mgmt_interval"); + m_cache_abm_interval = rangelim(g_settings->getFloat("abm_interval"), 0.1f, 30); + m_cache_nodetimer_interval = rangelim(g_settings->getFloat("nodetimer_interval"), 0.1f, 1); + m_cache_abm_time_budget = g_settings->getFloat("abm_time_budget"); + m_step_time_counter = mb->addCounter( "minetest_env_step_time", "Time spent in environment step (in microseconds)"); @@ -625,8 +367,7 @@ void ServerEnvironment::addPlayer(RemotePlayer *player) void ServerEnvironment::removePlayer(RemotePlayer *player) { - for (std::vector::iterator it = m_players.begin(); - it != m_players.end(); ++it) { + for (auto it = m_players.begin(); it != m_players.end(); ++it) { if ((*it) == player) { delete *it; m_players.erase(it); @@ -731,28 +472,25 @@ void ServerEnvironment::loadMeta() SANITY_CHECK(!m_meta_loaded); m_meta_loaded = true; + // This has nothing to do with this method but it's nice to know + infostream << "ServerEnvironment: " << m_abms.size() << " ABMs are registered" << std::endl; + std::string path = m_server->getWorldPath() + DIR_DELIM "env_meta.txt"; // If file doesn't exist, load default environment metadata if (!fs::PathExists(path)) { - infostream << "ServerEnvironment: Loading default environment metadata" - << std::endl; loadDefaultMeta(); return; } - infostream << "ServerEnvironment: Loading environment metadata" << std::endl; + infostream << "ServerEnvironment: Loading environment metadata from file" << std::endl; // Open file and deserialize - std::ifstream is(path.c_str(), std::ios_base::binary); - if (!is.good()) { - infostream << "ServerEnvironment::loadMeta(): Failed to open " - << path << std::endl; + auto is = open_ifstream(path.c_str(), true); + if (!is.good()) throw SerializationError("Couldn't load env meta"); - } Settings args("EnvArgsEnd"); - if (!args.parseConfigLines(is)) { throw SerializationError("ServerEnvironment::loadMeta(): " "EnvArgsEnd not found!"); @@ -762,32 +500,32 @@ void ServerEnvironment::loadMeta() m_game_time = args.getU64("game_time"); } catch (SettingNotFoundException &e) { // Getting this is crucial, otherwise timestamps are useless - throw SerializationError("Couldn't load env meta game_time"); + throw SerializationError("Couldn't read game_time from env meta"); } setTimeOfDay(args.exists("time_of_day") ? - // set day to early morning by default + // if it's missing for some reason, set early morning args.getU64("time_of_day") : 5250); m_last_clear_objects_time = args.exists("last_clear_objects_time") ? // If missing, do as if clearObjects was never called args.getU64("last_clear_objects_time") : 0; + m_day_count = args.exists("day_count") ? args.getU32("day_count") : 0; + std::string lbm_introduction_times; try { - u64 ver = args.getU64("lbm_introduction_times_version"); + u32 ver = args.getU32("lbm_introduction_times_version"); if (ver == 1) { lbm_introduction_times = args.get("lbm_introduction_times"); } else { - infostream << "ServerEnvironment::loadMeta(): Non-supported" + warningstream << "ServerEnvironment::loadMeta(): Unsupported" << " introduction time version " << ver << std::endl; } } catch (SettingNotFoundException &e) { // No problem, this is expected. Just continue with an empty string } m_lbm_mgr.loadIntroductionTimes(lbm_introduction_times, m_server, m_game_time); - - m_day_count = args.exists("day_count") ? args.getU32("day_count") : 0; } /** @@ -795,255 +533,20 @@ void ServerEnvironment::loadMeta() */ void ServerEnvironment::loadDefaultMeta() { + infostream << "ServerEnvironment: Using default environment metadata" + << std::endl; m_lbm_mgr.loadIntroductionTimes("", m_server, m_game_time); } -struct ActiveABM +void ServerEnvironment::forceActivateBlock(MapBlock *block) { - ActiveBlockModifier *abm; - std::vector required_neighbors; - std::vector without_neighbors; - int chance; - s16 min_y, max_y; -}; + assert(block); + if (m_active_blocks.add(block->getPos())) + activateBlock(block); + m_active_block_gauge->set(m_active_blocks.size()); +} -#define CONTENT_TYPE_CACHE_MAX 64 - -class ABMHandler -{ -private: - ServerEnvironment *m_env; - std::vector *> m_aabms; -public: - ABMHandler(std::vector &abms, - float dtime_s, ServerEnvironment *env, - bool use_timers): - m_env(env) - { - if (dtime_s < 0.001f) - return; - const NodeDefManager *ndef = env->getGameDef()->ndef(); - for (ABMWithState &abmws : abms) { - ActiveBlockModifier *abm = abmws.abm; - float trigger_interval = abm->getTriggerInterval(); - if (trigger_interval < 0.001f) - trigger_interval = 0.001f; - float actual_interval = dtime_s; - if (use_timers) { - abmws.timer += dtime_s; - if(abmws.timer < trigger_interval) - continue; - abmws.timer -= trigger_interval; - actual_interval = trigger_interval; - } - float chance = abm->getTriggerChance(); - if (chance == 0) - chance = 1; - - ActiveABM aabm; - aabm.abm = abm; - if (abm->getSimpleCatchUp()) { - float intervals = actual_interval / trigger_interval; - if (intervals == 0) - continue; - aabm.chance = chance / intervals; - if (aabm.chance == 0) - aabm.chance = 1; - } else { - aabm.chance = chance; - } - // y limits - aabm.min_y = abm->getMinY(); - aabm.max_y = abm->getMaxY(); - - // Trigger neighbors - for (const auto &s : abm->getRequiredNeighbors()) - ndef->getIds(s, aabm.required_neighbors); - SORT_AND_UNIQUE(aabm.required_neighbors); - - for (const auto &s : abm->getWithoutNeighbors()) - ndef->getIds(s, aabm.without_neighbors); - SORT_AND_UNIQUE(aabm.without_neighbors); - - // Trigger contents - std::vector ids; - for (const auto &s : abm->getTriggerContents()) - ndef->getIds(s, ids); - SORT_AND_UNIQUE(ids); - for (content_t c : ids) { - if (c >= m_aabms.size()) - m_aabms.resize(c + 256, nullptr); - if (!m_aabms[c]) - m_aabms[c] = new std::vector; - m_aabms[c]->push_back(aabm); - } - } - } - - ~ABMHandler() - { - for (auto &aabms : m_aabms) - delete aabms; - } - - // Find out how many objects the given block and its neighbors contain. - // Returns the number of objects in the block, and also in 'wider' the - // number of objects in the block and all its neighbors. The latter - // may an estimate if any neighbors are unloaded. - u32 countObjects(MapBlock *block, ServerMap * map, u32 &wider) - { - wider = 0; - u32 wider_unknown_count = 0; - for(s16 x=-1; x<=1; x++) - for(s16 y=-1; y<=1; y++) - for(s16 z=-1; z<=1; z++) - { - MapBlock *block2 = map->getBlockNoCreateNoEx( - block->getPos() + v3s16(x,y,z)); - if(block2==NULL){ - wider_unknown_count++; - continue; - } - wider += block2->m_static_objects.size(); - } - // Extrapolate - u32 active_object_count = block->m_static_objects.getActiveSize(); - u32 wider_known_count = 3 * 3 * 3 - wider_unknown_count; - wider += wider_unknown_count * wider / wider_known_count; - return active_object_count; - } - void apply(MapBlock *block, int &blocks_scanned, int &abms_run, int &blocks_cached) - { - if (m_aabms.empty()) - return; - - // Check the content type cache first - // to see whether there are any ABMs - // to be run at all for this block. - if (!block->contents.empty()) { - assert(!block->do_not_cache_contents); // invariant - blocks_cached++; - bool run_abms = false; - for (content_t c : block->contents) { - if (c < m_aabms.size() && m_aabms[c]) { - run_abms = true; - break; - } - } - if (!run_abms) - return; - } - blocks_scanned++; - - ServerMap *map = &m_env->getServerMap(); - - u32 active_object_count_wider; - u32 active_object_count = this->countObjects(block, map, active_object_count_wider); - m_env->m_added_objects = 0; - - bool want_contents_cached = block->contents.empty() && !block->do_not_cache_contents; - - v3s16 p0; - for(p0.Z=0; p0.ZgetNodeNoCheck(p0); - content_t c = n.getContent(); - - // Cache content types as we go - if (want_contents_cached && !CONTAINS(block->contents, c)) { - if (block->contents.size() >= CONTENT_TYPE_CACHE_MAX) { - // Too many different nodes... don't try to cache - want_contents_cached = false; - block->do_not_cache_contents = true; - block->contents.clear(); - block->contents.shrink_to_fit(); - } else { - block->contents.push_back(c); - } - } - - if (c >= m_aabms.size() || !m_aabms[c]) - continue; - - v3s16 p = p0 + block->getPosRelative(); - for (ActiveABM &aabm : *m_aabms[c]) { - if ((p.Y < aabm.min_y) || (p.Y > aabm.max_y)) - continue; - - if (myrand() % aabm.chance != 0) - continue; - - // Check neighbors - const bool check_required_neighbors = !aabm.required_neighbors.empty(); - const bool check_without_neighbors = !aabm.without_neighbors.empty(); - if (check_required_neighbors || check_without_neighbors) { - v3s16 p1; - bool have_required = false; - for(p1.X = p0.X-1; p1.X <= p0.X+1; p1.X++) - for(p1.Y = p0.Y-1; p1.Y <= p0.Y+1; p1.Y++) - for(p1.Z = p0.Z-1; p1.Z <= p0.Z+1; p1.Z++) - { - if(p1 == p0) - continue; - content_t c; - if (block->isValidPosition(p1)) { - // if the neighbor is found on the same map block - // get it straight from there - const MapNode &n = block->getNodeNoCheck(p1); - c = n.getContent(); - } else { - // otherwise consult the map - MapNode n = map->getNode(p1 + block->getPosRelative()); - c = n.getContent(); - } - if (check_required_neighbors && !have_required) { - if (CONTAINS(aabm.required_neighbors, c)) { - if (!check_without_neighbors) - goto neighbor_found; - have_required = true; - } - } - if (check_without_neighbors) { - if (CONTAINS(aabm.without_neighbors, c)) - goto neighbor_invalid; - } - } - if (have_required || !check_required_neighbors) - goto neighbor_found; - // No required neighbor found - neighbor_invalid: - continue; - } - - neighbor_found: - - abms_run++; - // Call all the trigger variations - aabm.abm->trigger(m_env, p, n); - aabm.abm->trigger(m_env, p, n, - active_object_count, active_object_count_wider); - - if (block->isOrphan()) - return; - - // Count surrounding objects again if the abms added any - if(m_env->m_added_objects > 0) { - active_object_count = countObjects(block, map, active_object_count_wider); - m_env->m_added_objects = 0; - } - - // Update and check node after possible modification - n = block->getNodeNoCheck(p0); - if (n.getContent() != c) - break; - } - } - } -}; - -void ServerEnvironment::activateBlock(MapBlock *block, u32 additional_dtime) +void ServerEnvironment::activateBlock(MapBlock *block) { // Reset usage timer immediately, otherwise a block that becomes active // again at around the same time as it would normally be unloaded will @@ -1058,10 +561,6 @@ void ServerEnvironment::activateBlock(MapBlock *block, u32 additional_dtime) u32 stamp = block->getTimestamp(); if (m_game_time > stamp && stamp != BLOCK_TIMESTAMP_UNDEFINED) dtime_s = m_game_time - stamp; - dtime_s += additional_dtime; - - /*infostream<<"ServerEnvironment::activateBlock(): block timestamp: " - <setTimestampNoChangedFlag(m_game_time); - /*infostream<<"ServerEnvironment::activateBlock(): block is " - <isOrphan()) @@ -1088,7 +584,7 @@ void ServerEnvironment::activateBlock(MapBlock *block, u32 additional_dtime) // Run node timers block->step((float)dtime_s, [&](v3s16 p, MapNode n, f32 d) -> bool { - return !block->isOrphan() && m_script->node_on_timer(p, n, d); + return m_script->node_on_timer(p, n, d); }); } @@ -1489,7 +985,10 @@ void ServerEnvironment::step(float dtime) if (m_active_blocks_nodemetadata_interval.step(dtime, m_cache_nodetimer_interval)) { ScopeProfiler sp(g_profiler, "ServerEnv: Run node timers", SPT_AVG); - float dtime = m_cache_nodetimer_interval; + // FIXME: this is not actually correct, because the block may have been + // activated just moments ago. In practice the intervnal is very small + // so this doesn't really matter. + const float dtime = m_cache_nodetimer_interval; for (const v3s16 &p: m_active_blocks.m_list) { MapBlock *block = m_map->getBlockNoCreateNoEx(p); @@ -1501,11 +1000,14 @@ void ServerEnvironment::step(float dtime) // Set current time as timestamp block->setTimestampNoChangedFlag(m_game_time); - // If time has changed much from the one on disk, - // set block to be saved when it is unloaded - if(block->getTimestamp() > block->getDiskTimestamp() + 60) + // If the block timestamp has changed considerably, mark it to be + // re-saved. We do this even if there were no actual data changes + // for the sake of LBMs. + if (block->getTimestamp() > block->getDiskTimestamp() + + BLOCK_RESAVE_TIMESTAMP_DIFF) { block->raiseModified(MOD_STATE_WRITE_AT_UNLOAD, MOD_REASON_BLOCK_EXPIRED); + } // Run node timers block->step(dtime, [&](v3s16 p, MapNode n, f32 d) -> bool { @@ -1522,6 +1024,7 @@ void ServerEnvironment::step(float dtime) std::shuffle(m_abms.begin(), m_abms.end(), MyRandGenerator()); // Initialize handling of ActiveBlockModifiers + // TODO: reinitializing this state every time is probably not efficient? ABMHandler abmhandler(m_abms, m_cache_abm_interval, this, true); int blocks_scanned = 0; @@ -1896,10 +1399,14 @@ void ServerEnvironment::getSelectedActiveObjects( return false; }; + aabb3f search_area(shootline_on_map.start, shootline_on_map.end); + search_area.repair(); + search_area.MinEdge -= 5 * BS; + search_area.MaxEdge += 5 * BS; + // Use "logic in callback" pattern to avoid useless vector filling std::vector tmp; - getObjectsInsideRadius(tmp, shootline_on_map.getMiddle(), - 0.5 * shootline_on_map.getLength() + 5 * BS, process); + getObjectsInArea(tmp, search_area, process); } /* @@ -2160,12 +1667,14 @@ void ServerEnvironment::deactivateFarObjects(const bool _force_delete) // The block in which the object resides in v3s16 blockpos_o = getNodeBlockPos(floatToInt(objectpos, BS)); - // If object's static data is stored in a deactivated block and object - // is actually located in an active block, re-save to the block in - // which the object is actually located in. + // If object's static data is stored in a deactivated block or it has moved a bunch + // then re-save to the block in which the object is now located in. + // This only applies if the object is in a currently active block, since deactivating + // is handled by the code further below. if (!force_delete && obj->isStaticAllowed() && obj->m_static_exists && - !m_active_blocks.contains(obj->m_static_block) && - m_active_blocks.contains(blockpos_o)) { + m_active_blocks.contains(blockpos_o) && + (!m_active_blocks.contains(obj->m_static_block) || + blockpos_o.getDistanceFromSQ(obj->m_static_block) >= ACTIVE_OBJECT_RESAVE_DISTANCE_SQ)) { // Delete from block where object was located deleteStaticFromBlock(obj, id, MOD_REASON_STATIC_DATA_REMOVED, false); @@ -2184,13 +1693,14 @@ void ServerEnvironment::deactivateFarObjects(const bool _force_delete) if (!force_delete && still_active) return false; - verbosestream << "ServerEnvironment::deactivateFarObjects(): " - << "deactivating object id=" << id << " on inactive block " - << blockpos_o << std::endl; - // If known by some client, don't immediately delete. bool pending_delete = (obj->m_known_by_count > 0 && !force_delete); + verbosestream << "ServerEnvironment::deactivateFarObjects(): " + << "deactivating object id=" << id << " on inactive block " + << blockpos_o << (pending_delete ? " (pending)" : "") + << std::endl; + /* Update the static data */ @@ -2249,17 +1759,9 @@ void ServerEnvironment::deactivateFarObjects(const bool _force_delete) // This ensures that LuaEntity on_deactivate is always called. obj->markForDeactivation(); - /* - If known by some client, set pending deactivation. - Otherwise delete it immediately. - */ - if (pending_delete && !force_delete) { - verbosestream << "ServerEnvironment::deactivateFarObjects(): " - << "object id=" << id << " is known by clients" - << "; not deleting yet" << std::endl; - + // If known by some client, don't delete yet. + if (pending_delete && !force_delete) return false; - } processActiveObjectRemove(obj); @@ -2408,7 +1910,7 @@ bool ServerEnvironment::migratePlayersDatabase(const GameParams &game_params, std::vector player_list; srcdb->listPlayers(player_list); - for (std::vector::const_iterator it = player_list.begin(); + for (auto it = player_list.begin(); it != player_list.end(); ++it) { actionstream << "Migrating player " << it->c_str() << std::endl; RemotePlayer player(it->c_str(), NULL); diff --git a/src/serverenvironment.h b/src/serverenvironment.h index 89d33d9bf..04153e944 100644 --- a/src/serverenvironment.h +++ b/src/serverenvironment.h @@ -12,6 +12,7 @@ #include "servermap.h" #include "settings.h" #include "server/activeobjectmgr.h" +#include "server/blockmodifier.h" #include "util/numeric.h" #include "util/metricsbackend.h" @@ -22,7 +23,6 @@ class PlayerDatabase; class AuthDatabase; class PlayerSAO; class ServerEnvironment; -class ActiveBlockModifier; struct StaticObject; class ServerActiveObject; class Server; @@ -30,132 +30,6 @@ class ServerScripting; enum AccessDeniedCode : u8; typedef u16 session_t; -/* - {Active, Loading} block modifier interface. - - These are fed into ServerEnvironment at initialization time; - ServerEnvironment handles deleting them. -*/ - -class ActiveBlockModifier -{ -public: - ActiveBlockModifier() = default; - virtual ~ActiveBlockModifier() = default; - - // Set of contents to trigger on - virtual const std::vector &getTriggerContents() const = 0; - // Set of required neighbors (trigger doesn't happen if none are found) - // Empty = do not check neighbors - virtual const std::vector &getRequiredNeighbors() const = 0; - // Set of without neighbors (trigger doesn't happen if any are found) - // Empty = do not check neighbors - virtual const std::vector &getWithoutNeighbors() const = 0; - // Trigger interval in seconds - virtual float getTriggerInterval() = 0; - // Random chance of (1 / return value), 0 is disallowed - virtual u32 getTriggerChance() = 0; - // Whether to modify chance to simulate time lost by an unnattended block - virtual bool getSimpleCatchUp() = 0; - // get min Y for apply abm - virtual s16 getMinY() = 0; - // get max Y for apply abm - virtual s16 getMaxY() = 0; - // This is called usually at interval for 1/chance of the nodes - virtual void trigger(ServerEnvironment *env, v3s16 p, MapNode n){}; - virtual void trigger(ServerEnvironment *env, v3s16 p, MapNode n, - u32 active_object_count, u32 active_object_count_wider){}; -}; - -struct ABMWithState -{ - ActiveBlockModifier *abm; - float timer = 0.0f; - - ABMWithState(ActiveBlockModifier *abm_); -}; - -struct LoadingBlockModifierDef -{ - // Set of contents to trigger on - std::vector trigger_contents; - std::string name; - bool run_at_every_load = false; - - virtual ~LoadingBlockModifierDef() = default; - - /// @brief Called to invoke LBM - /// @param env environment - /// @param block the block in question - /// @param positions set of node positions (block-relative!) - /// @param dtime_s game time since last deactivation - virtual void trigger(ServerEnvironment *env, MapBlock *block, - const std::unordered_set &positions, float dtime_s) {}; -}; - -class LBMContentMapping -{ -public: - typedef std::vector lbm_vector; - typedef std::unordered_map lbm_map; - - LBMContentMapping() = default; - void addLBM(LoadingBlockModifierDef *lbm_def, IGameDef *gamedef); - const lbm_map::mapped_type *lookup(content_t c) const; - const lbm_vector &getList() const { return lbm_list; } - - // This struct owns the LBM pointers. - ~LBMContentMapping(); - DISABLE_CLASS_COPY(LBMContentMapping); - ALLOW_CLASS_MOVE(LBMContentMapping); - -private: - lbm_vector lbm_list; - lbm_map map; -}; - -class LBMManager -{ -public: - LBMManager() = default; - ~LBMManager(); - - // Don't call this after loadIntroductionTimes() ran. - void addLBMDef(LoadingBlockModifierDef *lbm_def); - - void loadIntroductionTimes(const std::string ×, - IGameDef *gamedef, u32 now); - - // Don't call this before loadIntroductionTimes() ran. - std::string createIntroductionTimesString(); - - // Don't call this before loadIntroductionTimes() ran. - void applyLBMs(ServerEnvironment *env, MapBlock *block, - u32 stamp, float dtime_s); - - // Warning: do not make this std::unordered_map, order is relevant here - typedef std::map lbm_lookup_map; - -private: - // Once we set this to true, we can only query, - // not modify - bool m_query_mode = false; - - // For m_query_mode == false: - // The key of the map is the LBM def's name. - std::unordered_map m_lbm_defs; - - // For m_query_mode == true: - // The key of the map is the LBM def's first introduction time. - lbm_lookup_map m_lbm_lookup; - - // Returns an iterator to the LBMs that were introduced - // after the given time. This is guaranteed to return - // valid values for everything - lbm_lookup_map::const_iterator getLBMsIntroducedAfter(u32 time) - { return m_lbm_lookup.lower_bound(time); } -}; - /* List of active blocks, used by ServerEnvironment */ @@ -182,12 +56,24 @@ public: m_list.clear(); } + /// @return true if block was newly added + bool add(v3s16 p) { + if (m_list.insert(p).second) { + m_abm_list.insert(p); + return true; + } + return false; + } + void remove(v3s16 p) { m_list.erase(p); m_abm_list.erase(p); } + // list of all active blocks std::set m_list; + // list of blocks for ABM processing + // subset of `m_list` that does not contain view cone affected blocks std::set m_abm_list; // list of blocks that are always active, not modified by this class std::set m_forceloaded_list; @@ -308,10 +194,10 @@ public: ); /* - Activate objects and dynamically modify for the dtime determined - from timestamp and additional_dtime + Force a block to become active. It will probably be deactivated + the next time active blocks are re-calculated. */ - void activateBlock(MapBlock *block, u32 additional_dtime=0); + void forceActivateBlock(MapBlock *block); /* {Active,Loading}BlockModifiers @@ -334,6 +220,11 @@ public: // Find the daylight value at pos with a Depth First Search u8 findSunlight(v3s16 pos) const; + void updateObjectPos(u16 id, v3f pos) + { + return m_ao_manager.updateObjectPos(id, pos); + } + // Find all active objects inside a radius around a point void getObjectsInsideRadius(std::vector &objects, const v3f &pos, float radius, std::function include_obj_cb) @@ -400,6 +291,9 @@ private: const std::string &savedir, const Settings &conf); static AuthDatabase *openAuthDatabase(const std::string &name, const std::string &savedir, const Settings &conf); + + void activateBlock(MapBlock *block); + /* Internal ActiveObject interface ------------------------------------------- @@ -493,6 +387,16 @@ private: // Can raise to high values like 15s with eg. map generation mods. float m_max_lag_estimate = 0.1f; + + /* + * TODO: Add a callback function so these can be updated when a setting + * changes. + */ + float m_cache_active_block_mgmt_interval; + float m_cache_abm_interval; + float m_cache_nodetimer_interval; + float m_cache_abm_time_budget; + // peer_ids in here should be unique, except that there may be many 0s std::vector m_players; diff --git a/src/servermap.cpp b/src/servermap.cpp index b72626255..ab58510d2 100644 --- a/src/servermap.cpp +++ b/src/servermap.cpp @@ -199,6 +199,7 @@ bool ServerMap::blockpos_over_mapgen_limit(v3s16 p) bool ServerMap::initBlockMake(v3s16 blockpos, BlockMakeData *data) { + assert(data); s16 csize = getMapgenParams()->chunksize; v3s16 bpmin = EmergeManager::getContainingChunk(blockpos, csize); v3s16 bpmax = bpmin + v3s16(1, 1, 1) * (csize - 1); @@ -263,8 +264,10 @@ bool ServerMap::initBlockMake(v3s16 blockpos, BlockMakeData *data) } void ServerMap::finishBlockMake(BlockMakeData *data, - std::map *changed_blocks) + std::map *changed_blocks, u32 now) { + assert(data); + assert(changed_blocks); v3s16 bpmin = data->blockpos_min; v3s16 bpmax = data->blockpos_max; @@ -283,7 +286,7 @@ void ServerMap::finishBlockMake(BlockMakeData *data, /* Copy transforming liquid information */ - while (data->transforming_liquid.size()) { + while (!data->transforming_liquid.empty()) { m_transforming_liquid.push_back(data->transforming_liquid.front()); data->transforming_liquid.pop_front(); } @@ -297,15 +300,13 @@ void ServerMap::finishBlockMake(BlockMakeData *data, */ block->expireIsAirCache(); /* - Set block as modified + Set block as modified (if it isn't already) */ block->raiseModified(MOD_STATE_WRITE_NEEDED, MOD_REASON_EXPIRE_IS_AIR); } - /* - Set central blocks as generated - */ + // Note: this does not apply to the extra border area for (s16 x = bpmin.X; x <= bpmax.X; x++) for (s16 z = bpmin.Z; z <= bpmax.Z; z++) for (s16 y = bpmin.Y; y <= bpmax.Y; y++) { @@ -314,13 +315,10 @@ void ServerMap::finishBlockMake(BlockMakeData *data, continue; block->setGenerated(true); + // Set timestamp to ensure correct application of LBMs and other stuff + block->setTimestampNoChangedFlag(now); } - /* - Save changed parts of map - NOTE: Will be saved later. - */ - //save(MOD_STATE_WRITE_AT_UNLOAD); m_chunks_in_progress.erase(bpmin); } @@ -577,27 +575,34 @@ MapDatabase *ServerMap::createDatabase( const std::string &savedir, Settings &conf) { + MapDatabase *db = nullptr; + if (name == "sqlite3") - return new MapDatabaseSQLite3(savedir); + db = new MapDatabaseSQLite3(savedir); if (name == "dummy") - return new Database_Dummy(); + db = new Database_Dummy(); #if USE_LEVELDB if (name == "leveldb") - return new Database_LevelDB(savedir); + db = new Database_LevelDB(savedir); #endif #if USE_REDIS if (name == "redis") - return new Database_Redis(conf); + db = new Database_Redis(conf); #endif #if USE_POSTGRESQL if (name == "postgresql") { std::string connect_string; conf.getNoEx("pgsql_connection", connect_string); - return new MapDatabasePostgreSQL(connect_string); + db = new MapDatabasePostgreSQL(connect_string); } #endif - throw BaseException(std::string("Database backend ") + name + " not supported."); + if (!db) + throw BaseException(std::string("Database backend ") + name + " not supported."); + // Do this to get feedback about errors asap + db->verifyDatabase(); + assert(db->initialized()); + return db; } void ServerMap::beginSave() diff --git a/src/servermap.h b/src/servermap.h index 73b35e38f..7b33a66a9 100644 --- a/src/servermap.h +++ b/src/servermap.h @@ -61,9 +61,13 @@ public: Blocks are generated by using these and makeBlock(). */ bool blockpos_over_mapgen_limit(v3s16 p); + /// @brief copy data from map to prepare for mapgen + /// @return true if mapgen should actually happen bool initBlockMake(v3s16 blockpos, BlockMakeData *data); + /// @brief write data back to map after mapgen + /// @param now current game time void finishBlockMake(BlockMakeData *data, - std::map *changed_blocks); + std::map *changed_blocks, u32 now); /* Get a block from somewhere. diff --git a/src/settings.cpp b/src/settings.cpp index cec3f5239..6a7607cc3 100644 --- a/src/settings.cpp +++ b/src/settings.cpp @@ -627,9 +627,9 @@ bool Settings::getNoiseParamsFromGroup(const std::string &name, group->getFloatNoEx("offset", np.offset); group->getFloatNoEx("scale", np.scale); - std::optional spread; + std::optional spread; if (group->getV3FNoEx("spread", spread) && spread.has_value()) - np.spread = *spread; + np.spread = *spread; group->getS32NoEx("seed", np.seed); group->getU16NoEx("octaves", np.octaves); diff --git a/src/settings_translation_file.cpp b/src/settings_translation_file.cpp index 8ee6c78d0..4935a2e1d 100644 --- a/src/settings_translation_file.cpp +++ b/src/settings_translation_file.cpp @@ -76,10 +76,10 @@ fake_function() { gettext("Viewing range"); gettext("View distance in nodes."); gettext("Undersampling"); - gettext("Undersampling is similar to using a lower screen resolution, but it applies\nto the game world only, keeping the GUI intact.\nIt should give a significant performance boost at the cost of less detailed image.\nHigher values result in a less detailed image."); + gettext("Undersampling is similar to using a lower screen resolution, but it applies\nto the game world only, keeping the GUI intact.\nIt should give a significant performance boost at the cost of less detailed image.\nHigher values result in a less detailed image.\nNote: Undersampling is currently not supported if the \"3d_mode\" setting is set\nto a non-default value."); gettext("3D"); gettext("3D mode"); - gettext("3D support.\nCurrently supported:\n- none: no 3d output.\n- anaglyph: cyan/magenta color 3d.\n- interlaced: odd/even line based polarization screen support.\n- topbottom: split screen top/bottom.\n- sidebyside: split screen side by side.\n- crossview: Cross-eyed 3d\nNote that the interlaced mode requires shaders to be enabled."); + gettext("3D support.\nCurrently supported:\n- none: no 3d output.\n- anaglyph: cyan/magenta color 3d.\n- interlaced: odd/even line based polarization screen support.\n- topbottom: split screen top/bottom.\n- sidebyside: split screen side by side.\n- crossview: Cross-eyed 3d"); gettext("3D mode parallax strength"); gettext("Strength of 3D mode parallax."); gettext("Bobbing"); @@ -124,10 +124,8 @@ fake_function() { gettext("Fog start"); gettext("Fraction of the visible distance at which fog starts to be rendered"); gettext("Clouds"); - gettext("Clouds"); - gettext("Clouds are a client-side effect."); gettext("3D clouds"); - gettext("Use 3D cloud look instead of flat."); + gettext("Allow clouds to look 3D instead of flat."); gettext("Soft clouds"); gettext("Use smooth cloud shading."); gettext("Filtering and Antialiasing"); @@ -138,9 +136,9 @@ fake_function() { gettext("Trilinear filtering"); gettext("Use trilinear filtering when scaling textures.\nIf both bilinear and trilinear filtering are enabled, trilinear filtering\nis applied."); gettext("Anisotropic filtering"); - gettext("Use anisotropic filtering when looking at textures from an angle."); + gettext("Use anisotropic filtering when looking at textures from an angle.\nThis provides a significant improvement when used together with mipmapping."); gettext("Antialiasing method"); - gettext("Select the antialiasing method to apply.\n\n* None - No antialiasing (default)\n\n* FSAA - Hardware-provided full-screen antialiasing\n(incompatible with Post Processing and Undersampling)\nA.K.A multi-sample antialiasing (MSAA)\nSmoothens out block edges but does not affect the insides of textures.\nA restart is required to change this option.\n\n* FXAA - Fast approximate antialiasing (requires shaders)\nApplies a post-processing filter to detect and smoothen high-contrast edges.\nProvides balance between speed and image quality.\n\n* SSAA - Super-sampling antialiasing (requires shaders)\nRenders higher-resolution image of the scene, then scales down to reduce\nthe aliasing effects. This is the slowest and the most accurate method."); + gettext("Select the antialiasing method to apply.\n\n* None - No antialiasing (default)\n\n* FSAA - Hardware-provided full-screen antialiasing\nA.K.A multi-sample antialiasing (MSAA)\nSmoothens out block edges but does not affect the insides of textures.\n\nIf Post Processing is disabled, changing FSAA requires a restart.\nAlso, if Post Processing is disabled, FSAA will not work together with\nundersampling or a non-default \"3d_mode\" setting.\n\n* FXAA - Fast approximate antialiasing\nApplies a post-processing filter to detect and smoothen high-contrast edges.\nProvides balance between speed and image quality.\n\n* SSAA - Super-sampling antialiasing\nRenders higher-resolution image of the scene, then scales down to reduce\nthe aliasing effects. This is the slowest and the most accurate method."); gettext("Anti-aliasing scale"); gettext("Defines the size of the sampling grid for FSAA and SSAA antialiasing methods.\nValue of 2 means taking 2x2 = 4 samples."); gettext("Occlusion Culling"); @@ -159,8 +157,6 @@ fake_function() { gettext("Enable smooth lighting with simple ambient occlusion."); gettext("Tradeoffs for performance"); gettext("Enables tradeoffs that reduce CPU load or increase rendering performance\nat the expense of minor visual glitches that do not impact game playability."); - gettext("Digging particles"); - gettext("Adds particles when digging a node."); gettext("Waving Nodes"); gettext("Waving leaves"); gettext("Set to true to enable waving leaves."); @@ -185,14 +181,10 @@ fake_function() { gettext("Texture size to render the shadow map on.\nThis must be a power of two.\nBigger numbers create better shadows but it is also more expensive."); gettext("Shadow map texture in 32 bits"); gettext("Sets shadow texture quality to 32 bits.\nOn false, 16 bits texture will be used.\nThis can cause much more artifacts in the shadow."); - gettext("Poisson filtering"); - gettext("Enable Poisson disk filtering.\nOn true uses Poisson disk to make \"soft shadows\". Otherwise uses PCF filtering."); gettext("Shadow filter quality"); gettext("Define shadow filtering quality.\nThis simulates the soft shadows effect by applying a PCF or Poisson disk\nbut also uses more resources."); gettext("Colored shadows"); - gettext("Enable colored shadows.\nOn true translucent nodes cast colored shadows. This is expensive."); - gettext("Map shadows update frames"); - gettext("Spread a complete update of shadow map over given number of frames.\nHigher values might make shadows laggy, lower values\nwill consume more resources.\nMinimum value: 1; maximum value: 16"); + gettext("Enable colored shadows for transculent nodes.\nThis is expensive."); gettext("Soft shadow radius"); gettext("Set the soft shadow radius size.\nLower values mean sharper shadows, bigger values mean softer shadows.\nMinimum value: 1.0; maximum value: 15.0"); gettext("Sky Body Orbit Tilt"); @@ -225,7 +217,7 @@ fake_function() { gettext("Volume when unfocused"); gettext("Volume multiplier when the window is unfocused."); gettext("Mute sound"); - gettext("Whether to mute sounds. You can unmute sounds at any time, unless the\nsound system is disabled (enable_sound=false).\nIn-game, you can toggle the mute state with the mute key or by using the\npause menu."); + gettext("Whether to mute sounds. You can unmute sounds at any time.\nIn-game, you can toggle the mute state with the mute key or by using the\npause menu."); gettext("User Interfaces"); gettext("Language"); gettext("Set the language. By default, the system language is used.\nA restart is required after changing this."); @@ -244,8 +236,6 @@ fake_function() { gettext("Formspec full-screen background color (R,G,B)."); gettext("GUI scaling filter"); gettext("When gui_scaling_filter is true, all GUI images need to be\nfiltered in software, but some images are generated directly\nto hardware (e.g. render-to-texture for nodes in inventory)."); - gettext("GUI scaling filter txr2img"); - gettext("When gui_scaling_filter_txr2img is true, copy those images\nfrom hardware to software for scaling. When false, fall back\nto the old scaling method, for video drivers that don't\nproperly support downloading textures back from hardware."); gettext("Tooltip delay"); gettext("Delay showing tooltips, stated in milliseconds."); gettext("Append item name"); @@ -284,7 +274,7 @@ fake_function() { gettext("Enable updates available indicator on content tab"); gettext("If enabled and you have ContentDB packages installed, Luanti may contact ContentDB to\ncheck for package updates when opening the mainmenu."); gettext("ContentDB Flag Blacklist"); - gettext("Comma-separated list of flags to hide in the content repository.\n\"nonfree\" can be used to hide packages which do not qualify as 'free software',\nas defined by the Free Software Foundation.\nYou can also specify content ratings.\nThese flags are independent from Luanti versions,\nso see a full list at https://content.minetest.net/help/content_flags/"); + gettext("Comma-separated list of flags to hide in the content repository.\n\"nonfree\" can be used to hide packages which do not qualify as 'free software',\nas defined by the Free Software Foundation.\nYou can also specify content ratings.\nThese flags are independent from Luanti versions,\nso see a full list at https://content.luanti.org/help/content_flags/"); gettext("ContentDB Max Concurrent Downloads"); gettext("Maximum number of concurrent downloads. Downloads exceeding this limit will be queued.\nThis should be lower than curl_parallel_limit."); gettext("Client and Server"); @@ -294,12 +284,12 @@ fake_function() { gettext("Serverlist URL"); gettext("URL to the server list displayed in the Multiplayer Tab."); gettext("Enable split login/register"); - gettext("If enabled, account registration is separate from login in the UI.\nIf disabled, new accounts will be registered automatically when logging in."); + gettext("If enabled, server account registration is separate from login in the UI.\nIf disabled, connecting to a server will automatically register a new account."); gettext("Update information URL"); gettext("URL to JSON file which provides information about the newest Luanti release.\nIf this is empty the engine will never check for updates."); gettext("Server"); gettext("Admin name"); - gettext("Name of the player.\nWhen running a server, clients connecting with this name are admins.\nWhen starting from the main menu, this is overridden."); + gettext("Name of the player.\nWhen running a server, a client connecting with this name is admin.\nWhen starting from the main menu, this is overridden."); gettext("Serverlist and MOTD"); gettext("Server name"); gettext("Name of the server, to be displayed when players join and in the serverlist."); @@ -333,7 +323,7 @@ fake_function() { gettext("Remote media"); gettext("Specifies URL from which client fetches media instead of using UDP.\n$filename should be accessible from $remote_media$filename via cURL\n(obviously, remote_media should end with a slash).\nFiles that are not present will be fetched the usual way."); gettext("IPv6 server"); - gettext("Enable/disable running an IPv6 server.\nIgnored if bind_address is set.\nNeeds enable_ipv6 to be enabled."); + gettext("Enable/disable running an IPv6 server.\nIgnored if bind_address is set."); gettext("Server Security"); gettext("Default password"); gettext("New users need to input this password."); @@ -851,24 +841,24 @@ fake_function() { gettext("Ignore world errors"); gettext("If enabled, invalid world data won't cause the server to shut down.\nOnly enable this if you know what you are doing."); gettext("Graphics"); - gettext("Shaders"); - gettext("Shaders are a fundamental part of rendering and enable advanced visual effects."); + gettext("OpenGL debug"); + gettext("Enables debug and error-checking in the OpenGL driver."); gettext("Shader path"); gettext("Path to shader directory. If no path is defined, default location will be used."); gettext("Video driver"); gettext("The rendering back-end.\nNote: A restart is required after changing this!\nOpenGL is the default for desktop, and OGLES2 for Android."); gettext("Transparency Sorting Distance"); gettext("Distance in nodes at which transparency depth sorting is enabled.\nUse this to limit the performance impact of transparency depth sorting.\nSet to 0 to disable it entirely."); + gettext("Transparency Sorting Group by Buffers"); + gettext("Draw transparency sorted triangles grouped by their mesh buffers.\nThis breaks transparency sorting between mesh buffers, but avoids situations\nwhere transparency sorting would be very slow otherwise."); gettext("Cloud radius"); gettext("Radius of cloud area stated in number of 64 node cloud squares.\nValues larger than 26 will start to produce sharp cutoffs at cloud area corners."); - gettext("Desynchronize block animation"); - gettext("Whether node texture animations should be desynchronized per mapblock."); - gettext("Mesh cache"); - gettext("Enables caching of facedir rotated meshes.\nThis is only effective with shaders disabled."); gettext("Mapblock mesh generation delay"); gettext("Delay between mesh updates on the client in ms. Increasing this will slow\ndown the rate of mesh updates, thus reducing jitter on slower clients."); gettext("Mapblock mesh generation threads"); gettext("Number of threads to use for mesh generation.\nValue of 0 (default) will let Luanti autodetect the number of available threads."); + gettext("Minimum vertex count for mesh buffers"); + gettext("All mesh buffers with less than this number of vertices will be merged\nduring map rendering. This improves rendering performance."); gettext("Minimap scan height"); gettext("True = 256\nFalse = 128\nUsable to make minimap smoother on slower machines."); gettext("World-aligned textures mode"); @@ -876,11 +866,15 @@ fake_function() { gettext("Autoscaling mode"); gettext("World-aligned textures may be scaled to span several nodes. However,\nthe server may not send the scale you want, especially if you use\na specially-designed texture pack; with this option, the client tries\nto determine the scale automatically basing on the texture size.\nSee also texture_min_size.\nWarning: This option is EXPERIMENTAL!"); gettext("Base texture size"); - gettext("When using bilinear/trilinear/anisotropic filters, low-resolution textures\ncan be blurred, so automatically upscale them with nearest-neighbor\ninterpolation to preserve crisp pixels. This sets the minimum texture size\nfor the upscaled textures; higher values look sharper, but require more\nmemory. Powers of 2 are recommended. This setting is ONLY applied if\nbilinear/trilinear/anisotropic filtering is enabled.\nThis is also used as the base node texture size for world-aligned\ntexture autoscaling."); + gettext("When using bilinear/trilinear filtering, low-resolution textures\ncan be blurred, so this option automatically upscales them to preserve\ncrisp pixels. This defines the minimum texture size for the upscaled textures;\nhigher values look sharper, but require more memory.\nThis setting is ONLY applied if any of the mentioned filters are enabled.\nThis is also used as the base node texture size for world-aligned\ntexture autoscaling."); gettext("Client Mesh Chunksize"); gettext("Side length of a cube of map blocks that the client will consider together\nwhen generating meshes.\nLarger values increase the utilization of the GPU by reducing the number of\ndraw calls, benefiting especially high-end GPUs.\nSystems with a low-end GPU (or no GPU) would benefit from smaller values."); - gettext("OpenGL debug"); - gettext("Enables debug and error-checking in the OpenGL driver."); + gettext("Color depth for post-processing texture"); + gettext("Decide the color depth of the texture used for the post-processing pipeline.\nReducing this can improve performance, but some effects (e.g. debanding)\nrequire more than 8 bits to work."); + gettext("Poisson filtering"); + gettext("Enable Poisson disk filtering.\nOn true uses Poisson disk to make \"soft shadows\". Otherwise uses PCF filtering."); + gettext("Map shadows update frames"); + gettext("Spread a complete update of the shadow map over a given number of frames.\nHigher values might make shadows laggy, lower values\nwill consume more resources."); gettext("Enable Bloom Debug"); gettext("Set to true to render debugging breakdown of the bloom effect.\nIn debug mode, the screen is split into 4 quadrants:\ntop-left - processed base image, top-right - final image\nbottom-left - raw base image, bottom-right - bloom texture."); gettext("Sound"); @@ -967,8 +961,6 @@ fake_function() { gettext("From how far blocks are sent to clients, stated in mapblocks (16 nodes)."); gettext("Maximum forceloaded blocks"); gettext("Default maximum number of forceloaded mapblocks.\nSet this to -1 to disable the limit."); - gettext("Time send interval"); - gettext("Interval of sending time of day to clients, stated in seconds."); gettext("Map save interval"); gettext("Interval of saving important changes in the world, stated in seconds."); gettext("Unload unused server data"); diff --git a/src/skyparams.h b/src/skyparams.h index 79a4d8024..c5cd574cd 100644 --- a/src/skyparams.h +++ b/src/skyparams.h @@ -4,6 +4,12 @@ #pragma once +#include +#include +#include "SColor.h" +#include "irr_v2d.h" + +using namespace irr; struct SkyColor { diff --git a/src/terminal_chat_console.cpp b/src/terminal_chat_console.cpp index 471409ee0..8c2967b01 100644 --- a/src/terminal_chat_console.cpp +++ b/src/terminal_chat_console.cpp @@ -332,12 +332,9 @@ void TerminalChatConsole::step(int ch) if (p.first > m_log_level) continue; - std::wstring error_message = utf8_to_wide(Logger::getLevelLabel(p.first)); - if (!g_settings->getBool("disable_escape_sequences")) { - error_message = std::wstring(L"\x1b(c@red)").append(error_message) - .append(L"\x1b(c@white)"); - } - m_chat_backend.addMessage(error_message, utf8_to_wide(p.second)); + auto label = std::string("\x1b(c@red)") + Logger::getLevelLabel(p.first) + + "\x1b(c@white)"; + m_chat_backend.addMessage(utf8_to_wide(label), utf8_to_wide(p.second)); } // handle input diff --git a/src/threading/thread.cpp b/src/threading/thread.cpp index a4405287d..679eaa113 100644 --- a/src/threading/thread.cpp +++ b/src/threading/thread.cpp @@ -164,7 +164,7 @@ bool Thread::wait() -bool Thread::getReturnValue(void **ret) +bool Thread::getReturnValue(void **ret) const { if (m_running) return false; diff --git a/src/threading/thread.h b/src/threading/thread.h index f915be2b3..c98ff6f7a 100644 --- a/src/threading/thread.h +++ b/src/threading/thread.h @@ -86,19 +86,19 @@ public: /* * Returns true if the calling thread is this Thread object. */ - bool isCurrentThread() { return std::this_thread::get_id() == getThreadId(); } + bool isCurrentThread() const { return std::this_thread::get_id() == getThreadId(); } - bool isRunning() { return m_running; } - bool stopRequested() { return m_request_stop; } + bool isRunning() const { return m_running; } + bool stopRequested() const { return m_request_stop; } - std::thread::id getThreadId() { return m_thread_obj->get_id(); } + std::thread::id getThreadId() const { return m_thread_obj->get_id(); } /* * Gets the thread return value. * Returns true if the thread has exited and the return value was available, * or false if the thread has yet to finish. */ - bool getReturnValue(void **ret); + bool getReturnValue(void **ret) const; /* * Binds (if possible, otherwise sets the affinity of) the thread to the @@ -142,7 +142,7 @@ protected: virtual void *run() = 0; private: - std::thread::native_handle_type getThreadHandle() + std::thread::native_handle_type getThreadHandle() const { return m_thread_obj->native_handle(); } static void threadProc(Thread *thr); diff --git a/src/tileanimation.cpp b/src/tileanimation.cpp index 311fa4c84..a3dc6965d 100644 --- a/src/tileanimation.cpp +++ b/src/tileanimation.cpp @@ -57,7 +57,7 @@ void TileAnimationParams::determineParams(v2u32 texture_size, int *frame_count, if (frame_count) *frame_count = _frame_count; if (frame_length_ms) - *frame_length_ms = 1000.0 * vertical_frames.length / _frame_count; + *frame_length_ms = 1000 * vertical_frames.length / _frame_count; if (frame_size) *frame_size = v2u32(texture_size.X, frame_height); } else if (type == TAT_SHEET_2D) { @@ -104,5 +104,5 @@ v2f TileAnimationParams::getTextureCoords(v2u32 texture_size, int frame) const r = frame % sheet_2d.frames_w; ret = v2u32(r * frame_size.X, q * frame_size.Y); } - return v2f(ret.X / (float) texture_size.X, ret.Y / (float) texture_size.Y); + return v2f::from(ret) / v2f::from(texture_size); } diff --git a/src/tool.cpp b/src/tool.cpp index 43b3ebe25..7c942c0b4 100644 --- a/src/tool.cpp +++ b/src/tool.cpp @@ -12,7 +12,6 @@ #include "util/serialize.h" #include "util/numeric.h" #include "util/hex.h" -#include "common/c_content.h" #include @@ -235,7 +234,7 @@ void WearBarParams::serializeJson(std::ostream &os) const color_stops[ftos(item.first)] = encodeHexColorString(item.second); } root["color_stops"] = color_stops; - root["blend"] = WearBarParams::es_BlendMode[blend].str; + root["blend"] = enum_to_string(WearBarParams::es_BlendMode, blend); fastWriteJson(root, os); } diff --git a/src/tool.h b/src/tool.h index 62b374d91..2e0fdfe20 100644 --- a/src/tool.h +++ b/src/tool.h @@ -7,7 +7,7 @@ #include "irrlichttypes.h" #include "itemgroup.h" #include "json-forwards.h" -#include "common/c_types.h" +#include "util/enum_string.h" #include #include diff --git a/src/unittest/CMakeLists.txt b/src/unittest/CMakeLists.txt index b7ca17199..9ac275d7f 100644 --- a/src/unittest/CMakeLists.txt +++ b/src/unittest/CMakeLists.txt @@ -10,13 +10,18 @@ set (UNITTEST_SRCS ${CMAKE_CURRENT_SOURCE_DIR}/test_connection.cpp ${CMAKE_CURRENT_SOURCE_DIR}/test_craft.cpp ${CMAKE_CURRENT_SOURCE_DIR}/test_datastructures.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/test_k_d_tree.cpp ${CMAKE_CURRENT_SOURCE_DIR}/test_filesys.cpp ${CMAKE_CURRENT_SOURCE_DIR}/test_inventory.cpp ${CMAKE_CURRENT_SOURCE_DIR}/test_irrptr.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/test_irr_matrix4.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/test_irr_rotation.cpp ${CMAKE_CURRENT_SOURCE_DIR}/test_logging.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/test_lbmmanager.cpp ${CMAKE_CURRENT_SOURCE_DIR}/test_lua.cpp ${CMAKE_CURRENT_SOURCE_DIR}/test_map.cpp ${CMAKE_CURRENT_SOURCE_DIR}/test_mapblock.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/test_mapdatabase.cpp ${CMAKE_CURRENT_SOURCE_DIR}/test_mapgen.cpp ${CMAKE_CURRENT_SOURCE_DIR}/test_map_settings_manager.cpp ${CMAKE_CURRENT_SOURCE_DIR}/test_mapnode.cpp @@ -53,7 +58,6 @@ set (UNITTEST_CLIENT_SRCS ${CMAKE_CURRENT_SOURCE_DIR}/test_eventmanager.cpp ${CMAKE_CURRENT_SOURCE_DIR}/test_gameui.cpp ${CMAKE_CURRENT_SOURCE_DIR}/test_irr_gltf_mesh_loader.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/test_irr_matrix4.cpp ${CMAKE_CURRENT_SOURCE_DIR}/test_mesh_compare.cpp ${CMAKE_CURRENT_SOURCE_DIR}/test_keycode.cpp PARENT_SCOPE) diff --git a/src/unittest/test_address.cpp b/src/unittest/test_address.cpp index 7ae7f85cf..364e82fad 100644 --- a/src/unittest/test_address.cpp +++ b/src/unittest/test_address.cpp @@ -4,6 +4,7 @@ #include "test.h" +#include #include "log.h" #include "settings.h" #include "network/socket.h" diff --git a/src/unittest/test_collision.cpp b/src/unittest/test_collision.cpp index 40cd52798..87f71cd43 100644 --- a/src/unittest/test_collision.cpp +++ b/src/unittest/test_collision.cpp @@ -51,7 +51,7 @@ namespace { #define UASSERTEQ_F(actual, expected) do { \ f32 a = (actual); \ f32 e = (expected); \ - UTEST(fabsf(a - e) <= 0.0001f, "actual: %.f expected: %.f", a, e) \ + UTEST(fabsf(a - e) <= 0.0001f, "actual: %.5f expected: %.5f", a, e) \ } while (0) #define UASSERTEQ_V3F(actual, expected) do { \ @@ -86,7 +86,7 @@ void TestCollision::testAxisAlignedCollision() } { aabb3f s(bx, by, bz, bx+1, by+1, bz+1); - aabb3f m(bx-2, by+1.5, bz, bx-1, by+2.5, bz-1); + aabb3f m(bx-2, by+1.5, bz, bx-1, by+2.5, bz+1); v3f v(1, 0, 0); f32 dtime = 1.0f; UASSERT(axisAlignedCollision(s, m, v, &dtime) == -1); @@ -134,16 +134,16 @@ void TestCollision::testAxisAlignedCollision() { aabb3f s(bx, by, bz, bx+1, by+1, bz+1); aabb3f m(bx+2, by-1.5, bz, bx+2.5, by-0.5, bz+1); - v3f v(-0.5, 0.2, 0); - f32 dtime = 2.5f; + v3f v(-0.5, 0.2, 0); // 0.200000003 precisely + f32 dtime = 2.51f; UASSERT(axisAlignedCollision(s, m, v, &dtime) == 1); // Y, not X! UASSERT(fabs(dtime - 2.500) < 0.001); } { aabb3f s(bx, by, bz, bx+1, by+1, bz+1); aabb3f m(bx+2, by-1.5, bz, bx+2.5, by-0.5, bz+1); - v3f v(-0.5, 0.3, 0); - f32 dtime = 2.0f; + v3f v(-0.5, 0.3, 0); // 0.300000012 precisely + f32 dtime = 2.1f; UASSERT(axisAlignedCollision(s, m, v, &dtime) == 0); UASSERT(fabs(dtime - 2.000) < 0.001); } @@ -179,7 +179,7 @@ void TestCollision::testAxisAlignedCollision() aabb3f s(bx, by, bz, bx+2, by+2, bz+2); aabb3f m(bx-4.2, by-4.2, bz-4.2, bx-2.3, by-2.29, bz-2.29); v3f v(1./7, 1./7, 1./7); - f32 dtime = 17.0f; + f32 dtime = 17.1f; UASSERT(axisAlignedCollision(s, m, v, &dtime) == 0); UASSERT(fabs(dtime - 16.1) < 0.001); } @@ -224,18 +224,16 @@ void TestCollision::testCollisionMoveSimple(IGameDef *gamedef) res = collisionMoveSimple(env.get(), gamedef, box, 0.0f, 1.0f, &pos, &speed, accel); - UASSERT(!res.touching_ground || !res.collides || !res.standing_on_object); + UASSERT(!res.touching_ground && !res.collides && !res.standing_on_object); UASSERT(res.collisions.empty()); - // FIXME: it's easy to tell that this should be y=1.5f, but our code does it wrong. - // It's unclear if/how this will be fixed. - UASSERTEQ_V3F(pos, fpos(4, 2, 4)); + UASSERTEQ_V3F(pos, fpos(4, 1.5f, 4)); UASSERTEQ_V3F(speed, fpos(0, 1, 0)); /* standing on ground */ pos = fpos(0, 0.5f, 0); speed = fpos(0, 0, 0); accel = fpos(0, -9.81f, 0); - res = collisionMoveSimple(env.get(), gamedef, box, 0.0f, 0.04f, + res = collisionMoveSimple(env.get(), gamedef, box, 0.0f, 0.05f, &pos, &speed, accel); UASSERT(res.collides); @@ -251,6 +249,110 @@ void TestCollision::testCollisionMoveSimple(IGameDef *gamedef) UASSERTEQ(v3s16, ci.node_p, v3s16(0, 0, 0)); } + /* glitched into ground */ + pos = fpos(0, 0.499f, 0); + speed = fpos(0, 0, 0); + accel = fpos(0, -9.81f, 0); + res = collisionMoveSimple(env.get(), gamedef, box, 0.0f, 0.05f, + &pos, &speed, accel); + + UASSERTEQ_V3F(pos, fpos(0, 0.5f, 0)); // moved back out + UASSERTEQ_V3F(speed, fpos(0, 0, 0)); + UASSERT(res.collides); + UASSERT(res.touching_ground); + UASSERT(!res.standing_on_object); + UASSERT(res.collisions.size() == 1); + { + auto &ci = res.collisions.front(); + UASSERTEQ(int, ci.type, COLLISION_NODE); + UASSERTEQ(int, ci.axis, COLLISION_AXIS_Y); + UASSERTEQ(v3s16, ci.node_p, v3s16(0, 0, 0)); + } + + /* falling on ground */ + pos = fpos(0, 1.2345f, 0); + speed = fpos(0, -3.f, 0); + accel = fpos(0, -9.81f, 0); + res = collisionMoveSimple(env.get(), gamedef, box, 0.0f, 0.5f, + &pos, &speed, accel); + + UASSERT(res.collides); + UASSERT(res.touching_ground); + UASSERT(!res.standing_on_object); + // Current collision code uses linear collision, which incorrectly yields a collision at 0.741 here + // but usually this resolves itself in the next dtime, fortunately. + // Parabolic collision should correctly find this in one step. + // UASSERTEQ_V3F(pos, fpos(0, 0.5f, 0)); + UASSERTEQ_V3F(speed, fpos(0, 0, 0)); + UASSERT(res.collisions.size() == 1); + { + auto &ci = res.collisions.front(); + UASSERTEQ(int, ci.type, COLLISION_NODE); + UASSERTEQ(int, ci.axis, COLLISION_AXIS_Y); + UASSERTEQ(v3s16, ci.node_p, v3s16(0, 0, 0)); + } + + /* jumping on ground */ + pos = fpos(0, 0.5f, 0); + speed = fpos(0, 2.0f, 0); + accel = fpos(0, -9.81f, 0); + res = collisionMoveSimple(env.get(), gamedef, box, 0.0f, 0.2f, + &pos, &speed, accel); + UASSERT(!res.collides && !res.touching_ground && !res.standing_on_object); + + res = collisionMoveSimple(env.get(), gamedef, box, 0.0f, 0.5f, + &pos, &speed, accel); + + UASSERT(res.collides); + UASSERT(res.touching_ground); + UASSERT(!res.standing_on_object); + // Current collision code uses linear collision, which incorrectly yields a collision at 0.672 here + // but usually this resolves itself in the next dtime, fortunately. + // Parabolic collision should correctly find this in one step. + // UASSERTEQ_V3F(pos, fpos(0, 0.5f, 0)); + UASSERTEQ_V3F(speed, fpos(0, 0, 0)); + UASSERT(res.collisions.size() == 1); + { + auto &ci = res.collisions.front(); + UASSERTEQ(int, ci.type, COLLISION_NODE); + UASSERTEQ(int, ci.axis, COLLISION_AXIS_Y); + UASSERTEQ(v3s16, ci.node_p, v3s16(0, 0, 0)); + } + + /* moving over ground, no gravity */ + pos = fpos(0, 0.5f, 0); + speed = fpos(-1.6f, 0, -1.7f); + accel = fpos(0, 0.0f, 0); + res = collisionMoveSimple(env.get(), gamedef, box, 0.0f, 1.0f, + &pos, &speed, accel); + + UASSERT(!res.collides); + // UASSERT(res.touching_ground); // no gravity, so not guaranteed + UASSERT(!res.standing_on_object); + UASSERTEQ_V3F(pos, fpos(-1.6f, 0.5f, -1.7f)); + UASSERTEQ_V3F(speed, fpos(-1.6f, 0, -1.7f)); + UASSERT(res.collisions.empty()); + + /* moving over ground, with gravity */ + pos = fpos(5.5f, 0.5f, 5.5f); + speed = fpos(-1.0f, 0.0f, -0.1f); + accel = fpos(0, -9.81f, 0); + res = collisionMoveSimple(env.get(), gamedef, box, 0.0f, 1.0f, + &pos, &speed, accel); + + UASSERT(res.collides); + UASSERT(res.touching_ground); + UASSERT(!res.standing_on_object); + UASSERTEQ_V3F(pos, fpos(4.5f, 0.5f, 5.4f)); + UASSERTEQ_V3F(speed, fpos(-1.0f, 0, -0.1f)); + UASSERT(res.collisions.size() == 1); + { // first collision on y axis zeros speed and acceleration. + auto &ci = res.collisions.front(); + UASSERTEQ(int, ci.type, COLLISION_NODE); + UASSERTEQ(int, ci.axis, COLLISION_AXIS_Y); + UASSERTEQ(v3s16, ci.node_p, v3s16(5, 0, 5)); + } + /* not moving never collides */ pos = fpos(0, -100, 0); speed = fpos(0, 0, 0); diff --git a/src/unittest/test_connection.cpp b/src/unittest/test_connection.cpp index 654d6f463..298d259aa 100644 --- a/src/unittest/test_connection.cpp +++ b/src/unittest/test_connection.cpp @@ -273,7 +273,7 @@ void TestConnection::testConnectSendReceive() UASSERT(server.ReceiveTimeoutMs(&recvpacket, timeout_ms)); infostream << "** Server received: peer_id=" << pkt.getPeerId() << ", size=" << pkt.getSize() - << ", data=" << (const char*)pkt.getU8Ptr(0) + << ", data=" << pkt.getString(0) << std::endl; auto recvdata = pkt.oldForgePacket(); @@ -298,7 +298,7 @@ void TestConnection::testConnectSendReceive() infostream << " "; char buf[10]; porting::mt_snprintf(buf, sizeof(buf), "%.2X", - ((int)((const char *)pkt.getU8Ptr(0))[i]) & 0xff); + ((int)(pkt.getString(0))[i]) & 0xff); infostream< 20) diff --git a/src/unittest/test_eventmanager.cpp b/src/unittest/test_eventmanager.cpp index 0b1d3bbd1..76019f730 100644 --- a/src/unittest/test_eventmanager.cpp +++ b/src/unittest/test_eventmanager.cpp @@ -3,6 +3,7 @@ // Copyright (C) 2018 nerzhul, Loic BLOT #include +#include #include "test.h" #include "client/event_manager.h" @@ -94,4 +95,4 @@ void TestEventManager::testRealEventAfterDereg() // Push the new event & ensure we target the default value ev.put(new SimpleTriggerEvent(MtEvent::PLAYER_REGAIN_GROUND)); UASSERT(emt->getTestValue() == 0); -} \ No newline at end of file +} diff --git a/src/unittest/test_irr_gltf_mesh_loader.cpp b/src/unittest/test_irr_gltf_mesh_loader.cpp index b1b0d99a1..51d8e2251 100644 --- a/src/unittest/test_irr_gltf_mesh_loader.cpp +++ b/src/unittest/test_irr_gltf_mesh_loader.cpp @@ -414,7 +414,7 @@ SECTION("simple skin") CHECK(child->Animatedrotation == irr::core::quaternion()); CHECK(child->Animatedscale == v3f(1, 1, 1)); irr::core::matrix4 inverseBindMatrix; - inverseBindMatrix.setInverseTranslation(childTranslation); + inverseBindMatrix.setTranslation(-childTranslation); CHECK(child->GlobalInversedMatrix == inverseBindMatrix); } diff --git a/src/unittest/test_irr_matrix4.cpp b/src/unittest/test_irr_matrix4.cpp index 6272c8c26..be6c6aa08 100644 --- a/src/unittest/test_irr_matrix4.cpp +++ b/src/unittest/test_irr_matrix4.cpp @@ -2,6 +2,7 @@ // SPDX-License-Identifier: LGPL-2.1-or-later #include "catch.h" +#include "catch_amalgamated.hpp" #include "irrMath.h" #include "matrix4.h" #include "irr_v3d.h" @@ -9,7 +10,7 @@ using matrix4 = core::matrix4; static bool matrix_equals(const matrix4 &a, const matrix4 &b) { - return a.equals(b, 0.00001f); + return a.equals(b, 0.00001f); } constexpr v3f x{1, 0, 0}; @@ -19,51 +20,104 @@ constexpr v3f z{0, 0, 1}; TEST_CASE("matrix4") { SECTION("setRotationRadians") { - SECTION("rotation order is ZYX (matrix notation)") { - v3f rot{1, 2, 3}; - matrix4 X, Y, Z, ZYX; - X.setRotationRadians({rot.X, 0, 0}); - Y.setRotationRadians({0, rot.Y, 0}); - Z.setRotationRadians({0, 0, rot.Z}); - ZYX.setRotationRadians(rot); - CHECK(!matrix_equals(X * Y * Z, ZYX)); - CHECK(!matrix_equals(X * Z * Y, ZYX)); - CHECK(!matrix_equals(Y * X * Z, ZYX)); - CHECK(!matrix_equals(Y * Z * X, ZYX)); - CHECK(!matrix_equals(Z * X * Y, ZYX)); - CHECK(matrix_equals(Z * Y * X, ZYX)); - } + SECTION("rotation order is ZYX (matrix notation)") { + v3f rot{1, 2, 3}; + matrix4 X, Y, Z, ZYX; + X.setRotationRadians({rot.X, 0, 0}); + Y.setRotationRadians({0, rot.Y, 0}); + Z.setRotationRadians({0, 0, rot.Z}); + ZYX.setRotationRadians(rot); + CHECK(!matrix_equals(X * Y * Z, ZYX)); + CHECK(!matrix_equals(X * Z * Y, ZYX)); + CHECK(!matrix_equals(Y * X * Z, ZYX)); + CHECK(!matrix_equals(Y * Z * X, ZYX)); + CHECK(!matrix_equals(Z * X * Y, ZYX)); + CHECK(matrix_equals(Z * Y * X, ZYX)); + } - const f32 quarter_turn = core::PI / 2; + const f32 quarter_turn = core::PI / 2; - // See https://en.wikipedia.org/wiki/Right-hand_rule#/media/File:Cartesian_coordinate_system_handedness.svg - // for a visualization of what handedness means for rotations + // See https://en.wikipedia.org/wiki/Right-hand_rule#/media/File:Cartesian_coordinate_system_handedness.svg + // for a visualization of what handedness means for rotations - SECTION("rotation is right-handed") { - SECTION("rotation around the X-axis is Z-up, counter-clockwise") { - matrix4 X; - X.setRotationRadians({quarter_turn, 0, 0}); - CHECK(X.transformVect(x).equals(x)); - CHECK(X.transformVect(y).equals(z)); - CHECK(X.transformVect(z).equals(-y)); - } + SECTION("rotation is right-handed") { + SECTION("rotation around the X-axis is Z-up, counter-clockwise") { + matrix4 X; + X.setRotationRadians({quarter_turn, 0, 0}); + CHECK(X.transformVect(x).equals(x)); + CHECK(X.transformVect(y).equals(z)); + CHECK(X.transformVect(z).equals(-y)); + } - SECTION("rotation around the Y-axis is Z-up, clockwise") { - matrix4 Y; - Y.setRotationRadians({0, quarter_turn, 0}); - CHECK(Y.transformVect(y).equals(y)); - CHECK(Y.transformVect(x).equals(-z)); - CHECK(Y.transformVect(z).equals(x)); - } + SECTION("rotation around the Y-axis is Z-up, clockwise") { + matrix4 Y; + Y.setRotationRadians({0, quarter_turn, 0}); + CHECK(Y.transformVect(y).equals(y)); + CHECK(Y.transformVect(x).equals(-z)); + CHECK(Y.transformVect(z).equals(x)); + } - SECTION("rotation around the Z-axis is Y-up, counter-clockwise") { - matrix4 Z; - Z.setRotationRadians({0, 0, quarter_turn}); - CHECK(Z.transformVect(z).equals(z)); - CHECK(Z.transformVect(x).equals(y)); - CHECK(Z.transformVect(y).equals(-x)); - } - } + SECTION("rotation around the Z-axis is Y-up, counter-clockwise") { + matrix4 Z; + Z.setRotationRadians({0, 0, quarter_turn}); + CHECK(Z.transformVect(z).equals(z)); + CHECK(Z.transformVect(x).equals(y)); + CHECK(Z.transformVect(y).equals(-x)); + } + } +} + +SECTION("getScale") { + SECTION("correctly gets the length of each row of the 3x3 submatrix") { + matrix4 A( + 1, 2, 3, 0, + 4, 5, 6, 0, + 7, 8, 9, 0, + 0, 0, 0, 1 + ); + v3f scale = A.getScale(); + CHECK(scale.equals(v3f( + v3f(1, 2, 3).getLength(), + v3f(4, 5, 6).getLength(), + v3f(7, 8, 9).getLength() + ))); + } +} + +SECTION("getRotationRadians") { + auto test_rotation_degrees = [](v3f rad, v3f scale) { + matrix4 S; + S.setScale(scale); + matrix4 R; + R.setRotationRadians(rad); + v3f rot = (R * S).getRotationRadians(); + matrix4 B; + B.setRotationRadians(rot); + CHECK(matrix_equals(R, B)); + }; + SECTION("returns a rotation equivalent to the original rotation") { + test_rotation_degrees({1.0f, 2.0f, 3.0f}, v3f(1)); + Catch::Generators::RandomFloatingGenerator gen_angle(0.0f, 2 * core::PI, Catch::getSeed()); + Catch::Generators::RandomFloatingGenerator gen_scale(0.1f, 10, Catch::getSeed()); + auto draw = [](auto gen) { + f32 f = gen.get(); + gen.next(); + return f; + }; + auto draw_v3f = [&](auto gen) { + return v3f{draw(gen), draw(gen), draw(gen)}; + }; + for (int i = 0; i < 1000; ++i) + test_rotation_degrees(draw_v3f(gen_angle), draw_v3f(gen_scale)); + for (f32 i = 0; i < 4; ++i) + for (f32 j = 0; j < 4; ++j) + for (f32 k = 0; k < 4; ++k) { + v3f rad = core::PI / 4.0f * v3f(i, j, k); + for (int l = 0; l < 100; ++l) { + test_rotation_degrees(rad, draw_v3f(gen_scale)); + } + } + } } } diff --git a/src/unittest/test_irr_rotation.cpp b/src/unittest/test_irr_rotation.cpp new file mode 100644 index 000000000..0aa9c9573 --- /dev/null +++ b/src/unittest/test_irr_rotation.cpp @@ -0,0 +1,109 @@ +// Luanti +// SPDX-License-Identifier: LGPL-2.1-or-later + +#include "catch.h" +#include "catch_amalgamated.hpp" +#include "irrMath.h" +#include "matrix4.h" +#include "irrMath.h" +#include "matrix4.h" +#include "irr_v3d.h" +#include "quaternion.h" +#include + +// Irrlicht provides three different representations of rotations: +// - Euler angles in radians (or degrees, but that doesn't matter much); +// - Quaternions; +// - Rotation matrices. +// These tests ensure that converting between these representations is rotation-preserving. + +using matrix4 = core::matrix4; +using quaternion = core::quaternion; + +// Despite the internal usage of doubles, matrix4::setRotationRadians +// simply incurs component-wise errors of the order 1e-3. +const f32 tolerance = 1e-2f; + +static bool matrix_equals(const matrix4 &mat, const matrix4 &mat2) +{ + return mat.equals(mat2, tolerance); +} + +static bool euler_angles_equiv(v3f rad, v3f rad2) +{ + matrix4 mat, mat2; + mat.setRotationRadians(rad); + mat2.setRotationRadians(rad2); + return matrix_equals(mat, mat2); +} + +static void test_euler_angles_rad(const std::function &test_euler_radians) +{ + Catch::Generators::RandomFloatingGenerator gen(0.0f, 2 * core::PI, Catch::getSeed()); + auto random_angle = [&gen]() { + f32 f = gen.get(); + gen.next(); + return f; + }; + for (int i = 0; i < 1000; ++i) + test_euler_radians(v3f{random_angle(), random_angle(), random_angle()}); + for (int i = 0; i < 4; i++) + for (int j = 0; j < 4; j++) + for (int k = 0; k < 4; k++) { + v3f rad = core::PI / 4.0f * v3f(i, j, k); + test_euler_radians(rad); + // Test very slightly nudged, "almost-perfect" rotations to make sure + // that the conversions are relatively stable at extremal points + for (int l = 0; l < 10; ++l) { + v3f jitter = v3f{random_angle(), random_angle(), random_angle()} * 0.001f; + test_euler_radians(rad + jitter); + } + } +} + +TEST_CASE("rotations") { + +SECTION("euler-to-quaternion conversion") { + test_euler_angles_rad([](v3f rad) { + core::matrix4 rot, rot_quat; + rot.setRotationRadians(rad); + quaternion q(rad); + q.getMatrix(rot_quat); + // Check equivalence of the rotations via matrices + CHECK(matrix_equals(rot, rot_quat)); + }); +} + +// Now that we've already tested the conversion to quaternions, +// this essentially primarily tests the quaternion to euler conversion +SECTION("quaternion-euler roundtrip") { + test_euler_angles_rad([](v3f rad) { + quaternion q(rad); + v3f rad2; + q.toEuler(rad2); + CHECK(euler_angles_equiv(rad, rad2)); + }); +} + +SECTION("matrix-quaternion roundtrip") { + test_euler_angles_rad([](v3f rad) { + matrix4 mat; + mat.setRotationRadians(rad); + quaternion q(mat); + matrix4 mat2; + q.getMatrix(mat2); + CHECK(matrix_equals(mat, mat2)); + }); +} + +SECTION("matrix-euler roundtrip") { + test_euler_angles_rad([](v3f rad) { + matrix4 mat, mat2; + mat.setRotationRadians(rad); + v3f rad2 = mat.getRotationRadians(); + mat2.setRotationRadians(rad2); + CHECK(matrix_equals(mat, mat2)); + }); +} + +} diff --git a/src/unittest/test_k_d_tree.cpp b/src/unittest/test_k_d_tree.cpp new file mode 100644 index 000000000..9dbe0b545 --- /dev/null +++ b/src/unittest/test_k_d_tree.cpp @@ -0,0 +1,138 @@ +// Copyright (C) 2024 Lars Müller +// SPDX-License-Identifier: LGPL-2.1-or-later + +#include "catch.h" +#include "irrTypes.h" +#include "noise.h" +#include "util/k_d_tree.h" + +#include +#include + +template +class ObjectVector +{ +public: + using Point = std::array; + + void insert(const Point &p, Id id) + { + entries.push_back(Entry{p, id}); + } + + void remove(Id id) + { + const auto it = std::find_if(entries.begin(), entries.end(), [&](const auto &e) { + return e.id == id; + }); + assert(it != entries.end()); + entries.erase(it); + } + + void update(const Point &p, Id id) + { + remove(id); + insert(p, id); + } + + template + void rangeQuery(const Point &min, const Point &max, const F &cb) + { + for (const auto &e : entries) { + for (uint8_t d = 0; d < Dim; ++d) + if (e.point[d] < min[d] || e.point[d] > max[d]) + goto next; + cb(e.point, e.id); // TODO check + next: {} + } + } + +private: + struct Entry { + Point point; + Id id; + }; + std::vector entries; +}; + +TEST_CASE("k-d-tree") { + +SECTION("single update") { + k_d_tree::DynamicKdTrees<3, u16, u16> kds; + for (u16 i = 1; i <= 5; ++i) + kds.insert({i, i, i}, i); + for (u16 i = 1; i <= 5; ++i) { + u16 j = i - 1; + kds.update({j, j, j}, i); + } +} + +SECTION("random operations") { + PseudoRandom pr(Catch::getSeed()); + + ObjectVector<3, f32, u16> objvec; + k_d_tree::DynamicKdTrees<3, f32, u16> kds; + + const auto randPos = [&]() { + std::array point; + for (uint8_t d = 0; d < 3; ++d) + point[d] = pr.range(-1000, 1000); + return point; + }; + + const auto testRandomQuery = [&]() { + std::array min, max; + for (uint8_t d = 0; d < 3; ++d) { + min[d] = pr.range(-1500, 1500); + max[d] = min[d] + pr.range(1, 2500); + } + std::unordered_set expected_ids; + objvec.rangeQuery(min, max, [&](auto _, u16 id) { + CHECK(expected_ids.count(id) == 0); + expected_ids.insert(id); + }); + kds.rangeQuery(min, max, [&](auto point, u16 id) { + CHECK(expected_ids.count(id) == 1); + expected_ids.erase(id); + }); + CHECK(expected_ids.empty()); + }; + + for (u16 id = 1; id < 1000; ++id) { + const auto point = randPos(); + objvec.insert(point, id); + kds.insert(point, id); + testRandomQuery(); + } + + const auto testRandomQueries = [&]() { + for (int i = 0; i < 1000; ++i) { + testRandomQuery(); + } + }; + + testRandomQueries(); + + for (u16 id = 1; id < 800; ++id) { + objvec.remove(id); + kds.remove(id); + } + + testRandomQueries(); + + for (u16 id = 800; id < 1000; ++id) { + const auto point = randPos(); + objvec.update(point, id); + kds.update(point, id); + } + + testRandomQueries(); + + for (u16 id = 800; id < 1000; ++id) { + objvec.remove(id); + kds.remove(id); + testRandomQuery(); + } +} + +} diff --git a/src/unittest/test_keycode.cpp b/src/unittest/test_keycode.cpp index 125098341..a805ec044 100644 --- a/src/unittest/test_keycode.cpp +++ b/src/unittest/test_keycode.cpp @@ -15,20 +15,26 @@ public: void runTests(IGameDef *gamedef); + /* TODO: Re-introduce unittests after fully switching to SDL. void testCreateFromString(); void testCreateFromSKeyInput(); void testCompare(); + */ }; static TestKeycode g_test_instance; void TestKeycode::runTests(IGameDef *gamedef) { + /* TEST(testCreateFromString); TEST(testCreateFromSKeyInput); TEST(testCompare); + */ } +#if 0 + //////////////////////////////////////////////////////////////////////////////// #define UASSERTEQ_STR(one, two) UASSERT(strcmp(one, two) == 0) @@ -112,3 +118,5 @@ void TestKeycode::testCompare() in2.Char = L';'; UASSERT(KeyPress(in) == KeyPress(in2)); } + +#endif diff --git a/src/unittest/test_lbmmanager.cpp b/src/unittest/test_lbmmanager.cpp new file mode 100644 index 000000000..d4490bd01 --- /dev/null +++ b/src/unittest/test_lbmmanager.cpp @@ -0,0 +1,82 @@ +// Luanti +// SPDX-License-Identifier: LGPL-2.1-or-later +// Copyright (C) 2025 sfan5 + +#include "test.h" + +#include + +#include "server/blockmodifier.h" + +class TestLBMManager : public TestBase +{ +public: + TestLBMManager() { TestManager::registerTestModule(this); } + const char *getName() { return "TestLBMManager"; } + + void runTests(IGameDef *gamedef); + + void testNew(IGameDef *gamedef); + void testExisting(IGameDef *gamedef); + void testDiscard(IGameDef *gamedef); +}; + +static TestLBMManager g_test_instance; + +void TestLBMManager::runTests(IGameDef *gamedef) +{ + TEST(testNew, gamedef); + TEST(testExisting, gamedef); + TEST(testDiscard, gamedef); +} + +namespace { + struct FakeLBM : LoadingBlockModifierDef { + FakeLBM(const std::string &name, bool every_load) { + this->name = name; + this->run_at_every_load = every_load; + trigger_contents.emplace_back("air"); + } + }; +} + +void TestLBMManager::testNew(IGameDef *gamedef) +{ + LBMManager mgr; + + mgr.addLBMDef(new FakeLBM(":foo:bar", false)); + mgr.addLBMDef(new FakeLBM("not:this", true)); + + mgr.loadIntroductionTimes("", gamedef, 1234); + + auto str = mgr.createIntroductionTimesString(); + // name of first lbm should have been stripped + // the second should not appear at all + UASSERTEQ(auto, str, "foo:bar~1234;"); +} + +void TestLBMManager::testExisting(IGameDef *gamedef) +{ + LBMManager mgr; + + mgr.addLBMDef(new FakeLBM("foo:bar", false)); + + // colon should also be stripped when loading (due to old versions) + mgr.loadIntroductionTimes(":foo:bar~22;", gamedef, 1234); + + auto str = mgr.createIntroductionTimesString(); + UASSERTEQ(auto, str, "foo:bar~22;"); +} + +void TestLBMManager::testDiscard(IGameDef *gamedef) +{ + LBMManager mgr; + + // LBMs that no longer exist are dropped + mgr.loadIntroductionTimes("some:thing~2;", gamedef, 10); + + auto str = mgr.createIntroductionTimesString(); + UASSERTEQ(auto, str, ""); +} + +// We should also test LBMManager::applyLBMs in the future. diff --git a/src/unittest/test_mapblock.cpp b/src/unittest/test_mapblock.cpp index 7f3f860b4..e4071efd5 100644 --- a/src/unittest/test_mapblock.cpp +++ b/src/unittest/test_mapblock.cpp @@ -325,7 +325,7 @@ void TestMapBlock::testLoadNonStd(IGameDef *gamedef) * 2176 IDs (but only the first 128 could use the full range of param2), and * finally 16-bit like today. * The content_width field in MapBlocks was used around that time during the - * transition to 16-bit: + * transition to 16-bit: * A content_width of 1 would normally never appear with a version > 24, but * it is in fact perfectly possible to serialize a block in todays format with * shortened IDs. diff --git a/src/unittest/test_mapdatabase.cpp b/src/unittest/test_mapdatabase.cpp new file mode 100644 index 000000000..c6aa7d051 --- /dev/null +++ b/src/unittest/test_mapdatabase.cpp @@ -0,0 +1,226 @@ +// Luanti +// SPDX-License-Identifier: LGPL-2.1-or-later +// Copyright (C) 2024 sfan5 + +#include "cmake_config.h" + +#include "test.h" + +#include +#include +#include +#include "database/database-dummy.h" +#include "database/database-sqlite3.h" +#if USE_LEVELDB +#include "database/database-leveldb.h" +#endif +#if USE_POSTGRESQL +#include "database/database-postgresql.h" +#endif + +namespace +{ + +class MapDatabaseProvider +{ +public: + typedef std::function F; + + MapDatabaseProvider(MapDatabase *db) : can_create(false), m_db(db) { + sanity_check(m_db); + } + MapDatabaseProvider(const F &creator) : can_create(true), m_creator(creator) { + sanity_check(m_creator); + } + + ~MapDatabaseProvider() { + if (m_db) + m_db->endSave(); + if (can_create) + delete m_db; + } + + MapDatabase *get() { + if (m_db) + m_db->endSave(); + if (can_create) { + delete m_db; + m_db = m_creator(); + } + m_db->beginSave(); + return m_db; + } + +private: + bool can_create; + F m_creator; + MapDatabase *m_db = nullptr; +}; + +} + +class TestMapDatabase : public TestBase +{ +public: + TestMapDatabase() { TestManager::registerTestModule(this); } + const char *getName() { return "TestMapDatabase"; } + + void runTests(IGameDef *gamedef); + void runTestsForCurrentDB(); + + void testSave(); + void testLoad(); + void testList(int expect); + void testRemove(); + void testPositionEncoding(); + +private: + MapDatabaseProvider *provider = nullptr; + + std::string test_data; +}; + +static TestMapDatabase g_test_instance; + +void TestMapDatabase::runTests(IGameDef *gamedef) +{ + // fixed directory, for persistence + const std::string test_dir = getTestTempDirectory(); + + for (int c = 255; c >= 0; c--) + test_data.push_back(static_cast(c)); + sanity_check(!test_data.empty()); + + TEST(testPositionEncoding); + + rawstream << "-------- Dummy" << std::endl; + + // We can't re-create this object since it would lose the data + { + auto dummy_db = std::make_unique(); + provider = new MapDatabaseProvider(dummy_db.get()); + runTestsForCurrentDB(); + delete provider; + } + + rawstream << "-------- SQLite3" << std::endl; + + provider = new MapDatabaseProvider([&] () { + return new MapDatabaseSQLite3(test_dir); + }); + runTestsForCurrentDB(); + delete provider; + +#if USE_LEVELDB + rawstream << "-------- LevelDB" << std::endl; + + provider = new MapDatabaseProvider([&] () { + return new Database_LevelDB(test_dir); + }); + runTestsForCurrentDB(); + delete provider; +#endif + +#if USE_POSTGRESQL + const char *connstr = getenv("MINETEST_POSTGRESQL_CONNECT_STRING"); + if (connstr) { + rawstream << "-------- PostgreSQL" << std::endl; + + provider = new MapDatabaseProvider([&] () { + return new MapDatabasePostgreSQL(connstr); + }); + runTestsForCurrentDB(); + delete provider; + } +#endif +} + +//////////////////////////////////////////////////////////////////////////////// + +void TestMapDatabase::runTestsForCurrentDB() +{ + // order-sensitive + TEST(testSave); + TEST(testLoad); + TEST(testList, 1); + TEST(testRemove); + TEST(testList, 0); +} + +void TestMapDatabase::testSave() +{ + auto *db = provider->get(); + std::string_view stuff{"wrong wrong wrong"}; + UASSERT(db->saveBlock({1, 2, 3}, stuff)); + // overwriting is valid too + UASSERT(db->saveBlock({1, 2, 3}, test_data)); +} + +void TestMapDatabase::testLoad() +{ + auto *db = provider->get(); + std::string dest; + + // successful load + db->loadBlock({1, 2, 3}, &dest); + UASSERT(!dest.empty()); + UASSERT(dest == test_data); + + // failed load + v3s16 pp[] = {{1, 2, 4}, {0, 0, 0}, {-1, -2, -3}}; + for (v3s16 p : pp) { + dest = "not empty"; + db->loadBlock(p, &dest); + UASSERT(dest.empty()); + } +} + +void TestMapDatabase::testList(int expect) +{ + auto *db = provider->get(); + std::vector dest; + db->listAllLoadableBlocks(dest); + UASSERTEQ(size_t, dest.size(), expect); + if (expect == 1) + UASSERT(dest.front() == v3s16(1, 2, 3)); +} + +void TestMapDatabase::testRemove() +{ + auto *db = provider->get(); + + // successful remove + UASSERT(db->deleteBlock({1, 2, 3})); + + // failed remove + // FIXME: this isn't working consistently, maybe later + //UASSERT(!db->deleteBlock({1, 2, 4})); +} + +void TestMapDatabase::testPositionEncoding() +{ + auto db = std::make_unique(); + + // Unit vectors and extremes + UASSERTEQ(s64, db->getBlockAsInteger({0, 0, 0}), 0) + UASSERTEQ(s64, db->getBlockAsInteger({1, 0, 0}), 1) + UASSERTEQ(s64, db->getBlockAsInteger({0, 1, 0}), 0x1000) + UASSERTEQ(s64, db->getBlockAsInteger({0, 0, 1}), 0x1000000) + UASSERTEQ(s64, db->getBlockAsInteger({-1, 0, 0}), -1) + UASSERTEQ(s64, db->getBlockAsInteger({0, -1, 0}), -0x1000) + UASSERTEQ(s64, db->getBlockAsInteger({0, 0, -1}), -0x1000000) + UASSERTEQ(s64, db->getBlockAsInteger({2047, 2047, 2047}), 0x7FF7FF7FF) + UASSERTEQ(s64, db->getBlockAsInteger({-2048, -2048, -2048}), -0x800800800) + UASSERTEQ(s64, db->getBlockAsInteger({-123, 456, -789}), -0x314e3807b) + + UASSERT(db->getIntegerAsBlock(0) == v3s16(0, 0, 0)) + UASSERT(db->getIntegerAsBlock(1) == v3s16(1, 0, 0)) + UASSERT(db->getIntegerAsBlock(0x1000) == v3s16(0, 1, 0)) + UASSERT(db->getIntegerAsBlock(0x1000000) == v3s16(0, 0, 1)) + UASSERT(db->getIntegerAsBlock(-1) == v3s16(-1, 0, 0)) + UASSERT(db->getIntegerAsBlock(-0x1000) == v3s16(0, -1, 0)) + UASSERT(db->getIntegerAsBlock(-0x1000000) == v3s16(0, 0, -1)) + UASSERT(db->getIntegerAsBlock(0x7FF7FF7FF) == v3s16(2047, 2047, 2047)) + UASSERT(db->getIntegerAsBlock(-0x800800800) == v3s16(-2048, -2048, -2048)) + UASSERT(db->getIntegerAsBlock(-0x314e3807b) == v3s16(-123, 456, -789)) +} diff --git a/src/unittest/test_noise.cpp b/src/unittest/test_noise.cpp index fec4da0d3..cd181cedd 100644 --- a/src/unittest/test_noise.cpp +++ b/src/unittest/test_noise.cpp @@ -78,7 +78,7 @@ void TestNoise::testNoise2dPoint() u32 i = 0; for (u32 y = 0; y != 10; y++) for (u32 x = 0; x != 10; x++, i++) { - float actual = NoisePerlin2D(&np_normal, x, y, 1337); + float actual = NoiseFractal2D(&np_normal, x, y, 1337); float expected = expected_2d_results[i]; UASSERT(std::fabs(actual - expected) <= 0.00001); } @@ -88,7 +88,7 @@ void TestNoise::testNoise2dBulk() { NoiseParams np_normal(20, 40, v3f(50, 50, 50), 9, 5, 0.6, 2.0); Noise noise_normal_2d(&np_normal, 1337, 10, 10); - float *noisevals = noise_normal_2d.perlinMap2D(0, 0, NULL); + float *noisevals = noise_normal_2d.noiseMap2D(0, 0, NULL); for (u32 i = 0; i != 10 * 10; i++) { float actual = noisevals[i]; @@ -126,7 +126,7 @@ void TestNoise::testNoise3dPoint() for (u32 z = 0; z != 10; z++) for (u32 y = 0; y != 10; y++) for (u32 x = 0; x != 10; x++, i++) { - float actual = NoisePerlin3D(&np_normal, x, y, z, 1337); + float actual = NoiseFractal3D(&np_normal, x, y, z, 1337); float expected = expected_3d_results[i]; UASSERT(std::fabs(actual - expected) <= 0.00001); } @@ -136,7 +136,7 @@ void TestNoise::testNoise3dBulk() { NoiseParams np_normal(20, 40, v3f(50, 50, 50), 9, 5, 0.6, 2.0); Noise noise_normal_3d(&np_normal, 1337, 10, 10, 10); - float *noisevals = noise_normal_3d.perlinMap3D(0, 0, 0, NULL); + float *noisevals = noise_normal_3d.noiseMap3D(0, 0, 0, NULL); for (u32 i = 0; i != 10 * 10 * 10; i++) { float actual = noisevals[i]; @@ -152,7 +152,7 @@ void TestNoise::testNoiseInvalidParams() try { NoiseParams np_highmem(4, 70, v3f(1, 1, 1), 5, 60, 0.7, 10.0); Noise noise_highmem_3d(&np_highmem, 1337, 200, 200, 200); - noise_highmem_3d.perlinMap3D(0, 0, 0, NULL); + noise_highmem_3d.noiseMap3D(0, 0, 0, NULL); } catch (InvalidNoiseParamsException &) { exception_thrown = true; } diff --git a/src/unittest/test_random.cpp b/src/unittest/test_random.cpp index da5c2cf90..314192166 100644 --- a/src/unittest/test_random.cpp +++ b/src/unittest/test_random.cpp @@ -80,7 +80,7 @@ void TestRandom::testPseudoRandomRange() s32 min = (pr.next() % 3000) - 500; s32 max = (pr.next() % 3000) - 500; if (min > max) - SWAP(s32, min, max); + std::swap(min, max); s32 randval = pr.range(min, max); UASSERT(randval >= min); @@ -120,7 +120,7 @@ void TestRandom::testPcgRandomRange() s32 min = (pr.next() % 3000) - 500; s32 max = (pr.next() % 3000) - 500; if (min > max) - SWAP(s32, min, max); + std::swap(min, max); s32 randval = pr.range(min, max); UASSERT(randval >= min); diff --git a/src/unittest/test_sao.cpp b/src/unittest/test_sao.cpp index e424fb7a4..5184d529d 100644 --- a/src/unittest/test_sao.cpp +++ b/src/unittest/test_sao.cpp @@ -197,8 +197,8 @@ void TestSAO::testActivate(ServerEnvironment *env) UASSERT(block); block->m_static_objects.insert(0, s_obj); - // Activating the block will convert it to active. - env->activateBlock(block); + // this will convert it to an active object + env->forceActivateBlock(block); const u16 obj_id = assert_active_in_block(block); auto *obj = env->getActiveObject(obj_id); @@ -239,7 +239,7 @@ void TestSAO::testStaticToFalse(ServerEnvironment *env) UASSERT(block); block->m_static_objects.insert(0, s_obj); - env->activateBlock(block); + env->forceActivateBlock(block); const u16 obj_id = assert_active_in_block(block); auto *obj = env->getActiveObject(obj_id); diff --git a/src/unittest/test_serveractiveobjectmgr.cpp b/src/unittest/test_serveractiveobjectmgr.cpp index 0d370b5c5..861f5e06f 100644 --- a/src/unittest/test_serveractiveobjectmgr.cpp +++ b/src/unittest/test_serveractiveobjectmgr.cpp @@ -2,52 +2,162 @@ // SPDX-License-Identifier: LGPL-2.1-or-later // Copyright (C) 2018 nerzhul, Loic Blot -#include "test.h" +#include "activeobjectmgr.h" +#include "catch.h" +#include "irrTypes.h" +#include "irr_aabb3d.h" #include "mock_serveractiveobject.h" #include -#include +#include +#include +#include #include "server/activeobjectmgr.h" +#include "server/serveractiveobject.h" -#include "profiler.h" +class TestServerActiveObjectMgr { + server::ActiveObjectMgr saomgr; + std::vector ids; - -class TestServerActiveObjectMgr : public TestBase -{ public: - TestServerActiveObjectMgr() { TestManager::registerTestModule(this); } - const char *getName() { return "TestServerActiveObjectMgr"; } - void runTests(IGameDef *gamedef); + u16 getFreeId() const { return saomgr.getFreeId(); } - void testFreeID(); - void testRegisterObject(); - void testRemoveObject(); - void testGetObjectsInsideRadius(); - void testGetAddedActiveObjectsAroundPos(); + bool registerObject(std::unique_ptr obj) + { + auto *ptr = obj.get(); + if (!saomgr.registerObject(std::move(obj))) + return false; + ids.push_back(ptr->getId()); + return true; + } + + void removeObject(u16 id) + { + const auto it = std::find(ids.begin(), ids.end(), id); + REQUIRE(it != ids.end()); + ids.erase(it); + saomgr.removeObject(id); + } + + void updateObjectPos(u16 id, const v3f &pos) + { + auto *obj = saomgr.getActiveObject(id); + REQUIRE(obj != nullptr); + obj->setPos(pos); + saomgr.updateObjectPos(id, pos); // HACK work around m_env == nullptr + } + + void clear() + { + saomgr.clear(); + ids.clear(); + } + + ServerActiveObject *getActiveObject(u16 id) + { + return saomgr.getActiveObject(id); + } + + template + void getObjectsInsideRadius(T&& arg) + { + saomgr.getObjectsInsideRadius(std::forward(arg)); + } + + template + void getAddedActiveObjectsAroundPos(T&& arg) + { + saomgr.getAddedActiveObjectsAroundPos(std::forward(arg)); + } + + // Testing + + bool empty() { return ids.empty(); } + + template + u16 randomId(T &random) + { + REQUIRE(!ids.empty()); + std::uniform_int_distribution index(0, ids.size() - 1); + return ids[index(random)]; + } + + void getObjectsInsideRadiusNaive(const v3f &pos, float radius, + std::vector &result) + { + for (const auto &[id, obj] : saomgr.m_active_objects.iter()) { + if (obj->getBasePosition().getDistanceFromSQ(pos) <= radius * radius) { + result.push_back(obj.get()); + } + } + } + + void getObjectsInAreaNaive(const aabb3f &box, + std::vector &result) + { + for (const auto &[id, obj] : saomgr.m_active_objects.iter()) { + if (box.isPointInside(obj->getBasePosition())) { + result.push_back(obj.get()); + } + } + } + + constexpr static auto compare_by_id = [](auto *sao1, auto *sao2) -> bool { + return sao1->getId() < sao2->getId(); + }; + + static void sortById(std::vector &saos) + { + std::sort(saos.begin(), saos.end(), compare_by_id); + } + + void compareObjects(std::vector &actual, + std::vector &expected) + { + std::vector unexpected, missing; + sortById(actual); + sortById(expected); + + std::set_difference(actual.begin(), actual.end(), + expected.begin(), expected.end(), + std::back_inserter(unexpected), compare_by_id); + + assert(unexpected.empty()); + + std::set_difference(expected.begin(), expected.end(), + actual.begin(), actual.end(), + std::back_inserter(missing), compare_by_id); + assert(missing.empty()); + } + + void compareObjectsInsideRadius(const v3f &pos, float radius) + { + std::vector actual, expected; + saomgr.getObjectsInsideRadius(pos, radius, actual, nullptr); + getObjectsInsideRadiusNaive(pos, radius, expected); + compareObjects(actual, expected); + } + + void compareObjectsInArea(const aabb3f &box) + { + std::vector actual, expected; + saomgr.getObjectsInArea(box, actual, nullptr); + getObjectsInAreaNaive(box, expected); + compareObjects(actual, expected); + } }; -static TestServerActiveObjectMgr g_test_instance; -void TestServerActiveObjectMgr::runTests(IGameDef *gamedef) -{ - TEST(testFreeID); - TEST(testRegisterObject) - TEST(testRemoveObject) - TEST(testGetObjectsInsideRadius); - TEST(testGetAddedActiveObjectsAroundPos); -} +TEST_CASE("server active object manager") { -//////////////////////////////////////////////////////////////////////////////// - -void TestServerActiveObjectMgr::testFreeID() -{ - server::ActiveObjectMgr saomgr; +SECTION("free ID") { + TestServerActiveObjectMgr saomgr; std::vector aoids; u16 aoid = saomgr.getFreeId(); // Ensure it's not the same id - UASSERT(saomgr.getFreeId() != aoid); + REQUIRE(saomgr.getFreeId() != aoid); aoids.push_back(aoid); @@ -60,53 +170,50 @@ void TestServerActiveObjectMgr::testFreeID() aoids.push_back(sao->getId()); // Ensure next id is not in registered list - UASSERT(std::find(aoids.begin(), aoids.end(), saomgr.getFreeId()) == + REQUIRE(std::find(aoids.begin(), aoids.end(), saomgr.getFreeId()) == aoids.end()); } saomgr.clear(); } -void TestServerActiveObjectMgr::testRegisterObject() -{ - server::ActiveObjectMgr saomgr; +SECTION("register object") { + TestServerActiveObjectMgr saomgr; auto sao_u = std::make_unique(); auto sao = sao_u.get(); - UASSERT(saomgr.registerObject(std::move(sao_u))); + REQUIRE(saomgr.registerObject(std::move(sao_u))); u16 id = sao->getId(); auto saoToCompare = saomgr.getActiveObject(id); - UASSERT(saoToCompare->getId() == id); - UASSERT(saoToCompare == sao); + REQUIRE(saoToCompare->getId() == id); + REQUIRE(saoToCompare == sao); sao_u = std::make_unique(); sao = sao_u.get(); - UASSERT(saomgr.registerObject(std::move(sao_u))); - UASSERT(saomgr.getActiveObject(sao->getId()) == sao); - UASSERT(saomgr.getActiveObject(sao->getId()) != saoToCompare); + REQUIRE(saomgr.registerObject(std::move(sao_u))); + REQUIRE(saomgr.getActiveObject(sao->getId()) == sao); + REQUIRE(saomgr.getActiveObject(sao->getId()) != saoToCompare); saomgr.clear(); } -void TestServerActiveObjectMgr::testRemoveObject() -{ - server::ActiveObjectMgr saomgr; +SECTION("remove object") { + TestServerActiveObjectMgr saomgr; auto sao_u = std::make_unique(); auto sao = sao_u.get(); - UASSERT(saomgr.registerObject(std::move(sao_u))); + REQUIRE(saomgr.registerObject(std::move(sao_u))); u16 id = sao->getId(); - UASSERT(saomgr.getActiveObject(id) != nullptr) + REQUIRE(saomgr.getActiveObject(id) != nullptr); saomgr.removeObject(sao->getId()); - UASSERT(saomgr.getActiveObject(id) == nullptr); + REQUIRE(saomgr.getActiveObject(id) == nullptr); saomgr.clear(); } -void TestServerActiveObjectMgr::testGetObjectsInsideRadius() -{ +SECTION("get objects inside radius") { server::ActiveObjectMgr saomgr; static const v3f sao_pos[] = { v3f(10, 40, 10), @@ -122,15 +229,15 @@ void TestServerActiveObjectMgr::testGetObjectsInsideRadius() std::vector result; saomgr.getObjectsInsideRadius(v3f(), 50, result, nullptr); - UASSERTCMP(int, ==, result.size(), 1); + CHECK(result.size() == 1); result.clear(); saomgr.getObjectsInsideRadius(v3f(), 750, result, nullptr); - UASSERTCMP(int, ==, result.size(), 2); + CHECK(result.size() == 2); result.clear(); saomgr.getObjectsInsideRadius(v3f(), 750000, result, nullptr); - UASSERTCMP(int, ==, result.size(), 5); + CHECK(result.size() == 5); result.clear(); auto include_obj_cb = [](ServerActiveObject *obj) { @@ -138,13 +245,12 @@ void TestServerActiveObjectMgr::testGetObjectsInsideRadius() }; saomgr.getObjectsInsideRadius(v3f(), 750000, result, include_obj_cb); - UASSERTCMP(int, ==, result.size(), 4); + CHECK(result.size() == 4); saomgr.clear(); } -void TestServerActiveObjectMgr::testGetAddedActiveObjectsAroundPos() -{ +SECTION("get added active objects around pos") { server::ActiveObjectMgr saomgr; static const v3f sao_pos[] = { v3f(10, 40, 10), @@ -161,12 +267,64 @@ void TestServerActiveObjectMgr::testGetAddedActiveObjectsAroundPos() std::vector result; std::set cur_objects; saomgr.getAddedActiveObjectsAroundPos(v3f(), "singleplayer", 100, 50, cur_objects, result); - UASSERTCMP(int, ==, result.size(), 1); + CHECK(result.size() == 1); result.clear(); cur_objects.clear(); saomgr.getAddedActiveObjectsAroundPos(v3f(), "singleplayer", 740, 50, cur_objects, result); - UASSERTCMP(int, ==, result.size(), 2); + CHECK(result.size() == 2); saomgr.clear(); } + +SECTION("spatial index") { + TestServerActiveObjectMgr saomgr; + std::mt19937 gen(0xABCDEF); + std::uniform_int_distribution coordinate(-1000, 1000); + const auto random_pos = [&]() { + return v3f(coordinate(gen), coordinate(gen), coordinate(gen)); + }; + + std::uniform_int_distribution percent(0, 99); + const auto modify = [&](u32 p_insert, u32 p_delete, u32 p_update) { + const auto p = percent(gen); + if (p < p_insert) { + saomgr.registerObject(std::make_unique(nullptr, random_pos())); + } else if (p < p_insert + p_delete) { + if (!saomgr.empty()) + saomgr.removeObject(saomgr.randomId(gen)); + } else if (p < p_insert + p_delete + p_update) { + if (!saomgr.empty()) + saomgr.updateObjectPos(saomgr.randomId(gen), random_pos()); + } + }; + + const auto test_queries = [&]() { + std::uniform_real_distribution radius(0, 100); + saomgr.compareObjectsInsideRadius(random_pos(), radius(gen)); + + aabb3f box(random_pos(), random_pos()); + box.repair(); + saomgr.compareObjectsInArea(box); + }; + + // Grow: Insertion twice as likely as deletion + for (u32 i = 0; i < 3000; ++i) { + modify(50, 25, 25); + test_queries(); + } + + // Stagnate: Insertion and deletion equally likely + for (u32 i = 0; i < 3000; ++i) { + modify(25, 25, 50); + test_queries(); + } + + // Shrink: Deletion twice as likely as insertion + while (!saomgr.empty()) { + modify(25, 50, 25); + test_queries(); + } +} + +} diff --git a/src/unittest/test_servermodmanager.cpp b/src/unittest/test_servermodmanager.cpp index 500d0f288..5689658d9 100644 --- a/src/unittest/test_servermodmanager.cpp +++ b/src/unittest/test_servermodmanager.cpp @@ -20,6 +20,10 @@ public: std::string m_worlddir; + static ServerModManager makeManager(const std::string &worldpath) { + return ServerModManager(worldpath, findWorldSubgame(worldpath)); + } + void testCreation(); void testIsConsistent(); void testUnsatisfiedMods(); @@ -80,31 +84,31 @@ void TestServerModManager::testCreation() world_config.set("load_mod_test_mod", "true"); UASSERTEQ(bool, world_config.updateConfigFile(path.c_str()), true); - ServerModManager sm(m_worlddir); + auto sm = makeManager(m_worlddir); } void TestServerModManager::testGetModsWrongDir() { // Test in non worlddir to ensure no mods are found - ServerModManager sm(m_worlddir + DIR_DELIM + ".."); + auto sm = makeManager(m_worlddir + DIR_DELIM ".."); UASSERTEQ(bool, sm.getMods().empty(), true); } void TestServerModManager::testUnsatisfiedMods() { - ServerModManager sm(m_worlddir); + auto sm = makeManager(m_worlddir); UASSERTEQ(bool, sm.getUnsatisfiedMods().empty(), true); } void TestServerModManager::testIsConsistent() { - ServerModManager sm(m_worlddir); + auto sm = makeManager(m_worlddir); UASSERTEQ(bool, sm.isConsistent(), true); } void TestServerModManager::testGetMods() { - ServerModManager sm(m_worlddir); + auto sm = makeManager(m_worlddir); const auto &mods = sm.getMods(); // `ls ./games/devtest/mods | wc -l` + 1 (test mod) UASSERTEQ(std::size_t, mods.size(), 34 + 1); @@ -132,14 +136,14 @@ void TestServerModManager::testGetMods() void TestServerModManager::testGetModspec() { - ServerModManager sm(m_worlddir); + auto sm = makeManager(m_worlddir); UASSERTEQ(const ModSpec *, sm.getModSpec("wrongmod"), NULL); UASSERT(sm.getModSpec("basenodes") != NULL); } void TestServerModManager::testGetModNamesWrongDir() { - ServerModManager sm(m_worlddir + DIR_DELIM + ".."); + auto sm = makeManager(m_worlddir + DIR_DELIM ".."); std::vector result; sm.getModNames(result); UASSERTEQ(bool, result.empty(), true); @@ -147,7 +151,7 @@ void TestServerModManager::testGetModNamesWrongDir() void TestServerModManager::testGetModNames() { - ServerModManager sm(m_worlddir); + auto sm = makeManager(m_worlddir); std::vector result; sm.getModNames(result); UASSERTEQ(bool, result.empty(), false); @@ -156,7 +160,7 @@ void TestServerModManager::testGetModNames() void TestServerModManager::testGetModMediaPathsWrongDir() { - ServerModManager sm(m_worlddir + DIR_DELIM + ".."); + auto sm = makeManager(m_worlddir + DIR_DELIM ".."); std::vector result; sm.getModsMediaPaths(result); UASSERTEQ(bool, result.empty(), true); @@ -164,7 +168,7 @@ void TestServerModManager::testGetModMediaPathsWrongDir() void TestServerModManager::testGetModMediaPaths() { - ServerModManager sm(m_worlddir); + auto sm = makeManager(m_worlddir); std::vector result; sm.getModsMediaPaths(result); UASSERTEQ(bool, result.empty(), false); diff --git a/src/unittest/test_settings.cpp b/src/unittest/test_settings.cpp index 411ecb8de..f470fe219 100644 --- a/src/unittest/test_settings.cpp +++ b/src/unittest/test_settings.cpp @@ -42,14 +42,14 @@ const char *TestSettings::config_text_before = "floaty_thing = 1.1\n" "stringy_thing = asd /( ¤%&(/\" BLÖÄRP\n" "coord = (1, 2, 4.5)\n" - "coord_invalid = (1,2,3\n" - "coord_invalid_2 = 1, 2, 3 test\n" - "coord_invalid_3 = (test, something, stupid)\n" - "coord_invalid_4 = (1, test, 3)\n" - "coord_invalid_5 = ()\n" - "coord_invalid_6 = (1, 2)\n" - "coord_invalid_7 = (1)\n" - "coord_no_parenthesis = 1,2,3\n" + "coord_invalid = (1,2,3\n" + "coord_invalid_2 = 1, 2, 3 test\n" + "coord_invalid_3 = (test, something, stupid)\n" + "coord_invalid_4 = (1, test, 3)\n" + "coord_invalid_5 = ()\n" + "coord_invalid_6 = (1, 2)\n" + "coord_invalid_7 = (1)\n" + "coord_no_parenthesis = 1,2,3\n" " # this is just a comment\n" "this is an invalid line\n" "asdf = {\n" @@ -103,14 +103,14 @@ const char *TestSettings::config_text_after = "}\n" "zoop = true\n" "coord2 = (1,2,3.25)\n" - "coord_invalid = (1,2,3\n" - "coord_invalid_2 = 1, 2, 3 test\n" - "coord_invalid_3 = (test, something, stupid)\n" - "coord_invalid_4 = (1, test, 3)\n" - "coord_invalid_5 = ()\n" - "coord_invalid_6 = (1, 2)\n" - "coord_invalid_7 = (1)\n" - "coord_no_parenthesis = 1,2,3\n" + "coord_invalid = (1,2,3\n" + "coord_invalid_2 = 1, 2, 3 test\n" + "coord_invalid_3 = (test, something, stupid)\n" + "coord_invalid_4 = (1, test, 3)\n" + "coord_invalid_5 = ()\n" + "coord_invalid_6 = (1, 2)\n" + "coord_invalid_7 = (1)\n" + "coord_no_parenthesis = 1,2,3\n" "floaty_thing_2 = 1.25\n" "groupy_thing = {\n" " animals = cute\n" @@ -169,20 +169,20 @@ void TestSettings::testAllSettings() UASSERT(s.getV3F("coord2").value().Y == 2.0); UASSERT(s.getV3F("coord2").value().Z == 3.25); - std::optional testNotExist; - UASSERT(!s.getV3FNoEx("coord_not_exist", testNotExist)); - EXCEPTION_CHECK(SettingNotFoundException, s.getV3F("coord_not_exist")); + std::optional testNotExist; + UASSERT(!s.getV3FNoEx("coord_not_exist", testNotExist)); + EXCEPTION_CHECK(SettingNotFoundException, s.getV3F("coord_not_exist")); - UASSERT(!s.getV3F("coord_invalid").has_value()); - UASSERT(!s.getV3F("coord_invalid_2").has_value()); - UASSERT(!s.getV3F("coord_invalid_3").has_value()); - UASSERT(!s.getV3F("coord_invalid_4").has_value()); - UASSERT(!s.getV3F("coord_invalid_5").has_value()); - UASSERT(!s.getV3F("coord_invalid_6").has_value()); - UASSERT(!s.getV3F("coord_invalid_7").has_value()); + UASSERT(!s.getV3F("coord_invalid").has_value()); + UASSERT(!s.getV3F("coord_invalid_2").has_value()); + UASSERT(!s.getV3F("coord_invalid_3").has_value()); + UASSERT(!s.getV3F("coord_invalid_4").has_value()); + UASSERT(!s.getV3F("coord_invalid_5").has_value()); + UASSERT(!s.getV3F("coord_invalid_6").has_value()); + UASSERT(!s.getV3F("coord_invalid_7").has_value()); - std::optional testNoParenthesis = s.getV3F("coord_no_parenthesis"); - UASSERT(testNoParenthesis.value() == v3f(1, 2, 3)); + std::optional testNoParenthesis = s.getV3F("coord_no_parenthesis"); + UASSERT(testNoParenthesis.value() == v3f(1, 2, 3)); // Test settings groups Settings *group = s.getGroup("asdf"); diff --git a/src/unittest/test_threading.cpp b/src/unittest/test_threading.cpp index 0eb9bb7df..77842964b 100644 --- a/src/unittest/test_threading.cpp +++ b/src/unittest/test_threading.cpp @@ -204,10 +204,10 @@ private: which affected only 32-bit MinGW. It was caused by incorrect calling convention and fixed in GCC in 2020. - Occurrences in Minetest: - * (2020) - * (2022) - * (2023) + Occurrences in Luanti: + * (2020) + * (2022) + * (2023) */ void TestThreading::testTLS() { diff --git a/src/unittest/test_utilities.cpp b/src/unittest/test_utilities.cpp index b7d4965f9..1a810c06d 100644 --- a/src/unittest/test_utilities.cpp +++ b/src/unittest/test_utilities.cpp @@ -47,6 +47,7 @@ public: void testIsBlockInSight(); void testColorizeURL(); void testSanitizeUntrusted(); + void testReadSeed(); }; static TestUtilities g_test_instance; @@ -82,6 +83,7 @@ void TestUtilities::runTests(IGameDef *gamedef) TEST(testIsBlockInSight); TEST(testColorizeURL); TEST(testSanitizeUntrusted); + TEST(testReadSeed); } //////////////////////////////////////////////////////////////////////////////// @@ -656,8 +658,6 @@ C apply_all(const C &co, F functor) return ret; } -#define cast_v3(T, other) T((other).X, (other).Y, (other).Z) - void TestUtilities::testIsBlockInSight() { const std::vector testdata1 = { @@ -674,7 +674,7 @@ void TestUtilities::testIsBlockInSight() auto test1 = [] (const std::vector &data) { float range = BS * MAP_BLOCKSIZE * 4; float fov = 72 * core::DEGTORAD; - v3f cam_pos = cast_v3(v3f, data[0]), cam_dir = cast_v3(v3f, data[1]); + v3f cam_pos = v3f::from(data[0]), cam_dir = v3f::from(data[1]); UASSERT( isBlockInSight(data[2], cam_pos, cam_dir, fov, range)); UASSERT(!isBlockInSight(data[3], cam_pos, cam_dir, fov, range)); UASSERT(!isBlockInSight(data[4], cam_pos, cam_dir, fov, range)); @@ -755,3 +755,11 @@ void TestUtilities::testSanitizeUntrusted() UASSERTEQ(auto, sanitize_untrusted("\x1b(", keep), "("); } } + +void TestUtilities::testReadSeed() +{ + UASSERTEQ(int, read_seed("123"), 123); + UASSERTEQ(int, read_seed("0x123"), 0x123); + // hashing should produce some non-zero number + UASSERT(read_seed("hello") != 0); +} diff --git a/src/unittest/test_voxelmanipulator.cpp b/src/unittest/test_voxelmanipulator.cpp index abfb5a5ec..09d4b5781 100644 --- a/src/unittest/test_voxelmanipulator.cpp +++ b/src/unittest/test_voxelmanipulator.cpp @@ -52,13 +52,11 @@ void TestVoxelManipulator::testVoxelArea() UASSERT(aa.size() == results.size()); infostream<<"Result of diff:"<::const_iterator - it = aa.begin(); it != aa.end(); ++it) { + for (auto it = aa.begin(); it != aa.end(); ++it) { it->print(infostream); infostream << std::endl; - std::vector::iterator j; - j = std::find(results.begin(), results.end(), *it); + auto j = std::find(results.begin(), results.end(), *it); UASSERT(j != results.end()); results.erase(j); } diff --git a/src/util/CMakeLists.txt b/src/util/CMakeLists.txt index ec88a33c2..7d5ac48fb 100644 --- a/src/util/CMakeLists.txt +++ b/src/util/CMakeLists.txt @@ -18,4 +18,5 @@ set(util_SRCS ${CMAKE_CURRENT_SOURCE_DIR}/srp.cpp ${CMAKE_CURRENT_SOURCE_DIR}/timetaker.cpp ${CMAKE_CURRENT_SOURCE_DIR}/png.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/enum_string.cpp PARENT_SCOPE) diff --git a/src/util/areastore.cpp b/src/util/areastore.cpp index 8d5dfa7d4..67bf4113a 100644 --- a/src/util/areastore.cpp +++ b/src/util/areastore.cpp @@ -194,7 +194,7 @@ bool VectorAreaStore::removeArea(u32 id) if (it == areas_map.end()) return false; Area *a = &it->second; - for (std::vector::iterator v_it = m_areas.begin(); + for (auto v_it = m_areas.begin(); v_it != m_areas.end(); ++v_it) { if (*v_it == a) { m_areas.erase(v_it); @@ -259,7 +259,7 @@ bool SpatialAreaStore::insertArea(Area *a) bool SpatialAreaStore::removeArea(u32 id) { - std::map::iterator itr = areas_map.find(id); + auto itr = areas_map.find(id); if (itr != areas_map.end()) { Area *a = &itr->second; bool result = m_tree->deleteData(get_spatial_region(a->minedge, diff --git a/src/util/areastore.h b/src/util/areastore.h index 7f6c24815..c377c2ec9 100644 --- a/src/util/areastore.h +++ b/src/util/areastore.h @@ -162,7 +162,7 @@ private: { u32 id = in.getIdentifier(); - std::map::iterator itr = m_store->areas_map.find(id); + auto itr = m_store->areas_map.find(id); assert(itr != m_store->areas_map.end()); m_result->push_back(&itr->second); } diff --git a/src/util/base64.h b/src/util/base64.h index 3846d3a25..9cdf5ebc5 100644 --- a/src/util/base64.h +++ b/src/util/base64.h @@ -31,6 +31,6 @@ René Nyffenegger rene.nyffenegger@adp-gmbh.ch #include #include -bool base64_is_valid(std::string_view s); -std::string base64_encode(std::string_view s); -std::string base64_decode(std::string_view s); +[[nodiscard]] bool base64_is_valid(std::string_view s); +[[nodiscard]] std::string base64_encode(std::string_view s); +[[nodiscard]] std::string base64_decode(std::string_view s); diff --git a/src/util/colorize.h b/src/util/colorize.h index cb7ae7c30..924bf7a78 100644 --- a/src/util/colorize.h +++ b/src/util/colorize.h @@ -37,6 +37,6 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * * Throws an exception if the url is invalid. */ -std::string colorize_url(const std::string &url); +[[nodiscard]] std::string colorize_url(const std::string &url); #endif diff --git a/src/util/container.h b/src/util/container.h index 2ab573c19..50a57fc08 100644 --- a/src/util/container.h +++ b/src/util/container.h @@ -53,11 +53,16 @@ public: return m_queue.front(); } - u32 size() const + size_t size() const { return m_queue.size(); } + bool empty() const + { + return m_queue.empty(); + } + private: std::set m_set; std::queue m_queue; @@ -357,11 +362,10 @@ public: // This conditional block was converted from a ternary to ensure no // temporary values are created in evaluating the return expression, // which could cause a dangling reference. - if (it != m_values.end()) { + if (it != m_values.end()) return it->second; - } else { + else return null_value; - } } void put(const K &key, const V &value) { @@ -425,7 +429,7 @@ public: return !!take(key); } - // Warning: not constant-time! + /// @warning not constant-time! size_t size() const { if (m_iterating) { // This is by no means impossible to determine, it's just annoying @@ -441,7 +445,7 @@ public: return n; } - // Warning: not constant-time! + /// @warning not constant-time! bool empty() const { if (m_iterating) return false; // maybe diff --git a/src/util/enum_string.cpp b/src/util/enum_string.cpp new file mode 100644 index 000000000..5b35053d8 --- /dev/null +++ b/src/util/enum_string.cpp @@ -0,0 +1,31 @@ +// Luanti +// SPDX-License-Identifier: LGPL-2.1-or-later +// Copyright (C) 2025 cx384 + +#include "util/enum_string.h" +#include + +bool string_to_enum(const EnumString *spec, int &result, std::string_view str) +{ + const EnumString *esp = spec; + while (esp->str) { + if (str == esp->str) { + assert(esp->num >= 0); + result = esp->num; + return true; + } + esp++; + } + return false; +} + +const char *enum_to_string(const EnumString *spec, int num) +{ + if (num < 0) + return nullptr; + // assume array order matches enum order + auto *p = &spec[num]; + assert(p->num == num); + assert(p->str); + return p->str; +} diff --git a/src/util/enum_string.h b/src/util/enum_string.h new file mode 100644 index 000000000..08de0b7e2 --- /dev/null +++ b/src/util/enum_string.h @@ -0,0 +1,27 @@ +// Luanti +// SPDX-License-Identifier: LGPL-2.1-or-later +// Copyright (C) 2025 cx384 + +#pragma once + +#include +#include + +struct EnumString +{ + int num; + const char *str; +}; + +bool string_to_enum(const EnumString *spec, int &result, std::string_view str); + +template , bool> = true> +bool string_to_enum(const EnumString *spec, T &result, std::string_view str) +{ + int result_int = result; + bool ret = string_to_enum(spec, result_int, str); + result = static_cast(result_int); + return ret; +} + +[[nodiscard]] const char *enum_to_string(const EnumString *spec, int num); diff --git a/src/util/hashing.cpp b/src/util/hashing.cpp index 452cd6818..c1fed34f2 100644 --- a/src/util/hashing.cpp +++ b/src/util/hashing.cpp @@ -4,6 +4,8 @@ #include "hashing.h" +#define IN_HASHING_CPP + #include "debug.h" #include "config.h" #if USE_OPENSSL diff --git a/src/util/hex.h b/src/util/hex.h index 0d3ea6d0c..7a5d761a8 100644 --- a/src/util/hex.h +++ b/src/util/hex.h @@ -9,27 +9,24 @@ static const char hex_chars[] = "0123456789abcdef"; -static inline std::string hex_encode(const char *data, unsigned int data_size) +[[nodiscard]] +static inline std::string hex_encode(std::string_view data) { std::string ret; - ret.reserve(data_size * 2); - - char buf2[3]; - buf2[2] = '\0'; - - for (unsigned int i = 0; i < data_size; i++) { - unsigned char c = (unsigned char)data[i]; - buf2[0] = hex_chars[(c & 0xf0) >> 4]; - buf2[1] = hex_chars[c & 0x0f]; - ret.append(buf2); + ret.reserve(data.size() * 2); + for (unsigned char c : data) { + ret.push_back(hex_chars[(c & 0xf0) >> 4]); + ret.push_back(hex_chars[c & 0x0f]); } - return ret; } -static inline std::string hex_encode(std::string_view data) +[[nodiscard]] +static inline std::string hex_encode(const char *data, size_t data_size) { - return hex_encode(data.data(), data.size()); + if (!data_size) + return ""; + return hex_encode(std::string_view(data, data_size)); } static inline bool hex_digit_decode(char hexdigit, unsigned char &value) diff --git a/src/util/ieee_float.h b/src/util/ieee_float.h index f3f6de442..316d0589e 100644 --- a/src/util/ieee_float.h +++ b/src/util/ieee_float.h @@ -13,7 +13,7 @@ enum FloatType FLOATTYPE_SYSTEM }; -f32 u32Tof32Slow(u32 i); -u32 f32Tou32Slow(f32 f); +[[nodiscard]] f32 u32Tof32Slow(u32 i); +[[nodiscard]] u32 f32Tou32Slow(f32 f); FloatType getFloatSerializationType(); diff --git a/src/util/k_d_tree.h b/src/util/k_d_tree.h new file mode 100644 index 000000000..f8e266a36 --- /dev/null +++ b/src/util/k_d_tree.h @@ -0,0 +1,515 @@ +// Copyright (C) 2024 Lars Müller +// SPDX-License-Identifier: LGPL-2.1-or-later + +#pragma once + +#include +#include +#include +#include +#include +#include + +/* +This implements a dynamic forest of static k-d-trees. + +A k-d-tree is a k-dimensional binary search tree. +On the i-th level of the tree, you split by the (i mod k)-th coordinate. + +Building a balanced k-d-tree for n points is done in O(n log n) time: +Points are stored in a matrix, identified by indices. +These indices are presorted by all k axes. +To split, you simply pick the pivot index in the appropriate index array, +and mark all points left to it by index in a bitset. +This lets you then split the indices sorted by the other axes, +while preserving the sorted order. + +This however only gives us a static spatial index. +To make it dynamic, we keep a "forest" of k-d-trees of sizes of successive powers of two. +When we insert a new tree, we check whether there already is a k-d-tree of the same size. +If this is the case, we merge with that tree, giving us a tree of twice the size, +and so on, until we find a free size. + +This means our "forest" corresponds to a bit pattern, +where a set bit means a non-empty tree. +Inserting a point is equivalent to incrementing this bit pattern. + +To handle deletions, we simply mark the appropriate point as deleted using another bitset. +When more than half the points have been deleted, +we shrink the structure by removing all deleted points. +This is equivalent to shifting down the "bit pattern" by one. + +There are plenty variations that could be explored: + +* Keeping a small amount of points in a small pool to make updates faster - + avoid building and querying small k-d-trees. + This might be useful if the overhead for small sizes hurts performance. +* Keeping fewer trees to make queries faster, at the expense of updates. +* More eagerly removing entries marked as deleted (for example, on merge). +* Replacing the array-backed structure with a structure of dynamically allocated nodes. + This would make it possible to "let trees get out of shape". +* Shrinking the structure currently sorts the live points by all axes, + not leveraging the existing presorting of the subsets. + Cleverly done filtering followed by sorted merges should enable linear time. +* A special ray proximity query could be implemented. This is tricky however. +*/ + +namespace k_d_tree +{ + +using Idx = uint16_t; + +// We use size_t for sizes (but not for indices) +// to make sure there are no wraparounds when we approach the limit. +// This hardly affects performance or memory usage; +// the core arrays still only store indices. + +template +class Points +{ +public: + using Point = std::array; + //! Empty + Points() : n(0), coords(nullptr) {} + //! Allocating constructor; leaves coords uninitialized! + Points(size_t n) : n(n), coords(new Component[Dim * n]) {} + //! Copying constructor + Points(size_t n, const std::array &coords) + : Points(n) + { + for (uint8_t d = 0; d < Dim; ++d) + std::copy(coords[d], coords[d] + n, begin(d)); + } + + size_t size() const { return n; } + + void assign(Idx start, const Points &from) + { + for (uint8_t d = 0; d < Dim; ++d) + std::copy(from.begin(d), from.end(d), begin(d) + start); + } + + Point getPoint(Idx i) const + { + Point point; + for (uint8_t d = 0; d < Dim; ++d) + point[d] = begin(d)[i]; + return point; + } + + void setPoint(Idx i, const Point &point) + { + for (uint8_t d = 0; d < Dim; ++d) + begin(d)[i] = point[d]; + } + + Component *begin(uint8_t d) { return coords.get() + d * n; } + Component *end(uint8_t d) { return begin(d) + n; } + const Component *begin(uint8_t d) const { return coords.get() + d * n; } + const Component *end(uint8_t d) const { return begin(d) + n; } + +private: + size_t n; + std::unique_ptr coords; +}; + +template +class SortedIndices +{ +public: + //! empty + SortedIndices() : indices() {} + + //! uninitialized indices + static SortedIndices newUninitialized(size_t n) + { + return SortedIndices(Points(n)); + } + + //! Identity permutation on all axes + SortedIndices(size_t n) + : indices(n) + { + for (uint8_t d = 0; d < Dim; ++d) { + for (Idx i = 0; i < n; ++i) { + indices.begin(d)[i] = i; + } + } + } + + size_t size() const { return indices.size(); } + bool empty() const { return size() == 0; } + + struct SplitResult { + SortedIndices left, right; + Idx pivot; + }; + + //! Splits the sorted indices in the middle along the specified axis, + //! partitioning them into left (<=), the pivot, and right (>=). + SplitResult split(uint8_t axis, std::vector &markers) const + { + const auto begin = indices.begin(axis); + Idx left_n = indices.size() / 2; + const auto mid = begin + left_n; + + // Mark all points to be partitioned left + for (auto it = begin; it != mid; ++it) + markers[*it] = true; + + SortedIndices left(left_n); + std::copy(begin, mid, left.indices.begin(axis)); + SortedIndices right(indices.size() - left_n - 1); + std::copy(mid + 1, indices.end(axis), right.indices.begin(axis)); + + for (uint8_t d = 0; d < Dim; ++d) { + if (d == axis) + continue; + auto left_ptr = left.indices.begin(d); + auto right_ptr = right.indices.begin(d); + for (auto it = indices.begin(d); it != indices.end(d); ++it) { + if (*it != *mid) { // ignore pivot + if (markers[*it]) + *(left_ptr++) = *it; + else + *(right_ptr++) = *it; + } + } + } + + // Unmark points, since we want to reuse the storage for markers + for (auto it = begin; it != mid; ++it) + markers[*it] = false; + + return SplitResult{std::move(left), std::move(right), *mid}; + } + + Idx *begin(uint8_t d) { return indices.begin(d); } + Idx *end(uint8_t d) { return indices.end(d); } + const Idx *begin(uint8_t d) const { return indices.begin(d); } + const Idx *end(uint8_t d) const { return indices.end(d); } +private: + SortedIndices(Points &&indices) : indices(std::move(indices)) {} + Points indices; +}; + +template +class SortedPoints +{ +public: + SortedPoints() : points(), indices() {} + + //! Single point + SortedPoints(const std::array &point) + : points(1), indices(1) + { + points.setPoint(0, point); + } + + //! Sort points + SortedPoints(size_t n, const std::array ptrs) + : points(n, ptrs), indices(n) + { + for (uint8_t d = 0; d < Dim; ++d) { + const auto coord = points.begin(d); + std::sort(indices.begin(d), indices.end(d), [&](auto i, auto j) { + return coord[i] < coord[j]; + }); + } + } + + //! Merge two sets of sorted points + SortedPoints(const SortedPoints &a, const SortedPoints &b) + : points(a.size() + b.size()) + { + const auto n = points.size(); + indices = SortedIndices::newUninitialized(n); + for (uint8_t d = 0; d < Dim; ++d) { + points.assign(0, a.points); + points.assign(a.points.size(), b.points); + const auto coord = points.begin(d); + auto a_ptr = a.indices.begin(d); + auto b_ptr = b.indices.begin(d); + auto dst_ptr = indices.begin(d); + while (a_ptr != a.indices.end(d) && b_ptr != b.indices.end(d)) { + const auto i = *a_ptr; + const auto j = *b_ptr + a.size(); + if (coord[i] <= coord[j]) { + *(dst_ptr++) = i; + ++a_ptr; + } else { + *(dst_ptr++) = j; + ++b_ptr; + } + } + while (a_ptr != a.indices.end(d)) + *(dst_ptr++) = *(a_ptr++); + while (b_ptr != b.indices.end(d)) + *(dst_ptr++) = a.size() + *(b_ptr++); + } + } + + size_t size() const + { + // technically redundant with indices.size(), + // but that is irrelevant + return points.size(); + } + + Points points; + SortedIndices indices; +}; + +template +class KdTree +{ +public: + using Point = std::array; + + //! Empty tree + KdTree() + : items() + , ids(nullptr) + , tree(nullptr) + , deleted() + {} + + //! Build a tree containing just a single point + KdTree(const Point &point, const Id &id) + : items(point) + , ids(std::make_unique(1)) + , tree(std::make_unique(1)) + , deleted(1) + { + tree[0] = 0; + ids[0] = id; + } + + //! Build a tree + KdTree(size_t n, Id const *ids, std::array pts) + : items(n, pts) + , ids(std::make_unique(n)) + , tree(std::make_unique(n)) + , deleted(n) + { + std::copy(ids, ids + n, this->ids.get()); + init(0, 0, items.indices); + } + + //! Merge two trees. Both trees are assumed to have a power of two size. + KdTree(const KdTree &a, const KdTree &b) + : items(a.items, b.items) + { + tree = std::make_unique(cap()); + ids = std::make_unique(cap()); + std::copy(a.ids.get(), a.ids.get() + a.cap(), ids.get()); + std::copy(b.ids.get(), b.ids.get() + b.cap(), ids.get() + a.cap()); + // Note: Initialize `deleted` *before* calling `init`, + // since `init` abuses the `deleted` marks as left/right marks. + deleted = std::vector(cap()); + init(0, 0, items.indices); + std::copy(a.deleted.begin(), a.deleted.end(), deleted.begin()); + std::copy(b.deleted.begin(), b.deleted.end(), deleted.begin() + a.items.size()); + } + + template + void rangeQuery(const Point &min, const Point &max, + const F &cb) const + { + rangeQuery(0, 0, min, max, cb); + } + + void remove(Idx internalIdx) + { + assert(!deleted[internalIdx]); + deleted[internalIdx] = true; + } + + template + void foreach(F cb) const + { + for (Idx i = 0; i < cap(); ++i) { + if (!deleted[i]) { + cb(i, items.points.getPoint(i), ids[i]); + } + } + } + + //! Capacity, not size, since some items may be marked as deleted + size_t cap() const { return items.size(); } + +private: + void init(Idx root, uint8_t axis, const SortedIndices &sorted) + { + // Temporarily abuse "deleted" marks as left/right marks + const auto split = sorted.split(axis, deleted); + tree[root] = split.pivot; + const auto next_axis = (axis + 1) % Dim; + if (!split.left.empty()) + init(2 * root + 1, next_axis, split.left); + if (!split.right.empty()) + init(2 * root + 2, next_axis, split.right); + } + + template + // Note: root is of type size_t to avoid issues with wraparound + void rangeQuery(size_t root, uint8_t split, + const Point &min, const Point &max, + const F &cb) const + { + if (root >= cap()) + return; + const auto ptid = tree[root]; + const auto coord = items.points.begin(split)[ptid]; + const auto leftChild = 2*root + 1; + const auto rightChild = 2*root + 2; + const auto nextSplit = (split + 1) % Dim; + if (min[split] > coord) { + rangeQuery(rightChild, nextSplit, min, max, cb); + } else if (max[split] < coord) { + rangeQuery(leftChild, nextSplit, min, max, cb); + } else { + rangeQuery(rightChild, nextSplit, min, max, cb); + rangeQuery(leftChild, nextSplit, min, max, cb); + if (deleted[ptid]) + return; + const auto point = items.points.getPoint(ptid); + for (uint8_t d = 0; d < Dim; ++d) + if (point[d] < min[d] || point[d] > max[d]) + return; + cb(point, ids[ptid]); + } + } + SortedPoints items; + std::unique_ptr ids; + std::unique_ptr tree; + std::vector deleted; +}; + +template +class DynamicKdTrees +{ + using Tree = KdTree; + +public: + using Point = typename Tree::Point; + + void insert(const std::array &point, Id id) + { + Tree tree(point, id); + for (uint8_t tree_idx = 0;; ++tree_idx) { + if (tree_idx == trees.size()) { + trees.push_back(std::move(tree)); + updateDelEntries(tree_idx); + break; + } + // Can we use a free slot to "plant" the tree? + if (trees[tree_idx].cap() == 0) { + trees[tree_idx] = std::move(tree); + updateDelEntries(tree_idx); + break; + } + tree = Tree(tree, trees[tree_idx]); + trees[tree_idx] = std::move(Tree()); + } + ++n_entries; + } + + void remove(Id id) + { + const auto it = del_entries.find(id); + assert(it != del_entries.end()); + trees.at(it->second.tree_idx).remove(it->second.in_tree); + del_entries.erase(it); + ++deleted; + if (deleted >= (n_entries+1)/2) // "shift out" the last tree + shrink_to_half(); + } + + void update(const Point &newPos, Id id) + { + remove(id); + insert(newPos, id); + } + + template + void rangeQuery(const Point &min, const Point &max, + const F &cb) const + { + for (const auto &tree : trees) + tree.rangeQuery(min, max, cb); + } + + size_t size() const + { + return n_entries - deleted; + } + +private: + + void updateDelEntries(uint8_t tree_idx) + { + trees[tree_idx].foreach([&](Idx in_tree_idx, auto _, Id id) { + del_entries[id] = {tree_idx, in_tree_idx}; + }); + } + + // Shrink to half the size, equivalent to shifting down the "bit pattern". + void shrink_to_half() + { + assert(n_entries >= deleted); + assert(n_entries - deleted == (n_entries >> 1)); + n_entries -= deleted; + deleted = 0; + // Reset map, freeing memory (instead of clearing) + del_entries = std::unordered_map(); + + // Collect all live points and corresponding IDs. + const auto live_ids = std::make_unique(n_entries); + Points live_points(n_entries); + size_t i = 0; + for (const auto &tree : trees) { + tree.foreach([&](Idx _, auto point, Id id) { + assert(i < n_entries); + live_points.setPoint(static_cast(i), point); + live_ids[i] = id; + ++i; + }); + } + assert(i == n_entries); + + // Construct a new forest. + // The "tree pattern" will effectively just be shifted down by one. + auto id_ptr = live_ids.get(); + std::array point_ptrs; + size_t n = 1; + for (uint8_t d = 0; d < Dim; ++d) + point_ptrs[d] = live_points.begin(d); + for (uint8_t tree_idx = 0; tree_idx < trees.size() - 1; ++tree_idx, n *= 2) { + Tree tree; + // If there was a tree at the next position, there should be + // a tree at this position after shifting the pattern. + if (trees[tree_idx+1].cap() > 0) { + tree = std::move(Tree(n, id_ptr, point_ptrs)); + id_ptr += n; + for (uint8_t d = 0; d < Dim; ++d) + point_ptrs[d] += n; + } + trees[tree_idx] = std::move(tree); + updateDelEntries(tree_idx); + } + trees.pop_back(); // "shift out" tree with the most elements + } + // This could even use an array instead of a vector, + // since the number of trees is guaranteed to be logarithmic in the max of Idx + std::vector trees; + struct DelEntry { + uint8_t tree_idx; + Idx in_tree; + }; + std::unordered_map del_entries; + size_t n_entries = 0; + size_t deleted = 0; +}; + +} // end namespace k_d_tree \ No newline at end of file diff --git a/src/util/numeric.cpp b/src/util/numeric.cpp index 2ed351fbf..59dd0a204 100644 --- a/src/util/numeric.cpp +++ b/src/util/numeric.cpp @@ -6,8 +6,7 @@ #include "log.h" #include "constants.h" // BS, MAP_BLOCKSIZE -#include "noise.h" // PseudoRandom, PcgRandom -#include "threading/mutex_auto_lock.h" +#include "noise.h" // PcgRandom #include #include @@ -21,7 +20,7 @@ u32 myrand() return g_pcgrand.next(); } -void mysrand(unsigned int seed) +void mysrand(u64 seed) { g_pcgrand.seed(seed); } @@ -48,10 +47,7 @@ float myrand_range(float min, float max) } -/* - 64-bit unaligned version of MurmurHash -*/ -u64 murmur_hash_64_ua(const void *key, int len, unsigned int seed) +u64 murmur_hash_64_ua(const void *key, size_t len, unsigned int seed) { const u64 m = 0xc6a4a7935bd1e995ULL; const int r = 47; @@ -73,15 +69,14 @@ u64 murmur_hash_64_ua(const void *key, int len, unsigned int seed) h *= m; } - const unsigned char *data2 = (const unsigned char *)data; switch (len & 7) { - case 7: h ^= (u64)data2[6] << 48; [[fallthrough]]; - case 6: h ^= (u64)data2[5] << 40; [[fallthrough]]; - case 5: h ^= (u64)data2[4] << 32; [[fallthrough]]; - case 4: h ^= (u64)data2[3] << 24; [[fallthrough]]; - case 3: h ^= (u64)data2[2] << 16; [[fallthrough]]; - case 2: h ^= (u64)data2[1] << 8; [[fallthrough]]; - case 1: h ^= (u64)data2[0]; + case 7: h ^= (u64)data[6] << 48; [[fallthrough]]; + case 6: h ^= (u64)data[5] << 40; [[fallthrough]]; + case 5: h ^= (u64)data[4] << 32; [[fallthrough]]; + case 4: h ^= (u64)data[3] << 24; [[fallthrough]]; + case 3: h ^= (u64)data[2] << 16; [[fallthrough]]; + case 2: h ^= (u64)data[1] << 8; [[fallthrough]]; + case 1: h ^= (u64)data[0]; h *= m; } @@ -92,24 +87,14 @@ u64 murmur_hash_64_ua(const void *key, int len, unsigned int seed) return h; } -/* - blockpos_b: position of block in block coordinates - camera_pos: position of camera in nodes - camera_dir: an unit vector pointing to camera direction - range: viewing range - distance_ptr: return location for distance from the camera -*/ + bool isBlockInSight(v3s16 blockpos_b, v3f camera_pos, v3f camera_dir, f32 camera_fov, f32 range, f32 *distance_ptr) { v3s16 blockpos_nodes = blockpos_b * MAP_BLOCKSIZE; // Block center position - v3f blockpos( - ((float)blockpos_nodes.X + MAP_BLOCKSIZE/2) * BS, - ((float)blockpos_nodes.Y + MAP_BLOCKSIZE/2) * BS, - ((float)blockpos_nodes.Z + MAP_BLOCKSIZE/2) * BS - ); + v3f blockpos = v3f::from(blockpos_nodes + MAP_BLOCKSIZE / 2) * BS; // Block position relative to camera v3f blockpos_relative = blockpos - camera_pos; @@ -155,6 +140,7 @@ bool isBlockInSight(v3s16 blockpos_b, v3f camera_pos, v3f camera_dir, return true; } + inline float adjustDist(float dist, float zoom_fov) { // 1.775 ~= 72 * PI / 180 * 1.4, the default FOV on the client. diff --git a/src/util/numeric.h b/src/util/numeric.h index 6062f0717..b79ef2aef 100644 --- a/src/util/numeric.h +++ b/src/util/numeric.h @@ -15,14 +15,17 @@ #include #include -#define rangelim(d, min, max) ((d) < (min) ? (min) : ((d) > (max) ? (max) : (d))) -#define myfloor(x) ((x) < 0.0 ? (int)(x) - 1 : (int)(x)) -// The naive swap performs better than the xor version -#define SWAP(t, x, y) do { \ - t temp = x; \ - x = y; \ - y = temp; \ -} while (0) +// Like std::clamp but allows mismatched types +template +[[nodiscard]] +inline constexpr T rangelim(const T &d, const T2 &min, const T3 &max) +{ + if (d < (T)min) + return (T)min; + if (d > (T)max) + return (T)max; + return d; +} // Maximum radius of a block. The magic number is // sqrt(3.0) / 2.0 in literal form. @@ -86,7 +89,6 @@ inline void getContainerPosWithOffset(const v3s16 &p, s16 d, v3s16 &container, v getContainerPosWithOffset(p.Z, d, container.Z, offset.Z); } - inline bool isInArea(v3s16 p, s16 d) { return ( @@ -113,23 +115,29 @@ inline bool isInArea(v3s16 p, v3s16 d) ); } -inline void sortBoxVerticies(v3s16 &p1, v3s16 &p2) { +template +inline void sortBoxVerticies(core::vector3d &p1, core::vector3d &p2) +{ if (p1.X > p2.X) - SWAP(s16, p1.X, p2.X); + std::swap(p1.X, p2.X); if (p1.Y > p2.Y) - SWAP(s16, p1.Y, p2.Y); + std::swap(p1.Y, p2.Y); if (p1.Z > p2.Z) - SWAP(s16, p1.Z, p2.Z); + std::swap(p1.Z, p2.Z); } -inline v3s16 componentwise_min(const v3s16 &a, const v3s16 &b) +template +inline constexpr core::vector3d componentwise_min(const core::vector3d &a, + const core::vector3d &b) { - return v3s16(MYMIN(a.X, b.X), MYMIN(a.Y, b.Y), MYMIN(a.Z, b.Z)); + return {std::min(a.X, b.X), std::min(a.Y, b.Y), std::min(a.Z, b.Z)}; } -inline v3s16 componentwise_max(const v3s16 &a, const v3s16 &b) +template +inline constexpr core::vector3d componentwise_max(const core::vector3d &a, + const core::vector3d &b) { - return v3s16(MYMAX(a.X, b.X), MYMAX(a.Y, b.Y), MYMAX(a.Z, b.Z)); + return {std::max(a.X, b.X), std::max(a.Y, b.Y), std::max(a.Z, b.Z)}; } /// @brief Describes a grid with given step, oirginating at (0,0,0) @@ -185,6 +193,7 @@ struct MeshGrid { * \note This is also used in cases where degrees wrapped to the range [0, 360] * is innapropriate (e.g. pitch needs negative values) */ +[[nodiscard]] inline float modulo360f(float f) { return fmodf(f, 360.0f); @@ -193,6 +202,7 @@ inline float modulo360f(float f) /** Returns \p f wrapped to the range [0, 360] */ +[[nodiscard]] inline float wrapDegrees_0_360(float f) { float value = modulo360f(f); @@ -202,6 +212,7 @@ inline float wrapDegrees_0_360(float f) /** Returns \p v3f wrapped to the range [0, 360] */ +[[nodiscard]] inline v3f wrapDegrees_0_360_v3f(v3f v) { v3f value_v3f; @@ -219,6 +230,7 @@ inline v3f wrapDegrees_0_360_v3f(v3f v) /** Returns \p f wrapped to the range [-180, 180] */ +[[nodiscard]] inline float wrapDegrees_180(float f) { float value = modulo360f(f + 180); @@ -232,7 +244,7 @@ inline float wrapDegrees_180(float f) */ #define MYRAND_RANGE 0xffffffff u32 myrand(); -void mysrand(unsigned int seed); +void mysrand(u64 seed); void myrand_bytes(void *out, size_t len); int myrand_range(int min, int max); float myrand_range(float min, float max); @@ -274,10 +286,25 @@ inline u32 calc_parity(u32 v) return (0x6996 >> v) & 1; } -u64 murmur_hash_64_ua(const void *key, int len, unsigned int seed); +/** + * Calculate MurmurHash64A hash for an arbitrary block of data. + * @param key data to hash (does not need to be aligned) + * @param len length in bytes + * @param seed initial seed value + * @return hash value + */ +[[nodiscard]] +u64 murmur_hash_64_ua(const void *key, size_t len, unsigned int seed); +/** + * @param blockpos_b position of block in block coordinates + * @param camera_pos position of camera in nodes + * @param camera_dir an unit vector pointing to camera direction + * @param range viewing range + * @param distance_ptr return location for distance from the camera + */ bool isBlockInSight(v3s16 blockpos_b, v3f camera_pos, v3f camera_dir, - f32 camera_fov, f32 range, f32 *distance_ptr=NULL); + f32 camera_fov, f32 range, f32 *distance_ptr=nullptr); s16 adjustDist(s16 dist, float zoom_fov); @@ -285,12 +312,15 @@ s16 adjustDist(s16 dist, float zoom_fov); Returns nearest 32-bit integer for given floating point number. and in VC++ don't provide round(). */ +[[nodiscard]] inline s32 myround(f32 f) { return (s32)(f < 0.f ? (f - 0.5f) : (f + 0.5f)); } -inline constexpr f32 sqr(f32 f) +template +[[nodiscard]] +inline constexpr T sqr(T f) { return f * f; } @@ -298,6 +328,7 @@ inline constexpr f32 sqr(f32 f) /* Returns integer position of node in given floating point position */ +[[nodiscard]] inline v3s16 floatToInt(v3f p, f32 d) { return v3s16( @@ -309,6 +340,7 @@ inline v3s16 floatToInt(v3f p, f32 d) /* Returns integer position of node in given double precision position */ +[[nodiscard]] inline v3s16 doubleToInt(v3d p, double d) { return v3s16( @@ -320,25 +352,19 @@ inline v3s16 doubleToInt(v3d p, double d) /* Returns floating point position of node in given integer position */ +[[nodiscard]] inline v3f intToFloat(v3s16 p, f32 d) { - return v3f( - (f32)p.X * d, - (f32)p.Y * d, - (f32)p.Z * d - ); + return v3f::from(p) * d; } -// Random helper. Usually d=BS +// Returns box of a node as in-world box. Usually d=BS +[[nodiscard]] inline aabb3f getNodeBox(v3s16 p, float d) { return aabb3f( - (float)p.X * d - 0.5f * d, - (float)p.Y * d - 0.5f * d, - (float)p.Z * d - 0.5f * d, - (float)p.X * d + 0.5f * d, - (float)p.Y * d + 0.5f * d, - (float)p.Z * d + 0.5f * d + v3f::from(p) * d - 0.5f * d, + v3f::from(p) * d + 0.5f * d ); } @@ -353,6 +379,7 @@ public: @param wanted_interval interval wanted @return true if action should be done */ + [[nodiscard]] bool step(float dtime, float wanted_interval) { m_accumulator += dtime; @@ -403,21 +430,15 @@ inline void paging(u32 length, u32 page, u32 pagecount, u32 &minindex, u32 &maxi } } -inline float cycle_shift(float value, float by = 0, float max = 1) -{ - if (value + by < 0) return value + by + max; - if (value + by > max) return value + by - max; - return value + by; -} - -inline bool is_power_of_two(u32 n) +constexpr inline bool is_power_of_two(u32 n) { return n != 0 && (n & (n - 1)) == 0; } // Compute next-higher power of 2 efficiently, e.g. for power-of-2 texture sizes. // Public Domain: https://graphics.stanford.edu/~seander/bithacks.html#RoundUpPowerOf2 -inline u32 npot2(u32 orig) { +constexpr inline u32 npot2(u32 orig) +{ orig--; orig |= orig >> 1; orig |= orig >> 2; @@ -472,31 +493,42 @@ inline v3f getPitchYawRoll(const core::matrix4 &m) } // Muliply the RGB value of a color linearly, and clamp to black/white -inline irr::video::SColor multiplyColorValue(const irr::video::SColor &color, float mod) +inline video::SColor multiplyColorValue(const video::SColor &color, float mod) { - return irr::video::SColor(color.getAlpha(), + return video::SColor(color.getAlpha(), core::clamp(color.getRed() * mod, 0, 255), core::clamp(color.getGreen() * mod, 0, 255), core::clamp(color.getBlue() * mod, 0, 255)); } -template inline T numericAbsolute(T v) { return v < 0 ? T(-v) : v; } -template inline T numericSign(T v) { return T(v < 0 ? -1 : (v == 0 ? 0 : 1)); } - -inline v3f vecAbsolute(v3f v) +template +constexpr inline T numericAbsolute(T v) { - return v3f( + return v < 0 ? T(-v) : v; +} + +template +constexpr inline T numericSign(T v) +{ + return T(v < 0 ? -1 : (v == 0 ? 0 : 1)); +} + +template +inline constexpr core::vector3d vecAbsolute(const core::vector3d &v) +{ + return { numericAbsolute(v.X), numericAbsolute(v.Y), numericAbsolute(v.Z) - ); + }; } -inline v3f vecSign(v3f v) +template +inline constexpr core::vector3d vecSign(const core::vector3d &v) { - return v3f( + return { numericSign(v.X), numericSign(v.Y), numericSign(v.Z) - ); + }; } diff --git a/src/util/pointer.h b/src/util/pointer.h index 306ef55f9..e260b4a5c 100644 --- a/src/util/pointer.h +++ b/src/util/pointer.h @@ -5,25 +5,11 @@ #pragma once #include "irrlichttypes.h" -#include "debug.h" // For assert() +#include "util/basic_macros.h" +#include #include -#include // std::shared_ptr #include - -template class ConstSharedPtr { -public: - ConstSharedPtr(T *ptr) : ptr(ptr) {} - ConstSharedPtr(const std::shared_ptr &ptr) : ptr(ptr) {} - - const T* get() const noexcept { return ptr.get(); } - const T& operator*() const noexcept { return *ptr.get(); } - const T* operator->() const noexcept { return ptr.get(); } - -private: - std::shared_ptr ptr; -}; - template class Buffer { @@ -33,13 +19,14 @@ public: m_size = 0; data = nullptr; } - Buffer(unsigned int size) + Buffer(size_t size) { m_size = size; - if(size != 0) + if (size != 0) { data = new T[size]; - else + } else { data = nullptr; + } } // Disable class copy @@ -49,26 +36,24 @@ public: Buffer(Buffer &&buffer) { m_size = buffer.m_size; - if(m_size != 0) - { + if (m_size != 0) { data = buffer.data; buffer.data = nullptr; buffer.m_size = 0; - } - else + } else { data = nullptr; + } } // Copies whole buffer - Buffer(const T *t, unsigned int size) + Buffer(const T *t, size_t size) { m_size = size; - if(size != 0) - { + if (size != 0) { data = new T[size]; - memcpy(data, t, size); - } - else + memcpy(data, t, sizeof(T) * size); + } else { data = nullptr; + } } ~Buffer() @@ -78,18 +63,17 @@ public: Buffer& operator=(Buffer &&buffer) { - if(this == &buffer) + if (this == &buffer) return *this; drop(); m_size = buffer.m_size; - if(m_size != 0) - { + if (m_size != 0) { data = buffer.data; buffer.data = nullptr; buffer.m_size = 0; - } - else + } else { data = nullptr; + } return *this; } @@ -99,13 +83,13 @@ public: buffer.m_size = m_size; if (m_size != 0) { buffer.data = new T[m_size]; - memcpy(buffer.data, data, m_size); + memcpy(buffer.data, data, sizeof(T) * m_size); } else { buffer.data = nullptr; } } - T & operator[](unsigned int i) const + T & operator[](size_t i) const { return data[i]; } @@ -114,15 +98,16 @@ public: return data; } - unsigned int getSize() const + size_t getSize() const { return m_size; } operator std::string_view() const { - if (!data) + if (!data) { return std::string_view(); + } return std::string_view(reinterpret_cast(data), m_size); } @@ -132,7 +117,7 @@ private: delete[] data; } T *data; - unsigned int m_size; + size_t m_size; }; /************************************************ @@ -149,21 +134,25 @@ public: SharedBuffer() { m_size = 0; - data = NULL; - refcount = new unsigned int; + data = nullptr; + refcount = new u32; (*refcount) = 1; } - SharedBuffer(unsigned int size) + + SharedBuffer(size_t size) { m_size = size; - if(m_size != 0) + if (m_size != 0) { data = new T[m_size]; - else + } else { data = nullptr; - refcount = new unsigned int; - memset(data,0,sizeof(T)*m_size); + } + + refcount = new u32; + memset(data, 0, sizeof(T) * m_size); (*refcount) = 1; } + SharedBuffer(const SharedBuffer &buffer) { m_size = buffer.m_size; @@ -171,9 +160,10 @@ public: refcount = buffer.refcount; (*refcount)++; } - SharedBuffer & operator=(const SharedBuffer & buffer) + + SharedBuffer & operator=(const SharedBuffer &buffer) { - if(this == &buffer) + if (this == &buffer) return *this; drop(); m_size = buffer.m_size; @@ -182,72 +172,66 @@ public: (*refcount)++; return *this; } - /* - Copies whole buffer - */ - SharedBuffer(const T *t, unsigned int size) + + //! Copies whole buffer + SharedBuffer(const T *t, size_t size) { m_size = size; - if(m_size != 0) - { - data = new T[m_size]; - memcpy(data, t, m_size); - } - else - data = nullptr; - refcount = new unsigned int; - (*refcount) = 1; - } - /* - Copies whole buffer - */ - SharedBuffer(const Buffer &buffer) - { - m_size = buffer.getSize(); if (m_size != 0) { - data = new T[m_size]; - memcpy(data, *buffer, buffer.getSize()); - } - else + data = new T[m_size]; + memcpy(data, t, sizeof(T) * m_size); + } else { data = nullptr; - refcount = new unsigned int; + } + refcount = new u32; (*refcount) = 1; } + + //! Copies whole buffer + SharedBuffer(const Buffer &buffer) : SharedBuffer(*buffer, buffer.getSize()) + { + } + ~SharedBuffer() { drop(); } - T & operator[](unsigned int i) const + + T & operator[](size_t i) const { assert(i < m_size); return data[i]; } + T * operator*() const { return data; } - unsigned int getSize() const + + size_t getSize() const { return m_size; } + operator Buffer() const { return Buffer(data, m_size); } + private: void drop() { assert((*refcount) > 0); (*refcount)--; - if(*refcount == 0) - { + if (*refcount == 0) { delete[] data; delete refcount; } } + T *data; - unsigned int m_size; - unsigned int *refcount; + size_t m_size; + u32 *refcount; }; // This class is not thread-safe! diff --git a/src/util/serialize.cpp b/src/util/serialize.cpp index 3ca415ddb..e7a002662 100644 --- a/src/util/serialize.cpp +++ b/src/util/serialize.cpp @@ -24,6 +24,7 @@ std::string serializeString16(std::string_view plain) std::string s; char buf[2]; + static_assert(STRING_MAX_LEN <= U16_MAX); if (plain.size() > STRING_MAX_LEN) throw SerializationError("String too long for serializeString16"); s.reserve(2 + plain.size()); @@ -51,7 +52,7 @@ std::string deSerializeString16(std::istream &is) s.resize(s_size); is.read(&s[0], s_size); if (is.gcount() != s_size) - throw SerializationError("deSerializeString16: couldn't read all chars"); + throw SerializationError("deSerializeString16: truncated"); return s; } @@ -66,6 +67,7 @@ std::string serializeString32(std::string_view plain) std::string s; char buf[4]; + static_assert(LONG_STRING_MAX_LEN <= U32_MAX); if (plain.size() > LONG_STRING_MAX_LEN) throw SerializationError("String too long for serializeLongString"); s.reserve(4 + plain.size()); @@ -98,11 +100,72 @@ std::string deSerializeString32(std::istream &is) s.resize(s_size); is.read(&s[0], s_size); if ((u32)is.gcount() != s_size) - throw SerializationError("deSerializeLongString: couldn't read all chars"); + throw SerializationError("deSerializeLongString: truncated"); return s; } +//// +//// String Array +//// + +std::string serializeString16Array(const std::vector &array) +{ + std::string ret; + const auto &at = [&] (size_t index) { + return reinterpret_cast(&ret[index]); + }; + + if (array.size() > U32_MAX) + throw SerializationError("serializeString16Array: too many strings"); + ret.resize(4 + array.size() * 2); + writeU32(at(0), array.size()); + + // Serialize lengths next to each other + size_t total = 0; + for (u32 i = 0; i < array.size(); i++) { + auto &s = array[i]; + if (s.size() > STRING_MAX_LEN) + throw SerializationError("serializeString16Array: string too long"); + writeU16(at(4 + 2*i), s.size()); + total += s.size(); + } + + // Now the contents + ret.reserve(ret.size() + total); + for (auto &s : array) + ret.append(s); + + return ret; +} + +std::vector deserializeString16Array(std::istream &is) +{ + std::vector ret; + + u32 count = readU32(is); + if (is.gcount() != 4) + throw SerializationError("deserializeString16Array: count not read"); + ret.resize(count); + + // prepare string buffers as we read the sizes + for (auto &sbuf : ret) { + u16 size = readU16(is); + if (is.gcount() != 2) + throw SerializationError("deserializeString16Array: size not read"); + sbuf.resize(size); + } + + // now extract the strings + for (auto &sbuf : ret) { + is.read(sbuf.data(), sbuf.size()); + if (is.gcount() != (std::streamsize) sbuf.size()) + throw SerializationError("deserializeString16Array: truncated"); + } + + return ret; +} + //// //// JSON-like strings //// diff --git a/src/util/serialize.h b/src/util/serialize.h index 8247eeb3e..7da5f44d6 100644 --- a/src/util/serialize.h +++ b/src/util/serialize.h @@ -48,8 +48,8 @@ // not represent the full range, but rather the largest safe range, of values on // all supported architectures. Note: This definition makes assumptions on // platform float-to-int conversion behavior. -#define F1000_MIN ((float)(s32)((float)(-0x7FFFFFFF - 1) / FIXEDPOINT_FACTOR)) -#define F1000_MAX ((float)(s32)((float)(0x7FFFFFFF) / FIXEDPOINT_FACTOR)) +static constexpr float F1000_MIN = (s32)((float)(S32_MIN) / FIXEDPOINT_FACTOR); +static constexpr float F1000_MAX = (s32)((float)(S32_MAX) / FIXEDPOINT_FACTOR); #define STRING_MAX_LEN 0xFFFF #define WIDE_STRING_MAX_LEN 0xFFFF @@ -159,7 +159,7 @@ inline void writeU64(u8 *data, u64 i) inline u8 readU8(const u8 *data) { - return ((u8)data[0] << 0); + return data[0]; } inline s8 readS8(const u8 *data) @@ -435,12 +435,12 @@ MAKE_STREAM_WRITE_FXN(video::SColor, ARGB8, 4); //// More serialization stuff //// -inline float clampToF1000(float v) +[[nodiscard]] inline float clampToF1000(float v) { return core::clamp(v, F1000_MIN, F1000_MAX); } -inline v3f clampToF1000(v3f v) +[[nodiscard]] inline v3f clampToF1000(v3f v) { return {clampToF1000(v.X), clampToF1000(v.Y), clampToF1000(v.Z)}; } @@ -469,3 +469,10 @@ std::string serializeJsonStringIfNeeded(std::string_view s); // Parses a string serialized by serializeJsonStringIfNeeded. std::string deSerializeJsonStringIfNeeded(std::istream &is); + +// Serializes an array of strings (max 2^16 chars each) +// Output is well suited for compression :) +std::string serializeString16Array(const std::vector &array); + +// Deserializes a string array +std::vector deserializeString16Array(std::istream &is); diff --git a/src/util/sha1.cpp b/src/util/sha1.cpp index 5d8b92598..850c7201d 100644 --- a/src/util/sha1.cpp +++ b/src/util/sha1.cpp @@ -29,37 +29,29 @@ SOFTWARE. #include #include +#define IN_SHA1_CPP + #include "sha1.h" -// print out memory in hexadecimal -void SHA1::hexPrinter( unsigned char* c, int l ) -{ - assert( c ); - assert( l > 0 ); - while( l > 0 ) - { - printf( " %02x", *c ); - l--; - c++; - } -} +namespace { // circular left bit rotation. MSB wraps around to LSB -Uint32 SHA1::lrot( Uint32 x, int bits ) +inline Uint32 lrot( Uint32 x, int bits ) { return (x<>(32 - bits)); -}; +} // Save a 32-bit unsigned integer to memory, in big-endian order -void SHA1::storeBigEndianUint32( unsigned char* byte, Uint32 num ) +inline void storeBigEndianUint32( unsigned char* byte, Uint32 num ) { - assert( byte ); byte[0] = (unsigned char)(num>>24); byte[1] = (unsigned char)(num>>16); byte[2] = (unsigned char)(num>>8); byte[3] = (unsigned char)num; } +} + // Constructor ******************************************************* SHA1::SHA1() @@ -81,7 +73,6 @@ SHA1::~SHA1() void SHA1::process() { assert( unprocessedBytes == 64 ); - //printf( "process: " ); hexPrinter( bytes, 64 ); printf( "\n" ); int t; Uint32 a, b, c, d, e, K, f, W[80]; // starting values diff --git a/src/util/sha1.h b/src/util/sha1.h index 81eeeca97..39c72f2da 100644 --- a/src/util/sha1.h +++ b/src/util/sha1.h @@ -26,6 +26,10 @@ SOFTWARE. #pragma once +#if !defined(IN_HASHING_CPP) && !defined(IN_SHA1_CPP) +#error do not include directly +#endif + #include #include #include @@ -59,9 +63,4 @@ public: getDigest(reinterpret_cast(ret.data())); return ret; } - - // utility methods - static Uint32 lrot(Uint32 x, int bits); - static void storeBigEndianUint32(unsigned char *byte, Uint32 num); - static void hexPrinter(unsigned char *c, int l); }; diff --git a/src/util/srp.h b/src/util/srp.h index fc4d2dc89..7cbfe3a19 100644 --- a/src/util/srp.h +++ b/src/util/srp.h @@ -55,6 +55,8 @@ #pragma once +#include + struct SRPVerifier; struct SRPUser; diff --git a/src/util/string.cpp b/src/util/string.cpp index a0eee85c1..03f9d5cf1 100644 --- a/src/util/string.cpp +++ b/src/util/string.cpp @@ -139,16 +139,6 @@ std::string wide_to_utf8(std::wstring_view input) return out; } -void wide_add_codepoint(std::wstring &result, char32_t codepoint) -{ - if ((0xD800 <= codepoint && codepoint <= 0xDFFF) || (0x10FFFF < codepoint)) { - // Invalid codepoint, replace with unicode replacement character - result.push_back(0xFFFD); - return; - } - result.push_back(codepoint); -} - #else // _WIN32 std::wstring utf8_to_wide(std::string_view input) @@ -175,66 +165,61 @@ std::string wide_to_utf8(std::wstring_view input) return out; } +#endif // _WIN32 + void wide_add_codepoint(std::wstring &result, char32_t codepoint) { - if (codepoint < 0x10000) { - if (0xD800 <= codepoint && codepoint <= 0xDFFF) { - // Invalid codepoint, part of a surrogate pair - // Replace with unicode replacement character - result.push_back(0xFFFD); - return; - } - result.push_back((wchar_t) codepoint); - return; - } - codepoint -= 0x10000; - if (codepoint >= 0x100000) { - // original codepoint was above 0x10FFFF, so invalid - // replace with unicode replacement character + if ((0xD800 <= codepoint && codepoint <= 0xDFFF) || codepoint > 0x10FFFF) { + // Invalid codepoint, replace with unicode replacement character result.push_back(0xFFFD); return; } - result.push_back((wchar_t) ((codepoint >> 10) | 0xD800)); - result.push_back((wchar_t) ((codepoint & 0x3FF) | 0xDC00)); + if constexpr (sizeof(wchar_t) == 2) { // Surrogate encoding needed? + if (codepoint > 0xffff) { + result.push_back((wchar_t) ((codepoint >> 10) | 0xD800)); + result.push_back((wchar_t) ((codepoint & 0x3FF) | 0xDC00)); + return; + } + } + result.push_back((wchar_t) codepoint); } -#endif // _WIN32 - - std::string urlencode(std::string_view str) { // Encodes reserved URI characters by a percent sign // followed by two hex digits. See RFC 3986, section 2.3. static const char url_hex_chars[] = "0123456789ABCDEF"; - std::ostringstream oss(std::ios::binary); + std::string ret; + ret.reserve(str.size()); for (unsigned char c : str) { if (isalnum(c) || c == '-' || c == '.' || c == '_' || c == '~') { - oss << c; + ret.push_back(c); } else { - oss << "%" - << url_hex_chars[(c & 0xf0) >> 4] - << url_hex_chars[c & 0x0f]; + ret.push_back('%'); + ret.push_back(url_hex_chars[(c & 0xf0) >> 4]); + ret.push_back(url_hex_chars[c & 0x0f]); } } - return oss.str(); + return ret; } std::string urldecode(std::string_view str) { // Inverse of urlencode - std::ostringstream oss(std::ios::binary); + std::string ret; + ret.reserve(str.size()); for (u32 i = 0; i < str.size(); i++) { unsigned char highvalue, lowvalue; - if (str[i] == '%' && + if (str[i] == '%' && i+2 < str.size() && hex_digit_decode(str[i+1], highvalue) && hex_digit_decode(str[i+2], lowvalue)) { - oss << (char) ((highvalue << 4) | lowvalue); + ret.push_back(static_cast((highvalue << 4) | lowvalue)); i += 2; } else { - oss << str[i]; + ret.push_back(str[i]); } } - return oss.str(); + return ret; } u32 readFlagString(std::string str, const FlagDesc *flagdesc, u32 *flagmask) @@ -307,35 +292,9 @@ size_t mystrlcpy(char *dst, const char *src, size_t size) noexcept return srclen; } -char *mystrtok_r(char *s, const char *sep, char **lasts) noexcept -{ - char *t; - - if (!s) - s = *lasts; - - while (*s && strchr(sep, *s)) - s++; - - if (!*s) - return nullptr; - - t = s; - while (*t) { - if (strchr(sep, *t)) { - *t++ = '\0'; - break; - } - t++; - } - - *lasts = t; - return s; -} - u64 read_seed(const char *str) { - char *endptr; + char *endptr = nullptr; u64 num; if (str[0] == '0' && str[1] == 'x') @@ -344,7 +303,7 @@ u64 read_seed(const char *str) num = strtoull(str, &endptr, 10); if (*endptr) - num = murmur_hash_64_ua(str, (int)strlen(str), 0x1337); + num = murmur_hash_64_ua(str, strlen(str), 0x1337); return num; } @@ -1070,39 +1029,39 @@ void safe_print_string(std::ostream &os, std::string_view str) std::optional str_to_v3f(std::string_view str) { - str = trim(str); + str = trim(str); - if (str.empty()) - return std::nullopt; + if (str.empty()) + return std::nullopt; - // Strip parentheses if they exist - if (str.front() == '(' && str.back() == ')') { - str.remove_prefix(1); - str.remove_suffix(1); - str = trim(str); - } + // Strip parentheses if they exist + if (str.front() == '(' && str.back() == ')') { + str.remove_prefix(1); + str.remove_suffix(1); + str = trim(str); + } - std::istringstream iss((std::string(str))); + std::istringstream iss((std::string(str))); - const auto expect_delimiter = [&]() { - const auto c = iss.get(); - return c == ' ' || c == ','; - }; + const auto expect_delimiter = [&]() { + const auto c = iss.get(); + return c == ' ' || c == ','; + }; - v3f value; - if (!(iss >> value.X)) - return std::nullopt; - if (!expect_delimiter()) - return std::nullopt; - if (!(iss >> value.Y)) - return std::nullopt; - if (!expect_delimiter()) - return std::nullopt; - if (!(iss >> value.Z)) - return std::nullopt; + v3f value; + if (!(iss >> value.X)) + return std::nullopt; + if (!expect_delimiter()) + return std::nullopt; + if (!(iss >> value.Y)) + return std::nullopt; + if (!expect_delimiter()) + return std::nullopt; + if (!(iss >> value.Z)) + return std::nullopt; - if (!iss.eof()) - return std::nullopt; + if (!iss.eof()) + return std::nullopt; - return value; + return value; } diff --git a/src/util/string.h b/src/util/string.h index 16c337b7f..3dcbfe85f 100644 --- a/src/util/string.h +++ b/src/util/string.h @@ -72,8 +72,8 @@ struct FlagDesc { // Try to avoid converting between wide and UTF-8 unless you need to // input/output stuff via Irrlicht -std::wstring utf8_to_wide(std::string_view input); -std::string wide_to_utf8(std::wstring_view input); +[[nodiscard]] std::wstring utf8_to_wide(std::string_view input); +[[nodiscard]] std::string wide_to_utf8(std::wstring_view input); void wide_add_codepoint(std::wstring &result, char32_t codepoint); @@ -84,9 +84,10 @@ u32 readFlagString(std::string str, const FlagDesc *flagdesc, u32 *flagmask); std::string writeFlagString(u32 flags, const FlagDesc *flagdesc, u32 flagmask); size_t mystrlcpy(char *dst, const char *src, size_t size) noexcept; -char *mystrtok_r(char *s, const char *sep, char **lasts) noexcept; +/// @brief turn string into a map seed. either directly if it's a number or by hashing it. u64 read_seed(const char *str); + bool parseColorString(const std::string &value, video::SColor &color, bool quiet, unsigned char default_alpha = 0xff); std::string encodeHexColorString(video::SColor color); @@ -286,6 +287,7 @@ MAKE_VARIANT(str_ends_with, std::basic_string_view, const T*) * @return An std::vector > of the component parts */ template +[[nodiscard]] inline std::vector > str_split( const std::basic_string &str, T delimiter) @@ -305,6 +307,7 @@ inline std::vector > str_split( * @param str * @return A copy of \p str converted to all lowercase characters. */ +[[nodiscard]] inline std::string lowercase(std::string_view str) { std::string s2; @@ -330,7 +333,8 @@ inline bool my_isspace(const wchar_t c) * @return A view of \p str with leading and trailing whitespace removed. */ template -inline std::basic_string_view trim(const std::basic_string_view &str) +[[nodiscard]] +inline std::basic_string_view trim(std::basic_string_view str) { size_t front = 0; size_t back = str.size(); @@ -353,6 +357,7 @@ inline std::basic_string_view trim(const std::basic_string_view &str) * @return A copy of \p str with leading and trailing whitespace removed. */ template +[[nodiscard]] inline std::basic_string trim(std::basic_string &&str) { std::basic_string ret(trim(std::basic_string_view(str))); @@ -360,6 +365,7 @@ inline std::basic_string trim(std::basic_string &&str) } template +[[nodiscard]] inline std::basic_string_view trim(const std::basic_string &str) { return trim(std::basic_string_view(str)); @@ -367,6 +373,7 @@ inline std::basic_string_view trim(const std::basic_string &str) // The above declaration causes ambiguity with char pointers so we have to fix that: template +[[nodiscard]] inline std::basic_string_view trim(const T *str) { return trim(std::basic_string_view(str)); @@ -555,6 +562,7 @@ std::string wrap_rows(std::string_view from, unsigned row_len, bool has_color_co * Removes backslashes from an escaped string (FormSpec strings) */ template +[[nodiscard]] inline std::basic_string unescape_string(const std::basic_string &s) { std::basic_string res; @@ -579,6 +587,7 @@ inline std::basic_string unescape_string(const std::basic_string &s) * @return \p s, with escape sequences removed. */ template +[[nodiscard]] std::basic_string unescape_enriched(const std::basic_string &s) { std::basic_string output; @@ -609,6 +618,7 @@ std::basic_string unescape_enriched(const std::basic_string &s) } template +[[nodiscard]] std::vector > split(const std::basic_string &s, T delim) { std::vector > tokens; @@ -640,10 +650,13 @@ std::vector > split(const std::basic_string &s, T delim) return tokens; } +[[nodiscard]] std::wstring translate_string(std::wstring_view s, Translations *translations); +[[nodiscard]] std::wstring translate_string(std::wstring_view s); +[[nodiscard]] inline std::wstring unescape_translate(std::wstring_view s) { return unescape_enriched(translate_string(s)); @@ -729,6 +742,7 @@ inline const std::string duration_to_string(int sec) * * @return A std::string */ +[[nodiscard]] inline std::string str_join(const std::vector &list, std::string_view delimiter) { @@ -747,15 +761,17 @@ inline std::string str_join(const std::vector &list, /** * Create a UTF8 std::string from an irr::core::stringw. */ +[[nodiscard]] inline std::string stringw_to_utf8(const irr::core::stringw &input) { std::wstring_view sv(input.c_str(), input.size()); return wide_to_utf8(sv); } - /** - * Create an irr::core:stringw from a UTF8 std::string. - */ +/** + * Create an irr::core:stringw from a UTF8 std::string. + */ +[[nodiscard]] inline irr::core::stringw utf8_to_stringw(std::string_view input) { std::wstring str = utf8_to_wide(input); @@ -769,6 +785,7 @@ inline irr::core::stringw utf8_to_stringw(std::string_view input) * and add a prefix to them * 2. Remove 'unsafe' characters from the name by replacing them with '_' */ +[[nodiscard]] std::string sanitizeDirName(std::string_view str, std::string_view optional_prefix); /** diff --git a/src/util/thread.h b/src/util/thread.h index 1bc91e726..857a341be 100644 --- a/src/util/thread.h +++ b/src/util/thread.h @@ -18,6 +18,9 @@ public: MutexedVariable(const T &value): m_value(value) {} + MutexedVariable(T &&value): + m_value(std::move(value)) + {} T get() { @@ -31,9 +34,14 @@ public: m_value = value; } - // You pretty surely want to grab the lock when accessing this - T m_value; + void set(T &&value) + { + MutexAutoLock lock(m_mutex); + m_value = std::move(value); + } + private: + T m_value; std::mutex m_mutex; }; @@ -92,22 +100,19 @@ public: void add(const Key &key, Caller caller, CallerData callerdata, ResultQueue *dest) { - typename std::deque >::iterator i; - typename std::list >::iterator j; - { MutexAutoLock lock(m_queue.getMutex()); /* If the caller is already on the list, only update CallerData */ - for (i = m_queue.getQueue().begin(); i != m_queue.getQueue().end(); ++i) { - GetRequest &request = *i; + for (auto i = m_queue.getQueue().begin(); i != m_queue.getQueue().end(); ++i) { + auto &request = *i; if (request.key != key) continue; - for (j = request.callers.begin(); j != request.callers.end(); ++j) { - CallerInfo &ca = *j; + for (auto j = request.callers.begin(); j != request.callers.end(); ++j) { + auto &ca = *j; if (ca.caller == caller) { ca.data = callerdata; return; @@ -150,10 +155,9 @@ public: void pushResult(GetRequest req, T res) { - for (typename std::list >::iterator - i = req.callers.begin(); + for (auto i = req.callers.begin(); i != req.callers.end(); ++i) { - CallerInfo &ca = *i; + auto &ca = *i; GetResult result; diff --git a/src/voxel.cpp b/src/voxel.cpp index f74129260..4d0ce84b7 100644 --- a/src/voxel.cpp +++ b/src/voxel.cpp @@ -118,12 +118,10 @@ static inline void checkArea(const VoxelArea &a) // won't overflow since cbrt(2^64) > 2^16 u64 real_volume = static_cast(a.getExtent().X) * a.getExtent().Y * a.getExtent().Z; - // Volume limit equal to 8 default mapchunks, (80 * 2) ^ 3 = 4,096,000 - // Note: the hard limit is somewhere around 2^31 due to s32 type - constexpr u64 MAX_ALLOWED = 4096000; - if (real_volume > MAX_ALLOWED) { + static_assert(MAX_WORKING_VOLUME < S32_MAX); // hard limit is somewhere here + if (real_volume > MAX_WORKING_VOLUME) { throw BaseException("VoxelManipulator: " - "Area volume exceeds allowed value of " + std::to_string(MAX_ALLOWED)); + "Area volume exceeds allowed value of " + std::to_string(MAX_WORKING_VOLUME)); } } diff --git a/textures/base/pack/dig_btn.png b/textures/base/pack/dig_btn.png new file mode 100644 index 000000000..d612d1134 Binary files /dev/null and b/textures/base/pack/dig_btn.png differ diff --git a/textures/base/pack/place_btn.png b/textures/base/pack/place_btn.png new file mode 100644 index 000000000..f834e62c4 Binary files /dev/null and b/textures/base/pack/place_btn.png differ diff --git a/util/buildbot/common.sh b/util/buildbot/common.sh index ff3aef2e9..08d01da44 100644 --- a/util/buildbot/common.sh +++ b/util/buildbot/common.sh @@ -1,21 +1,21 @@ -CORE_GIT=https://github.com/minetest/minetest +CORE_GIT=https://github.com/luanti-org/luanti CORE_BRANCH=master CORE_NAME=minetest ogg_version=1.3.5 -openal_version=1.23.1 +openal_version=1.24.2 vorbis_version=1.3.7 -curl_version=8.9.1 +curl_version=8.12.1 gettext_version=0.20.2 freetype_version=2.13.3 sqlite3_version=3.46.1 -luajit_version=20240905 +luajit_version=20250113 leveldb_version=1.23 zlib_version=1.3.1 -zstd_version=1.5.6 +zstd_version=1.5.7 libjpeg_version=3.0.1 -libpng_version=1.6.43 -sdl2_version=2.30.7 +libpng_version=1.6.47 +sdl2_version=2.32.2 download () { local url=$1 @@ -51,10 +51,10 @@ get_sources () { # sets $runtime_dlls find_runtime_dlls () { local triple=$1 - # Try to find runtime DLLs in various paths + # Try to find runtime DLLs in various paths (fun) local tmp=$(dirname "$(command -v $compiler)")/.. runtime_dlls= - for name in lib{clang_rt,c++,unwind,winpthread-}'*'.dll; do + for name in lib{c++,unwind,winpthread-}'*'.dll; do for dir in $tmp/$triple/{bin,lib}; do [ -d "$dir" ] || continue local file=$(echo $dir/$name) @@ -88,7 +88,7 @@ add_cmake_libs () { -DJPEG_INCLUDE_DIR=$libdir/libjpeg/include -DJPEG_DLL="$(_dlls $libdir/libjpeg/bin/libjpeg*)" - -DCMAKE_PREFIX_PATH=$libdir/sdl2/lib/cmake + -DSDL2_DIR=$libdir/sdl2/lib/cmake/SDL2 -DSDL2_DLL="$(_dlls $libdir/sdl2/bin/*)" -DZLIB_INCLUDE_DIR=$libdir/zlib/include diff --git a/util/buildbot/download_toolchain.sh b/util/buildbot/download_toolchain.sh index d7d7afbe2..c3f3f043c 100755 --- a/util/buildbot/download_toolchain.sh +++ b/util/buildbot/download_toolchain.sh @@ -10,7 +10,7 @@ fi # * Clang + LLD + libc++ instead of GCC + binutils + stdc++ # * Mingw-w64 with UCRT enabled and winpthreads support # why are we avoiding GCC? -> Thread Local Storage (TLS) is totally broken -date=20240619 +date=20250305 name=llvm-mingw-${date}-ucrt-ubuntu-20.04-x86_64.tar.xz wget "https://github.com/mstorsjo/llvm-mingw/releases/download/$date/$name" -O "$name" sha256sum -w -c <(grep -F "$name" "$topdir/sha256sums.txt") diff --git a/util/buildbot/sha256sums.txt b/util/buildbot/sha256sums.txt index 310ab6a6e..21f30dddb 100644 --- a/util/buildbot/sha256sums.txt +++ b/util/buildbot/sha256sums.txt @@ -1,5 +1,5 @@ -627d4111ee655a68e806251974ba9d0337efac19cb07d499689c44c328a23775 curl-8.9.1-win32.zip -ed906726531388441d7f93fc0a1c9d567d476fbc8cfbae19dc5a0f7288949abe curl-8.9.1-win64.zip +b54e6252a822524a13f65bb9dcb8b8328242843f4a26e36b8273f32b78241bec curl-8.12.1-win32.zip +38501597e88a507e5e146aff2f76dfab012753d57064b98cdcaca5bac1ee9c42 curl-8.12.1-win64.zip 7a94b9e69d4872489228ad7cca6a16117a433f809d9b20fa3e44e1616a33c5d7 freetype-2.13.3-win32.zip f7d882319790f72ebc8eff00526388432bd26bff3a56c4ef5cce0a829bbbef0d freetype-2.13.3-win64.zip 41b10766de2773f0f0851fde16b363024685e0397f4bb2e5cd2a7be196960a01 gettext-0.20.2-win32.zip @@ -10,20 +10,20 @@ f54e9a577e2db47ed28f4a01e74181d2c607627c551d30f48263e01b59e84f67 libleveldb-1.2 2f039848a4e6c05a2347fe5a7fa63c430dd08d1bc88235645a863c859e14f5f8 libleveldb-1.23-win64.zip 0df94afb8efa361cceb132ecf9491720afbc45ba844a7b1c94607295829b53ca libogg-1.3.5-win32.zip 5c4acb4c99429a04b5e69650719b2eb17616bf52837d2372a0f859952eebce48 libogg-1.3.5-win64.zip -fb61536bfce414fdecb30dfbdc8b26e87969ee30b420f5fb8542f7573a1c1d12 libpng-1.6.43-win32.zip -ccd0b8ecbaa07028067a99dd4314ec7799445f80a28ddc86fa3f6bf25700177b libpng-1.6.43-win64.zip +af26fc9c5db2f448ab0e2e6f5a64c21a0ede3ff6939f88d6f3080d92c9b294fc libpng-1.6.47-win32.zip +dd92e80e505671f18a7a32151301ac429bf4f36d3a42478138b35a2a37e15cec libpng-1.6.47-win64.zip 456ece10a2be4247b27fbe88f88ddd54aae604736a6b76ba9a922b602fe40f40 libvorbis-1.3.7-win32.zip 57f4db02da00556895bb63fafa6e46b5f7dac87c25fde27af4315f56a1aa7a86 libvorbis-1.3.7-win64.zip -27d33157cc252c29ad6f777a96a0d94176fea1b534ff09b5071485def143b90e llvm-mingw-20240619-ucrt-ubuntu-20.04-x86_64.tar.xz -5380bbb0bfd4482b5774e4f7c0ff58cc0857477b88a88a178316a464d3459cf1 luajit-20240905-win32.zip -5805c75c61bf948f790e6f845adc94a4946e43ab8a78c5b5b441550f8a665d2c luajit-20240905-win64.zip -e2443451fe5c2066eb564c64b8a1762738a88b7fd749c8b5907fed45c785497b openal-soft-1.23.1-win32.zip -cb041445a118469caefbad2647470cb8571c8337bce2adc07634011ab5625417 openal-soft-1.23.1-win64.zip -af09a54f1f5d75ef6e1bf63662489ca57d44b6b522446638afe35e59b8456a3c sdl2-2.30.7-win32.zip -613abc34a84ed2c3b050314b340ba7e675879e8ed7848e6a28cd9c50262a33b0 sdl2-2.30.7-win64.zip +b2557a7089d006711247c66aa9c402165e89646eaadf01715d36157db0b66b01 llvm-mingw-20250305-ucrt-ubuntu-20.04-x86_64.tar.xz +ffec9687b581c9be380bb910249540deb2c027528cf489f0962e67116e078dee luajit-20250113-win32.zip +68d694631289416ae493253ed5d20e0ea2cd8ba1ca12153e2fd458dcd3dc0724 luajit-20250113-win64.zip +8365b9632219e8d6c624bde3001010c1a9e283f9b4c9090bd79ab00a46110d6f openal-soft-1.24.2-win32.zip +00309f225c697e9e1fe93aa1b5051b144c851c33edc70d534f7d4c401fda60d1 openal-soft-1.24.2-win64.zip +88205a0e2950e519ff0a4ef0a4e91c17a6089acbf317648b32154b7f76022547 sdl2-2.32.2-win32.zip +1a52ef059fc541c2ff3be5bd19b4cfaa0a8bb3e2549ebdb7ef48f5bdab19a6b6 sdl2-2.32.2-win64.zip 9685857ae0b418068ad4324e3711121bda97488d19235a0e68a6060162e014d7 sqlite3-3.46.1-win32.zip 7e2990619b1fd1d5ed654d1df77ea809d4332c2e914ea8bba53b2cf5acdf10ff sqlite3-3.46.1-win64.zip 8af10515d57dbfee5d2106cd66cafa2adeb4270d4c6047ccbf7e8b5d2d50681c zlib-1.3.1-win32.zip ad43f5d23052590c65633530743e5d622cc76b33c109072e6fd7b487aff56bca zlib-1.3.1-win64.zip -e1bd36f6da039ee8c1694509f379a5023c05d6c90905a2cbb424f0395167570a zstd-1.5.6-win32.zip -f65b75b04b00f6bda859a7c60667f735c664a893bf7796b38393c16cc40a1a82 zstd-1.5.6-win64.zip +07d295a4f2d727e9d2c406023e17238919b0c42b8442cfb11fe259ac5778e263 zstd-1.5.7-win32.zip +73886e5307ab236628a712abed5357649a92e895caacde8601cf51323e61fc5b zstd-1.5.7-win64.zip diff --git a/util/buildbot/toolchain_i686-w64-mingw32.cmake b/util/buildbot/toolchain_i686-w64-mingw32.cmake index 015682394..a8649ec51 100644 --- a/util/buildbot/toolchain_i686-w64-mingw32.cmake +++ b/util/buildbot/toolchain_i686-w64-mingw32.cmake @@ -15,3 +15,4 @@ SET(CMAKE_FIND_ROOT_PATH /usr/i686-w64-mingw32) set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) +set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY) diff --git a/util/buildbot/toolchain_x86_64-w64-mingw32.cmake b/util/buildbot/toolchain_x86_64-w64-mingw32.cmake index 113cc0e78..d09322bae 100644 --- a/util/buildbot/toolchain_x86_64-w64-mingw32.cmake +++ b/util/buildbot/toolchain_x86_64-w64-mingw32.cmake @@ -15,3 +15,4 @@ SET(CMAKE_FIND_ROOT_PATH /usr/x86_64-w64-mingw32) set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) +set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY) diff --git a/util/ci/indent_tab_preprocess.py b/util/ci/indent_tab_preprocess.py new file mode 100644 index 000000000..50d7f7686 --- /dev/null +++ b/util/ci/indent_tab_preprocess.py @@ -0,0 +1,152 @@ +#!/usr/bin/python3 + +import sys +import re + +# preprocess files for indent check + +# Code processing: +# +# Tabs are kept. +# Spaces after tabs are removed if indent is not smaller than in previous line. +# +# Example: +# +# a = 6; +# b = 5; +# if ( +# ) { +# c = 7; +# } +# +# Result: +# +# a = 6; +# b = 5; +# if ( +# ) { +# c = 7; +# } + +# Multiline comments processing: +# +# It is expected that tabs indent from comment begining is +# used as indent on begining of every commented line. +# +# Example: +# +# /* +# A +# B +# C +# D +# */ +# /* +# R +# */ +# +# Result: +# +# /* +# A +# B +# C +# D +# */ +# /* +# *R +# */ + + +def main(): + if len(sys.argv) != 4: + #print("Bad arguments") + #print(sys.argv) + exit() + # multiline comment begining and end from command line + mlc_begin = sys.argv[1] + mlc_end = sys.argv[2] + file_name = sys.argv[3] + + mlc_end_len = len(mlc_end) + re_begin = re.escape(mlc_begin) + re_end = re.escape(mlc_end) + + re_mlc_begin = "^.*{}".format(re_begin) + re_mlc_begin_end = "^.*{}.*{}".format(re_begin, re_end) + re_mlc_end = "^.*{}".format(re_end) + + file = open(file_name, "r") + + lines = [] + + #print(re_mlc_begin) + #print(re_mlc_begin_end) + #print(re_mlc_end) + #print(file) + + # -1 means not in the multiline comment + # other values mean multiline comment indent in the number of tabs + limit = -1 + # this value stores the previous line indent in code mode (not in multiline comment) + prev = 80 + for line in file: + if limit == -1: + find = re.search(re_mlc_begin, line) + if find: + if not re.search(re_mlc_begin_end, line): + # enter in block comment mode + find = re.search("^\\s*", line) + limit = find.end() + find = re.search("^\\t*", line) + end = find.end() + if end < prev: + lines.append(line) + else: + # in this case, there can be allowed extra trailing whitespaces + # up to 3 trailing whitespaces are allowed + #find = re.search("^\\t+[ ]{0,3}", line) + # unlimited number of trailng whitespaces are allowed + find = re.search("^\\t+[ ]*", line) + fend = find.end() if find else 0 + if fend >= end: + find = re.search("^\\t*", line) + lines.append(line[0:find.end()] + line[fend:]) + else: + lines.append(line) + prev = end + else: + # in block comment mode + find = re.search(re_mlc_end, line) + if find: + # erase whitechars enabled for ignore, end in block comment mode + begin = find.end() - mlc_end_len + if begin > limit: + lines.append(line[0:limit] + line[begin:]) + else: + lines.append(line) + limit = -1 + else: + # erase whitechars enabled for ignore + find = re.search("^$", line) + if find: + lines.append(line) + else: + find = re.search("^\\s*", line) + if find: + end = find.end() + if end > limit: + lines.append(line[0:limit] + line[end:]) + else: + lines.append(line) + else: + lines.append(line) + + file.close() + file = open(file_name, "w") + for line in lines: + file.write(line) + file.close() + +if __name__ == "__main__": + main() diff --git a/util/gather_git_credits.py b/util/gather_git_credits.py index d531f81cb..b02275644 100755 --- a/util/gather_git_credits.py +++ b/util/gather_git_credits.py @@ -6,7 +6,7 @@ from collections import defaultdict codefiles = r"(\.[ch](pp)?|\.lua|\.md|\.cmake|\.java|\.gradle|Makefile|CMakeLists\.txt)$" # two minor versions back, for "Active Contributors" -REVS_ACTIVE = "5.8.0..HEAD" +REVS_ACTIVE = "5.9.0..HEAD" # all time, for "Previous Contributors" REVS_PREVIOUS = "HEAD" @@ -14,7 +14,7 @@ CUTOFF_ACTIVE = 3 CUTOFF_PREVIOUS = 21 # For a description of the points system see: -# https://github.com/minetest/minetest/pull/9593#issue-398677198 +# def load(revs): points = defaultdict(int) @@ -27,7 +27,7 @@ def load(revs): p2 = subprocess.Popen(["git", "show", "--numstat", "--pretty=format:", hash], stdout=subprocess.PIPE, universal_newlines=True) for line in p2.stdout: - added, deleted, filename = re.split(r"\s+", line.strip(), 2) + added, deleted, filename = re.split(r"\s+", line.strip(), maxsplit=2) if re.search(codefiles, filename) and added != "-": n += int(added) p2.wait() diff --git a/util/wireshark/minetest.lua b/util/wireshark/minetest.lua index 837ea2963..bc9909dc1 100644 --- a/util/wireshark/minetest.lua +++ b/util/wireshark/minetest.lua @@ -1,32 +1,16 @@ -- minetest.lua --- Packet dissector for the UDP-based Minetest protocol +-- Packet dissector for the UDP-based Luanti protocol -- Copy this to $HOME/.wireshark/plugins/ - --- --- Minetest +-- Luanti +-- SPDX-License-Identifier: LGPL-2.1-or-later -- Copyright (C) 2011 celeron55, Perttu Ahola --- --- 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 2 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., --- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. --- -- Wireshark documentation: --- https://web.archive.org/web/20170711121726/https://www.wireshark.org/docs/wsdg_html_chunked/lua_module_Proto.html --- https://web.archive.org/web/20170711121844/https://www.wireshark.org/docs/wsdg_html_chunked/lua_module_Tree.html --- https://web.archive.org/web/20170711121917/https://www.wireshark.org/docs/wsdg_html_chunked/lua_module_Tvb.html +-- https://www.wireshark.org/docs/wsdg_html_chunked/lua_module_Proto.html +-- https://www.wireshark.org/docs/wsdg_html_chunked/lua_module_Tree.html +-- https://www.wireshark.org/docs/wsdg_html_chunked/lua_module_Tvb.html -- Table of Contents: @@ -51,7 +35,8 @@ function minetest_field_helper(lentype, name, abbr) return f_textlen, f_text end - +-- global reference to 'minetest.peer' field (set later) +local minetest_peer_field -------------------------------------------- @@ -97,7 +82,7 @@ end -- TOSERVER_INIT_LEGACY (obsolete) -minetest_client_commands[0x10] = { "INIT_LEGACY", 53 } +minetest_client_commands[0x10] = { "INIT_LEGACY", 2 } minetest_client_obsolete[0x10] = true -- TOSERVER_INIT2 @@ -332,7 +317,7 @@ end -- TOSERVER_PASSWORD (obsolete) -minetest_client_commands[0x36] = { "CLICK_ACTIVEOBJECT", 2 } +minetest_client_commands[0x36] = { "PASSWORD", 2 } minetest_client_obsolete[0x36] = true -- TOSERVER_PLAYERITEM @@ -349,9 +334,9 @@ do } end --- TOSERVER_RESPAWN +-- TOSERVER_RESPAWN_LEGACY -minetest_client_commands[0x38] = { "RESPAWN", 2 } +minetest_client_commands[0x38] = { "RESPAWN_LEGACY", 2 } -- TOSERVER_INTERACT @@ -482,8 +467,7 @@ end minetest_client_commands[0x50] = { "FIRST_SRP", 2 } minetest_client_commands[0x51] = { "SRP_BYTES_A", 2 } minetest_client_commands[0x52] = { "SRP_BYTES_M", 2 } - - +minetest_client_commands[0x53] = { "UPDATE_CLIENT_INFO", 2 } -------------------------------------------- -- Part 3 -- @@ -669,7 +653,7 @@ do local f_time_speed = ProtoField.float("minetest.server.time_speed", "Time Speed", base.DEC) minetest_server_commands[0x29] = { - "TIME_OF_DAY", 4, + "TIME_OF_DAY", 8, { f_time, f_time_speed }, function(buffer, pinfo, tree, t) t:add(f_time, buffer(2,2)) @@ -678,13 +662,11 @@ do } end --- TOCLIENT_CSM_RESTRICTION_FLAGS +-- ... minetest_server_commands[0x2a] = { "CSM_RESTRICTION_FLAGS", 2 } - --- TOCLIENT_PLAYER_SPEED - minetest_server_commands[0x2b] = { "PLAYER_SPEED", 2 } +minetest_server_commands[0x2c] = { "MEDIA_PUSH", 2 } -- TOCLIENT_CHAT_MESSAGE @@ -911,18 +893,15 @@ end -- TOCLIENT_ACCESS_DENIED_LEGACY do - local f_reason_length = ProtoField.uint16("minetest.server.access_denied_reason_length", "Reason length", base.DEC) - local f_reason = ProtoField.string("minetest.server.access_denied_reason", "Reason") + local f_reasonlen, f_reason = minetest_field_helper("uint16", + "minetest.server.access_denied_reason", "Reason") minetest_server_commands[0x35] = { "ACCESS_DENIED_LEGACY", 4, - { f_reason_length, f_reason }, + { f_reasonlen, f_reason }, function(buffer, pinfo, tree, t) - t:add(f_reason_length, buffer(2,2)) - local reason_length = buffer(2,2):uint() - if minetest_check_length(buffer, 4 + reason_length * 2, t) then - t:add(f_reason, minetest_convert_utf16(buffer(4, reason_length * 2), "Converted reason message")) - end + local off = 2 + minetest_decode_helper_utf16(buffer, t, "uint16", off, f_reasonlen, f_reason) end } end @@ -931,34 +910,9 @@ end minetest_server_commands[0x36] = { "FOV", 2 } --- TOCLIENT_DEATHSCREEN +-- TOCLIENT_DEATHSCREEN_LEGACY -do - local f_set_camera_point_target = ProtoField.bool( - "minetest.server.deathscreen_set_camera_point_target", - "Set camera point target") - local f_camera_point_target_x = ProtoField.int32( - "minetest.server.deathscreen_camera_point_target_x", - "Camera point target X", base.DEC) - local f_camera_point_target_y = ProtoField.int32( - "minetest.server.deathscreen_camera_point_target_y", - "Camera point target Y", base.DEC) - local f_camera_point_target_z = ProtoField.int32( - "minetest.server.deathscreen_camera_point_target_z", - "Camera point target Z", base.DEC) - - minetest_server_commands[0x37] = { - "DEATHSCREEN", 15, - { f_set_camera_point_target, f_camera_point_target_x, - f_camera_point_target_y, f_camera_point_target_z}, - function(buffer, pinfo, tree, t) - t:add(f_set_camera_point_target, buffer(2,1)) - t:add(f_camera_point_target_x, buffer(3,4)) - t:add(f_camera_point_target_y, buffer(7,4)) - t:add(f_camera_point_target_z, buffer(11,4)) - end - } -end +minetest_server_commands[0x37] = { "DEATHSCREEN_LEGACY", 2 } -- TOCLIENT_MEDIA @@ -990,18 +944,77 @@ minetest_server_commands[0x43] = {"DETACHED_INVENTORY", 2} minetest_server_commands[0x44] = {"SHOW_FORMSPEC", 2} minetest_server_commands[0x45] = {"MOVEMENT", 2} minetest_server_commands[0x46] = {"SPAWN_PARTICLE", 2} -minetest_server_commands[0x47] = {"ADD_PARTICLE_SPAWNER", 2} +minetest_server_commands[0x47] = {"ADD_PARTICLESPAWNER", 2} +minetest_server_commands[0x48] = {"CAMERA", 2} +minetest_server_commands[0x49] = {"HUDADD", 2} +minetest_server_commands[0x4a] = {"HUDRM", 2} --- TOCLIENT_DELETE_PARTICLESPAWNER_LEGACY (obsolete) +-- TOCLIENT_HUDCHANGE -minetest_server_commands[0x48] = {"DELETE_PARTICLESPAWNER_LEGACY", 2} -minetest_server_obsolete[0x48] = true +do + local abbr = "minetest.server.hudchange_" + local vs_stat = { + [0] = "pos", + [1] = "name", + [2] = "scale", + [3] = "text", + [4] = "number", + [5] = "item", + [6] = "dir", + [7] = "align", + [8] = "offset", + [9] = "world_pos", + [10] = "size", + [11] = "z_index", + [12] = "text2", + [13] = "style", + } + local uses_v2f = { + [0] = true, [2] = true, [7] = true, [8] = true, + } + local uses_string = { + [1] = true, [3] = true, [12] = true, + } + + local f_id = ProtoField.uint32(abbr.."id", "HUD ID", base.DEC) + local f_stat = ProtoField.uint8(abbr.."stat", "HUD Type", base.DEC, vs_stat) + local f_x = ProtoField.float(abbr.."x", "Position X") + local f_y = ProtoField.float(abbr.."y", "Position Y") + local f_z = ProtoField.float(abbr.."z", "Position Z") + local f_str = ProtoField.string(abbr.."string", "String data") + local f_sx = ProtoField.int32(abbr.."sy", "Size X", base.DEC) + local f_sy = ProtoField.int32(abbr.."sz", "Size Y", base.DEC) + local f_int = ProtoField.uint32(abbr.."int", "Integer data", base.DEC) + + minetest_server_commands[0x4b] = { + "HUDCHANGE", 7, + { f_id, f_stat, f_x, f_y, f_z, f_str, f_sx, f_sy, f_int, }, + function(buffer, pinfo, tree, t) + t:add(f_id, buffer(2,4)) + t:add(f_stat, buffer(6,1)) + local stat = buffer(6,1):uint() + local off = 7 + if uses_v2f[stat] then + t:add(f_x, buffer(off,4)) + t:add(f_y, buffer(off+4,4)) + elseif uses_string[stat] then + minetest_decode_helper_ascii(buffer, t, "uint16", off, nil, f_str) + elseif stat == 9 then -- v3f + t:add(f_x, buffer(off,4)) + t:add(f_y, buffer(off+4,4)) + t:add(f_z, buffer(off+8,4)) + elseif stat == 10 then -- v2s32 + t:add(f_sx, buffer(off,4)) + t:add(f_sy, buffer(off+8,4)) + else + t:add(f_int, buffer(off,4)) + end + end + } +end -- ... -minetest_server_commands[0x49] = {"HUDADD", 2} -minetest_server_commands[0x4a] = {"HUDRM", 2} -minetest_server_commands[0x4b] = {"HUDCHANGE", 2} minetest_server_commands[0x4c] = {"HUD_SET_FLAGS", 2} minetest_server_commands[0x4d] = {"HUD_SET_PARAM", 2} minetest_server_commands[0x4e] = {"BREATH", 2} @@ -1057,8 +1070,11 @@ minetest_server_commands[0x59] = {"NODEMETA_CHANGED", 2} minetest_server_commands[0x5a] = {"SET_SUN", 2} minetest_server_commands[0x5b] = {"SET_MOON", 2} minetest_server_commands[0x5c] = {"SET_STARS", 2} +minetest_server_commands[0x5d] = {"MOVE_PLAYER_REL", 2} minetest_server_commands[0x60] = {"SRP_BYTES_S_B", 2} minetest_server_commands[0x61] = {"FORMSPEC_PREPEND", 2} +minetest_server_commands[0x62] = {"MINIMAP_MODES", 2} +minetest_server_commands[0x63] = {"SET_LIGHTING", 2} ------------------------------------ @@ -1069,13 +1085,13 @@ minetest_server_commands[0x61] = {"FORMSPEC_PREPEND", 2} -- minetest.control dissector do - local p_control = Proto("minetest.control", "Minetest Control") + local p_control = Proto("minetest.control", "Luanti Control") local vs_control_type = { [0] = "Ack", [1] = "Set Peer ID", [2] = "Ping", - [3] = "Disco" + [3] = "Disconnect" } local f_control_type = ProtoField.uint8("minetest.control.type", "Control Type", base.DEC, vs_control_type) @@ -1105,7 +1121,7 @@ do elseif buffer(0,1):uint() == 2 then pinfo.cols.info = "Ping" elseif buffer(0,1):uint() == 3 then - pinfo.cols.info = "Disco" + pinfo.cols.info = "Disconnect" end data_dissector:call(buffer(pos):tvb(), pinfo, tree) @@ -1143,7 +1159,7 @@ function minetest_define_client_or_server_proto(is_client) end -- Create the protocol object. - local proto = Proto(proto_name, "Minetest " .. this_peer .. " to " .. other_peer) + local proto = Proto(proto_name, "Luanti " .. this_peer .. " to " .. other_peer) -- Create a table vs_command that maps command codes to command names. local vs_command = {} @@ -1173,7 +1189,10 @@ function minetest_define_client_or_server_proto(is_client) function proto.dissector(buffer, pinfo, tree) local t = tree:add(proto, buffer) - pinfo.cols.info = this_peer + -- If we're nested, don't reset + if string.find(tostring(pinfo.cols.info), this_peer, 1, true) ~= 1 then + pinfo.cols.info = this_peer + end if buffer:len() == 0 then -- Empty message. @@ -1195,8 +1214,8 @@ function minetest_define_client_or_server_proto(is_client) local command_min_length = command_info[2] local command_fields = command_info[3] local command_dissector = command_info[4] + pinfo.cols.info:append(": " .. command_name) if minetest_check_length(buffer, command_min_length, t) then - pinfo.cols.info:append(": " .. command_name) if command_dissector ~= nil then command_dissector(buffer, pinfo, tree, t) end @@ -1215,7 +1234,7 @@ minetest_define_client_or_server_proto(false) -- minetest.server -- minetest.split dissector do - local p_split = Proto("minetest.split", "Minetest Split Message") + local p_split = Proto("minetest.split", "Luanti Split Message") local f_split_seq = ProtoField.uint16("minetest.split.seq", "Sequence number", base.DEC) local f_split_chunkcount = ProtoField.uint16("minetest.split.chunkcount", "Chunk count", base.DEC) @@ -1230,6 +1249,17 @@ do t:add(f_split_chunknum, buffer(4,2)) t:add(f_split_data, buffer(6)) pinfo.cols.info:append(" " .. buffer(0,2):uint() .. " chunk " .. buffer(4,2):uint() .. "/" .. buffer(2,2):uint()) + -- If it's the first chunk, read the peer id from the upper layer and + -- pass the data that we have to the right dissector. + -- this provides at least a partial decoding + if buffer(4,2):uint() == 0 then + local peer_id = minetest_peer_field() + if peer_id.value and peer_id.value == 1 then + Dissector.get("minetest.server"):call(buffer(6):tvb(), pinfo, tree) + elseif peer_id.value then + Dissector.get("minetest.client"):call(buffer(6):tvb(), pinfo, tree) + end + end end end @@ -1241,10 +1271,8 @@ end -- Wrapper protocol main dissector -- ------------------------------------- --- minetest dissector - do - local p_minetest = Proto("minetest", "Minetest") + local p_minetest = Proto("minetest", "Luanti") local minetest_id = 0x4f457403 local vs_id = { @@ -1263,7 +1291,7 @@ do [3] = "Reliable" } - local f_id = ProtoField.uint32("minetest.id", "ID", base.HEX, vs_id) + local f_id = ProtoField.uint32("minetest.id", "Protocol ID", base.HEX, vs_id) local f_peer = ProtoField.uint16("minetest.peer", "Peer", base.DEC, vs_peer) local f_channel = ProtoField.uint8("minetest.channel", "Channel", base.DEC) local f_type = ProtoField.uint8("minetest.type", "Type", base.DEC, vs_type) @@ -1290,14 +1318,15 @@ do t:add(f_id, buffer(0,4)) -- ID is valid, so replace packet's shown protocol - pinfo.cols.protocol = "Minetest" - pinfo.cols.info = "Minetest" + pinfo.cols.protocol = "Luanti" + pinfo.cols.info = "Luanti" -- Set the other header fields + local peer_id = buffer(4,2):uint() t:add(f_peer, buffer(4,2)) t:add(f_channel, buffer(6,1)) t:add(f_type, buffer(7,1)) - t:set_text("Minetest, Peer: " .. buffer(4,2):uint() .. ", Channel: " .. buffer(6,1):uint()) + t:set_text("Luanti, Peer: " .. peer_id .. ", Channel: " .. buffer(6,1):uint()) local reliability_info local pos @@ -1319,14 +1348,14 @@ do control_dissector:call(buffer(pos+1):tvb(), pinfo, tree) elseif buffer(pos,1):uint() == 1 then -- Original message, possibly reliable - if buffer(4,2):uint() == 1 then + if peer_id == 1 then server_dissector:call(buffer(pos+1):tvb(), pinfo, tree) else client_dissector:call(buffer(pos+1):tvb(), pinfo, tree) end elseif buffer(pos,1):uint() == 2 then -- Split message, possibly reliable - if buffer(4,2):uint() == 1 then + if peer_id == 1 then pinfo.cols.info = "Server: Split message" else pinfo.cols.info = "Client: Split message" @@ -1355,6 +1384,8 @@ end -- Utility functions part 2 -- ------------------------------ +minetest_peer_field = Field.new("minetest.peer") + -- Checks if a (sub-)Tvb is long enough to be further dissected. -- If it is long enough, sets the dissector tree item length to min_len -- and returns true. If it is not long enough, adds expert info to the