Merge branch 'master' into pr_color_picker
# Conflicts: # src/game/client/components/chat.h # src/game/client/components/menus_settings.cpp
17
.clang-tidy
|
@ -8,12 +8,29 @@
|
|||
# Too annoying to always align for perfect padding
|
||||
# clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling,
|
||||
# TODO: Requires C11 to fix
|
||||
# misc-unused-parameters
|
||||
# TODO: Many changes
|
||||
|
||||
Checks: >
|
||||
-*,
|
||||
bugprone-*,
|
||||
-bugprone-branch-clone,
|
||||
-bugprone-incorrect-roundings,
|
||||
-bugprone-integer-division,
|
||||
-bugprone-macro-parentheses,
|
||||
-bugprone-narrowing-conversions,
|
||||
-bugprone-parent-virtual-call,
|
||||
-bugprone-unhandled-self-assignment,
|
||||
clang-analyzer-*,
|
||||
-clang-analyzer-optin.cplusplus.UninitializedObject,
|
||||
-clang-analyzer-optin.cplusplus.VirtualCall,
|
||||
-clang-analyzer-optin.performance.Padding,
|
||||
-clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling,
|
||||
misc-*,
|
||||
-misc-non-private-member-variables-in-classes,
|
||||
-misc-static-assert,
|
||||
-misc-unused-parameters,
|
||||
modernize-loop-convert,
|
||||
readability-qualified-auto,
|
||||
performance-*,
|
||||
HeaderFilterRegex: 'src/.*'
|
||||
|
|
29
.github/workflows/style.yml
vendored
|
@ -14,12 +14,29 @@ jobs:
|
|||
runs-on: ubuntu-20.04
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Install clang-format
|
||||
with:
|
||||
submodules: true
|
||||
- name: Prepare
|
||||
run: |
|
||||
sudo apt-get update -y
|
||||
sudo apt-get install clang-format -y
|
||||
- name: Check style
|
||||
sudo apt-get install clang-format imagemagick ddnet-tools shellcheck pkg-config cmake libfreetype6-dev libnotify-dev libsdl2-dev libsqlite3-dev pylint3 python3-clang -y
|
||||
mkdir release
|
||||
cd release
|
||||
cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -DDOWNLOAD_GTEST=OFF -DCMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE=. ..
|
||||
cmake --build . --config Release --target dilate --parallel
|
||||
- name: Check clang-format
|
||||
run: clang-format -version
|
||||
- name: Check fix_style
|
||||
run: scripts/fix_style.py --dry-run
|
||||
- name: Check header guards
|
||||
run: scripts/check_header_guards.py
|
||||
- name: Check languages
|
||||
run: scripts/languages/update_all.py
|
||||
- name: Check dilated images
|
||||
run: scripts/check_dilate.sh release data
|
||||
- name: Shellcheck
|
||||
run: find . -type f -name '*.sh' -print0 | xargs -0 shellcheck
|
||||
- name: Pylint
|
||||
run: |
|
||||
clang-format -version
|
||||
scripts/fix_style.py --dry-run
|
||||
scripts/check_header_guards.py
|
||||
pylint --version
|
||||
find . -type f -name "*.py" -print0 | xargs -0 pylint
|
||||
|
|
5
.gitignore
vendored
|
@ -50,6 +50,7 @@ fake_server
|
|||
map_convert_07
|
||||
map_diff
|
||||
map_extract
|
||||
map_optimize
|
||||
map_replace_image
|
||||
map_resave
|
||||
map_version
|
||||
|
@ -61,6 +62,10 @@ unicode_confusables
|
|||
uuid
|
||||
versionsrv
|
||||
|
||||
# But we still should allow to download mastersrv/twping sources
|
||||
!src/mastersrv
|
||||
!src/twping
|
||||
|
||||
generated
|
||||
|
||||
# IDE project files
|
||||
|
|
24
.pylintrc
Normal file
|
@ -0,0 +1,24 @@
|
|||
[MESSAGES CONTROL]
|
||||
|
||||
indent-string=' '
|
||||
|
||||
disable=
|
||||
C0103, # invalid-name
|
||||
C0114, # missing-module-docstring
|
||||
C0115, # missing-class-docstring
|
||||
C0116, # missing-function-docstring
|
||||
C0301, # line-too-long
|
||||
C0326, # bad-whitespace
|
||||
C0330, # bad-continuation
|
||||
E0402, # relative-beyond-top-level
|
||||
R0201, # no-self-use
|
||||
R0801, # duplicate-code
|
||||
R0902, # too-many-instance-attributes
|
||||
R0903, # too-few-public-methods
|
||||
R0911, # too-many-return-statements
|
||||
R0912, # too-many-branches
|
||||
R0913, # too-many-arguments
|
||||
R0914, # too-many-locals
|
||||
R0915, # too-many-statements
|
||||
W0511, # fixme
|
||||
W0603, # global-statement
|
|
@ -1,4 +1,7 @@
|
|||
cmake_minimum_required(VERSION 2.8)
|
||||
cmake_minimum_required(VERSION 2.8.12...3.19.1)
|
||||
if(CMAKE_VERSION VERSION_LESS 3.12)
|
||||
cmake_policy(VERSION ${CMAKE_VERSION})
|
||||
endif()
|
||||
|
||||
set(CMAKE_OSX_DEPLOYMENT_TARGET 10.9 CACHE INTERNAL "")
|
||||
if(CMAKE_OSX_DEPLOYMENT_TARGET VERSION_LESS 10.9)
|
||||
|
@ -22,23 +25,8 @@ else()
|
|||
message(FATAL_ERROR "Couldn't parse version from src/game/version.h")
|
||||
endif()
|
||||
|
||||
if(POLICY CMP0017)
|
||||
cmake_policy(SET CMP0017 NEW)
|
||||
endif()
|
||||
|
||||
if(POLICY CMP0042)
|
||||
cmake_policy(SET CMP0042 NEW)
|
||||
endif()
|
||||
|
||||
if(POLICY CMP0048)
|
||||
cmake_policy(SET CMP0048 NEW)
|
||||
if(VERSION_PATCH STREQUAL "0")
|
||||
project(DDNet VERSION ${VERSION_MAJOR}.${VERSION_MINOR})
|
||||
else()
|
||||
project(DDNet VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH})
|
||||
endif()
|
||||
else()
|
||||
project(DDNet)
|
||||
# Extra support for CMake pre-3.0
|
||||
if(NOT POLICY CMP0048)
|
||||
set(PROJECT_VERSION_MAJOR ${VERSION_MAJOR})
|
||||
set(PROJECT_VERSION_MINOR ${VERSION_MINOR})
|
||||
set(PROJECT_VERSION_PATCH ${VERSION_PATCH})
|
||||
|
@ -48,6 +36,11 @@ else()
|
|||
set(PROJECT_VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH})
|
||||
endif()
|
||||
endif()
|
||||
if(VERSION_PATCH STREQUAL "0")
|
||||
project(DDNet VERSION ${VERSION_MAJOR}.${VERSION_MINOR})
|
||||
else()
|
||||
project(DDNet VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH})
|
||||
endif()
|
||||
|
||||
set(ORIGINAL_CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH})
|
||||
set(ORIGINAL_CMAKE_REQUIRED_INCLUDES ${CMAKE_REQUIRED_INCLUDES})
|
||||
|
@ -545,8 +538,7 @@ endif()
|
|||
########################################################################
|
||||
|
||||
if(NOT(GTEST_FOUND) AND DOWNLOAD_GTEST)
|
||||
# Change to the 1.9.0 release tag once that works.
|
||||
set(DDNET_GTEST_VERSION 7b6561c56e353100aca8458d7bc49c4e0119bae8)
|
||||
set(DDNET_GTEST_VERSION release-1.10.0) # 703bd9caab50b139428cea1aaff9974ebee5742e
|
||||
configure_file(cmake/Download_GTest_CMakeLists.txt.in googletest-download/CMakeLists.txt)
|
||||
execute_process(COMMAND ${CMAKE_COMMAND} -G "${CMAKE_GENERATOR}" .
|
||||
RESULT_VARIABLE result
|
||||
|
@ -564,6 +556,15 @@ if(NOT(GTEST_FOUND) AND DOWNLOAD_GTEST)
|
|||
message(WARNING "Build step for googletest failed: ${result}")
|
||||
set(DOWNLOAD_GTEST OFF)
|
||||
else()
|
||||
file(GLOB_RECURSE DDNET_GTEST_CMAKELISTS ${CMAKE_BINARY_DIR}/googletest-src/CMakeLists.txt)
|
||||
foreach(file ${DDNET_GTEST_CMAKELISTS})
|
||||
file(READ ${file} CONTENTS)
|
||||
string(REPLACE "cmake_minimum_required(VERSION 2.6.4)" "cmake_minimum_required(VERSION 2.8.12...3.19.1)" CONTENTS "${CONTENTS}")
|
||||
string(REPLACE "cmake_minimum_required(VERSION 2.6.4)" "cmake_minimum_required(VERSION 2.8.12...3.19.1)" CONTENTS "${CONTENTS}")
|
||||
string(REPLACE "cmake_minimum_required(VERSION 2.8.8)" "cmake_minimum_required(VERSION 2.8.12...3.19.1)" CONTENTS "${CONTENTS}")
|
||||
file(WRITE ${file} "${CONTENTS}")
|
||||
endforeach()
|
||||
|
||||
# Prevent overriding the parent project's compiler/linker settings on Windows
|
||||
set(gtest_force_shared_crt ON CACHE BOOL "" FORCE)
|
||||
|
||||
|
@ -1410,6 +1411,13 @@ generate_source7("src/game/generated/client_data7.h" "client_content_header")
|
|||
|
||||
generate_maps("src/game/generated/protocolglue.h")
|
||||
|
||||
add_custom_command(OUTPUT "src/game/generated/wordlist.h"
|
||||
COMMAND ${PYTHON_EXECUTABLE} scripts/wordlist.py > ${PROJECT_BINARY_DIR}/src/game/generated/wordlist.h
|
||||
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
|
||||
DEPENDS
|
||||
scripts/wordlist.py
|
||||
)
|
||||
|
||||
########################################################################
|
||||
# SHARED
|
||||
########################################################################
|
||||
|
@ -1483,8 +1491,6 @@ set_src(ENGINE_SHARED GLOB src/engine/shared
|
|||
datafile.h
|
||||
demo.cpp
|
||||
demo.h
|
||||
dilate.cpp
|
||||
dilate.h
|
||||
econ.cpp
|
||||
econ.h
|
||||
engine.cpp
|
||||
|
@ -1495,6 +1501,8 @@ set_src(ENGINE_SHARED GLOB src/engine/shared
|
|||
global_uuid_manager.cpp
|
||||
huffman.cpp
|
||||
huffman.h
|
||||
image_manipulation.cpp
|
||||
image_manipulation.h
|
||||
jobs.cpp
|
||||
jobs.h
|
||||
json.cpp
|
||||
|
@ -1637,6 +1645,8 @@ if(CLIENT)
|
|||
set_src(ENGINE_CLIENT GLOB src/engine/client
|
||||
backend_sdl.cpp
|
||||
backend_sdl.h
|
||||
blocklist_driver.cpp
|
||||
blocklist_driver.h
|
||||
client.cpp
|
||||
client.h
|
||||
demoedit.cpp
|
||||
|
@ -1976,6 +1986,7 @@ set_src(GAME_SERVER GLOB_RECURSE src/game/server
|
|||
set(GAME_GENERATED_SERVER
|
||||
"src/game/generated/server_data.cpp"
|
||||
"src/game/generated/server_data.h"
|
||||
"src/game/generated/wordlist.h"
|
||||
)
|
||||
set(SERVER_SRC ${ENGINE_SERVER} ${GAME_SERVER} ${GAME_GENERATED_SERVER})
|
||||
if(TARGET_OS STREQUAL "windows")
|
||||
|
@ -2056,6 +2067,7 @@ set_src(TOOLS GLOB src/tools
|
|||
map_convert_07.cpp
|
||||
map_diff.cpp
|
||||
map_extract.cpp
|
||||
map_optimize.cpp
|
||||
map_replace_image.cpp
|
||||
map_resave.cpp
|
||||
packetgen.cpp
|
||||
|
@ -2068,7 +2080,7 @@ foreach(ABS_T ${TOOLS})
|
|||
string(REGEX REPLACE "\\.cpp$" "" TOOL "${T}")
|
||||
set(TOOL_DEPS ${DEPS})
|
||||
set(TOOL_LIBS ${LIBS})
|
||||
if(TOOL MATCHES "^(tileset_.*|dilate|map_convert_07|map_extract|map_replace_image)$")
|
||||
if(TOOL MATCHES "^(dilate|map_convert_07|map_optimize|map_extract|map_replace_image)$")
|
||||
list(APPEND TOOL_DEPS ${PNGLITE_DEP})
|
||||
list(APPEND TOOL_LIBS ${PNGLITE_LIBRARIES})
|
||||
list(APPEND TOOL_INCLUDE_DIRS ${PNGLITE_INCLUDE_DIRS})
|
||||
|
@ -2106,6 +2118,7 @@ if(GTEST_FOUND OR DOWNLOAD_GTEST)
|
|||
set_src(TESTS GLOB src/test
|
||||
aio.cpp
|
||||
bezier.cpp
|
||||
blocklist_driver.cpp
|
||||
color.cpp
|
||||
csv.cpp
|
||||
datafile.cpp
|
||||
|
@ -2127,6 +2140,8 @@ if(GTEST_FOUND OR DOWNLOAD_GTEST)
|
|||
unix.cpp
|
||||
)
|
||||
set(TESTS_EXTRA
|
||||
src/engine/client/blocklist_driver.cpp
|
||||
src/engine/client/blocklist_driver.h
|
||||
src/engine/server/name_ban.cpp
|
||||
src/engine/server/name_ban.h
|
||||
src/game/server/teehistorian.cpp
|
||||
|
@ -2537,6 +2552,8 @@ endmacro()
|
|||
source_group_tree(src)
|
||||
|
||||
if(ANTIBOT)
|
||||
# Allow the antibot library to use functions from the server binary.
|
||||
add_c_compiler_flag_if_supported(OUR_FLAGS_LINK -rdynamic)
|
||||
set_own_rpath(${TARGET_SERVER})
|
||||
endif()
|
||||
|
||||
|
|
17
README.md
|
@ -192,7 +192,7 @@ $ ./DDNet-Server -f mine.cfg
|
|||
</a>
|
||||
|
||||
Installation from Repository
|
||||
-----------------
|
||||
----------------------------
|
||||
|
||||
Debian/Ubuntu
|
||||
|
||||
|
@ -204,7 +204,7 @@ $ apt-get install ddnet
|
|||
MacOS
|
||||
|
||||
```bash
|
||||
$ brew cask install ddnet
|
||||
$ brew install --cask ddnet
|
||||
```
|
||||
|
||||
Fedora
|
||||
|
@ -219,4 +219,17 @@ Arch Linux
|
|||
$ yay -S ddnet
|
||||
```
|
||||
|
||||
FreeBSD
|
||||
|
||||
```bash
|
||||
$ pkg install DDNet
|
||||
```
|
||||
|
||||
Benchmarking
|
||||
------------
|
||||
|
||||
DDNet is available in the [Phoronix Test Suite](https://openbenchmarking.org/test/pts/ddnet). If you have PTS installed you can easily benchmark DDNet on your own system like this:
|
||||
|
||||
```bash
|
||||
$ phoronix-test-suite benchmark ddnet
|
||||
```
|
||||
|
|
|
@ -81,7 +81,7 @@ sv_rank_cheats 1
|
|||
# --------------------
|
||||
|
||||
# Message on chat displayed when joining
|
||||
sv_welcome "Welcome on my server!"
|
||||
sv_welcome "Welcome to my server!"
|
||||
|
||||
# File which will have the announcements (each one in new line)
|
||||
sv_announcement_filename "announcement.txt"
|
||||
|
|
|
@ -3,4 +3,6 @@ status = [
|
|||
"build-cmake (ubuntu-16.04)",
|
||||
"build-cmake (macOS-latest)",
|
||||
"build-cmake (windows-latest)",
|
||||
"check-clang-tidy",
|
||||
"check-style",
|
||||
]
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
cmake_minimum_required(VERSION 2.8)
|
||||
cmake_minimum_required(VERSION 2.8.12...3.19.1)
|
||||
|
||||
project(googletest-download NONE)
|
||||
|
||||
|
|
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 424 B After Width: | Height: | Size: 536 B |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 5.6 KiB After Width: | Height: | Size: 5.5 KiB |
Before Width: | Height: | Size: 274 KiB After Width: | Height: | Size: 271 KiB |
Before Width: | Height: | Size: 66 KiB After Width: | Height: | Size: 66 KiB |
Before Width: | Height: | Size: 74 KiB After Width: | Height: | Size: 74 KiB |
Before Width: | Height: | Size: 50 KiB After Width: | Height: | Size: 50 KiB |
Before Width: | Height: | Size: 90 KiB After Width: | Height: | Size: 91 KiB |
Before Width: | Height: | Size: 90 KiB After Width: | Height: | Size: 91 KiB |
Before Width: | Height: | Size: 286 KiB After Width: | Height: | Size: 284 KiB |
Before Width: | Height: | Size: 194 KiB After Width: | Height: | Size: 190 KiB |
Before Width: | Height: | Size: 63 KiB After Width: | Height: | Size: 63 KiB |
Before Width: | Height: | Size: 71 KiB After Width: | Height: | Size: 70 KiB |
Before Width: | Height: | Size: 47 KiB After Width: | Height: | Size: 47 KiB |
Before Width: | Height: | Size: 294 KiB After Width: | Height: | Size: 275 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 138 KiB After Width: | Height: | Size: 135 KiB |
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 19 KiB |
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 40 KiB |
Before Width: | Height: | Size: 8.2 KiB After Width: | Height: | Size: 8.3 KiB |
Before Width: | Height: | Size: 87 KiB After Width: | Height: | Size: 76 KiB |
|
@ -622,9 +622,6 @@ Name plates size
|
|||
Type:
|
||||
== Тып:
|
||||
|
||||
Downloading ddnet-info.json failed
|
||||
==
|
||||
|
||||
Successfully saved the replay!
|
||||
==
|
||||
|
||||
|
@ -640,6 +637,9 @@ The width or height of texture %s is not divisible by 16, which might cause visu
|
|||
Warning
|
||||
==
|
||||
|
||||
Debug mode enabled. Press Ctrl+Shift+D to disable debug mode.
|
||||
==
|
||||
|
||||
Game paused
|
||||
==
|
||||
|
||||
|
@ -703,7 +703,16 @@ Use k key to kill (restart), q to pause and watch other players. See settings fo
|
|||
It's recommended that you check the settings to adjust them to your liking before joining a server.
|
||||
==
|
||||
|
||||
Please enter your nick name below.
|
||||
Please enter your nickname below.
|
||||
==
|
||||
|
||||
Existing Player
|
||||
==
|
||||
|
||||
Your nickname '%s' is already used (%d points). Do you still want to use it?
|
||||
==
|
||||
|
||||
Checking for existing player with your name
|
||||
==
|
||||
|
||||
Country / Region
|
||||
|
@ -769,9 +778,6 @@ Please use a different name
|
|||
Remove chat
|
||||
==
|
||||
|
||||
File
|
||||
==
|
||||
|
||||
Markers:
|
||||
==
|
||||
|
||||
|
@ -826,6 +832,9 @@ Activate
|
|||
Save
|
||||
==
|
||||
|
||||
Smooth Dynamic Camera
|
||||
==
|
||||
|
||||
Switch weapon when out of ammo
|
||||
==
|
||||
|
||||
|
@ -979,6 +988,12 @@ Enable highlighted chat sound
|
|||
Threaded sound loading
|
||||
==
|
||||
|
||||
Game sound volume
|
||||
==
|
||||
|
||||
Chat sound volume
|
||||
==
|
||||
|
||||
Map sound volume
|
||||
==
|
||||
|
||||
|
@ -1009,6 +1024,9 @@ Show score
|
|||
Show health + ammo
|
||||
==
|
||||
|
||||
Use old chat style
|
||||
==
|
||||
|
||||
Show names in chat in team colors
|
||||
==
|
||||
|
||||
|
@ -1045,6 +1063,9 @@ We will win
|
|||
Friend message
|
||||
==
|
||||
|
||||
Highlight
|
||||
==
|
||||
|
||||
Friend
|
||||
==
|
||||
|
||||
|
@ -1220,16 +1241,16 @@ Restart
|
|||
Time
|
||||
==
|
||||
|
||||
Manual %3d:%02d
|
||||
Manual
|
||||
==
|
||||
|
||||
Race %3d:%02d
|
||||
Race
|
||||
==
|
||||
|
||||
Auto %3d:%02d
|
||||
Auto
|
||||
==
|
||||
|
||||
Replay %3d:%02d
|
||||
Replay
|
||||
==
|
||||
|
||||
Follow
|
||||
|
|
|
@ -697,7 +697,7 @@ Use k key to kill (restart), q to pause and watch other players. See settings fo
|
|||
It's recommended that you check the settings to adjust them to your liking before joining a server.
|
||||
== Preporučeno je da provjeriš i podesiš postavke najbolje za tebe prije nego uđeš na server.
|
||||
|
||||
Please enter your nick name below.
|
||||
Please enter your nickname below.
|
||||
== Molimo unesite vaš nadimak dole.
|
||||
|
||||
Destination file already exist
|
||||
|
@ -1135,15 +1135,24 @@ The width or height of texture %s is not divisible by 16, which might cause visu
|
|||
Country / Region
|
||||
== Zemlja / Regija
|
||||
|
||||
Downloading ddnet-info.json failed
|
||||
==
|
||||
|
||||
Saving ddnet-settings.cfg failed
|
||||
==
|
||||
|
||||
Warning
|
||||
==
|
||||
|
||||
Debug mode enabled. Press Ctrl+Shift+D to disable debug mode.
|
||||
==
|
||||
|
||||
Existing Player
|
||||
==
|
||||
|
||||
Your nickname '%s' is already used (%d points). Do you still want to use it?
|
||||
==
|
||||
|
||||
Checking for existing player with your name
|
||||
==
|
||||
|
||||
Speed
|
||||
==
|
||||
|
||||
|
@ -1162,9 +1171,6 @@ Theme
|
|||
%d player
|
||||
==
|
||||
|
||||
File
|
||||
==
|
||||
|
||||
%.2f MiB
|
||||
==
|
||||
|
||||
|
@ -1174,6 +1180,9 @@ File
|
|||
Demos directory
|
||||
==
|
||||
|
||||
Smooth Dynamic Camera
|
||||
==
|
||||
|
||||
Skip the main menu
|
||||
==
|
||||
|
||||
|
@ -1195,6 +1204,12 @@ Skins directory
|
|||
Borderless window
|
||||
==
|
||||
|
||||
Game sound volume
|
||||
==
|
||||
|
||||
Chat sound volume
|
||||
==
|
||||
|
||||
Background music volume
|
||||
==
|
||||
|
||||
|
@ -1207,6 +1222,12 @@ DDNet
|
|||
Assets
|
||||
==
|
||||
|
||||
Use old chat style
|
||||
==
|
||||
|
||||
Highlight
|
||||
==
|
||||
|
||||
Overlay entities
|
||||
==
|
||||
|
||||
|
@ -1253,16 +1274,16 @@ Editor
|
|||
Play
|
||||
==
|
||||
|
||||
Manual %3d:%02d
|
||||
Manual
|
||||
==
|
||||
|
||||
Race %3d:%02d
|
||||
Race
|
||||
==
|
||||
|
||||
Auto %3d:%02d
|
||||
Auto
|
||||
==
|
||||
|
||||
Replay %3d:%02d
|
||||
Replay
|
||||
==
|
||||
|
||||
FPM
|
||||
|
|
|
@ -723,9 +723,6 @@ Enable gun sound
|
|||
Team message
|
||||
== Mensagem do time
|
||||
|
||||
Manual %3d:%02d
|
||||
== Manual %3d:%02d
|
||||
|
||||
Save the best demo of each race
|
||||
== Salvar a melhor demo de cada corrida
|
||||
|
||||
|
@ -756,9 +753,6 @@ Exclude
|
|||
DDNet Client updated!
|
||||
== DDNet Client atualizado!
|
||||
|
||||
Race %3d:%02d
|
||||
== Corrida %3d:%02d
|
||||
|
||||
Type:
|
||||
== Tipo:
|
||||
|
||||
|
@ -894,9 +888,6 @@ Map:
|
|||
Lht.
|
||||
== Lumin.
|
||||
|
||||
Auto %3d:%02d
|
||||
== Auto %3d:%02d
|
||||
|
||||
Show clan above name plates
|
||||
== Mostrar clã sobre placas de nomes
|
||||
|
||||
|
@ -1107,9 +1098,6 @@ Pause
|
|||
Converse
|
||||
== Conversar
|
||||
|
||||
Replay %3d:%02d
|
||||
== Reproduzir %3d:%02d
|
||||
|
||||
Successfully saved the replay!
|
||||
== A reprodução foi salva com sucesso
|
||||
|
||||
|
@ -1161,7 +1149,7 @@ Use k key to kill (restart), q to pause and watch other players. See settings fo
|
|||
It's recommended that you check the settings to adjust them to your liking before joining a server.
|
||||
== É recomendado que você verifique as configurações para ajustá-las ao seu gosto antes de entrar em um servidor.
|
||||
|
||||
Please enter your nick name below.
|
||||
Please enter your nickname below.
|
||||
== Por favor, insira seu apelido abaixo.
|
||||
|
||||
Destination file already exist
|
||||
|
@ -1240,18 +1228,12 @@ Editor
|
|||
Play
|
||||
== Jogar
|
||||
|
||||
Downloading ddnet-info.json failed
|
||||
== Falha ao baixar ddnet-info.json
|
||||
|
||||
Saving ddnet-settings.cfg failed
|
||||
== Falha ao salvar ddnet-settings.cfg
|
||||
|
||||
Theme
|
||||
== Tema
|
||||
|
||||
File
|
||||
== Arquivo
|
||||
|
||||
Demos directory
|
||||
== Diretório de demos
|
||||
|
||||
|
@ -1284,3 +1266,42 @@ Particles
|
|||
|
||||
Assets directory
|
||||
== Diretório de ativos
|
||||
|
||||
Manual
|
||||
== Manual
|
||||
|
||||
Race
|
||||
== Corrida
|
||||
|
||||
Auto
|
||||
== Auto
|
||||
|
||||
Replay
|
||||
== Reproduzir
|
||||
|
||||
Debug mode enabled. Press Ctrl+Shift+D to disable debug mode.
|
||||
== Modo de depuração habilitado. Pressione Ctrl+Shift+D para desabilitar o modo de depuração.
|
||||
|
||||
Existing Player
|
||||
== Jogador existente
|
||||
|
||||
Your nickname '%s' is already used (%d points). Do you still want to use it?
|
||||
== Seu apelido "%s" já está sendo usado (%d pontos). Ainda assim, você deseja usá-lo?
|
||||
|
||||
Checking for existing player with your name
|
||||
== Conferindo por jogador existente com seu nome
|
||||
|
||||
Smooth Dynamic Camera
|
||||
== Câmera dinâmica suave
|
||||
|
||||
Game sound volume
|
||||
== Volume de som do jogo
|
||||
|
||||
Chat sound volume
|
||||
== Volume de som do chat
|
||||
|
||||
Use old chat style
|
||||
== Usar estilo de chat antigo
|
||||
|
||||
Highlight
|
||||
== Realce
|
||||
|
|
|
@ -619,9 +619,6 @@ Name plates size
|
|||
Type:
|
||||
== Тип:
|
||||
|
||||
Downloading ddnet-info.json failed
|
||||
==
|
||||
|
||||
Successfully saved the replay!
|
||||
==
|
||||
|
||||
|
@ -637,6 +634,9 @@ The width or height of texture %s is not divisible by 16, which might cause visu
|
|||
Warning
|
||||
==
|
||||
|
||||
Debug mode enabled. Press Ctrl+Shift+D to disable debug mode.
|
||||
==
|
||||
|
||||
Game paused
|
||||
==
|
||||
|
||||
|
@ -700,7 +700,16 @@ Use k key to kill (restart), q to pause and watch other players. See settings fo
|
|||
It's recommended that you check the settings to adjust them to your liking before joining a server.
|
||||
==
|
||||
|
||||
Please enter your nick name below.
|
||||
Please enter your nickname below.
|
||||
==
|
||||
|
||||
Existing Player
|
||||
==
|
||||
|
||||
Your nickname '%s' is already used (%d points). Do you still want to use it?
|
||||
==
|
||||
|
||||
Checking for existing player with your name
|
||||
==
|
||||
|
||||
Country / Region
|
||||
|
@ -766,9 +775,6 @@ Please use a different name
|
|||
Remove chat
|
||||
==
|
||||
|
||||
File
|
||||
==
|
||||
|
||||
Markers:
|
||||
==
|
||||
|
||||
|
@ -823,6 +829,9 @@ Activate
|
|||
Save
|
||||
==
|
||||
|
||||
Smooth Dynamic Camera
|
||||
==
|
||||
|
||||
Switch weapon when out of ammo
|
||||
==
|
||||
|
||||
|
@ -979,6 +988,12 @@ Enable highlighted chat sound
|
|||
Threaded sound loading
|
||||
==
|
||||
|
||||
Game sound volume
|
||||
==
|
||||
|
||||
Chat sound volume
|
||||
==
|
||||
|
||||
Map sound volume
|
||||
==
|
||||
|
||||
|
@ -1009,6 +1024,9 @@ Show score
|
|||
Show health + ammo
|
||||
==
|
||||
|
||||
Use old chat style
|
||||
==
|
||||
|
||||
Show names in chat in team colors
|
||||
==
|
||||
|
||||
|
@ -1045,6 +1063,9 @@ We will win
|
|||
Friend message
|
||||
==
|
||||
|
||||
Highlight
|
||||
==
|
||||
|
||||
Friend
|
||||
==
|
||||
|
||||
|
@ -1220,16 +1241,16 @@ Restart
|
|||
Time
|
||||
==
|
||||
|
||||
Manual %3d:%02d
|
||||
Manual
|
||||
==
|
||||
|
||||
Race %3d:%02d
|
||||
Race
|
||||
==
|
||||
|
||||
Auto %3d:%02d
|
||||
Auto
|
||||
==
|
||||
|
||||
Replay %3d:%02d
|
||||
Replay
|
||||
==
|
||||
|
||||
Follow
|
||||
|
|
|
@ -750,9 +750,6 @@ Show health + ammo
|
|||
Team message
|
||||
== Missatge d'equip
|
||||
|
||||
Manual %3d:%02d
|
||||
== Manual %3d:%02d
|
||||
|
||||
Automatically create statboard csv
|
||||
== Crear un fitxer csv d'estadístiques automàticament
|
||||
|
||||
|
@ -780,9 +777,6 @@ Threaded sound loading
|
|||
Check now
|
||||
== Comprova ara
|
||||
|
||||
Race %3d:%02d
|
||||
== Carrera %3d:%02d
|
||||
|
||||
Background (regular)
|
||||
== Fons (regular)
|
||||
|
||||
|
@ -888,9 +882,6 @@ Clan plates size
|
|||
Update now
|
||||
== Actualitza ara
|
||||
|
||||
Auto %3d:%02d
|
||||
== Auto %3d:%02d
|
||||
|
||||
Show clan above name plates
|
||||
== Mostrar el clan a sobre dels noms
|
||||
|
||||
|
@ -1035,7 +1026,7 @@ Most importantly communication is key: There is no tutorial so you'll have to ch
|
|||
It's recommended that you check the settings to adjust them to your liking before joining a server.
|
||||
== És recomanat que miris la configuració i ho canviïs al teu gust abans d'entrar a un servidor.
|
||||
|
||||
Please enter your nick name below.
|
||||
Please enter your nickname below.
|
||||
== Si us plau, escriu el teu nom a sota.
|
||||
|
||||
Destination file already exist
|
||||
|
@ -1146,9 +1137,6 @@ Show others (own team only)
|
|||
Time
|
||||
== Temps
|
||||
|
||||
Replay %3d:%02d
|
||||
== Repetició %3d:%02d
|
||||
|
||||
1 new mention
|
||||
== 1 nova menció
|
||||
|
||||
|
@ -1158,8 +1146,17 @@ Replay %3d:%02d
|
|||
9+ new mentions
|
||||
== 9+ noves mencions
|
||||
|
||||
Downloading ddnet-info.json failed
|
||||
==
|
||||
Manual
|
||||
== Manual
|
||||
|
||||
Race
|
||||
== Carrera
|
||||
|
||||
Auto
|
||||
== Auto
|
||||
|
||||
Replay
|
||||
== Repetició
|
||||
|
||||
Saving ddnet-settings.cfg failed
|
||||
==
|
||||
|
@ -1170,9 +1167,21 @@ The width or height of texture %s is not divisible by 16, which might cause visu
|
|||
Warning
|
||||
==
|
||||
|
||||
Debug mode enabled. Press Ctrl+Shift+D to disable debug mode.
|
||||
==
|
||||
|
||||
Use k key to kill (restart), q to pause and watch other players. See settings for other key binds.
|
||||
==
|
||||
|
||||
Existing Player
|
||||
==
|
||||
|
||||
Your nickname '%s' is already used (%d points). Do you still want to use it?
|
||||
==
|
||||
|
||||
Checking for existing player with your name
|
||||
==
|
||||
|
||||
Country / Region
|
||||
==
|
||||
|
||||
|
@ -1194,10 +1203,10 @@ Theme
|
|||
%d player
|
||||
==
|
||||
|
||||
File
|
||||
Demos directory
|
||||
==
|
||||
|
||||
Demos directory
|
||||
Smooth Dynamic Camera
|
||||
==
|
||||
|
||||
Skip the main menu
|
||||
|
@ -1215,12 +1224,24 @@ Skin Database
|
|||
Skins directory
|
||||
==
|
||||
|
||||
Game sound volume
|
||||
==
|
||||
|
||||
Chat sound volume
|
||||
==
|
||||
|
||||
Background music volume
|
||||
==
|
||||
|
||||
Assets
|
||||
==
|
||||
|
||||
Use old chat style
|
||||
==
|
||||
|
||||
Highlight
|
||||
==
|
||||
|
||||
Client message
|
||||
==
|
||||
|
||||
|
|
|
@ -622,9 +622,6 @@ Name plates size
|
|||
Type:
|
||||
== Тĕс:
|
||||
|
||||
Downloading ddnet-info.json failed
|
||||
==
|
||||
|
||||
Successfully saved the replay!
|
||||
==
|
||||
|
||||
|
@ -640,6 +637,9 @@ The width or height of texture %s is not divisible by 16, which might cause visu
|
|||
Warning
|
||||
==
|
||||
|
||||
Debug mode enabled. Press Ctrl+Shift+D to disable debug mode.
|
||||
==
|
||||
|
||||
Game paused
|
||||
==
|
||||
|
||||
|
@ -703,7 +703,16 @@ Use k key to kill (restart), q to pause and watch other players. See settings fo
|
|||
It's recommended that you check the settings to adjust them to your liking before joining a server.
|
||||
==
|
||||
|
||||
Please enter your nick name below.
|
||||
Please enter your nickname below.
|
||||
==
|
||||
|
||||
Existing Player
|
||||
==
|
||||
|
||||
Your nickname '%s' is already used (%d points). Do you still want to use it?
|
||||
==
|
||||
|
||||
Checking for existing player with your name
|
||||
==
|
||||
|
||||
Country / Region
|
||||
|
@ -769,9 +778,6 @@ Please use a different name
|
|||
Remove chat
|
||||
==
|
||||
|
||||
File
|
||||
==
|
||||
|
||||
Markers:
|
||||
==
|
||||
|
||||
|
@ -826,6 +832,9 @@ Activate
|
|||
Save
|
||||
==
|
||||
|
||||
Smooth Dynamic Camera
|
||||
==
|
||||
|
||||
Switch weapon when out of ammo
|
||||
==
|
||||
|
||||
|
@ -979,6 +988,12 @@ Enable highlighted chat sound
|
|||
Threaded sound loading
|
||||
==
|
||||
|
||||
Game sound volume
|
||||
==
|
||||
|
||||
Chat sound volume
|
||||
==
|
||||
|
||||
Map sound volume
|
||||
==
|
||||
|
||||
|
@ -1009,6 +1024,9 @@ Show score
|
|||
Show health + ammo
|
||||
==
|
||||
|
||||
Use old chat style
|
||||
==
|
||||
|
||||
Show names in chat in team colors
|
||||
==
|
||||
|
||||
|
@ -1045,6 +1063,9 @@ We will win
|
|||
Friend message
|
||||
==
|
||||
|
||||
Highlight
|
||||
==
|
||||
|
||||
Friend
|
||||
==
|
||||
|
||||
|
@ -1220,16 +1241,16 @@ Restart
|
|||
Time
|
||||
==
|
||||
|
||||
Manual %3d:%02d
|
||||
Manual
|
||||
==
|
||||
|
||||
Race %3d:%02d
|
||||
Race
|
||||
==
|
||||
|
||||
Auto %3d:%02d
|
||||
Auto
|
||||
==
|
||||
|
||||
Replay %3d:%02d
|
||||
Replay
|
||||
==
|
||||
|
||||
Follow
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
# SnOrKilll
|
||||
#modified by:
|
||||
# matiasmunk 2011-08-06 22:49:11
|
||||
# Fin (b3z) 2020-11-11 20:05:00
|
||||
##### /authors #####
|
||||
|
||||
##### translated strings #####
|
||||
|
@ -622,651 +623,672 @@ Name plates size
|
|||
Type:
|
||||
== Type:
|
||||
|
||||
Downloading ddnet-info.json failed
|
||||
==
|
||||
|
||||
Successfully saved the replay!
|
||||
==
|
||||
== Afspilning blev gemt!
|
||||
|
||||
Saving ddnet-settings.cfg failed
|
||||
==
|
||||
== Gemning af ddnet-settings.cfg mislykkedes
|
||||
|
||||
Replay feature is disabled!
|
||||
==
|
||||
== Afspilningsfunktionen er deaktiveret!
|
||||
|
||||
The width or height of texture %s is not divisible by 16, which might cause visual bugs.
|
||||
==
|
||||
== Bredden eller højden af tekstur%s kan ikke deles med 16, hvilket kan forårsage visuelle fejl.
|
||||
|
||||
Warning
|
||||
==
|
||||
== Advarsel
|
||||
|
||||
Debug mode enabled. Press Ctrl+Shift+D to disable debug mode.
|
||||
== Fejlfindingstilstand aktiveret. Tryk på Ctrl+Shift+D for at deaktivere fejlretningstilstand.
|
||||
|
||||
Game paused
|
||||
==
|
||||
== Spillet sat på pause
|
||||
|
||||
Server best:
|
||||
==
|
||||
== Server bedst:
|
||||
|
||||
Personal best:
|
||||
==
|
||||
== Personlig bedst:
|
||||
|
||||
Browser
|
||||
==
|
||||
== Browser
|
||||
|
||||
Ghost
|
||||
==
|
||||
== Spøgelse
|
||||
|
||||
Loading DDNet Client
|
||||
==
|
||||
== Indlæser DDNet Klient
|
||||
|
||||
Reconnect in %d sec
|
||||
==
|
||||
== Tilslut igen om %d sek
|
||||
|
||||
Render demo
|
||||
==
|
||||
== Gengive demo
|
||||
|
||||
Replace video
|
||||
==
|
||||
== Udskift video
|
||||
|
||||
File already exists, do you want to overwrite it?
|
||||
==
|
||||
== Filen findes allerede. Vil du overskrive den?
|
||||
|
||||
Are you sure that you want to disconnect?
|
||||
==
|
||||
== Er du sikker på, at du vil afbryde forbindelsen?
|
||||
|
||||
Disconnect Dummy
|
||||
==
|
||||
== Afbryd dummy
|
||||
|
||||
Are you sure that you want to disconnect your dummy?
|
||||
==
|
||||
== Er du sikker på, at du vil afbryde din dummy?
|
||||
|
||||
Welcome to DDNet
|
||||
==
|
||||
== Velkommen til DDNet
|
||||
|
||||
DDraceNetwork is a cooperative online game where the goal is for you and your group of tees to reach the finish line of the map. As a newcomer you should start on Novice servers, which host the easiest maps. Consider the ping to choose a server close to you.
|
||||
==
|
||||
== DDraceNetwork er et samarbejdsvilligt onlinespil, hvor målet er, at du og din gruppe tees når målstregen på kortet. Som nybegynder skal du starte på Novice-servere, som er vært for de nemmeste kort. Overvej ping for at vælge en server tæt på dig.
|
||||
|
||||
The maps contain freeze, which temporarily make a tee unable to move. You have to work together to get through these parts.
|
||||
==
|
||||
== Kortene indeholder frysning, hvilket midlertidigt gør, at en tee ikke kan bevæge sig. Du er nødt til at arbejde sammen for at komme igennem disse dele.
|
||||
|
||||
The mouse wheel changes weapons. Hammer (left mouse) can be used to hit other tees and wake them up from being frozen.
|
||||
==
|
||||
== Mushjulet skifter våben. Hammer (venstre mus) kan bruges til at ramme andre tees og vække dem fra at være frossne.
|
||||
|
||||
Hook (right mouse) can be used to swing through the map and to hook other tees to you.
|
||||
==
|
||||
== Krog (højre mus) kan bruges til at svinge gennem kortet og til at trække andre tees til dig.
|
||||
|
||||
Most importantly communication is key: There is no tutorial so you'll have to chat (t key) with other players to learn the basics and tricks of the game.
|
||||
==
|
||||
== Vigtigst er kommunikation nøglen: Der er ingen tutorial, så du bliver nødt til at chatte (t tasten) med andre spillere for at lære de grundlæggende og tricks i spillet.
|
||||
|
||||
Use k key to kill (restart), q to pause and watch other players. See settings for other key binds.
|
||||
==
|
||||
== Brug k tasten til at dræbe (genstart), q for at sætte pause og se andre spillere. Se indstillinger for andre tastebindinger.
|
||||
|
||||
It's recommended that you check the settings to adjust them to your liking before joining a server.
|
||||
==
|
||||
== Det anbefales, at du kontrollerer indstillingerne for at justere dem efter eget valg, før du opretter forbindelse til en server.
|
||||
|
||||
Please enter your nick name below.
|
||||
==
|
||||
Please enter your nickname below.
|
||||
== Indtast dit kaldenavn nedenfor.
|
||||
|
||||
Existing Player
|
||||
== Eksisterende Spiller
|
||||
|
||||
Your nickname '%s' is already used (%d points). Do you still want to use it?
|
||||
== Your nickname '%s' is already in use (%d points). Do you still want to use it?
|
||||
|
||||
Checking for existing player with your name
|
||||
== Kontrollerer for eksisterende spiller med dit navn
|
||||
|
||||
Country / Region
|
||||
==
|
||||
== Land / Region
|
||||
|
||||
Destination file already exist
|
||||
==
|
||||
== Destinationsfil findes allerede
|
||||
|
||||
Speed
|
||||
==
|
||||
== Hastighed
|
||||
|
||||
Video name:
|
||||
==
|
||||
== Video navn:
|
||||
|
||||
Show DDNet map finishes in server browser
|
||||
==
|
||||
== Vis DDNet kort færdig i serverbrowseren
|
||||
|
||||
transmits your player name to info2.ddnet.tw
|
||||
==
|
||||
== sender dit spillernavn til info2.ddnet.tw
|
||||
|
||||
Theme
|
||||
==
|
||||
== Tema
|
||||
|
||||
Search
|
||||
==
|
||||
== Søg
|
||||
|
||||
Exclude
|
||||
==
|
||||
== Udelukke
|
||||
|
||||
%d of %d servers
|
||||
==
|
||||
== %d ud af %d servere
|
||||
|
||||
%d of %d server
|
||||
==
|
||||
== %d af %d server
|
||||
|
||||
%d players
|
||||
==
|
||||
== %d spillere
|
||||
|
||||
%d player
|
||||
==
|
||||
== %d spiller
|
||||
|
||||
Filter connecting players
|
||||
==
|
||||
== Filtrer forbindende spillere
|
||||
|
||||
Indicate map finish
|
||||
==
|
||||
== Angiv, om kortet er færdigt
|
||||
|
||||
Unfinished map
|
||||
==
|
||||
== Ufærdigt kort
|
||||
|
||||
Countries
|
||||
==
|
||||
== Lande
|
||||
|
||||
Types
|
||||
==
|
||||
== Typer
|
||||
|
||||
Select a name
|
||||
==
|
||||
== Vælg et navn
|
||||
|
||||
Please use a different name
|
||||
==
|
||||
== Brug et andet navn
|
||||
|
||||
Remove chat
|
||||
==
|
||||
|
||||
File
|
||||
==
|
||||
== Fjern chat
|
||||
|
||||
Markers:
|
||||
==
|
||||
== Markører:
|
||||
|
||||
%.2f MiB
|
||||
==
|
||||
== %.2f MiB
|
||||
|
||||
%.2f KiB
|
||||
==
|
||||
== %.2f KiB
|
||||
|
||||
Demo
|
||||
==
|
||||
== Demo
|
||||
|
||||
Markers
|
||||
==
|
||||
== Markører
|
||||
|
||||
Length
|
||||
==
|
||||
== Længde
|
||||
|
||||
Date
|
||||
==
|
||||
== Dato
|
||||
|
||||
Fetch Info
|
||||
==
|
||||
== Hent info
|
||||
|
||||
Demos directory
|
||||
==
|
||||
== Demoer vejviser
|
||||
|
||||
Render
|
||||
==
|
||||
== Gør
|
||||
|
||||
Connecting dummy
|
||||
==
|
||||
== Forbinder dummy
|
||||
|
||||
Connect Dummy
|
||||
==
|
||||
== Forbind dummy
|
||||
|
||||
Kill
|
||||
==
|
||||
== Dræbe
|
||||
|
||||
Pause
|
||||
==
|
||||
== Pause
|
||||
|
||||
Reload
|
||||
==
|
||||
== Genindlæs
|
||||
|
||||
Deactivate
|
||||
==
|
||||
== Deaktiver
|
||||
|
||||
Activate
|
||||
==
|
||||
== Aktivér
|
||||
|
||||
Save
|
||||
==
|
||||
== Gemme
|
||||
|
||||
Smooth Dynamic Camera
|
||||
== Glat Dynamisk Kamera
|
||||
|
||||
Switch weapon when out of ammo
|
||||
==
|
||||
== Skift våben, når du er ude af ammunition
|
||||
|
||||
Reset wanted weapon on death
|
||||
==
|
||||
== Nulstil ønsket våben ved døden
|
||||
|
||||
Show only chat messages from friends
|
||||
==
|
||||
== Vis kun chatbeskeder fra venner
|
||||
|
||||
Show clan above name plates
|
||||
==
|
||||
== Vis klan over navneskilt
|
||||
|
||||
Clan plates size
|
||||
==
|
||||
== Klanetiketstørrelse
|
||||
|
||||
Skip the main menu
|
||||
==
|
||||
== Spring hovedmenuen over
|
||||
|
||||
Refresh Rate
|
||||
==
|
||||
== Opdateringshastighed
|
||||
|
||||
Show console window
|
||||
==
|
||||
== Vis konsolvindue
|
||||
|
||||
Themes directory
|
||||
==
|
||||
== Tema vejviser
|
||||
|
||||
Automatically take statboard screenshot
|
||||
==
|
||||
== Tag automatisk skærmbillede på statboard
|
||||
|
||||
Automatically create statboard csv
|
||||
==
|
||||
== Opret automatisk statboard csv
|
||||
|
||||
Max CSVs
|
||||
==
|
||||
== Maks CSVs
|
||||
|
||||
Dummy settings
|
||||
==
|
||||
== Dummy indstillinger
|
||||
|
||||
Download skins
|
||||
==
|
||||
== Download skind
|
||||
|
||||
Vanilla skins only
|
||||
==
|
||||
== Kun vaniljeskind
|
||||
|
||||
Fat skins (DDFat)
|
||||
==
|
||||
== Fed skind (DDFat)
|
||||
|
||||
Skin prefix
|
||||
==
|
||||
== Hudpræfiks
|
||||
|
||||
Skin Database
|
||||
==
|
||||
== Huddatabase
|
||||
|
||||
Skins directory
|
||||
==
|
||||
== Skind vejviser
|
||||
|
||||
Hook collisions
|
||||
==
|
||||
== Krogkollisioner
|
||||
|
||||
Zoom in
|
||||
==
|
||||
== Zoome ind
|
||||
|
||||
Zoom out
|
||||
==
|
||||
== Zoome ud
|
||||
|
||||
Default zoom
|
||||
==
|
||||
== Standard zoom
|
||||
|
||||
Show others
|
||||
==
|
||||
== Vis andre
|
||||
|
||||
Show all
|
||||
==
|
||||
== Vis alt
|
||||
|
||||
Toggle dyncam
|
||||
==
|
||||
== Skift dyncam
|
||||
|
||||
Toggle dummy
|
||||
==
|
||||
== Skift dummy
|
||||
|
||||
Toggle ghost
|
||||
==
|
||||
== Skift spøgelse
|
||||
|
||||
Dummy copy
|
||||
==
|
||||
== Skift kopi
|
||||
|
||||
Hammerfly dummy
|
||||
==
|
||||
== Hammerflyve dummy
|
||||
|
||||
Converse
|
||||
==
|
||||
== Snak
|
||||
|
||||
Statboard
|
||||
==
|
||||
== Statboard
|
||||
|
||||
Lock team
|
||||
==
|
||||
== Lås team
|
||||
|
||||
Show entities
|
||||
==
|
||||
== Vis entities
|
||||
|
||||
Show HUD
|
||||
==
|
||||
== Vis HUD
|
||||
|
||||
UI mouse s.
|
||||
==
|
||||
== UI mus s.
|
||||
|
||||
Borderless window
|
||||
==
|
||||
== Kantløs vindue
|
||||
|
||||
may cause delay
|
||||
==
|
||||
== kan forårsage forsinkelse
|
||||
|
||||
Screen
|
||||
==
|
||||
== Skærm
|
||||
|
||||
Use OpenGL 3.3 (experimental)
|
||||
==
|
||||
== Brug OpenGL 3.3 (eksperimentel)
|
||||
|
||||
Preinit VBO (iGPUs only)
|
||||
==
|
||||
== Præinit VBO (iGPUs alene)
|
||||
|
||||
Multiple texture units (disable for MacOS)
|
||||
==
|
||||
== Flere teksturenheder (deaktiver for MacOS)
|
||||
|
||||
Use high DPI
|
||||
==
|
||||
== Brug højt DPI
|
||||
|
||||
Enable game sounds
|
||||
==
|
||||
== Aktivér spillyde
|
||||
|
||||
Enable gun sound
|
||||
==
|
||||
== Aktivér pistollyd
|
||||
|
||||
Enable long pain sound (used when shooting in freeze)
|
||||
==
|
||||
== Aktivér lyd med lang smerte (bruges når du falder i frysepunkt)
|
||||
|
||||
Enable server message sound
|
||||
==
|
||||
== Aktivér serverbeskedlyd
|
||||
|
||||
Enable regular chat sound
|
||||
==
|
||||
== Aktivér regelmæssig chatlyd
|
||||
|
||||
Enable team chat sound
|
||||
==
|
||||
== Aktivér teamchat-lyd
|
||||
|
||||
Enable highlighted chat sound
|
||||
==
|
||||
== Aktivér fremhævet chatlyd
|
||||
|
||||
Threaded sound loading
|
||||
==
|
||||
== Trådet lydindlæsning
|
||||
|
||||
Game sound volume
|
||||
== Spillydstyrke
|
||||
|
||||
Chat sound volume
|
||||
== Chatlydstyrke
|
||||
|
||||
Map sound volume
|
||||
==
|
||||
== Kortlydstyrke
|
||||
|
||||
Background music volume
|
||||
==
|
||||
== Baggrundsmusikvolumen
|
||||
|
||||
HUD
|
||||
==
|
||||
== HUD
|
||||
|
||||
DDNet
|
||||
==
|
||||
== DDNet
|
||||
|
||||
Assets
|
||||
==
|
||||
== Assets
|
||||
|
||||
DDNet Client needs to be restarted to complete update!
|
||||
==
|
||||
== DDNet Klient skal genstartes for at fuldføre opdateringen!
|
||||
|
||||
Use DDRace Scoreboard
|
||||
==
|
||||
== Brug DDRace resultattavle
|
||||
|
||||
Show client IDs in Scoreboard
|
||||
==
|
||||
== Vis klient-id'er på resultattavlen
|
||||
|
||||
Show score
|
||||
==
|
||||
== Vis score
|
||||
|
||||
Show health + ammo
|
||||
==
|
||||
== Vis sundhed + ammo
|
||||
|
||||
Use old chat style
|
||||
== Brug gammel chat-stil
|
||||
|
||||
Show names in chat in team colors
|
||||
==
|
||||
== Vis navne i chat i teamfarver
|
||||
|
||||
Show kill messages
|
||||
==
|
||||
== Vis dræb beskeder
|
||||
|
||||
Show votes window after voting
|
||||
==
|
||||
== Vis vinduet med stemmer efter afstemning
|
||||
|
||||
Messages
|
||||
==
|
||||
== Beskeder
|
||||
|
||||
System message
|
||||
==
|
||||
== Systemmeddelelse
|
||||
|
||||
Reset
|
||||
==
|
||||
== Nulstil
|
||||
|
||||
Highlighted message
|
||||
==
|
||||
== Fremhævet besked
|
||||
|
||||
Spectator
|
||||
==
|
||||
== Tilskuer
|
||||
|
||||
Look out!
|
||||
==
|
||||
== Pas på!
|
||||
|
||||
Team message
|
||||
==
|
||||
== Team besked
|
||||
|
||||
We will win
|
||||
==
|
||||
== Vi vil vinde
|
||||
|
||||
Friend message
|
||||
==
|
||||
== Ven besked
|
||||
|
||||
Highlight
|
||||
== Fremhæve
|
||||
|
||||
Friend
|
||||
==
|
||||
== Ven
|
||||
|
||||
Hi o/
|
||||
==
|
||||
== Hej o/
|
||||
|
||||
Normal message
|
||||
==
|
||||
== Normal besked
|
||||
|
||||
Hello and welcome
|
||||
==
|
||||
== Hej og velkommen
|
||||
|
||||
Client message
|
||||
==
|
||||
== Klient besked
|
||||
|
||||
Inner color
|
||||
==
|
||||
== Indre farve
|
||||
|
||||
Outline color
|
||||
==
|
||||
== Ydre farve
|
||||
|
||||
Wait before try for
|
||||
==
|
||||
== Vent inden du prøver
|
||||
|
||||
second
|
||||
==
|
||||
== sekund
|
||||
|
||||
seconds
|
||||
==
|
||||
== sekunder
|
||||
|
||||
Save the best demo of each race
|
||||
==
|
||||
== Gem den bedste demo af hvert løb
|
||||
|
||||
Default length: %d
|
||||
==
|
||||
== Standardlængde: %d
|
||||
|
||||
Enable replays
|
||||
==
|
||||
== Aktivér gentagelser
|
||||
|
||||
Show ghost
|
||||
==
|
||||
== Vis spøgelse
|
||||
|
||||
Save ghost
|
||||
==
|
||||
== Gem spøgelse
|
||||
|
||||
Gameplay
|
||||
==
|
||||
== Gameplay
|
||||
|
||||
Overlay entities
|
||||
==
|
||||
== Dække entities
|
||||
|
||||
Size
|
||||
==
|
||||
== Størrelse
|
||||
|
||||
Show text entities
|
||||
==
|
||||
== Vis tekst entities
|
||||
|
||||
Show others (own team only)
|
||||
==
|
||||
== Vis andre (kun eget hold)
|
||||
|
||||
Show quads
|
||||
==
|
||||
== Vis quads
|
||||
|
||||
AntiPing
|
||||
==
|
||||
== AntiPing
|
||||
|
||||
AntiPing: predict other players
|
||||
==
|
||||
== AntiPing: forudsige andre spillere
|
||||
|
||||
AntiPing: predict weapons
|
||||
==
|
||||
== AntiPing: forudsige våben
|
||||
|
||||
AntiPing: predict grenade paths
|
||||
==
|
||||
== AbtiPing: forudsige granatstier
|
||||
|
||||
Show other players' hook collision lines
|
||||
==
|
||||
== Vis andre spillers kroge kollisionslinjer
|
||||
|
||||
Show other players' key presses
|
||||
==
|
||||
== Vis andre spillers tastetryk
|
||||
|
||||
Old mouse mode
|
||||
==
|
||||
== Gammel musetilstand
|
||||
|
||||
Background (regular)
|
||||
==
|
||||
== Baggrund (almindelig)
|
||||
|
||||
Background (entities)
|
||||
==
|
||||
== Baggrund (entities)
|
||||
|
||||
Use current map as background
|
||||
==
|
||||
== Brug det aktuelle kort som baggrund
|
||||
|
||||
Show tiles layers from BG map
|
||||
==
|
||||
== Vis fliselag fra baggrundskortet
|
||||
|
||||
Try fast HTTP map download first
|
||||
==
|
||||
== Prøv hurtig download af HTTP kort først
|
||||
|
||||
DDNet %s is available:
|
||||
==
|
||||
== DDNet %s er tilgængelig:
|
||||
|
||||
Update now
|
||||
==
|
||||
== Opdatere nu
|
||||
|
||||
Updating...
|
||||
==
|
||||
== Opdaterer...
|
||||
|
||||
DDNet Client updated!
|
||||
==
|
||||
== DDNet Klient opdateret!
|
||||
|
||||
No updates available
|
||||
==
|
||||
== Ingen opdateringer tilgængelige
|
||||
|
||||
Check now
|
||||
==
|
||||
== Tjek nu
|
||||
|
||||
New random timeout code
|
||||
==
|
||||
== Ny tilfældig timeout kode
|
||||
|
||||
Entities
|
||||
==
|
||||
== Entities
|
||||
|
||||
Emoticons
|
||||
==
|
||||
== Humørikoner
|
||||
|
||||
Particles
|
||||
==
|
||||
== Partikler
|
||||
|
||||
Assets directory
|
||||
==
|
||||
== Assets vejviser
|
||||
|
||||
Learn
|
||||
==
|
||||
== Lære
|
||||
|
||||
https://wiki.ddnet.tw/
|
||||
==
|
||||
== https://wiki.ddnet.tw/
|
||||
|
||||
Website
|
||||
==
|
||||
== Internet side
|
||||
|
||||
Settings
|
||||
==
|
||||
== Indstillinger
|
||||
|
||||
Stop server
|
||||
==
|
||||
== Stop server
|
||||
|
||||
Run server
|
||||
==
|
||||
== Kør server
|
||||
|
||||
Server executable not found, can't run server
|
||||
==
|
||||
== Server eksekverbar blev ikke fundet, kan ikke køre server
|
||||
|
||||
Editor
|
||||
==
|
||||
== Redaktør
|
||||
|
||||
[Start menu]
|
||||
Play
|
||||
==
|
||||
== Spil
|
||||
|
||||
DDNet %s is out!
|
||||
==
|
||||
== DDNet %s er ude!
|
||||
|
||||
Downloading %s:
|
||||
==
|
||||
== Downloader %s:
|
||||
|
||||
Update failed! Check log...
|
||||
==
|
||||
== Opdatering fejlede! Tjek log...
|
||||
|
||||
Restart
|
||||
==
|
||||
== Genstart
|
||||
|
||||
Time
|
||||
==
|
||||
== Tid
|
||||
|
||||
Manual %3d:%02d
|
||||
==
|
||||
Manual
|
||||
== Manual
|
||||
|
||||
Race %3d:%02d
|
||||
==
|
||||
Race
|
||||
== Race
|
||||
|
||||
Auto %3d:%02d
|
||||
==
|
||||
Auto
|
||||
== Auto
|
||||
|
||||
Replay %3d:%02d
|
||||
==
|
||||
Replay
|
||||
== Afspil igen
|
||||
|
||||
Follow
|
||||
==
|
||||
== Følge med
|
||||
|
||||
Frags
|
||||
==
|
||||
== Frags
|
||||
|
||||
Deaths
|
||||
==
|
||||
== Dødsfalder
|
||||
|
||||
Suicides
|
||||
==
|
||||
== Selvmord
|
||||
|
||||
Ratio
|
||||
==
|
||||
== Forhold
|
||||
|
||||
Net
|
||||
==
|
||||
== Net
|
||||
|
||||
FPM
|
||||
==
|
||||
== FPM
|
||||
|
||||
Spree
|
||||
==
|
||||
== Spree
|
||||
|
||||
Best
|
||||
==
|
||||
== Bedst
|
||||
|
||||
Grabs
|
||||
==
|
||||
== Tager fat
|
||||
|
||||
1 new mention
|
||||
==
|
||||
== 1 ny nævne
|
||||
|
||||
%d new mentions
|
||||
==
|
||||
== %d ny nævner
|
||||
|
||||
9+ new mentions
|
||||
==
|
||||
== 9+ ny nævner
|
||||
|
|
|
@ -703,7 +703,7 @@ Most importantly communication is key: There is no tutorial so you'll have to ch
|
|||
It's recommended that you check the settings to adjust them to your liking before joining a server.
|
||||
== Het wordt aangeraden dat je de instellingen bekijkt en ze aanpast naar jouw wensen voordat je met een server verbindt.
|
||||
|
||||
Please enter your nick name below.
|
||||
Please enter your nickname below.
|
||||
== Voer je bijnaam in a.u.b.
|
||||
|
||||
Destination file already exist
|
||||
|
@ -1045,7 +1045,7 @@ Save the best demo of each race
|
|||
== Sla de beste demo op van elke race
|
||||
|
||||
Default length: %d
|
||||
== Standaart lengte
|
||||
== Standaart lengte: %d
|
||||
|
||||
Enable replays
|
||||
== Replays aan zetten
|
||||
|
@ -1125,18 +1125,6 @@ New random timeout code
|
|||
Time
|
||||
== Tijd
|
||||
|
||||
Manual %3d:%02d
|
||||
== Manual %3d:%02d
|
||||
|
||||
Race %3d:%02d
|
||||
== Race %3d:%02d
|
||||
|
||||
Auto %3d:%02d
|
||||
== Automatisch %3d:%02d
|
||||
|
||||
Replay %3d:%02d
|
||||
== Herhaling %3d:%02d
|
||||
|
||||
Follow
|
||||
== Volg
|
||||
|
||||
|
@ -1170,8 +1158,17 @@ Grabs
|
|||
9+ new mentions
|
||||
== 9+ nieuwe berichten
|
||||
|
||||
Downloading ddnet-info.json failed
|
||||
==
|
||||
Manual
|
||||
== Manual
|
||||
|
||||
Race
|
||||
== Race
|
||||
|
||||
Auto
|
||||
== Automatisch
|
||||
|
||||
Replay
|
||||
== Herhaling
|
||||
|
||||
Saving ddnet-settings.cfg failed
|
||||
==
|
||||
|
@ -1182,9 +1179,21 @@ The width or height of texture %s is not divisible by 16, which might cause visu
|
|||
Warning
|
||||
==
|
||||
|
||||
Debug mode enabled. Press Ctrl+Shift+D to disable debug mode.
|
||||
==
|
||||
|
||||
Use k key to kill (restart), q to pause and watch other players. See settings for other key binds.
|
||||
==
|
||||
|
||||
Existing Player
|
||||
==
|
||||
|
||||
Your nickname '%s' is already used (%d points). Do you still want to use it?
|
||||
==
|
||||
|
||||
Checking for existing player with your name
|
||||
==
|
||||
|
||||
Country / Region
|
||||
==
|
||||
|
||||
|
@ -1206,10 +1215,10 @@ Theme
|
|||
%d player
|
||||
==
|
||||
|
||||
File
|
||||
Demos directory
|
||||
==
|
||||
|
||||
Demos directory
|
||||
Smooth Dynamic Camera
|
||||
==
|
||||
|
||||
Skip the main menu
|
||||
|
@ -1227,12 +1236,24 @@ Skin Database
|
|||
Skins directory
|
||||
==
|
||||
|
||||
Game sound volume
|
||||
==
|
||||
|
||||
Chat sound volume
|
||||
==
|
||||
|
||||
Background music volume
|
||||
==
|
||||
|
||||
Assets
|
||||
==
|
||||
|
||||
Use old chat style
|
||||
==
|
||||
|
||||
Highlight
|
||||
==
|
||||
|
||||
Client message
|
||||
==
|
||||
|
||||
|
|
|
@ -623,9 +623,6 @@ Name plates size
|
|||
Type:
|
||||
== Tyyppi:
|
||||
|
||||
Downloading ddnet-info.json failed
|
||||
==
|
||||
|
||||
Successfully saved the replay!
|
||||
==
|
||||
|
||||
|
@ -641,6 +638,9 @@ The width or height of texture %s is not divisible by 16, which might cause visu
|
|||
Warning
|
||||
==
|
||||
|
||||
Debug mode enabled. Press Ctrl+Shift+D to disable debug mode.
|
||||
==
|
||||
|
||||
Game paused
|
||||
==
|
||||
|
||||
|
@ -704,7 +704,16 @@ Use k key to kill (restart), q to pause and watch other players. See settings fo
|
|||
It's recommended that you check the settings to adjust them to your liking before joining a server.
|
||||
==
|
||||
|
||||
Please enter your nick name below.
|
||||
Please enter your nickname below.
|
||||
==
|
||||
|
||||
Existing Player
|
||||
==
|
||||
|
||||
Your nickname '%s' is already used (%d points). Do you still want to use it?
|
||||
==
|
||||
|
||||
Checking for existing player with your name
|
||||
==
|
||||
|
||||
Country / Region
|
||||
|
@ -770,9 +779,6 @@ Please use a different name
|
|||
Remove chat
|
||||
==
|
||||
|
||||
File
|
||||
==
|
||||
|
||||
Markers:
|
||||
==
|
||||
|
||||
|
@ -827,6 +833,9 @@ Activate
|
|||
Save
|
||||
==
|
||||
|
||||
Smooth Dynamic Camera
|
||||
==
|
||||
|
||||
Switch weapon when out of ammo
|
||||
==
|
||||
|
||||
|
@ -980,6 +989,12 @@ Enable highlighted chat sound
|
|||
Threaded sound loading
|
||||
==
|
||||
|
||||
Game sound volume
|
||||
==
|
||||
|
||||
Chat sound volume
|
||||
==
|
||||
|
||||
Map sound volume
|
||||
==
|
||||
|
||||
|
@ -1010,6 +1025,9 @@ Show score
|
|||
Show health + ammo
|
||||
==
|
||||
|
||||
Use old chat style
|
||||
==
|
||||
|
||||
Show names in chat in team colors
|
||||
==
|
||||
|
||||
|
@ -1046,6 +1064,9 @@ We will win
|
|||
Friend message
|
||||
==
|
||||
|
||||
Highlight
|
||||
==
|
||||
|
||||
Friend
|
||||
==
|
||||
|
||||
|
@ -1221,16 +1242,16 @@ Restart
|
|||
Time
|
||||
==
|
||||
|
||||
Manual %3d:%02d
|
||||
Manual
|
||||
==
|
||||
|
||||
Race %3d:%02d
|
||||
Race
|
||||
==
|
||||
|
||||
Auto %3d:%02d
|
||||
Auto
|
||||
==
|
||||
|
||||
Replay %3d:%02d
|
||||
Replay
|
||||
==
|
||||
|
||||
Follow
|
||||
|
|
|
@ -16,6 +16,7 @@
|
|||
# Choupom 2011-07-02 19:23:49
|
||||
# SunnyPistache & Pipou 2020-07-09 21:09:00
|
||||
# SunnyPistache & Pipou 2020-10-03 09:29:00
|
||||
# SunnyPistache & Pipou 2020-11-07 11:30:00
|
||||
##### /authors #####
|
||||
|
||||
##### translated strings #####
|
||||
|
@ -785,9 +786,6 @@ Statboard
|
|||
Show text entities
|
||||
== Afficher le texte des entités
|
||||
|
||||
Race %3d:%02d
|
||||
== Course %3d:%02d
|
||||
|
||||
Connecting dummy
|
||||
== Connection du dummy
|
||||
|
||||
|
@ -893,12 +891,6 @@ Messages
|
|||
Fetch Info
|
||||
== Afficher les détails
|
||||
|
||||
Auto %3d:%02d
|
||||
== Auto %3d:%02d
|
||||
|
||||
Replay %3d:%02d
|
||||
== Replay %3d:%02d
|
||||
|
||||
Show only chat messages from friends
|
||||
== Ne montrer que les messages des amis
|
||||
|
||||
|
@ -953,9 +945,6 @@ Exclude
|
|||
Disconnect Dummy
|
||||
== Deconnecter le dummy
|
||||
|
||||
Manual %3d:%02d
|
||||
== Manuel %3d:%02d
|
||||
|
||||
Show clan above name plates
|
||||
== Afficher le clan au dessus du pseudonyme
|
||||
|
||||
|
@ -1178,7 +1167,7 @@ Most importantly communication is key: There is no tutorial so you'll have to ch
|
|||
It's recommended that you check the settings to adjust them to your liking before joining a server.
|
||||
== Il est recommandé d'ajuster les configurations à votre goût avant de rejoindre un serveur.
|
||||
|
||||
Please enter your nick name below.
|
||||
Please enter your nickname below.
|
||||
== Veuillez entrer votre pseudonyme ci-dessous.
|
||||
|
||||
Show DDNet map finishes in server browser
|
||||
|
@ -1187,9 +1176,6 @@ Show DDNet map finishes in server browser
|
|||
transmits your player name to info2.ddnet.tw
|
||||
== transmet votre pseudonyme à info2.ddnet.tw
|
||||
|
||||
Downloading ddnet-info.json failed
|
||||
== Le téléchargement de ddnet-info.json a échoué
|
||||
|
||||
Saving ddnet-settings.cfg failed
|
||||
== L'enregistrement de ddnet-settings.cfg a échoué
|
||||
|
||||
|
@ -1223,9 +1209,6 @@ Theme
|
|||
%d player
|
||||
== %d joueur
|
||||
|
||||
File
|
||||
== Fichier
|
||||
|
||||
Demos directory
|
||||
== Répertoire des enregistrements
|
||||
|
||||
|
@ -1295,3 +1278,42 @@ Editor
|
|||
[Start menu]
|
||||
Play
|
||||
== Jouer
|
||||
|
||||
Debug mode enabled. Press Ctrl+Shift+D to disable debug mode.
|
||||
== Mode développeur activé. Appuyez sur Ctrl+Maj+D pour le désactiver.
|
||||
|
||||
Existing Player
|
||||
== Joueur existant
|
||||
|
||||
Your nickname '%s' is already used (%d points). Do you still want to use it?
|
||||
== Le pseudonyme '%s' est déjà pris (%d points). Voulez-vous tout de même le garder ?
|
||||
|
||||
Checking for existing player with your name
|
||||
== Vérification de la disponibilité du pseudonyme
|
||||
|
||||
Smooth Dynamic Camera
|
||||
== Caméra dynamique fluide
|
||||
|
||||
Game sound volume
|
||||
== Volume des sons du jeu
|
||||
|
||||
Chat sound volume
|
||||
== Volume des sons du chat
|
||||
|
||||
Use old chat style
|
||||
== Utiliser l'ancien chat
|
||||
|
||||
Highlight
|
||||
== Surbrillance
|
||||
|
||||
Manual
|
||||
== Manuel
|
||||
|
||||
Race
|
||||
== Race
|
||||
|
||||
Auto
|
||||
== Auto
|
||||
|
||||
Replay
|
||||
== Replay
|
||||
|
|
|
@ -880,9 +880,6 @@ Follow
|
|||
Reset
|
||||
== Zurücks.
|
||||
|
||||
Manual %3d:%02d
|
||||
== Manuell %3d:%02d
|
||||
|
||||
Automatically create statboard csv
|
||||
== Automatisch Punktetafel-CSV erstellen
|
||||
|
||||
|
@ -895,9 +892,6 @@ Remove chat
|
|||
Threaded sound loading
|
||||
== Sounds in Threads laden
|
||||
|
||||
Race %3d:%02d
|
||||
== Rennen %3d:%02d
|
||||
|
||||
Frags
|
||||
== Abschüsse
|
||||
|
||||
|
@ -940,9 +934,6 @@ Best
|
|||
Screen
|
||||
== Bildschirm
|
||||
|
||||
Auto %3d:%02d
|
||||
== Auto %3d:%02d
|
||||
|
||||
Exclude
|
||||
== Ausschließen
|
||||
|
||||
|
@ -1078,9 +1069,6 @@ Enable replays
|
|||
Toggle dummy
|
||||
== Dummy wechseln
|
||||
|
||||
Replay %3d:%02d
|
||||
== Wiederholung %3d:%02d
|
||||
|
||||
Markers:
|
||||
== Markierungen:
|
||||
|
||||
|
@ -1147,7 +1135,7 @@ Personal best:
|
|||
Kill
|
||||
== Kill
|
||||
|
||||
Please enter your nick name below.
|
||||
Please enter your nickname below.
|
||||
== Bitte gib deinen Spitznamen unten ein.
|
||||
|
||||
The maps contain freeze, which temporarily make a tee unable to move. You have to work together to get through these parts.
|
||||
|
@ -1241,9 +1229,6 @@ Play
|
|||
Theme
|
||||
== Theme
|
||||
|
||||
File
|
||||
== Datei
|
||||
|
||||
Demos directory
|
||||
== Demo-Ordner
|
||||
|
||||
|
@ -1277,11 +1262,47 @@ Assets directory
|
|||
https://wiki.ddnet.tw/
|
||||
== https://wiki.ddnet.tw/
|
||||
|
||||
Downloading ddnet-info.json failed
|
||||
== ddnet-info.json herunterzuladen ist fehlgeschlagen
|
||||
|
||||
Saving ddnet-settings.cfg failed
|
||||
== ddnet-settings.cfg zu speichern ist fehlgeschlagen
|
||||
|
||||
Use current map as background
|
||||
== Aktuelle Karte als Hintergrund benutzen
|
||||
|
||||
Debug mode enabled. Press Ctrl+Shift+D to disable debug mode.
|
||||
== Debug-Modus aktiviert. Drück Strg+Shift+D um den Debug-Modus zu deaktivieren.
|
||||
|
||||
Existing Player
|
||||
== Existierender Spieler
|
||||
|
||||
Your nickname '%s' is already used (%d points). Do you still want to use it?
|
||||
== Dein Spitzname '%s' wird bereits genutzt (%d Punkte). Willst du ihn dennoch nutzen?
|
||||
|
||||
Checking for existing player with your name
|
||||
== Prüfe auf existierenden Spieler mit deinem Namen
|
||||
|
||||
Game sound volume
|
||||
== Spiel-Lautstärke
|
||||
|
||||
Chat sound volume
|
||||
== Chat-Lautstärke
|
||||
|
||||
Use old chat style
|
||||
== Alten Chat-Stil nutzen
|
||||
|
||||
Highlight
|
||||
== Hervorheben
|
||||
|
||||
Manual
|
||||
== Manuell
|
||||
|
||||
Race
|
||||
== Rennen
|
||||
|
||||
Auto
|
||||
== Auto
|
||||
|
||||
Replay
|
||||
== Wiederholung
|
||||
|
||||
Smooth Dynamic Camera
|
||||
== Weiche Dynamische Kamera
|
||||
|
|
|
@ -628,9 +628,6 @@ Name plates size
|
|||
Type:
|
||||
== Τύπος:
|
||||
|
||||
Downloading ddnet-info.json failed
|
||||
==
|
||||
|
||||
Successfully saved the replay!
|
||||
==
|
||||
|
||||
|
@ -646,6 +643,9 @@ The width or height of texture %s is not divisible by 16, which might cause visu
|
|||
Warning
|
||||
==
|
||||
|
||||
Debug mode enabled. Press Ctrl+Shift+D to disable debug mode.
|
||||
==
|
||||
|
||||
Server best:
|
||||
==
|
||||
|
||||
|
@ -706,7 +706,16 @@ Use k key to kill (restart), q to pause and watch other players. See settings fo
|
|||
It's recommended that you check the settings to adjust them to your liking before joining a server.
|
||||
==
|
||||
|
||||
Please enter your nick name below.
|
||||
Please enter your nickname below.
|
||||
==
|
||||
|
||||
Existing Player
|
||||
==
|
||||
|
||||
Your nickname '%s' is already used (%d points). Do you still want to use it?
|
||||
==
|
||||
|
||||
Checking for existing player with your name
|
||||
==
|
||||
|
||||
Country / Region
|
||||
|
@ -772,9 +781,6 @@ Please use a different name
|
|||
Remove chat
|
||||
==
|
||||
|
||||
File
|
||||
==
|
||||
|
||||
Markers:
|
||||
==
|
||||
|
||||
|
@ -829,6 +835,9 @@ Activate
|
|||
Save
|
||||
==
|
||||
|
||||
Smooth Dynamic Camera
|
||||
==
|
||||
|
||||
Switch weapon when out of ammo
|
||||
==
|
||||
|
||||
|
@ -979,6 +988,12 @@ Enable highlighted chat sound
|
|||
Threaded sound loading
|
||||
==
|
||||
|
||||
Game sound volume
|
||||
==
|
||||
|
||||
Chat sound volume
|
||||
==
|
||||
|
||||
Map sound volume
|
||||
==
|
||||
|
||||
|
@ -1009,6 +1024,9 @@ Show score
|
|||
Show health + ammo
|
||||
==
|
||||
|
||||
Use old chat style
|
||||
==
|
||||
|
||||
Show names in chat in team colors
|
||||
==
|
||||
|
||||
|
@ -1045,6 +1063,9 @@ We will win
|
|||
Friend message
|
||||
==
|
||||
|
||||
Highlight
|
||||
==
|
||||
|
||||
Friend
|
||||
==
|
||||
|
||||
|
@ -1220,16 +1241,16 @@ Restart
|
|||
Time
|
||||
==
|
||||
|
||||
Manual %3d:%02d
|
||||
Manual
|
||||
==
|
||||
|
||||
Race %3d:%02d
|
||||
Race
|
||||
==
|
||||
|
||||
Auto %3d:%02d
|
||||
Auto
|
||||
==
|
||||
|
||||
Replay %3d:%02d
|
||||
Replay
|
||||
==
|
||||
|
||||
Follow
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
#originally created by:
|
||||
# Feca
|
||||
#modified by:
|
||||
#
|
||||
# Boti.
|
||||
##### /authors #####
|
||||
|
||||
##### translated strings #####
|
||||
|
@ -92,7 +92,7 @@ Connect
|
|||
== Csatlakozás
|
||||
|
||||
Connecting to
|
||||
== Csatlakozás a
|
||||
== Csatlakozás..
|
||||
|
||||
Connection Problems...
|
||||
== Csatlakozási problémák...
|
||||
|
@ -131,7 +131,7 @@ Disconnected
|
|||
== Lekapcsolódott
|
||||
|
||||
Downloading map
|
||||
== Pálya letöltése
|
||||
== Pálya letöltése..
|
||||
|
||||
Draw!
|
||||
== Döntetlen!
|
||||
|
@ -149,7 +149,7 @@ Error
|
|||
== Hiba
|
||||
|
||||
Error loading demo
|
||||
== Hiba a demó betöltése közben
|
||||
== Hiba történt a demó betöltése közben
|
||||
|
||||
Favorite
|
||||
== Kedvenc
|
||||
|
@ -170,7 +170,7 @@ Folder
|
|||
== Mappa
|
||||
|
||||
Force vote
|
||||
== Különleges szavazás
|
||||
== Szavazás kényszerítése
|
||||
|
||||
Free-View
|
||||
== Szabad-nézet
|
||||
|
@ -290,7 +290,7 @@ Open
|
|||
== Megnyit
|
||||
|
||||
Parent Folder
|
||||
== Szülői mappa
|
||||
== Főmappa
|
||||
|
||||
Password
|
||||
== Jelszó
|
||||
|
@ -441,7 +441,7 @@ Team chat
|
|||
== Csapat chat
|
||||
|
||||
The audio device couldn't be initialised.
|
||||
== A hangeszköz nem kezdeményezhető.
|
||||
== A hangeszköz nem érzékelhető.
|
||||
|
||||
The server is running a non-standard tuning on a pure game type.
|
||||
== A szerver egy nem szabványos hangolást futtat a tiszta játék típuson.
|
||||
|
@ -520,7 +520,7 @@ Internet
|
|||
|
||||
|
||||
Max demos
|
||||
== Maximum Demó
|
||||
== Maximum Demók
|
||||
|
||||
News
|
||||
== Hírek
|
||||
|
@ -607,7 +607,7 @@ Type:
|
|||
== Típus:
|
||||
|
||||
Dummy settings
|
||||
== Másolat beállításai
|
||||
== Dummy beállításai
|
||||
|
||||
AntiPing
|
||||
== Antiping
|
||||
|
@ -643,7 +643,7 @@ DDNet
|
|||
== DDNet
|
||||
|
||||
No updates available
|
||||
== Nem elérhető fejlesztés
|
||||
== Nincs elérhető frissítés
|
||||
|
||||
Enable server message sound
|
||||
== Szerver chat hang engedélyezése
|
||||
|
@ -652,7 +652,7 @@ second
|
|||
== másodperc
|
||||
|
||||
Show votes window after voting
|
||||
== Szavazási ablak mutatása
|
||||
== Szavazási ablak mutatása szavazás után
|
||||
|
||||
HUD
|
||||
== HUD
|
||||
|
@ -661,10 +661,10 @@ Spectate previous
|
|||
== Előző nézése
|
||||
|
||||
Look out!
|
||||
== Nézz oda!
|
||||
== Vigyázz!
|
||||
|
||||
Spectate next
|
||||
== Utáni nézése
|
||||
== Következő nézése
|
||||
|
||||
Show names in chat in team colors
|
||||
== Csapatszínben jelennek meg a játékosok a chatben
|
||||
|
@ -688,10 +688,10 @@ Deaths
|
|||
== Halálok
|
||||
|
||||
Enable game sounds
|
||||
== Játék hang engedélyezése
|
||||
== Játék hangok engedélyezése
|
||||
|
||||
DDNet Client needs to be restarted to complete update!
|
||||
== Újra kell indítani a DDNet Klienst a fejlesztés befejezéséhez!
|
||||
== Újra kell indítani a DDNet Klienst a frissítés befejezéséhez!
|
||||
|
||||
Spectator
|
||||
== Néző
|
||||
|
@ -741,9 +741,6 @@ Show health + ammo
|
|||
Team message
|
||||
== Csapat üzenet
|
||||
|
||||
Manual %3d:%02d
|
||||
== Manuális %3d:%02
|
||||
|
||||
Automatically create statboard csv
|
||||
== Magától készítsen csv pontszámtáblát
|
||||
|
||||
|
@ -768,9 +765,6 @@ Remove chat
|
|||
Check now
|
||||
== Nézd meg
|
||||
|
||||
Race %3d:%02d
|
||||
== Verseny %3d:%02d
|
||||
|
||||
Background (regular)
|
||||
== Háttér (pálya)
|
||||
|
||||
|
@ -799,7 +793,7 @@ DDNet %s is available:
|
|||
== DDnet %s verzió elérhető
|
||||
|
||||
Updating...
|
||||
== Fejlesztés...
|
||||
== Frissítés...
|
||||
|
||||
Overlay entities
|
||||
== Entitás jelenése
|
||||
|
@ -862,7 +856,7 @@ Strict gametype filter
|
|||
== Szigorú játékmód szűrő
|
||||
|
||||
Try fast HTTP map download first
|
||||
== Próbálja meg letölteni a HTTP Fájlokat elösször
|
||||
== Próbálja meg a gyors HTTP letöltést először
|
||||
|
||||
Use DDRace Scoreboard
|
||||
== DDRace pontszámtábla használata
|
||||
|
@ -889,10 +883,7 @@ Clan plates size
|
|||
== Klán felirat mérete
|
||||
|
||||
Update now
|
||||
== Feljeszd most
|
||||
|
||||
Auto %3d:%02d
|
||||
== Auto %3d:%02d
|
||||
== frissíts most
|
||||
|
||||
Show clan above name plates
|
||||
== Klán mutatása a nevek fölött
|
||||
|
@ -913,10 +904,10 @@ AntiPing: predict weapons
|
|||
== Antiping: fegyvereknél
|
||||
|
||||
DDNet Client updated!
|
||||
== DDNet Kliens fejlesztve van!
|
||||
== DDNet Kliens frissítve van!
|
||||
|
||||
Outline color
|
||||
== Vázolt szín
|
||||
== Körvonal szín
|
||||
|
||||
Highlighted message
|
||||
== Kiemelt üzenet
|
||||
|
@ -958,10 +949,10 @@ Deactivate
|
|||
== Deaktiválás
|
||||
|
||||
Welcome to DDNet
|
||||
== Üzvözlet a DDNet-en
|
||||
== Üdvözlet a DDNet-en
|
||||
|
||||
Preinit VBO (iGPUs only)
|
||||
== VBO használata (csak iGPU-nak)
|
||||
== VBO használata (csak iGPU)
|
||||
|
||||
Threaded sound loading
|
||||
== Csavarmenetes hang betöltése
|
||||
|
@ -994,7 +985,7 @@ Date
|
|||
== Idő
|
||||
|
||||
Show DDNet map finishes in server browser
|
||||
== Mutassa a DDNet befejezett pályákat a keresőben
|
||||
== Mutassa a befejezett pályákat a keresőben
|
||||
|
||||
transmits your player name to info2.ddnet.tw
|
||||
== Keress rá a játékosnevedre az info2.ddnet.tw oldalon
|
||||
|
@ -1003,7 +994,7 @@ Reload
|
|||
== újratöltés
|
||||
|
||||
Hammerfly dummy
|
||||
== Másolat kalapács
|
||||
== Dummy Kalapács
|
||||
|
||||
Downloading %s:
|
||||
== Letöltés %s:
|
||||
|
@ -1020,26 +1011,23 @@ Personal best:
|
|||
Show entities
|
||||
== Entitások mutatása
|
||||
|
||||
Replay %3d:%02d
|
||||
== Visszajátszás %3d:%02d
|
||||
|
||||
Video name:
|
||||
== Videó neve:
|
||||
|
||||
Connect Dummy
|
||||
== Másolat belépése
|
||||
== Dummy Csatlakoztatása
|
||||
|
||||
Disconnect Dummy
|
||||
== Másolat kilépése
|
||||
== Dummy Lecsatlakoztatása
|
||||
|
||||
Filter connecting players
|
||||
== "Connecting" szűrés
|
||||
== Csatlakozók szűrése
|
||||
|
||||
Pause
|
||||
== Nézetváltás
|
||||
|
||||
Toggle dummy
|
||||
== Másolat irányítása
|
||||
== Dummy irányítása
|
||||
|
||||
Fetch Info
|
||||
== Minden infó
|
||||
|
@ -1066,7 +1054,7 @@ Show all
|
|||
== Mutasson mindent
|
||||
|
||||
Learn
|
||||
== Wiki
|
||||
== Wikipédia
|
||||
|
||||
Successfully saved the replay!
|
||||
== Sikeresen elmentette a visszajátszást!
|
||||
|
@ -1087,7 +1075,7 @@ Use high DPI
|
|||
== Magas DPI használata
|
||||
|
||||
Update failed! Check log...
|
||||
== Fejlesztés sikertelen! Tekintsen a naplóba...
|
||||
== Frissítés sikertelen! nézd meg a logot...
|
||||
|
||||
Toggle dyncam
|
||||
== Dinamikus kamera
|
||||
|
@ -1117,10 +1105,10 @@ Markers:
|
|||
== 1 új értesítés
|
||||
|
||||
DDraceNetwork is a cooperative online game where the goal is for you and your group of tees to reach the finish line of the map. As a newcomer you should start on Novice servers, which host the easiest maps. Consider the ping to choose a server close to you.
|
||||
== A DDraceNetwork együttműködésen alapuló online játékként tekinthető, ahol a cél az, hogy te és egy csapat Tee elérje a célvonalat. Ha újonc vagy, a kezdő szervereket ajánljuk, ahol a legegyszerűbb versenyeket tároljuk. A lehető legkisebb ping választása alapján válasszon egy szervert.
|
||||
== A DDraceNetwork együttműködésen alapuló online játékként tekinthető, ahol a cél az, hogy te és egy csapat Tee elérje a célvonalat. Ha újonc vagy, a kezdő (Novice) szervereket ajánljuk, ahol a legegyszerűbb versenyeket tároljuk. A lehető legkisebb ping választása alapján válassz egy szervert.
|
||||
|
||||
The maps contain freeze, which temporarily make a tee unable to move. You have to work together to get through these parts.
|
||||
== A pályákon fagyasztó részeket találtok, melyek ideiglenesen blokkolják a játékos mozgását. Együtt kell dolgoznod a pályarészek átjutásán.
|
||||
== A pályákon fagyasztó részeket találtok, melyek ideiglenesen blokkolják a játékos mozgását. Együtt kell dolgoznod a pályarészekkel az átjutáshoz.
|
||||
|
||||
The mouse wheel changes weapons. Hammer (left mouse) can be used to hit other tees and wake them up from being frozen.
|
||||
== A görgő megváltoztatja a fegyvereket. A kalapács (bal egérgomb) segítségével más Tee-ket megüthetsz és ütésekkel kiolvadhatnak a fagyásból.
|
||||
|
@ -1129,19 +1117,19 @@ Hook (right mouse) can be used to swing through the map and to hook other tees t
|
|||
== A horoggal (jobb egérgomb) megkapaszkodhatsz néhány platformon és más Tee-ket is megragadhatsz vele.
|
||||
|
||||
Most importantly communication is key: There is no tutorial so you'll have to chat (t key) with other players to learn the basics and tricks of the game.
|
||||
== A legfontosabb kulcsa a sikerhez: Nincs oktatóprogram, így mindenki magától tanulja meg más játékosok által. (T gombbal tudsz Chattelni)
|
||||
== A legfontosabb kulcs a sikerhez: Nincs oktatóprogram, így mindenki magától tanulja meg más játékosok által. (T gombbal tudsz Chattelni)
|
||||
|
||||
It's recommended that you check the settings to adjust them to your liking before joining a server.
|
||||
== Ajánlott, hogy ellenőrizze a beállításokat, hogy a kedvéhez igazítsa őket, mielőtt csatlakozna egy szerverhez. (Tipp: szűrők)
|
||||
== Ajánlott, hogy ellenőrizd a beállításokat, hogy a kedvedhez igazítsd őket, mielőtt csatlakoznál egy szerverhez. (Tipp: szűrők)
|
||||
|
||||
Please enter your nick name below.
|
||||
Please enter your nickname below.
|
||||
== Írja be lent a becenevét.
|
||||
|
||||
9+ new mentions
|
||||
== 9+ új értesítés
|
||||
|
||||
Replay feature is disabled!
|
||||
== Visszajátszás mód kikapcsolva van!
|
||||
== Visszajátszás mód kikapcsolva!
|
||||
|
||||
Lock team
|
||||
== Csapat lezárása
|
||||
|
@ -1162,116 +1150,149 @@ Length
|
|||
== Hossz
|
||||
|
||||
Are you sure that you want to disconnect your dummy?
|
||||
== Biztos, hogy kiakarod léptetni a másolatodat?
|
||||
|
||||
Downloading ddnet-info.json failed
|
||||
==
|
||||
== Biztos, hogy kiakarod léptetni a dummy-d?
|
||||
|
||||
Saving ddnet-settings.cfg failed
|
||||
==
|
||||
== nem sikerült elmenteni ddnet-settings.cfg fájlt
|
||||
|
||||
The width or height of texture %s is not divisible by 16, which might cause visual bugs.
|
||||
==
|
||||
== A mérete a texturának %s nem látható, ami látható bugokhoz vezethet.
|
||||
|
||||
Warning
|
||||
==
|
||||
== Figyelmeztetés
|
||||
|
||||
Debug mode enabled. Press Ctrl+Shift+D to disable debug mode.
|
||||
== Debug mód bekapcsolva. nyomd meg a Ctrl+Shift+D billentyű kombinációt a kikapcsolásához
|
||||
|
||||
Use k key to kill (restart), q to pause and watch other players. See settings for other key binds.
|
||||
==
|
||||
== Használd a k gombot az újraéledéshez, q betű a megfigyeléshez. nézd meg a beállításokat a többi bindért.
|
||||
|
||||
Existing Player
|
||||
== Létező Játékos
|
||||
|
||||
Your nickname '%s' is already used (%d points). Do you still want to use it?
|
||||
== A Neved '%s' már használva volt (%d ponttal). Biztosan szeretnéd használni?
|
||||
|
||||
Checking for existing player with your name
|
||||
== Keresés már létező játékos után a neveddel
|
||||
|
||||
Country / Region
|
||||
==
|
||||
== Ország / Régió
|
||||
|
||||
Speed
|
||||
==
|
||||
== Sebesség
|
||||
|
||||
Theme
|
||||
==
|
||||
== Téma
|
||||
|
||||
%d of %d servers
|
||||
==
|
||||
== %d a %d szerverből
|
||||
|
||||
%d of %d server
|
||||
==
|
||||
== %d ből %d szerver
|
||||
|
||||
%d players
|
||||
==
|
||||
== %d játékos
|
||||
|
||||
%d player
|
||||
==
|
||||
|
||||
File
|
||||
==
|
||||
== %d játékos
|
||||
|
||||
Demos directory
|
||||
==
|
||||
== Demók Helye
|
||||
|
||||
Smooth Dynamic Camera
|
||||
== Egyenletesen dinamikus kamera
|
||||
|
||||
Skip the main menu
|
||||
==
|
||||
== főmenű kihagyása
|
||||
|
||||
Themes directory
|
||||
==
|
||||
== Témák Helye
|
||||
|
||||
Download skins
|
||||
==
|
||||
== Skinek letöltése
|
||||
|
||||
Skin prefix
|
||||
==
|
||||
== Karakter prefix
|
||||
|
||||
Skin Database
|
||||
==
|
||||
== Több skin
|
||||
|
||||
Skins directory
|
||||
==
|
||||
== Skinek Helye
|
||||
|
||||
Game sound volume
|
||||
== Játék Hangerő
|
||||
|
||||
Chat sound volume
|
||||
== Chat Hangerő
|
||||
|
||||
Background music volume
|
||||
==
|
||||
== Háttér Zene hangerő
|
||||
|
||||
Assets
|
||||
==
|
||||
== Kinézet
|
||||
|
||||
Use old chat style
|
||||
== régi chat stílus használata
|
||||
|
||||
Highlight
|
||||
== kijelöl
|
||||
|
||||
Client message
|
||||
==
|
||||
== Kliens Üzenet
|
||||
|
||||
Show others (own team only)
|
||||
==
|
||||
== Mások mutatása (csak csapatok)
|
||||
|
||||
Use current map as background
|
||||
==
|
||||
== Jelenlegi map használta háttérként
|
||||
|
||||
Entities
|
||||
==
|
||||
== Entitások
|
||||
|
||||
Emoticons
|
||||
==
|
||||
== Hangulatjelek
|
||||
|
||||
Particles
|
||||
==
|
||||
== effektek
|
||||
|
||||
Assets directory
|
||||
==
|
||||
|
||||
https://wiki.ddnet.tw/
|
||||
==
|
||||
== Kinézet Helye
|
||||
|
||||
Website
|
||||
==
|
||||
== Weboldal
|
||||
|
||||
Settings
|
||||
==
|
||||
== Beállítások
|
||||
|
||||
Stop server
|
||||
==
|
||||
== Szerver leállítása
|
||||
|
||||
Run server
|
||||
==
|
||||
== Szerver indítása
|
||||
|
||||
Server executable not found, can't run server
|
||||
==
|
||||
== nem sikerült elindítani a szervert
|
||||
|
||||
Editor
|
||||
==
|
||||
== Szerkesztő
|
||||
|
||||
[Start menu]
|
||||
Play
|
||||
== Játszás
|
||||
|
||||
Manual
|
||||
== Manuális
|
||||
|
||||
Race
|
||||
== Verseny
|
||||
|
||||
Auto
|
||||
== Autómatikus
|
||||
|
||||
Replay
|
||||
== Visszajátszás
|
||||
|
||||
https://wiki.ddnet.tw/
|
||||
==
|
||||
|
|
|
@ -622,9 +622,6 @@ Name plates size
|
|||
Type:
|
||||
== タイプ:
|
||||
|
||||
Downloading ddnet-info.json failed
|
||||
==
|
||||
|
||||
Successfully saved the replay!
|
||||
==
|
||||
|
||||
|
@ -640,6 +637,9 @@ The width or height of texture %s is not divisible by 16, which might cause visu
|
|||
Warning
|
||||
==
|
||||
|
||||
Debug mode enabled. Press Ctrl+Shift+D to disable debug mode.
|
||||
==
|
||||
|
||||
Game paused
|
||||
==
|
||||
|
||||
|
@ -703,7 +703,16 @@ Use k key to kill (restart), q to pause and watch other players. See settings fo
|
|||
It's recommended that you check the settings to adjust them to your liking before joining a server.
|
||||
==
|
||||
|
||||
Please enter your nick name below.
|
||||
Please enter your nickname below.
|
||||
==
|
||||
|
||||
Existing Player
|
||||
==
|
||||
|
||||
Your nickname '%s' is already used (%d points). Do you still want to use it?
|
||||
==
|
||||
|
||||
Checking for existing player with your name
|
||||
==
|
||||
|
||||
Country / Region
|
||||
|
@ -769,9 +778,6 @@ Please use a different name
|
|||
Remove chat
|
||||
==
|
||||
|
||||
File
|
||||
==
|
||||
|
||||
Markers:
|
||||
==
|
||||
|
||||
|
@ -826,6 +832,9 @@ Activate
|
|||
Save
|
||||
==
|
||||
|
||||
Smooth Dynamic Camera
|
||||
==
|
||||
|
||||
Switch weapon when out of ammo
|
||||
==
|
||||
|
||||
|
@ -979,6 +988,12 @@ Enable highlighted chat sound
|
|||
Threaded sound loading
|
||||
==
|
||||
|
||||
Game sound volume
|
||||
==
|
||||
|
||||
Chat sound volume
|
||||
==
|
||||
|
||||
Map sound volume
|
||||
==
|
||||
|
||||
|
@ -1009,6 +1024,9 @@ Show score
|
|||
Show health + ammo
|
||||
==
|
||||
|
||||
Use old chat style
|
||||
==
|
||||
|
||||
Show names in chat in team colors
|
||||
==
|
||||
|
||||
|
@ -1045,6 +1063,9 @@ We will win
|
|||
Friend message
|
||||
==
|
||||
|
||||
Highlight
|
||||
==
|
||||
|
||||
Friend
|
||||
==
|
||||
|
||||
|
@ -1220,16 +1241,16 @@ Restart
|
|||
Time
|
||||
==
|
||||
|
||||
Manual %3d:%02d
|
||||
Manual
|
||||
==
|
||||
|
||||
Race %3d:%02d
|
||||
Race
|
||||
==
|
||||
|
||||
Auto %3d:%02d
|
||||
Auto
|
||||
==
|
||||
|
||||
Replay %3d:%02d
|
||||
Replay
|
||||
==
|
||||
|
||||
Follow
|
||||
|
|
|
@ -624,9 +624,6 @@ Name plates size
|
|||
Type:
|
||||
== 종류:
|
||||
|
||||
Downloading ddnet-info.json failed
|
||||
==
|
||||
|
||||
Successfully saved the replay!
|
||||
==
|
||||
|
||||
|
@ -642,6 +639,9 @@ The width or height of texture %s is not divisible by 16, which might cause visu
|
|||
Warning
|
||||
==
|
||||
|
||||
Debug mode enabled. Press Ctrl+Shift+D to disable debug mode.
|
||||
==
|
||||
|
||||
Server best:
|
||||
==
|
||||
|
||||
|
@ -702,7 +702,16 @@ Use k key to kill (restart), q to pause and watch other players. See settings fo
|
|||
It's recommended that you check the settings to adjust them to your liking before joining a server.
|
||||
==
|
||||
|
||||
Please enter your nick name below.
|
||||
Please enter your nickname below.
|
||||
==
|
||||
|
||||
Existing Player
|
||||
==
|
||||
|
||||
Your nickname '%s' is already used (%d points). Do you still want to use it?
|
||||
==
|
||||
|
||||
Checking for existing player with your name
|
||||
==
|
||||
|
||||
Country / Region
|
||||
|
@ -768,9 +777,6 @@ Please use a different name
|
|||
Remove chat
|
||||
==
|
||||
|
||||
File
|
||||
==
|
||||
|
||||
Demofile: %s
|
||||
==
|
||||
|
||||
|
@ -828,6 +834,9 @@ Activate
|
|||
Save
|
||||
==
|
||||
|
||||
Smooth Dynamic Camera
|
||||
==
|
||||
|
||||
Switch weapon when out of ammo
|
||||
==
|
||||
|
||||
|
@ -978,6 +987,12 @@ Enable highlighted chat sound
|
|||
Threaded sound loading
|
||||
==
|
||||
|
||||
Game sound volume
|
||||
==
|
||||
|
||||
Chat sound volume
|
||||
==
|
||||
|
||||
Map sound volume
|
||||
==
|
||||
|
||||
|
@ -1008,6 +1023,9 @@ Show score
|
|||
Show health + ammo
|
||||
==
|
||||
|
||||
Use old chat style
|
||||
==
|
||||
|
||||
Show names in chat in team colors
|
||||
==
|
||||
|
||||
|
@ -1044,6 +1062,9 @@ We will win
|
|||
Friend message
|
||||
==
|
||||
|
||||
Highlight
|
||||
==
|
||||
|
||||
Friend
|
||||
==
|
||||
|
||||
|
@ -1219,16 +1240,16 @@ Restart
|
|||
Time
|
||||
==
|
||||
|
||||
Manual %3d:%02d
|
||||
Manual
|
||||
==
|
||||
|
||||
Race %3d:%02d
|
||||
Race
|
||||
==
|
||||
|
||||
Auto %3d:%02d
|
||||
Auto
|
||||
==
|
||||
|
||||
Replay %3d:%02d
|
||||
Replay
|
||||
==
|
||||
|
||||
Follow
|
||||
|
|
|
@ -619,9 +619,6 @@ Game paused
|
|||
Show only chat messages from friends
|
||||
== Достордун гана маек билдирүүлөрүн көрсөтүү
|
||||
|
||||
Downloading ddnet-info.json failed
|
||||
==
|
||||
|
||||
Successfully saved the replay!
|
||||
==
|
||||
|
||||
|
@ -637,6 +634,9 @@ The width or height of texture %s is not divisible by 16, which might cause visu
|
|||
Warning
|
||||
==
|
||||
|
||||
Debug mode enabled. Press Ctrl+Shift+D to disable debug mode.
|
||||
==
|
||||
|
||||
Server best:
|
||||
==
|
||||
|
||||
|
@ -697,7 +697,16 @@ Use k key to kill (restart), q to pause and watch other players. See settings fo
|
|||
It's recommended that you check the settings to adjust them to your liking before joining a server.
|
||||
==
|
||||
|
||||
Please enter your nick name below.
|
||||
Please enter your nickname below.
|
||||
==
|
||||
|
||||
Existing Player
|
||||
==
|
||||
|
||||
Your nickname '%s' is already used (%d points). Do you still want to use it?
|
||||
==
|
||||
|
||||
Checking for existing player with your name
|
||||
==
|
||||
|
||||
Country / Region
|
||||
|
@ -763,9 +772,6 @@ Please use a different name
|
|||
Remove chat
|
||||
==
|
||||
|
||||
File
|
||||
==
|
||||
|
||||
Markers:
|
||||
==
|
||||
|
||||
|
@ -820,6 +826,9 @@ Activate
|
|||
Save
|
||||
==
|
||||
|
||||
Smooth Dynamic Camera
|
||||
==
|
||||
|
||||
Switch weapon when out of ammo
|
||||
==
|
||||
|
||||
|
@ -970,6 +979,12 @@ Enable highlighted chat sound
|
|||
Threaded sound loading
|
||||
==
|
||||
|
||||
Game sound volume
|
||||
==
|
||||
|
||||
Chat sound volume
|
||||
==
|
||||
|
||||
Map sound volume
|
||||
==
|
||||
|
||||
|
@ -1000,6 +1015,9 @@ Show score
|
|||
Show health + ammo
|
||||
==
|
||||
|
||||
Use old chat style
|
||||
==
|
||||
|
||||
Show names in chat in team colors
|
||||
==
|
||||
|
||||
|
@ -1036,6 +1054,9 @@ We will win
|
|||
Friend message
|
||||
==
|
||||
|
||||
Highlight
|
||||
==
|
||||
|
||||
Friend
|
||||
==
|
||||
|
||||
|
@ -1211,16 +1232,16 @@ Restart
|
|||
Time
|
||||
==
|
||||
|
||||
Manual %3d:%02d
|
||||
Manual
|
||||
==
|
||||
|
||||
Race %3d:%02d
|
||||
Race
|
||||
==
|
||||
|
||||
Auto %3d:%02d
|
||||
Auto
|
||||
==
|
||||
|
||||
Replay %3d:%02d
|
||||
Replay
|
||||
==
|
||||
|
||||
Follow
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
#modified by:
|
||||
# MertenNor 2011-07-02 08:46:16
|
||||
# nuborn 2020-08-31 23:00:00
|
||||
# nuborn 2020-11-12 00:00:00
|
||||
##### /authors #####
|
||||
|
||||
##### translated strings #####
|
||||
|
@ -692,7 +693,7 @@ Most importantly communication is key: There is no tutorial so you'll have to ch
|
|||
It's recommended that you check the settings to adjust them to your liking before joining a server.
|
||||
== Det anbefales å sjekke innstillingene og justere dem slik det passer deg før du går inn på en server.
|
||||
|
||||
Please enter your nick name below.
|
||||
Please enter your nickname below.
|
||||
== Skriv inn ditt ønskede kallenavn under.
|
||||
|
||||
Destination file already exist
|
||||
|
@ -1115,18 +1116,6 @@ New random timeout code
|
|||
Time
|
||||
== Tid
|
||||
|
||||
Manual %3d:%02d
|
||||
== Manuell %3d:%02d
|
||||
|
||||
Race %3d:%02d
|
||||
== Løp %3d:%02d
|
||||
|
||||
Auto %3d:%02d
|
||||
== Auto %3d:%02d
|
||||
|
||||
Replay %3d:%02d
|
||||
== Opptak %3d:%02d
|
||||
|
||||
Follow
|
||||
== Følg
|
||||
|
||||
|
@ -1166,108 +1155,141 @@ Grabs
|
|||
9+ new mentions
|
||||
== nevnt 9+ ganger
|
||||
|
||||
Downloading ddnet-info.json failed
|
||||
==
|
||||
Manual
|
||||
== Manuell
|
||||
|
||||
Race
|
||||
== Løp
|
||||
|
||||
Auto
|
||||
== Auto
|
||||
|
||||
Replay
|
||||
== Opptak
|
||||
|
||||
Saving ddnet-settings.cfg failed
|
||||
==
|
||||
== Lagring av ddnet-settings.cfg mislyktes
|
||||
|
||||
The width or height of texture %s is not divisible by 16, which might cause visual bugs.
|
||||
==
|
||||
== Bredden eller høyden til tekstur %s er ikke delelig med 16, noe som kan gi visuelle feil.
|
||||
|
||||
Warning
|
||||
==
|
||||
== Advarsel
|
||||
|
||||
Debug mode enabled. Press Ctrl+Shift+D to disable debug mode.
|
||||
== Feilsøkemodus aktivert. Trykk Ctrl+Shift+D for å deaktivere feilsøkemodus.
|
||||
|
||||
Use k key to kill (restart), q to pause and watch other players. See settings for other key binds.
|
||||
==
|
||||
== Bruk k-tasten for å drepe (restarte), q for å pause og se på andre spillere. Se innstillinger for andre tasteoppsett.
|
||||
|
||||
Existing Player
|
||||
== Eksisterende Spiller
|
||||
|
||||
Your nickname '%s' is already used (%d points). Do you still want to use it?
|
||||
== Ditt kallenavn '%s' er allerede i bruk (%d poeng). Vil du fortsatt bruke det?
|
||||
|
||||
Checking for existing player with your name
|
||||
== Sjekker etter eksisterende spiller med ditt navn
|
||||
|
||||
Country / Region
|
||||
==
|
||||
== Land / Region
|
||||
|
||||
Speed
|
||||
==
|
||||
== Hastighet
|
||||
|
||||
Theme
|
||||
==
|
||||
== Tema
|
||||
|
||||
%d of %d servers
|
||||
==
|
||||
== %d av %d servere
|
||||
|
||||
%d of %d server
|
||||
==
|
||||
== %d av %d server
|
||||
|
||||
%d players
|
||||
==
|
||||
== %d spillere
|
||||
|
||||
%d player
|
||||
==
|
||||
|
||||
File
|
||||
==
|
||||
== %d spiller
|
||||
|
||||
Demos directory
|
||||
==
|
||||
== Demomappe
|
||||
|
||||
Smooth Dynamic Camera
|
||||
== Mykt dynamisk kamera
|
||||
|
||||
Skip the main menu
|
||||
==
|
||||
== Hopp over hovedmeny
|
||||
|
||||
Themes directory
|
||||
==
|
||||
== Temamappe
|
||||
|
||||
Download skins
|
||||
==
|
||||
== Last ned skins
|
||||
|
||||
Skin Database
|
||||
==
|
||||
== Skin-database
|
||||
|
||||
Skins directory
|
||||
==
|
||||
== Skinmappe
|
||||
|
||||
Game sound volume
|
||||
== Lydvolum spill
|
||||
|
||||
Chat sound volume
|
||||
== Lydvolum chat
|
||||
|
||||
Background music volume
|
||||
==
|
||||
== Bakgrunnsmusikkvolum
|
||||
|
||||
Assets
|
||||
==
|
||||
== Ressurser
|
||||
|
||||
Use old chat style
|
||||
== Bruk gammel chattestil
|
||||
|
||||
Highlight
|
||||
== Uthev
|
||||
|
||||
Client message
|
||||
==
|
||||
== Klientmelding
|
||||
|
||||
Use current map as background
|
||||
==
|
||||
== Bruk nåværende bane som bakgrunn
|
||||
|
||||
Entities
|
||||
==
|
||||
== Entities
|
||||
|
||||
Emoticons
|
||||
==
|
||||
== Emotikoner
|
||||
|
||||
Particles
|
||||
==
|
||||
== Partikler
|
||||
|
||||
Assets directory
|
||||
==
|
||||
== Ressursmappe
|
||||
|
||||
https://wiki.ddnet.tw/
|
||||
==
|
||||
== https://wiki.ddnet.tw/
|
||||
|
||||
Website
|
||||
==
|
||||
== Webside
|
||||
|
||||
Settings
|
||||
==
|
||||
== Innstillinger
|
||||
|
||||
Stop server
|
||||
==
|
||||
== Stopp server
|
||||
|
||||
Run server
|
||||
==
|
||||
== Start server
|
||||
|
||||
Server executable not found, can't run server
|
||||
==
|
||||
== Server-programfil ikke funnet, kan ikke starte server
|
||||
|
||||
Editor
|
||||
==
|
||||
== Baneredigerer
|
||||
|
||||
[Start menu]
|
||||
Play
|
||||
==
|
||||
== Spill
|
||||
|
|
|
@ -79,7 +79,7 @@ Delete demo
|
|||
Demo details
|
||||
== ﻮﻣﺩ ﺕﺎﯿﺋﺰﺟ
|
||||
Demofile: %s
|
||||
== s% :ﻮﻣﺩ ﻞﯾﺎﻓ
|
||||
== %s :ﻮﻣﺩ ﻞﯾﺎﻓ
|
||||
Demos
|
||||
== ﺎﻫ ﻮﻣﺩ
|
||||
Disconnect
|
||||
|
@ -208,9 +208,6 @@ Pistol
|
|||
Play
|
||||
== ﻥﺩﺮﻛ ىﺯﺎﺑ
|
||||
|
||||
Downloading ddnet-info.json failed
|
||||
==
|
||||
|
||||
Successfully saved the replay!
|
||||
==
|
||||
|
||||
|
@ -229,6 +226,9 @@ Warning
|
|||
Team
|
||||
==
|
||||
|
||||
Debug mode enabled. Press Ctrl+Shift+D to disable debug mode.
|
||||
==
|
||||
|
||||
Sudden Death
|
||||
==
|
||||
|
||||
|
@ -346,7 +346,16 @@ Use k key to kill (restart), q to pause and watch other players. See settings fo
|
|||
It's recommended that you check the settings to adjust them to your liking before joining a server.
|
||||
==
|
||||
|
||||
Please enter your nick name below.
|
||||
Please enter your nickname below.
|
||||
==
|
||||
|
||||
Existing Player
|
||||
==
|
||||
|
||||
Your nickname '%s' is already used (%d points). Do you still want to use it?
|
||||
==
|
||||
|
||||
Checking for existing player with your name
|
||||
==
|
||||
|
||||
There's an unsaved map in the editor, you might want to save it before you quit the game.
|
||||
|
@ -409,9 +418,6 @@ Search
|
|||
Exclude
|
||||
==
|
||||
|
||||
Server address:
|
||||
==
|
||||
|
||||
%d of %d servers
|
||||
==
|
||||
|
||||
|
@ -424,6 +430,9 @@ Server address:
|
|||
%d player
|
||||
==
|
||||
|
||||
Server address:
|
||||
==
|
||||
|
||||
Refresh
|
||||
==
|
||||
|
||||
|
@ -481,9 +490,6 @@ Please use a different name
|
|||
Remove chat
|
||||
==
|
||||
|
||||
File
|
||||
==
|
||||
|
||||
Created:
|
||||
==
|
||||
|
||||
|
@ -595,6 +601,9 @@ Activate
|
|||
Save
|
||||
==
|
||||
|
||||
Smooth Dynamic Camera
|
||||
==
|
||||
|
||||
Switch weapon on pickup
|
||||
==
|
||||
|
||||
|
@ -835,6 +844,12 @@ Sample rate
|
|||
Sound volume
|
||||
==
|
||||
|
||||
Game sound volume
|
||||
==
|
||||
|
||||
Chat sound volume
|
||||
==
|
||||
|
||||
Map sound volume
|
||||
==
|
||||
|
||||
|
@ -883,6 +898,9 @@ Show score
|
|||
Show health + ammo
|
||||
==
|
||||
|
||||
Use old chat style
|
||||
==
|
||||
|
||||
Show names in chat in team colors
|
||||
==
|
||||
|
||||
|
@ -919,6 +937,9 @@ We will win
|
|||
Friend message
|
||||
==
|
||||
|
||||
Highlight
|
||||
==
|
||||
|
||||
Friend
|
||||
==
|
||||
|
||||
|
@ -1106,16 +1127,16 @@ Time
|
|||
Score
|
||||
==
|
||||
|
||||
Manual %3d:%02d
|
||||
Manual
|
||||
==
|
||||
|
||||
Race %3d:%02d
|
||||
Race
|
||||
==
|
||||
|
||||
Auto %3d:%02d
|
||||
Auto
|
||||
==
|
||||
|
||||
Replay %3d:%02d
|
||||
Replay
|
||||
==
|
||||
|
||||
Red team wins!
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
== Pozostało sekund: %i
|
||||
|
||||
%s wins!
|
||||
== Wygrał %d!
|
||||
== Wygrał %s!
|
||||
|
||||
-Page %d-
|
||||
== -Strona %d-
|
||||
|
@ -825,9 +825,6 @@ Disconnect Dummy
|
|||
Remove chat
|
||||
== Usuń chat
|
||||
|
||||
Manual %3d:%02d
|
||||
== Instrukcja %3d:%02d
|
||||
|
||||
Activate
|
||||
== Aktywuj
|
||||
|
||||
|
@ -1017,9 +1014,6 @@ Connecting dummy
|
|||
Show all
|
||||
== Pokaż wszystkich
|
||||
|
||||
Race %3d:%02d
|
||||
== Wyścig %3d:%02d
|
||||
|
||||
Use high DPI
|
||||
== Użyj dużego DPI
|
||||
|
||||
|
@ -1089,9 +1083,6 @@ Successfully saved the replay!
|
|||
Length
|
||||
== Długość
|
||||
|
||||
Auto %3d:%02d
|
||||
== Auto %3d:%02d
|
||||
|
||||
Are you sure that you want to disconnect your dummy?
|
||||
== Czy jesteś pewien, że chcesz odesłać kukłę?
|
||||
|
||||
|
@ -1125,9 +1116,6 @@ Personal best:
|
|||
Show text entities
|
||||
== Pokaż entities tekstu
|
||||
|
||||
Replay %3d:%02d
|
||||
== Powtórka %3d:%02d
|
||||
|
||||
Friend
|
||||
== Znajomy
|
||||
|
||||
|
@ -1155,7 +1143,7 @@ Most importantly communication is key: There is no tutorial so you'll have to ch
|
|||
It's recommended that you check the settings to adjust them to your liking before joining a server.
|
||||
== Przed wejściem na dowolny serwer zalecane jest sprawdzenie ustawień w celu dostosowania ich do własnych upodobań.
|
||||
|
||||
Please enter your nick name below.
|
||||
Please enter your nickname below.
|
||||
== Proszę wpisać swój nick poniżej.
|
||||
|
||||
Show DDNet map finishes in server browser
|
||||
|
@ -1170,8 +1158,17 @@ Indicate map finish
|
|||
Show others (own team only)
|
||||
== Pokazuj innych (tylko drużynę)
|
||||
|
||||
Downloading ddnet-info.json failed
|
||||
==
|
||||
Manual
|
||||
== Instrukcja
|
||||
|
||||
Race
|
||||
== Wyścig
|
||||
|
||||
Auto
|
||||
== Auto
|
||||
|
||||
Replay
|
||||
== Powtórka
|
||||
|
||||
Saving ddnet-settings.cfg failed
|
||||
==
|
||||
|
@ -1182,9 +1179,21 @@ The width or height of texture %s is not divisible by 16, which might cause visu
|
|||
Warning
|
||||
==
|
||||
|
||||
Debug mode enabled. Press Ctrl+Shift+D to disable debug mode.
|
||||
==
|
||||
|
||||
Use k key to kill (restart), q to pause and watch other players. See settings for other key binds.
|
||||
==
|
||||
|
||||
Existing Player
|
||||
==
|
||||
|
||||
Your nickname '%s' is already used (%d points). Do you still want to use it?
|
||||
==
|
||||
|
||||
Checking for existing player with your name
|
||||
==
|
||||
|
||||
Country / Region
|
||||
==
|
||||
|
||||
|
@ -1206,10 +1215,10 @@ Theme
|
|||
%d player
|
||||
==
|
||||
|
||||
File
|
||||
Demos directory
|
||||
==
|
||||
|
||||
Demos directory
|
||||
Smooth Dynamic Camera
|
||||
==
|
||||
|
||||
Skip the main menu
|
||||
|
@ -1227,12 +1236,24 @@ Skin Database
|
|||
Skins directory
|
||||
==
|
||||
|
||||
Game sound volume
|
||||
==
|
||||
|
||||
Chat sound volume
|
||||
==
|
||||
|
||||
Background music volume
|
||||
==
|
||||
|
||||
Assets
|
||||
==
|
||||
|
||||
Use old chat style
|
||||
==
|
||||
|
||||
Highlight
|
||||
==
|
||||
|
||||
Client message
|
||||
==
|
||||
|
||||
|
|
|
@ -872,9 +872,6 @@ AntiPing: predict grenade paths
|
|||
Inner color
|
||||
== Cor interior
|
||||
|
||||
Downloading ddnet-info.json failed
|
||||
==
|
||||
|
||||
Successfully saved the replay!
|
||||
==
|
||||
|
||||
|
@ -890,6 +887,9 @@ The width or height of texture %s is not divisible by 16, which might cause visu
|
|||
Warning
|
||||
==
|
||||
|
||||
Debug mode enabled. Press Ctrl+Shift+D to disable debug mode.
|
||||
==
|
||||
|
||||
Server best:
|
||||
==
|
||||
|
||||
|
@ -938,7 +938,16 @@ Use k key to kill (restart), q to pause and watch other players. See settings fo
|
|||
It's recommended that you check the settings to adjust them to your liking before joining a server.
|
||||
==
|
||||
|
||||
Please enter your nick name below.
|
||||
Please enter your nickname below.
|
||||
==
|
||||
|
||||
Existing Player
|
||||
==
|
||||
|
||||
Your nickname '%s' is already used (%d points). Do you still want to use it?
|
||||
==
|
||||
|
||||
Checking for existing player with your name
|
||||
==
|
||||
|
||||
Country / Region
|
||||
|
@ -983,9 +992,6 @@ Indicate map finish
|
|||
Unfinished map
|
||||
==
|
||||
|
||||
File
|
||||
==
|
||||
|
||||
Markers:
|
||||
==
|
||||
|
||||
|
@ -1034,6 +1040,9 @@ Activate
|
|||
Save
|
||||
==
|
||||
|
||||
Smooth Dynamic Camera
|
||||
==
|
||||
|
||||
Reset wanted weapon on death
|
||||
==
|
||||
|
||||
|
@ -1127,15 +1136,27 @@ Enable long pain sound (used when shooting in freeze)
|
|||
Threaded sound loading
|
||||
==
|
||||
|
||||
Game sound volume
|
||||
==
|
||||
|
||||
Chat sound volume
|
||||
==
|
||||
|
||||
Background music volume
|
||||
==
|
||||
|
||||
Assets
|
||||
==
|
||||
|
||||
Use old chat style
|
||||
==
|
||||
|
||||
Friend message
|
||||
==
|
||||
|
||||
Highlight
|
||||
==
|
||||
|
||||
Client message
|
||||
==
|
||||
|
||||
|
@ -1233,16 +1254,16 @@ Update failed! Check log...
|
|||
Time
|
||||
==
|
||||
|
||||
Manual %3d:%02d
|
||||
Manual
|
||||
==
|
||||
|
||||
Race %3d:%02d
|
||||
Race
|
||||
==
|
||||
|
||||
Auto %3d:%02d
|
||||
Auto
|
||||
==
|
||||
|
||||
Replay %3d:%02d
|
||||
Replay
|
||||
==
|
||||
|
||||
Frags
|
||||
|
|
|
@ -634,9 +634,6 @@ Name plates size
|
|||
Type:
|
||||
== Tip:
|
||||
|
||||
Downloading ddnet-info.json failed
|
||||
==
|
||||
|
||||
Successfully saved the replay!
|
||||
==
|
||||
|
||||
|
@ -652,6 +649,9 @@ The width or height of texture %s is not divisible by 16, which might cause visu
|
|||
Warning
|
||||
==
|
||||
|
||||
Debug mode enabled. Press Ctrl+Shift+D to disable debug mode.
|
||||
==
|
||||
|
||||
Server best:
|
||||
==
|
||||
|
||||
|
@ -712,7 +712,16 @@ Use k key to kill (restart), q to pause and watch other players. See settings fo
|
|||
It's recommended that you check the settings to adjust them to your liking before joining a server.
|
||||
==
|
||||
|
||||
Please enter your nick name below.
|
||||
Please enter your nickname below.
|
||||
==
|
||||
|
||||
Existing Player
|
||||
==
|
||||
|
||||
Your nickname '%s' is already used (%d points). Do you still want to use it?
|
||||
==
|
||||
|
||||
Checking for existing player with your name
|
||||
==
|
||||
|
||||
Country / Region
|
||||
|
@ -778,9 +787,6 @@ Please use a different name
|
|||
Remove chat
|
||||
==
|
||||
|
||||
File
|
||||
==
|
||||
|
||||
Markers:
|
||||
==
|
||||
|
||||
|
@ -835,6 +841,9 @@ Activate
|
|||
Save
|
||||
==
|
||||
|
||||
Smooth Dynamic Camera
|
||||
==
|
||||
|
||||
Switch weapon when out of ammo
|
||||
==
|
||||
|
||||
|
@ -985,6 +994,12 @@ Enable highlighted chat sound
|
|||
Threaded sound loading
|
||||
==
|
||||
|
||||
Game sound volume
|
||||
==
|
||||
|
||||
Chat sound volume
|
||||
==
|
||||
|
||||
Map sound volume
|
||||
==
|
||||
|
||||
|
@ -1015,6 +1030,9 @@ Show score
|
|||
Show health + ammo
|
||||
==
|
||||
|
||||
Use old chat style
|
||||
==
|
||||
|
||||
Show names in chat in team colors
|
||||
==
|
||||
|
||||
|
@ -1051,6 +1069,9 @@ We will win
|
|||
Friend message
|
||||
==
|
||||
|
||||
Highlight
|
||||
==
|
||||
|
||||
Friend
|
||||
==
|
||||
|
||||
|
@ -1226,16 +1247,16 @@ Restart
|
|||
Time
|
||||
==
|
||||
|
||||
Manual %3d:%02d
|
||||
Manual
|
||||
==
|
||||
|
||||
Race %3d:%02d
|
||||
Race
|
||||
==
|
||||
|
||||
Auto %3d:%02d
|
||||
Auto
|
||||
==
|
||||
|
||||
Replay %3d:%02d
|
||||
Replay
|
||||
==
|
||||
|
||||
Follow
|
||||
|
|
|
@ -868,7 +868,7 @@ Most importantly communication is key: There is no tutorial so you'll have to ch
|
|||
It's recommended that you check the settings to adjust them to your liking before joining a server.
|
||||
== Перед посещением сервера рекомендуем изменить настройки на Ваш вкус.
|
||||
|
||||
Please enter your nick name below.
|
||||
Please enter your nickname below.
|
||||
== Пожалуйста, ниже укажите свой никнейм.
|
||||
|
||||
Destination file already exist
|
||||
|
@ -1111,18 +1111,6 @@ Check now
|
|||
Time
|
||||
== Время
|
||||
|
||||
Manual %3d:%02d
|
||||
== Ручное %3d:%02d
|
||||
|
||||
Race %3d:%02d
|
||||
== Попытка %3d:%02d
|
||||
|
||||
Auto %3d:%02d
|
||||
== Авто %3d:%02d
|
||||
|
||||
Replay %3d:%02d
|
||||
== Повтор %3d:%02d
|
||||
|
||||
Follow
|
||||
== Следить
|
||||
|
||||
|
@ -1232,47 +1220,80 @@ Learn
|
|||
Play
|
||||
== Играть
|
||||
|
||||
Downloading ddnet-info.json failed
|
||||
==
|
||||
|
||||
Saving ddnet-settings.cfg failed
|
||||
==
|
||||
== Неудачное сохранение ddnet-settings.cfg
|
||||
|
||||
Debug mode enabled. Press Ctrl+Shift+D to disable debug mode.
|
||||
== Отладочный режим включен. Нажмите Ctrl+Shift+D, чтобы выйти.
|
||||
|
||||
Existing Player
|
||||
== Существующий игрок
|
||||
|
||||
Your nickname '%s' is already used (%d points). Do you still want to use it?
|
||||
== Твой никнейм '%s' уже существует (%d поинтов). Вы уверены, что хотите использовать его?
|
||||
|
||||
Checking for existing player with your name
|
||||
== Проверка существования игрока с таким же именем
|
||||
|
||||
Theme
|
||||
==
|
||||
|
||||
File
|
||||
==
|
||||
== Тема
|
||||
|
||||
Demos directory
|
||||
==
|
||||
== Папка с демо
|
||||
|
||||
Smooth Dynamic Camera
|
||||
== Плавная Динамическая камера
|
||||
|
||||
Themes directory
|
||||
==
|
||||
== Папка с темами
|
||||
|
||||
Skin Database
|
||||
==
|
||||
== База данных скинов
|
||||
|
||||
Skins directory
|
||||
==
|
||||
== Папка со скинами
|
||||
|
||||
Game sound volume
|
||||
== Громкость игры
|
||||
|
||||
Chat sound volume
|
||||
== Громкость звуков чата
|
||||
|
||||
Background music volume
|
||||
==
|
||||
== Громкость фоновой музыки
|
||||
|
||||
Assets
|
||||
==
|
||||
== Графика
|
||||
|
||||
Use old chat style
|
||||
== Использовать старый чат
|
||||
|
||||
Highlight
|
||||
== Подсветка
|
||||
|
||||
Use current map as background
|
||||
==
|
||||
== Использовать данную карту как фон
|
||||
|
||||
Emoticons
|
||||
== Эмоции
|
||||
|
||||
Particles
|
||||
== Частицы
|
||||
|
||||
Assets directory
|
||||
== Папка с графикой
|
||||
|
||||
Manual
|
||||
== Ручное
|
||||
|
||||
Race
|
||||
== Гонка
|
||||
|
||||
Auto
|
||||
== Авто
|
||||
|
||||
Replay
|
||||
== Запись
|
||||
|
||||
Entities
|
||||
==
|
||||
|
||||
Emoticons
|
||||
==
|
||||
|
||||
Particles
|
||||
==
|
||||
|
||||
Assets directory
|
||||
==
|
||||
|
|
|
@ -650,9 +650,6 @@ Video name:
|
|||
Use k key to kill (restart), q to pause and watch other players. See settings for other key binds.
|
||||
== Tipka K da se ubijes (restart), tipka q da pauziras i gledas druge igrače.
|
||||
|
||||
Downloading ddnet-info.json failed
|
||||
==
|
||||
|
||||
Saving ddnet-settings.cfg failed
|
||||
==
|
||||
|
||||
|
@ -662,6 +659,9 @@ The width or height of texture %s is not divisible by 16, which might cause visu
|
|||
Warning
|
||||
==
|
||||
|
||||
Debug mode enabled. Press Ctrl+Shift+D to disable debug mode.
|
||||
==
|
||||
|
||||
Server best:
|
||||
==
|
||||
|
||||
|
@ -710,7 +710,16 @@ Most importantly communication is key: There is no tutorial so you'll have to ch
|
|||
It's recommended that you check the settings to adjust them to your liking before joining a server.
|
||||
==
|
||||
|
||||
Please enter your nick name below.
|
||||
Please enter your nickname below.
|
||||
==
|
||||
|
||||
Existing Player
|
||||
==
|
||||
|
||||
Your nickname '%s' is already used (%d points). Do you still want to use it?
|
||||
==
|
||||
|
||||
Checking for existing player with your name
|
||||
==
|
||||
|
||||
Country / Region
|
||||
|
@ -773,9 +782,6 @@ Please use a different name
|
|||
Remove chat
|
||||
==
|
||||
|
||||
File
|
||||
==
|
||||
|
||||
Markers:
|
||||
==
|
||||
|
||||
|
@ -830,6 +836,9 @@ Activate
|
|||
Save
|
||||
==
|
||||
|
||||
Smooth Dynamic Camera
|
||||
==
|
||||
|
||||
Switch weapon when out of ammo
|
||||
==
|
||||
|
||||
|
@ -983,6 +992,12 @@ Enable highlighted chat sound
|
|||
Threaded sound loading
|
||||
==
|
||||
|
||||
Game sound volume
|
||||
==
|
||||
|
||||
Chat sound volume
|
||||
==
|
||||
|
||||
Map sound volume
|
||||
==
|
||||
|
||||
|
@ -1013,6 +1028,9 @@ Show score
|
|||
Show health + ammo
|
||||
==
|
||||
|
||||
Use old chat style
|
||||
==
|
||||
|
||||
Show names in chat in team colors
|
||||
==
|
||||
|
||||
|
@ -1049,6 +1067,9 @@ We will win
|
|||
Friend message
|
||||
==
|
||||
|
||||
Highlight
|
||||
==
|
||||
|
||||
Friend
|
||||
==
|
||||
|
||||
|
@ -1221,16 +1242,16 @@ Restart
|
|||
Time
|
||||
==
|
||||
|
||||
Manual %3d:%02d
|
||||
Manual
|
||||
==
|
||||
|
||||
Race %3d:%02d
|
||||
Race
|
||||
==
|
||||
|
||||
Auto %3d:%02d
|
||||
Auto
|
||||
==
|
||||
|
||||
Replay %3d:%02d
|
||||
Replay
|
||||
==
|
||||
|
||||
Follow
|
||||
|
|
|
@ -723,7 +723,7 @@ Use k key to kill (restart), q to pause and watch other players. See settings fo
|
|||
It's recommended that you check the settings to adjust them to your liking before joining a server.
|
||||
== Препоручује се да проверите подешавања како бисте их прилагодили пре него што се придружите серверу.
|
||||
|
||||
Please enter your nick name below.
|
||||
Please enter your nickname below.
|
||||
== Молимо вас напишите ваш надимак испод.
|
||||
|
||||
Country / Region
|
||||
|
@ -1102,9 +1102,6 @@ Show others (own team only)
|
|||
Show quads
|
||||
== Прикажи quads
|
||||
|
||||
AntiPing limit
|
||||
== AntiPing ограничења
|
||||
|
||||
AntiPing
|
||||
== AntiPing
|
||||
|
||||
|
@ -1208,18 +1205,6 @@ Restart
|
|||
Time
|
||||
== Време
|
||||
|
||||
Manual %3d:%02d
|
||||
== Упутство %3d:%02d
|
||||
|
||||
Race %3d:%02d
|
||||
== Трка %3d:%02d
|
||||
|
||||
Auto %3d:%02d
|
||||
== Ауто %3d:%02d
|
||||
|
||||
Replay %3d:%02d
|
||||
== Помнови %3d:%02d
|
||||
|
||||
Follow
|
||||
== Прати
|
||||
|
||||
|
@ -1258,3 +1243,51 @@ Grabs
|
|||
|
||||
9+ new mentions
|
||||
== 9+ нових помињања
|
||||
|
||||
Manual
|
||||
== Упутство
|
||||
|
||||
Race
|
||||
== Трка
|
||||
|
||||
Auto
|
||||
== Ауто
|
||||
|
||||
Replay
|
||||
== Помнови
|
||||
|
||||
Saving ddnet-settings.cfg failed
|
||||
==
|
||||
|
||||
Debug mode enabled. Press Ctrl+Shift+D to disable debug mode.
|
||||
==
|
||||
|
||||
Existing Player
|
||||
==
|
||||
|
||||
Your nickname '%s' is already used (%d points). Do you still want to use it?
|
||||
==
|
||||
|
||||
Checking for existing player with your name
|
||||
==
|
||||
|
||||
Smooth Dynamic Camera
|
||||
==
|
||||
|
||||
Game sound volume
|
||||
==
|
||||
|
||||
Chat sound volume
|
||||
==
|
||||
|
||||
Background music volume
|
||||
==
|
||||
|
||||
Use old chat style
|
||||
==
|
||||
|
||||
Highlight
|
||||
==
|
||||
|
||||
Use current map as background
|
||||
==
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
# 2020.8.14 Night_L
|
||||
# 2020.8.19 TsFreddie
|
||||
# 2020.8.20 Dan_cao
|
||||
# 2020.11.12 TsFreddie
|
||||
##### /authors #####
|
||||
|
||||
##### translated strings #####
|
||||
|
@ -793,13 +794,13 @@ Show other players' key presses
|
|||
== 显示其他玩家的按键
|
||||
|
||||
Background (regular)
|
||||
== 背景(常规)
|
||||
== 背景(常规模式)
|
||||
|
||||
Background (entities)
|
||||
== 背景(实体)
|
||||
== 背景(实体层模式)
|
||||
|
||||
Show tiles layers from BG map
|
||||
== 在背景地图显示图块层
|
||||
== 显示实体层背景地图的图块层
|
||||
|
||||
Try fast HTTP map download first
|
||||
== 优先尝试用HTTP快速下载地图
|
||||
|
@ -918,7 +919,7 @@ Refresh Rate
|
|||
== 刷新率
|
||||
|
||||
New random timeout code
|
||||
== 新随机超时代码
|
||||
== 随机生成新的超时代码(Timeout代码)
|
||||
|
||||
Suicides
|
||||
== 自杀数
|
||||
|
@ -1008,21 +1009,12 @@ Time
|
|||
Show entities
|
||||
== 实体层显示开关
|
||||
|
||||
Race %3d:%02d
|
||||
== 竞速赛 %3d:%02d
|
||||
|
||||
Replay %3d:%02d
|
||||
== 回放 %3d:%02d
|
||||
|
||||
Show all
|
||||
== 显示所有玩家
|
||||
|
||||
Downloading %s:
|
||||
== 正在下载 %s:
|
||||
|
||||
Manual %3d:%02d
|
||||
== 手动 %3d:%02d
|
||||
|
||||
%d new mentions
|
||||
== %d 条新提示
|
||||
|
||||
|
@ -1083,9 +1075,6 @@ Size
|
|||
Dummy copy
|
||||
== 分身同步动作
|
||||
|
||||
Auto %3d:%02d
|
||||
== 自动 %3d:%02d
|
||||
|
||||
9+ new mentions
|
||||
== 9+ 条新提示
|
||||
|
||||
|
@ -1140,7 +1129,7 @@ Most importantly communication is key: There is no tutorial so you'll have to ch
|
|||
It's recommended that you check the settings to adjust them to your liking before joining a server.
|
||||
== 推荐在进入服务器前,先将设置调整到符合你的习惯。
|
||||
|
||||
Please enter your nick name below.
|
||||
Please enter your nickname below.
|
||||
== 请输入你的昵称。
|
||||
|
||||
Render
|
||||
|
@ -1150,7 +1139,7 @@ Server best:
|
|||
== 服务器最佳
|
||||
|
||||
Learn
|
||||
== 学习
|
||||
== 教程
|
||||
|
||||
Use high DPI
|
||||
== 使用高 DPI
|
||||
|
@ -1189,7 +1178,7 @@ https://wiki.ddnet.tw/
|
|||
== https://docs.qq.com/doc/DWGFrV0xPRmVWVkla
|
||||
|
||||
The width or height of texture %s is not divisible by 16, which might cause visual bugs.
|
||||
== 宽和高无法被16整除,这可能会导致画面异常
|
||||
== 材质 %s 的宽和高无法被16整除,这可能会导致画面异常。
|
||||
|
||||
Warning
|
||||
== 警告
|
||||
|
@ -1201,7 +1190,7 @@ Skip the main menu
|
|||
== 跳过主菜单
|
||||
|
||||
Website
|
||||
== 网站
|
||||
== 官网
|
||||
|
||||
Settings
|
||||
== 设置
|
||||
|
@ -1222,62 +1211,95 @@ Server executable not found, can't run server
|
|||
Editor
|
||||
== 编辑器
|
||||
|
||||
Downloading ddnet-info.json failed
|
||||
==
|
||||
Manual
|
||||
== 手动
|
||||
|
||||
Race
|
||||
== 竞速
|
||||
|
||||
Auto
|
||||
== 自动
|
||||
|
||||
Replay
|
||||
== 回放
|
||||
|
||||
Saving ddnet-settings.cfg failed
|
||||
==
|
||||
== 配置文件 ddnet-settings.cfg 保存失败
|
||||
|
||||
Debug mode enabled. Press Ctrl+Shift+D to disable debug mode.
|
||||
== 调试模式已启用。按 Ctrl+Shift+D 禁用调试模式。
|
||||
|
||||
Existing Player
|
||||
== 玩家已存在
|
||||
|
||||
Your nickname '%s' is already used (%d points). Do you still want to use it?
|
||||
== 你使用的昵称"%s"在DDNet中有%d分的记录,这可能代表该昵称已经被其他人使用过。确认要使用这个名字吗?
|
||||
|
||||
Checking for existing player with your name
|
||||
== 正在查找该昵称的DDNet记录
|
||||
|
||||
Theme
|
||||
==
|
||||
== 主题
|
||||
|
||||
%d of %d servers
|
||||
==
|
||||
== 符合条件 %d / 总共 %d 个服务器
|
||||
|
||||
%d of %d server
|
||||
==
|
||||
== 符合条件 %d / 总共 %d 个服务器
|
||||
|
||||
%d players
|
||||
==
|
||||
== %d 在线玩家
|
||||
|
||||
%d player
|
||||
==
|
||||
|
||||
File
|
||||
==
|
||||
== %d 在线玩家
|
||||
|
||||
Demos directory
|
||||
==
|
||||
== 回放目录
|
||||
|
||||
Smooth Dynamic Camera
|
||||
== 平滑动态镜头
|
||||
|
||||
Themes directory
|
||||
==
|
||||
== 主题目录
|
||||
|
||||
Download skins
|
||||
==
|
||||
== 在线获取皮肤
|
||||
|
||||
Skin Database
|
||||
==
|
||||
== 皮肤数据库
|
||||
|
||||
Skins directory
|
||||
==
|
||||
== 皮肤目录
|
||||
|
||||
Game sound volume
|
||||
== 游戏音效音量
|
||||
|
||||
Chat sound volume
|
||||
== 聊天提示音量
|
||||
|
||||
Background music volume
|
||||
==
|
||||
== 背景音樂音量
|
||||
|
||||
Assets
|
||||
==
|
||||
== 材质
|
||||
|
||||
Use old chat style
|
||||
== 旧版聊天框
|
||||
|
||||
Highlight
|
||||
== 高亮
|
||||
|
||||
Use current map as background
|
||||
==
|
||||
== 使用当前地图作为实体层背景地图
|
||||
|
||||
Entities
|
||||
==
|
||||
== 实体层
|
||||
|
||||
Emoticons
|
||||
==
|
||||
== 表情
|
||||
|
||||
Particles
|
||||
==
|
||||
== 粒子
|
||||
|
||||
Assets directory
|
||||
==
|
||||
== 材质目录
|
||||
|
|
|
@ -622,9 +622,6 @@ Name plates size
|
|||
Type:
|
||||
== Typ:
|
||||
|
||||
Downloading ddnet-info.json failed
|
||||
==
|
||||
|
||||
Successfully saved the replay!
|
||||
==
|
||||
|
||||
|
@ -640,6 +637,9 @@ The width or height of texture %s is not divisible by 16, which might cause visu
|
|||
Warning
|
||||
==
|
||||
|
||||
Debug mode enabled. Press Ctrl+Shift+D to disable debug mode.
|
||||
==
|
||||
|
||||
Game paused
|
||||
==
|
||||
|
||||
|
@ -703,7 +703,16 @@ Use k key to kill (restart), q to pause and watch other players. See settings fo
|
|||
It's recommended that you check the settings to adjust them to your liking before joining a server.
|
||||
==
|
||||
|
||||
Please enter your nick name below.
|
||||
Please enter your nickname below.
|
||||
==
|
||||
|
||||
Existing Player
|
||||
==
|
||||
|
||||
Your nickname '%s' is already used (%d points). Do you still want to use it?
|
||||
==
|
||||
|
||||
Checking for existing player with your name
|
||||
==
|
||||
|
||||
Country / Region
|
||||
|
@ -769,9 +778,6 @@ Please use a different name
|
|||
Remove chat
|
||||
==
|
||||
|
||||
File
|
||||
==
|
||||
|
||||
Markers:
|
||||
==
|
||||
|
||||
|
@ -826,6 +832,9 @@ Activate
|
|||
Save
|
||||
==
|
||||
|
||||
Smooth Dynamic Camera
|
||||
==
|
||||
|
||||
Switch weapon when out of ammo
|
||||
==
|
||||
|
||||
|
@ -979,6 +988,12 @@ Enable highlighted chat sound
|
|||
Threaded sound loading
|
||||
==
|
||||
|
||||
Game sound volume
|
||||
==
|
||||
|
||||
Chat sound volume
|
||||
==
|
||||
|
||||
Map sound volume
|
||||
==
|
||||
|
||||
|
@ -1009,6 +1024,9 @@ Show score
|
|||
Show health + ammo
|
||||
==
|
||||
|
||||
Use old chat style
|
||||
==
|
||||
|
||||
Show names in chat in team colors
|
||||
==
|
||||
|
||||
|
@ -1045,6 +1063,9 @@ We will win
|
|||
Friend message
|
||||
==
|
||||
|
||||
Highlight
|
||||
==
|
||||
|
||||
Friend
|
||||
==
|
||||
|
||||
|
@ -1220,16 +1241,16 @@ Restart
|
|||
Time
|
||||
==
|
||||
|
||||
Manual %3d:%02d
|
||||
Manual
|
||||
==
|
||||
|
||||
Race %3d:%02d
|
||||
Race
|
||||
==
|
||||
|
||||
Auto %3d:%02d
|
||||
Auto
|
||||
==
|
||||
|
||||
Replay %3d:%02d
|
||||
Replay
|
||||
==
|
||||
|
||||
Follow
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
# Mortcheck 2012-11-03 22:58:43
|
||||
# FeaRZ 2020-07-07 12:09:00
|
||||
# Ryozuki 2020-07-09 12:06:00
|
||||
# Headshot 2020-11-07 12:40:00
|
||||
##### /authors #####
|
||||
|
||||
##### translated strings #####
|
||||
|
@ -700,7 +701,7 @@ Most importantly communication is key: There is no tutorial so you'll have to ch
|
|||
It's recommended that you check the settings to adjust them to your liking before joining a server.
|
||||
== Se recomienda que verifiques la configuración para ajustarla a tu gusto antes de unirte a un servidor.
|
||||
|
||||
Please enter your nick name below.
|
||||
Please enter your nickname below.
|
||||
== Por favor, introduzca su apodo a continuación.
|
||||
|
||||
Destination file already exist
|
||||
|
@ -1120,18 +1121,6 @@ New random timeout code
|
|||
Time
|
||||
== Tiempo
|
||||
|
||||
Manual %3d:%02d
|
||||
== Manual %3d:%02d
|
||||
|
||||
Race %3d:%02d
|
||||
== Carrera %3d:%02d
|
||||
|
||||
Auto %3d:%02d
|
||||
== Auto %3d:%02d
|
||||
|
||||
Replay %3d:%02d
|
||||
== Repetición %3d:%02d
|
||||
|
||||
Follow
|
||||
== Seguir
|
||||
|
||||
|
@ -1171,108 +1160,141 @@ Grabs
|
|||
9+ new mentions
|
||||
== 9+ nuevas menciones
|
||||
|
||||
Downloading ddnet-info.json failed
|
||||
==
|
||||
|
||||
Saving ddnet-settings.cfg failed
|
||||
==
|
||||
== Error al guardar ddnet-settings.cfg
|
||||
|
||||
The width or height of texture %s is not divisible by 16, which might cause visual bugs.
|
||||
==
|
||||
== El ancho o alto de la textura %s no es divisible por 16, por lo que puede causar errores visuales.
|
||||
|
||||
Warning
|
||||
==
|
||||
== Advertencia
|
||||
|
||||
Debug mode enabled. Press Ctrl+Shift+D to disable debug mode.
|
||||
== Modo debug activado. Pulsa Ctrl+Shift+D para desactivar.
|
||||
|
||||
Use k key to kill (restart), q to pause and watch other players. See settings for other key binds.
|
||||
==
|
||||
== Usa la tecla K para suicidarte (reiniciar), Q para pausar y ver a otros jugadores. Mira la configuración para otras teclas.
|
||||
|
||||
Existing Player
|
||||
== Este jugador ya existe
|
||||
|
||||
Your nickname '%s' is already used (%d points). Do you still want to use it?
|
||||
== Tu nombre '%s' ya está usado (%d puntos). ¿Deseas seguir usándolo?
|
||||
|
||||
Checking for existing player with your name
|
||||
== Comprobando si ya existe un jugador con tu nombre
|
||||
|
||||
Country / Region
|
||||
==
|
||||
== País / Región
|
||||
|
||||
Speed
|
||||
==
|
||||
== Velocidad
|
||||
|
||||
Theme
|
||||
==
|
||||
== Tema
|
||||
|
||||
%d of %d servers
|
||||
==
|
||||
== %d de %d servidores
|
||||
|
||||
%d of %d server
|
||||
==
|
||||
== %d de %d servidor
|
||||
|
||||
%d players
|
||||
==
|
||||
== %d jugadores
|
||||
|
||||
%d player
|
||||
==
|
||||
|
||||
File
|
||||
==
|
||||
== %d jugador
|
||||
|
||||
Demos directory
|
||||
==
|
||||
== Directorio de demos
|
||||
|
||||
Smooth Dynamic Camera
|
||||
== Cámara dinámica suave
|
||||
|
||||
Skip the main menu
|
||||
==
|
||||
== Saltar el menú principal
|
||||
|
||||
Themes directory
|
||||
==
|
||||
== Directorio de temas
|
||||
|
||||
Download skins
|
||||
==
|
||||
== Descargar skins
|
||||
|
||||
Skin Database
|
||||
==
|
||||
== Base de datos de skins
|
||||
|
||||
Skins directory
|
||||
==
|
||||
== Directorio de skins
|
||||
|
||||
Game sound volume
|
||||
== Volúmen de sonido del juego
|
||||
|
||||
Chat sound volume
|
||||
== Volúmen del chat
|
||||
|
||||
Background music volume
|
||||
==
|
||||
== Volúmen de música de fondo
|
||||
|
||||
Assets
|
||||
==
|
||||
== Recursos
|
||||
|
||||
Use old chat style
|
||||
== Usar estilo viejo de chat
|
||||
|
||||
Highlight
|
||||
== Resaltado
|
||||
|
||||
Client message
|
||||
==
|
||||
== Mensaje de cliente
|
||||
|
||||
Use current map as background
|
||||
==
|
||||
== Usar mapa actual como fondo
|
||||
|
||||
Entities
|
||||
==
|
||||
== Entidades
|
||||
|
||||
Emoticons
|
||||
==
|
||||
== Emoticones
|
||||
|
||||
Particles
|
||||
==
|
||||
== Partículas
|
||||
|
||||
Assets directory
|
||||
==
|
||||
== Directorio de recursos
|
||||
|
||||
https://wiki.ddnet.tw/
|
||||
==
|
||||
== https://wiki.ddnet.tw/
|
||||
|
||||
Website
|
||||
==
|
||||
== Página web
|
||||
|
||||
Settings
|
||||
==
|
||||
== Configuración
|
||||
|
||||
Stop server
|
||||
==
|
||||
== Detener servidor
|
||||
|
||||
Run server
|
||||
==
|
||||
== Iniciar servidor
|
||||
|
||||
Server executable not found, can't run server
|
||||
==
|
||||
== Ejecutable del servidor no encontrado. No se puede iniciar el servidor
|
||||
|
||||
Editor
|
||||
==
|
||||
== Editor
|
||||
|
||||
[Start menu]
|
||||
Play
|
||||
==
|
||||
== Jugar
|
||||
|
||||
Manual
|
||||
== Manual
|
||||
|
||||
Race
|
||||
== Carrera
|
||||
|
||||
Auto
|
||||
== Auto
|
||||
|
||||
Replay
|
||||
== Repetición
|
||||
|
|
|
@ -769,7 +769,7 @@ Most importantly communication is key: There is no tutorial so you'll have to ch
|
|||
It's recommended that you check the settings to adjust them to your liking before joining a server.
|
||||
== Det är rekomenderad att du kollar igenom inställningarna och ändra dom så de passar dig innan du ansluter dig till en server.
|
||||
|
||||
Please enter your nick name below.
|
||||
Please enter your nickname below.
|
||||
== Skriv ditt smeknamn nedanför.
|
||||
|
||||
Render
|
||||
|
@ -883,9 +883,6 @@ Show text entities
|
|||
Show ghost
|
||||
== Visa spöke
|
||||
|
||||
Replay %3d:%02d
|
||||
== Repris %3d:%02d
|
||||
|
||||
1 new mention
|
||||
== 1 ny nämning
|
||||
|
||||
|
@ -937,9 +934,6 @@ Follow
|
|||
Restart
|
||||
== Starta om
|
||||
|
||||
Manual %3d:%02d
|
||||
== Manual %3d:%02d
|
||||
|
||||
Background (regular)
|
||||
== Bakgrund (vanlig)
|
||||
|
||||
|
@ -1108,9 +1102,6 @@ Gameplay
|
|||
Loading DDNet Client
|
||||
== Laddar DDNet Klienten
|
||||
|
||||
Auto %3d:%02d
|
||||
== Auto %3d:%02d
|
||||
|
||||
Show HUD
|
||||
== Visa HUD
|
||||
|
||||
|
@ -1126,9 +1117,6 @@ Spree
|
|||
Show others
|
||||
== Visa andra
|
||||
|
||||
Race %3d:%02d
|
||||
== Race %3d:%02d
|
||||
|
||||
Unfinished map
|
||||
== Oavslutat bana
|
||||
|
||||
|
@ -1229,19 +1217,40 @@ Editor
|
|||
Play
|
||||
== Spela
|
||||
|
||||
Downloading ddnet-info.json failed
|
||||
==
|
||||
Manual
|
||||
== Manual
|
||||
|
||||
Race
|
||||
== Race
|
||||
|
||||
Auto
|
||||
== Auto
|
||||
|
||||
Replay
|
||||
== Repris
|
||||
|
||||
Saving ddnet-settings.cfg failed
|
||||
==
|
||||
|
||||
Debug mode enabled. Press Ctrl+Shift+D to disable debug mode.
|
||||
==
|
||||
|
||||
Existing Player
|
||||
==
|
||||
|
||||
Your nickname '%s' is already used (%d points). Do you still want to use it?
|
||||
==
|
||||
|
||||
Checking for existing player with your name
|
||||
==
|
||||
|
||||
Theme
|
||||
==
|
||||
|
||||
File
|
||||
Demos directory
|
||||
==
|
||||
|
||||
Demos directory
|
||||
Smooth Dynamic Camera
|
||||
==
|
||||
|
||||
Themes directory
|
||||
|
@ -1253,12 +1262,24 @@ Skin Database
|
|||
Skins directory
|
||||
==
|
||||
|
||||
Game sound volume
|
||||
==
|
||||
|
||||
Chat sound volume
|
||||
==
|
||||
|
||||
Background music volume
|
||||
==
|
||||
|
||||
Assets
|
||||
==
|
||||
|
||||
Use old chat style
|
||||
==
|
||||
|
||||
Highlight
|
||||
==
|
||||
|
||||
Use current map as background
|
||||
==
|
||||
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
#modified by:
|
||||
# 2020.8.19 TsFreddie
|
||||
# 2020.8.20 Dan_cao
|
||||
# 2020.11.12 TsFreddie
|
||||
##### /authors #####
|
||||
|
||||
##### translated strings #####
|
||||
|
@ -207,7 +208,7 @@ General
|
|||
== 常規
|
||||
|
||||
Graphics
|
||||
== 影象
|
||||
== 顯示
|
||||
|
||||
Grenade
|
||||
== 榴彈槍
|
||||
|
@ -793,7 +794,7 @@ Background (entities)
|
|||
== 背景(實體)
|
||||
|
||||
Show tiles layers from BG map
|
||||
== 在背景地圖顯示圖塊層
|
||||
== 顯示實體層背景地圖的圖塊層
|
||||
|
||||
Try fast HTTP map download first
|
||||
== 優先嚐試用HTTP高速下載地圖
|
||||
|
@ -1122,7 +1123,7 @@ Most importantly communication is key: There is no tutorial so you'll have to ch
|
|||
It's recommended that you check the settings to adjust them to your liking before joining a server.
|
||||
== 推薦在進入伺服器前,先將設定調整到符合你的習慣。
|
||||
|
||||
Please enter your nick name below.
|
||||
Please enter your nickname below.
|
||||
== 請輸入你的暱稱。
|
||||
|
||||
Render
|
||||
|
@ -1132,7 +1133,7 @@ Server best:
|
|||
== 伺服器最佳
|
||||
|
||||
Learn
|
||||
== 學習
|
||||
== 教程
|
||||
|
||||
Use high DPI
|
||||
== 使用高 DPI
|
||||
|
@ -1167,111 +1168,132 @@ Use k key to kill (restart), q to pause and watch other players. See settings fo
|
|||
Country / Region
|
||||
== 國家/地區
|
||||
|
||||
Manual %3d:%02d
|
||||
== 手動 %3d:%02d
|
||||
|
||||
Race %3d:%02d
|
||||
== 競速賽 %3d:%02d
|
||||
|
||||
Auto %3d:%02d
|
||||
== 自動 %3d:%02d
|
||||
|
||||
Replay %3d:%02d
|
||||
== 回放 %3d:%02d
|
||||
|
||||
https://wiki.ddnet.tw/
|
||||
== https://docs.qq.com/doc/DWGFrV0xPRmVWVkla
|
||||
|
||||
Downloading ddnet-info.json failed
|
||||
==
|
||||
|
||||
Saving ddnet-settings.cfg failed
|
||||
==
|
||||
|
||||
The width or height of texture %s is not divisible by 16, which might cause visual bugs.
|
||||
==
|
||||
== 材質 %s 的寬和高無法被16整除,這可能會導致畫面異常。
|
||||
|
||||
Warning
|
||||
==
|
||||
== 警告
|
||||
|
||||
Speed
|
||||
==
|
||||
|
||||
Theme
|
||||
==
|
||||
|
||||
%d of %d servers
|
||||
==
|
||||
|
||||
%d of %d server
|
||||
==
|
||||
|
||||
%d players
|
||||
==
|
||||
|
||||
%d player
|
||||
==
|
||||
|
||||
File
|
||||
==
|
||||
|
||||
Demos directory
|
||||
==
|
||||
== 速度
|
||||
|
||||
Skip the main menu
|
||||
==
|
||||
|
||||
Themes directory
|
||||
==
|
||||
|
||||
Download skins
|
||||
==
|
||||
|
||||
Skin Database
|
||||
==
|
||||
|
||||
Skins directory
|
||||
==
|
||||
|
||||
Background music volume
|
||||
==
|
||||
|
||||
Assets
|
||||
==
|
||||
|
||||
Use current map as background
|
||||
==
|
||||
|
||||
Entities
|
||||
==
|
||||
|
||||
Emoticons
|
||||
==
|
||||
|
||||
Particles
|
||||
==
|
||||
|
||||
Assets directory
|
||||
==
|
||||
== 跳過主選單
|
||||
|
||||
Website
|
||||
==
|
||||
== 網站
|
||||
|
||||
Settings
|
||||
==
|
||||
|
||||
Stop server
|
||||
==
|
||||
|
||||
Run server
|
||||
==
|
||||
|
||||
Server executable not found, can't run server
|
||||
==
|
||||
|
||||
Editor
|
||||
==
|
||||
== 設定
|
||||
|
||||
[Start menu]
|
||||
Play
|
||||
==
|
||||
== 開始遊戲
|
||||
|
||||
Stop server
|
||||
== 停止伺服器
|
||||
|
||||
Run server
|
||||
== 開啟伺服器
|
||||
|
||||
Server executable not found, can't run server
|
||||
== 找不到伺服器的可執行檔案,無法開啟
|
||||
|
||||
Editor
|
||||
== 編輯器
|
||||
|
||||
Manual
|
||||
== 手動
|
||||
|
||||
Race
|
||||
== 競速
|
||||
|
||||
Auto
|
||||
== 自動
|
||||
|
||||
Replay
|
||||
== 回放
|
||||
|
||||
Saving ddnet-settings.cfg failed
|
||||
== 配置檔案 ddnet-settings.cfg 儲存失敗
|
||||
|
||||
Debug mode enabled. Press Ctrl+Shift+D to disable debug mode.
|
||||
== 偵錯模式已啟用。按 Ctrl+Shift+D 禁用偵錯模式。
|
||||
|
||||
Existing Player
|
||||
== 玩家已存在
|
||||
|
||||
Your nickname '%s' is already used (%d points). Do you still want to use it?
|
||||
== 你使用的暱稱"%s"在DDNet中有%d分的記錄,這可能代表這個暱稱已經被其他人使用過。確認要使用這個名字嗎?
|
||||
|
||||
Checking for existing player with your name
|
||||
== 正在查詢該暱稱的DDNet記錄
|
||||
|
||||
Theme
|
||||
== 主題
|
||||
|
||||
%d of %d servers
|
||||
== 符合條件 %d / 總共 %d 個伺服器
|
||||
|
||||
%d of %d server
|
||||
== 符合條件 %d / 總共 %d 個伺服器
|
||||
|
||||
%d players
|
||||
== %d 在線玩家
|
||||
|
||||
%d player
|
||||
== %d 在線玩家
|
||||
|
||||
Demos directory
|
||||
== 回放目錄
|
||||
|
||||
Smooth Dynamic Camera
|
||||
== 動態視距平滑化
|
||||
|
||||
Themes directory
|
||||
== 主題目錄
|
||||
|
||||
Download skins
|
||||
== 在線獲取外觀
|
||||
|
||||
Skin Database
|
||||
== 外觀數據庫
|
||||
|
||||
Skins directory
|
||||
== 外觀目錄
|
||||
|
||||
Game sound volume
|
||||
== 遊戲音效音量
|
||||
|
||||
Chat sound volume
|
||||
== 聊天提示音量
|
||||
|
||||
Background music volume
|
||||
== 背景音樂音量
|
||||
|
||||
Assets
|
||||
== 材質
|
||||
|
||||
Use old chat style
|
||||
== 舊版聊天框
|
||||
|
||||
Highlight
|
||||
== 高亮
|
||||
|
||||
Use current map as background
|
||||
== 使用當前地圖作爲實體層背景地圖
|
||||
|
||||
Entities
|
||||
== 實體層
|
||||
|
||||
Emoticons
|
||||
== 表情
|
||||
|
||||
Particles
|
||||
== 粒子
|
||||
|
||||
Assets directory
|
||||
== 材質目錄
|
||||
|
|
|
@ -127,7 +127,7 @@ Demo details
|
|||
== Demo ayrıntıları
|
||||
|
||||
Demofile: %s
|
||||
== Demo dosyası
|
||||
== Demo dosyası: %s
|
||||
|
||||
Demos
|
||||
== Demolar
|
||||
|
@ -696,7 +696,7 @@ Use k key to kill (restart), q to pause and watch other players. See settings fo
|
|||
It's recommended that you check the settings to adjust them to your liking before joining a server.
|
||||
== Sunuculara bağlanmadan önce ayarları kontrol edip kendine göre düzenlemeni öneriyoruz.
|
||||
|
||||
Please enter your nick name below.
|
||||
Please enter your nickname below.
|
||||
== Lütfen takma adı girin.
|
||||
|
||||
Destination file already exist
|
||||
|
@ -1125,18 +1125,6 @@ New random timeout code
|
|||
Time
|
||||
== Süre
|
||||
|
||||
Manual %3d:%02d
|
||||
== Manual %3d:%02d
|
||||
|
||||
Race %3d:%02d
|
||||
== Yarış %3d:%02d
|
||||
|
||||
Auto %3d:%02d
|
||||
== Otomatik %3d:%02d
|
||||
|
||||
Replay %3d:%02d
|
||||
== Yeniden oynatma %3d:%02d
|
||||
|
||||
Follow
|
||||
== Takip et
|
||||
|
||||
|
@ -1176,8 +1164,17 @@ Grabs
|
|||
9+ new mentions
|
||||
== 9+ yeni bildirim
|
||||
|
||||
Downloading ddnet-info.json failed
|
||||
==
|
||||
Manual
|
||||
== Manual
|
||||
|
||||
Race
|
||||
== Yarış
|
||||
|
||||
Auto
|
||||
== Otomatik
|
||||
|
||||
Replay
|
||||
== Yeniden oynatma
|
||||
|
||||
Saving ddnet-settings.cfg failed
|
||||
==
|
||||
|
@ -1188,6 +1185,18 @@ The width or height of texture %s is not divisible by 16, which might cause visu
|
|||
Warning
|
||||
==
|
||||
|
||||
Debug mode enabled. Press Ctrl+Shift+D to disable debug mode.
|
||||
==
|
||||
|
||||
Existing Player
|
||||
==
|
||||
|
||||
Your nickname '%s' is already used (%d points). Do you still want to use it?
|
||||
==
|
||||
|
||||
Checking for existing player with your name
|
||||
==
|
||||
|
||||
Country / Region
|
||||
==
|
||||
|
||||
|
@ -1209,10 +1218,10 @@ Theme
|
|||
%d player
|
||||
==
|
||||
|
||||
File
|
||||
Demos directory
|
||||
==
|
||||
|
||||
Demos directory
|
||||
Smooth Dynamic Camera
|
||||
==
|
||||
|
||||
Skip the main menu
|
||||
|
@ -1230,12 +1239,24 @@ Skin Database
|
|||
Skins directory
|
||||
==
|
||||
|
||||
Game sound volume
|
||||
==
|
||||
|
||||
Chat sound volume
|
||||
==
|
||||
|
||||
Background music volume
|
||||
==
|
||||
|
||||
Assets
|
||||
==
|
||||
|
||||
Use old chat style
|
||||
==
|
||||
|
||||
Highlight
|
||||
==
|
||||
|
||||
Use current map as background
|
||||
==
|
||||
|
||||
|
|
|
@ -538,7 +538,7 @@ Most importantly communication is key: There is no tutorial so you'll have to ch
|
|||
It's recommended that you check the settings to adjust them to your liking before joining a server.
|
||||
== Рекомендується перевірити налаштування, щоб підлаштувати їх до душі перед тим, як приєднатися до сервера.
|
||||
|
||||
Please enter your nick name below.
|
||||
Please enter your nickname below.
|
||||
== Будь ласка, введіть свій нікнейм нижче
|
||||
|
||||
There's an unsaved map in the editor, you might want to save it before you quit the game.
|
||||
|
@ -1111,18 +1111,6 @@ New random timeout code
|
|||
Time
|
||||
== Час
|
||||
|
||||
Manual %3d:%02d
|
||||
== Ручна %3d:%02d
|
||||
|
||||
Race %3d:%02d
|
||||
== Гонка %3d:%02d
|
||||
|
||||
Auto %3d:%02d
|
||||
== Авто %3d:%02d
|
||||
|
||||
Replay %3d:%02d
|
||||
== Повтор %3d:%02d
|
||||
|
||||
%s wins!
|
||||
== %s переміг!
|
||||
|
||||
|
@ -1165,8 +1153,17 @@ Grabs
|
|||
9+ new mentions
|
||||
== 9+ нових згадок
|
||||
|
||||
Downloading ddnet-info.json failed
|
||||
==
|
||||
Manual
|
||||
== Ручна
|
||||
|
||||
Race
|
||||
== Гонка
|
||||
|
||||
Auto
|
||||
== Авто
|
||||
|
||||
Replay
|
||||
== Повтор
|
||||
|
||||
Saving ddnet-settings.cfg failed
|
||||
==
|
||||
|
@ -1177,9 +1174,21 @@ The width or height of texture %s is not divisible by 16, which might cause visu
|
|||
Warning
|
||||
==
|
||||
|
||||
Debug mode enabled. Press Ctrl+Shift+D to disable debug mode.
|
||||
==
|
||||
|
||||
Use k key to kill (restart), q to pause and watch other players. See settings for other key binds.
|
||||
==
|
||||
|
||||
Existing Player
|
||||
==
|
||||
|
||||
Your nickname '%s' is already used (%d points). Do you still want to use it?
|
||||
==
|
||||
|
||||
Checking for existing player with your name
|
||||
==
|
||||
|
||||
Country / Region
|
||||
==
|
||||
|
||||
|
@ -1201,15 +1210,15 @@ Theme
|
|||
%d player
|
||||
==
|
||||
|
||||
File
|
||||
==
|
||||
|
||||
Markers
|
||||
==
|
||||
|
||||
Demos directory
|
||||
==
|
||||
|
||||
Smooth Dynamic Camera
|
||||
==
|
||||
|
||||
Skip the main menu
|
||||
==
|
||||
|
||||
|
@ -1225,12 +1234,24 @@ Skin Database
|
|||
Skins directory
|
||||
==
|
||||
|
||||
Game sound volume
|
||||
==
|
||||
|
||||
Chat sound volume
|
||||
==
|
||||
|
||||
Background music volume
|
||||
==
|
||||
|
||||
Assets
|
||||
==
|
||||
|
||||
Use old chat style
|
||||
==
|
||||
|
||||
Highlight
|
||||
==
|
||||
|
||||
Use current map as background
|
||||
==
|
||||
|
||||
|
|
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 23 KiB |
Before Width: | Height: | Size: 62 KiB After Width: | Height: | Size: 57 KiB |
Before Width: | Height: | Size: 55 KiB After Width: | Height: | Size: 51 KiB |
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 45 KiB After Width: | Height: | Size: 45 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 27 KiB |
Before Width: | Height: | Size: 172 KiB After Width: | Height: | Size: 156 KiB |
Before Width: | Height: | Size: 92 KiB After Width: | Height: | Size: 80 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 33 KiB |
Before Width: | Height: | Size: 239 KiB After Width: | Height: | Size: 166 KiB |
Before Width: | Height: | Size: 249 KiB After Width: | Height: | Size: 251 KiB |
Before Width: | Height: | Size: 6.2 KiB After Width: | Height: | Size: 6.4 KiB |
Before Width: | Height: | Size: 73 KiB After Width: | Height: | Size: 75 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
Before Width: | Height: | Size: 82 KiB After Width: | Height: | Size: 79 KiB |
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 127 KiB After Width: | Height: | Size: 116 KiB |
Before Width: | Height: | Size: 136 KiB After Width: | Height: | Size: 169 KiB |
Before Width: | Height: | Size: 125 KiB After Width: | Height: | Size: 112 KiB |
Before Width: | Height: | Size: 102 KiB After Width: | Height: | Size: 136 KiB |
Before Width: | Height: | Size: 104 KiB After Width: | Height: | Size: 92 KiB |
Before Width: | Height: | Size: 152 KiB After Width: | Height: | Size: 186 KiB |
Before Width: | Height: | Size: 266 KiB After Width: | Height: | Size: 248 KiB |
Before Width: | Height: | Size: 246 KiB After Width: | Height: | Size: 224 KiB |
Before Width: | Height: | Size: 181 KiB After Width: | Height: | Size: 159 KiB |
Before Width: | Height: | Size: 271 KiB After Width: | Height: | Size: 263 KiB |
Before Width: | Height: | Size: 139 KiB After Width: | Height: | Size: 113 KiB |
Before Width: | Height: | Size: 57 KiB After Width: | Height: | Size: 57 KiB |
Before Width: | Height: | Size: 49 KiB After Width: | Height: | Size: 50 KiB |