From: terencehill Date: Mon, 28 Mar 2022 15:14:35 +0000 (+0200) Subject: Merge branch 'master' into terencehill/menu_quit_game X-Git-Tag: xonotic-v0.8.5~129^2~1 X-Git-Url: https://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=commitdiff_plain;h=3ecb4f377794080b3b216d6be9f131c227e76210;hp=2096db4bd1bdc7949c1cad5ffd2641fae177e4a7 Merge branch 'master' into terencehill/menu_quit_game --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b5031c66ba..b5a763f2cd 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,9 +7,19 @@ workflow: before_script: - ln -s $PWD data/xonotic-data.pk3dir + - export MAKEFLAGS=-j$(nproc); echo MAKEFLAGS=$MAKEFLAGS +# FIXME: -march=native -mtune=native _changes the hash_, why?!? +# - export CC="gcc -pipe -march=native -mtune=native" + - export CC="gcc -pipe" + - git clone --depth=1 --branch=main https://gitlab.com/xonotic/gmqcc.git gmqcc - - cd gmqcc && make -j $(nproc) && export QCC="$PWD/gmqcc" - - cd .. + - make -C gmqcc || exit 1 + - export QCC="$PWD/gmqcc/gmqcc" + + # Makefile: don't complain about lack of tags (fetching them is slow) + - export QCCFLAGS_WATERMARK=gitlab_pipeline + # Makefile: don't compress anything or complain about lack of zip program + - export ZIP=/bin/true test_compilation_units: rules: @@ -17,23 +27,36 @@ test_compilation_units: - qcsrc/**/* stage: test script: - - ./qcsrc/tools/compilationunits.sh + - make test test_sv_game: stage: test script: - git clone --depth=1 --branch=div0-stable https://gitlab.com/xonotic/darkplaces.git darkplaces - - cd darkplaces && make sv-debug -j $(nproc) && export ENGINE="$PWD/darkplaces-dedicated -xonotic" - - cd .. + - make -C darkplaces sv-release || exit 1 + - export ENGINE="$PWD/darkplaces/darkplaces-dedicated -xonotic -noconfig -nohome" + - make qc || exit 1 - mkdir -p data/maps + - wget -O data/maps/gitlab-ci.bsp https://gitlab.com/xonotic/xonotic-maps.pk3dir/raw/master/maps/_init/_init.bsp + + - while read LINE; do + echo $LINE; + [ "$LINE" = "All tests OK" ] && PASS=1; + done < <(${ENGINE} +developer 1 +map gitlab-ci +sv_cmd runtest +wait +quit) + - test "$PASS" = "1" || { echo 'sv_cmd runtest failed!'; exit 1; } + + - ${ENGINE} +map gitlab-ci +sv_cmd dumpnotifs +wait +quit + - diff notifications.cfg data/data/notifications_dump.cfg || + { echo 'Please update notifications.cfg using `dumpnotifs`!'; exit 1; } + - wget -O data/stormkeep.pk3 http://beta.xonotic.org/autobuild-bsp/latest/stormkeep.pk3 - wget -O data/maps/stormkeep.mapinfo https://gitlab.com/xonotic/xonotic-maps.pk3dir/raw/master/maps/stormkeep.mapinfo - wget -O data/maps/stormkeep.waypoints https://gitlab.com/xonotic/xonotic-maps.pk3dir/raw/master/maps/stormkeep.waypoints - wget -O data/maps/stormkeep.waypoints.cache https://gitlab.com/xonotic/xonotic-maps.pk3dir/raw/master/maps/stormkeep.waypoints.cache - - make - - EXPECT=7b55642e475a26f6fb397093e6f8fe81 - - HASH=$(${ENGINE} -noconfig -nohome +timestamps 1 +exec serverbench.cfg + + - EXPECT=d4060caf37a2e60bab68d1f83bc57368 + - HASH=$(${ENGINE} +timestamps 1 +exec serverbench.cfg | tee /dev/stderr | sed -e 's,^\[[^]]*\] ,,' | grep '^:' @@ -45,46 +68,32 @@ test_sv_game: - test "$HASH" == "$EXPECT" - exit $? -test_sv_unit: - stage: test - script: - - git clone --depth=1 --branch=div0-stable https://gitlab.com/xonotic/darkplaces.git darkplaces - - cd darkplaces && make sv-debug -j $(nproc) && export ENGINE="$PWD/darkplaces-dedicated -xonotic" - - cd .. - - - mkdir maps && wget -O maps/gitlab-ci.bsp https://gitlab.com/xonotic/xonotic-maps.pk3dir/raw/master/maps/_init/_init.bsp - - make - - while read line; do - echo $line; - if [[ $line == "All tests OK" ]]; then exit 0; fi; - done < <(${ENGINE} +developer 1 +map gitlab-ci +sv_cmd runtest +exit) - - exit 1 # NOTE: The generated docs are incomplete - they don't contain code behind SVQC CSQC MENUQC GAMEQC ifdefs. # With them added to PREDEFINED, it would take over half an hour to generate the docs and even then # they might not be complete. Doxygen doesn't handle #elif and might not understand some QC definitions. -doxygen: # rename to 'pages' when gitlab.com allows pages to exceed 100MiB - before_script: - - ln -s $PWD data/xonotic-data.pk3dir # is this needed? - - apt-get update - - apt-get -y install doxygen graphviz - stage: deploy - script: - - cd qcsrc && doxygen - - mv html ../public - - mkdir -p ~/.ssh - - for i in {0..0}; do eval $(printf "echo \$id_rsa_%02d\n" $i) >> ~/.ssh/id_rsa_base64; done - - base64 --decode ~/.ssh/id_rsa_base64 > ~/.ssh/id_rsa - - chmod 600 ~/.ssh/id_rsa - - echo -e "Host *\n\tStrictHostKeyChecking no\n\tLogLevel ERROR\n" >> ~/.ssh/config - - git config --global user.name "Gitlab CI" - - git config --global user.email "<>" - - git clone --single-branch --depth 1 ${DEPLOY_HOST}:${DEPLOY_REPO} ~/deploy_ - - mkdir ~/deploy && mv ~/deploy_/.git ~/deploy && rm -r ~/deploy_ - - cp -r ../public/* ~/deploy - - cd ~/deploy && git add -A . && git commit -m "Deploy ${CI_BUILD_REF}" && git push origin gh-pages - artifacts: - paths: - - public - only: - - master +#doxygen: # rename to 'pages' when gitlab.com allows pages to exceed 100MiB +# before_script: +# - ln -s $PWD data/xonotic-data.pk3dir # is this needed? +# - apt-get update +# - apt-get -y install doxygen graphviz +# stage: deploy +# script: +# - cd qcsrc && doxygen +# - mv html ../public +# - mkdir -p ~/.ssh +# - for i in {0..0}; do eval $(printf "echo \$id_rsa_%02d\n" $i) >> ~/.ssh/id_rsa_base64; done +# - base64 --decode ~/.ssh/id_rsa_base64 > ~/.ssh/id_rsa +# - chmod 600 ~/.ssh/id_rsa +# - echo -e "Host *\n\tStrictHostKeyChecking no\n\tLogLevel ERROR\n" >> ~/.ssh/config +# - git config --global user.name "Gitlab CI" +# - git config --global user.email "<>" +# - git clone --single-branch --depth 1 ${DEPLOY_HOST}:${DEPLOY_REPO} ~/deploy_ +# - mkdir ~/deploy && mv ~/deploy_/.git ~/deploy && rm -r ~/deploy_ +# - cp -r ../public/* ~/deploy +# - cd ~/deploy && git add -A . && git commit -m "Deploy ${CI_BUILD_REF}" && git push origin gh-pages +# artifacts: +# paths: +# - public +# only: +# - master diff --git a/.tx/merge-base b/.tx/merge-base index 5819b52327..7cfe048e9f 100644 --- a/.tx/merge-base +++ b/.tx/merge-base @@ -1 +1 @@ -Wed Mar 9 07:23:20 CET 2022 +Mon Mar 28 07:23:08 CEST 2022 diff --git a/Makefile b/Makefile index ab7fa6c1b7..9ba235e48d 100644 --- a/Makefile +++ b/Makefile @@ -23,13 +23,13 @@ qc: check-cvars .PHONY: skin skin: gfx/menu/default/skinvalues.txt +gfx/menu/default/skinvalues.txt: qcsrc/menu/skin-customizables.inc + $(PERL) qcsrc/menu/skin-customizables.inc > gfx/menu/default/skinvalues.txt + .PHONY: clean clean: $(MAKE) -C qcsrc clean -gfx/menu/default/skinvalues.txt: qcsrc/menu/skin-customizables.inc - $(PERL) qcsrc/menu/skin-customizables.inc > gfx/menu/default/skinvalues.txt - .PHONY: sv sv: $(MAKE) -C qcsrc sv @@ -37,3 +37,7 @@ sv: .PHONY: pk3 pk3: $(MAKE) -C qcsrc pk3 + +.PHONY: test +test: + $(MAKE) -C qcsrc test diff --git a/balance-xdf.cfg b/balance-xdf.cfg index 94e98a6461..67e8810b54 100644 --- a/balance-xdf.cfg +++ b/balance-xdf.cfg @@ -221,9 +221,9 @@ set g_balance_powerup_invincible_takeforce 0.33 set g_balance_powerup_invincible_time 30 set g_balance_powerup_invisibility_alpha 0.15 set g_balance_powerup_invisibility_time 30 -set g_balance_powerup_speed_attackrate 0.8 -set g_balance_powerup_speed_highspeed 1.5 -set g_balance_powerup_speed_time 30 +set g_balance_powerup_speed_attackrate 0.7692307692 // 1/1.3 +set g_balance_powerup_speed_highspeed 1.3 +set g_balance_powerup_speed_time 30 // q3 haste lasts 30 seconds unless count field set otherwise set g_balance_powerup_strength_damage 3 set g_balance_powerup_strength_force 3 set g_balance_powerup_strength_time 30 diff --git a/binds-xonotic.cfg b/binds-xonotic.cfg index 8a900b7de3..a90704c870 100644 --- a/binds-xonotic.cfg +++ b/binds-xonotic.cfg @@ -5,7 +5,6 @@ bind F6 team_auto bind F7 menu_showsandboxtools bind F8 "quickmenu" -bind F9 "cl_cmd hud minigame" // movement bind w +forward diff --git a/commands.cfg b/commands.cfg index 5f71f58afa..1e26673d42 100644 --- a/commands.cfg +++ b/commands.cfg @@ -111,6 +111,7 @@ alias tdem "timedemo $1" // =============================================== // menu_cmd (menu command) - menu/command/menu_cmd.qc // =============================================== +alias menu_showwelcomedialog "menu_cmd directmenu Welcome" alias menu_showteamselect "menu_cmd directmenu TeamSelect" alias menu_showhudexit "menu_cmd directmenu HUDExit" alias menu_showhudoptions "menu_cmd directpanelhudmenu ${* ?}" @@ -184,7 +185,7 @@ alias team_red "cmd selectteam red; cmd join" alias team_blue "cmd selectteam blue; cmd join" alias team_pink "cmd selectteam pink; cmd join" alias team_yellow "cmd selectteam yellow; cmd join" -alias team_auto "cmd selectteam auto; cmd join" +alias team_auto "togglemenu 0; cmd selectteam auto; cmd join" alias spec "spectate ${* ?}" diff --git a/common.ast.po b/common.ast.po index 9652f3910b..db0cd25300 100644 --- a/common.ast.po +++ b/common.ast.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: Xonotic\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-06 07:22+0100\n" -"PO-Revision-Date: 2022-03-06 06:22+0000\n" -"Last-Translator: divVerent \n" +"POT-Creation-Date: 2022-03-27 07:22+0200\n" +"PO-Revision-Date: 2013-09-12 16:53+0000\n" +"Last-Translator: Ximielga , 2014\n" "Language-Team: Asturian (http://www.transifex.com/team-xonotic/xonotic/" "language/ast/)\n" "Language: ast\n" @@ -224,270 +224,270 @@ msgstr "^3ALT^7 + ^3FLECHES^7 pa los axustes finos." msgid "Player %d" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:617 -#: qcsrc/client/hud/panel/quickmenu.qc:619 +#: qcsrc/client/hud/panel/quickmenu.qc:608 +#: qcsrc/client/hud/panel/quickmenu.qc:610 #, c-format msgid "Submenu%d" msgstr "Somenú%d" -#: qcsrc/client/hud/panel/quickmenu.qc:624 +#: qcsrc/client/hud/panel/quickmenu.qc:615 #, c-format msgid "Command%d" msgstr "Comandu%d" -#: qcsrc/client/hud/panel/quickmenu.qc:650 +#: qcsrc/client/hud/panel/quickmenu.qc:641 msgid "Continue..." msgstr "Siguir..." -#: qcsrc/client/hud/panel/quickmenu.qc:807 -#: qcsrc/client/hud/panel/quickmenu.qc:814 +#: qcsrc/client/hud/panel/quickmenu.qc:798 +#: qcsrc/client/hud/panel/quickmenu.qc:805 msgid "Chat" msgstr "Charra" -#: qcsrc/client/hud/panel/quickmenu.qc:808 +#: qcsrc/client/hud/panel/quickmenu.qc:799 msgid "QMCMD^Send public message to" msgstr "Unviar un mensaxe públicu a" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^:-) / nice one" msgstr "bona xugada :-)" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^nice one" msgstr "bona xugada" -#: qcsrc/client/hud/panel/quickmenu.qc:810 +#: qcsrc/client/hud/panel/quickmenu.qc:801 msgid "QMCMD^good game" msgstr "bona partida" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck" msgstr "hola y bona suerte" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck and have fun" msgstr "hola, bona suerte y pasá-ylo podre" -#: qcsrc/client/hud/panel/quickmenu.qc:813 +#: qcsrc/client/hud/panel/quickmenu.qc:804 msgid "QMCMD^Send in English" msgstr "Unviar n'inglés" -#: qcsrc/client/hud/panel/quickmenu.qc:818 -#: qcsrc/client/hud/panel/quickmenu.qc:834 +#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:825 msgid "QMCMD^Team chat" msgstr "Charra del equipu" -#: qcsrc/client/hud/panel/quickmenu.qc:819 +#: qcsrc/client/hud/panel/quickmenu.qc:810 msgid "QMCMD^strength soon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item %x^7 (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:822 +#: qcsrc/client/hud/panel/quickmenu.qc:813 msgid "QMCMD^negative" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:823 +#: qcsrc/client/hud/panel/quickmenu.qc:814 msgid "QMCMD^positive" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 #, c-format msgid "QMCMD^dropped flag (l:%d^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 msgid "QMCMD^dropped flag, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^drop weapon, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^dropped weapon %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^drop flag/key, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^dropped flag/key %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:837 +#: qcsrc/client/hud/panel/quickmenu.qc:828 msgid "QMCMD^Send private message to" msgstr "Unviar un mensaxe priváu a" -#: qcsrc/client/hud/panel/quickmenu.qc:839 -#: qcsrc/client/hud/panel/quickmenu.qc:869 +#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:860 msgid "QMCMD^Settings" msgstr "Axustes" -#: qcsrc/client/hud/panel/quickmenu.qc:840 -#: qcsrc/client/hud/panel/quickmenu.qc:847 +#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:838 msgid "QMCMD^View/HUD settings" msgstr "Axustes de la vista/interfaz" -#: qcsrc/client/hud/panel/quickmenu.qc:841 +#: qcsrc/client/hud/panel/quickmenu.qc:832 msgid "QMCMD^3rd person view" msgstr "Vista en 3ᵉʳ persona" -#: qcsrc/client/hud/panel/quickmenu.qc:842 +#: qcsrc/client/hud/panel/quickmenu.qc:833 msgid "QMCMD^Player models like mine" msgstr "Igualar los modelos de los xugadores" -#: qcsrc/client/hud/panel/quickmenu.qc:843 +#: qcsrc/client/hud/panel/quickmenu.qc:834 msgid "QMCMD^Names above players" msgstr "Nomes enriba de los xugadores" -#: qcsrc/client/hud/panel/quickmenu.qc:844 +#: qcsrc/client/hud/panel/quickmenu.qc:835 msgid "QMCMD^Crosshair per weapon" msgstr "Mira per arma" -#: qcsrc/client/hud/panel/quickmenu.qc:845 +#: qcsrc/client/hud/panel/quickmenu.qc:836 msgid "QMCMD^FPS" msgstr "FPS" -#: qcsrc/client/hud/panel/quickmenu.qc:846 +#: qcsrc/client/hud/panel/quickmenu.qc:837 msgid "QMCMD^Net graph" msgstr "Graficu de rede" -#: qcsrc/client/hud/panel/quickmenu.qc:849 -#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:840 +#: qcsrc/client/hud/panel/quickmenu.qc:843 msgid "QMCMD^Sound settings" msgstr "Axustes del soníu" -#: qcsrc/client/hud/panel/quickmenu.qc:850 +#: qcsrc/client/hud/panel/quickmenu.qc:841 msgid "QMCMD^Hit sound" msgstr "Soníu d'impautos" -#: qcsrc/client/hud/panel/quickmenu.qc:851 +#: qcsrc/client/hud/panel/quickmenu.qc:842 msgid "QMCMD^Chat sound" msgstr "Soníu de la charra" -#: qcsrc/client/hud/panel/quickmenu.qc:856 +#: qcsrc/client/hud/panel/quickmenu.qc:847 msgid "QMCMD^Change spectator camera" msgstr "Camudar la cámara del espectador" -#: qcsrc/client/hud/panel/quickmenu.qc:861 -#: qcsrc/client/hud/panel/quickmenu.qc:865 +#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:856 msgid "QMCMD^Observer camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:853 msgid "QMCMD^Increase speed" msgstr "Aumentar la velocidá" -#: qcsrc/client/hud/panel/quickmenu.qc:863 +#: qcsrc/client/hud/panel/quickmenu.qc:854 msgid "QMCMD^Decrease speed" msgstr "Amenorgar la velocidá" -#: qcsrc/client/hud/panel/quickmenu.qc:864 +#: qcsrc/client/hud/panel/quickmenu.qc:855 msgid "QMCMD^Wall collision" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:868 +#: qcsrc/client/hud/panel/quickmenu.qc:859 msgid "QMCMD^Fullscreen" msgstr "Pantalla completa" -#: qcsrc/client/hud/panel/quickmenu.qc:871 -#: qcsrc/client/hud/panel/quickmenu.qc:881 +#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:872 msgid "QMCMD^Call a vote" msgstr "Facer una votación" -#: qcsrc/client/hud/panel/quickmenu.qc:872 +#: qcsrc/client/hud/panel/quickmenu.qc:863 msgid "QMCMD^Restart the map" msgstr "Reaniciar el mapa" -#: qcsrc/client/hud/panel/quickmenu.qc:873 +#: qcsrc/client/hud/panel/quickmenu.qc:864 msgid "QMCMD^End match" msgstr "Finar la partida" -#: qcsrc/client/hud/panel/quickmenu.qc:876 +#: qcsrc/client/hud/panel/quickmenu.qc:867 msgid "QMCMD^Reduce match time" msgstr "Amenorgar el tiempu de la partida" -#: qcsrc/client/hud/panel/quickmenu.qc:877 +#: qcsrc/client/hud/panel/quickmenu.qc:868 msgid "QMCMD^Extend match time" msgstr "Aumentar el tiempu de la partida" -#: qcsrc/client/hud/panel/quickmenu.qc:880 +#: qcsrc/client/hud/panel/quickmenu.qc:871 msgid "QMCMD^Shuffle teams" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:885 +#: qcsrc/client/hud/panel/quickmenu.qc:876 msgid "QMCMD^Spectate a player" msgstr "Ser l'espectador d'un xugador" @@ -1236,14 +1236,14 @@ msgstr "Mata a tolos miembros d'un equipu pa ganar la ronda" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 #: qcsrc/menu/xonotic/dialog_multiplayer_create.qc:105 msgid "Frag limit:" msgstr "Llende d'asesinatos" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 msgid "The amount of frags needed before the match will end" msgstr "El númberu d'asesinatos precisos p'acabar la partida" @@ -3312,7 +3312,7 @@ msgid "^BG%s%s^K1 was riddled full of holes by ^BG%s^K1's Machine Gun%s%s" msgstr "^BG%s%s^K1 convirtióse nuna peñera pola ametralladora de ^BG%s^K1%s%s" #: qcsrc/common/notifications/all.inc:472 -#: qcsrc/common/notifications/all.inc:778 +#: qcsrc/common/notifications/all.inc:779 #, c-format msgid "^BGYou cannot place more than ^F2%s^BG mines at a time" msgstr "^BGNun pues asitiar más de ^F2%s^BG mines al empar" @@ -4108,7 +4108,13 @@ msgstr "^BGComiences cola ^TCllave ^TT" msgid "^BGYou have no lives left, you must wait until the next match" msgstr "^BGNun te queden vides, has esperar a la partida siguiente" -#: qcsrc/common/notifications/all.inc:707 +#: qcsrc/common/notifications/all.inc:706 +msgid "" +"^F4WARNING:^BG you can't rejoin this match after spectating.\n" +"Use the same command again to spectate anyway." +msgstr "" + +#: qcsrc/common/notifications/all.inc:708 #, c-format msgid "" "^BGWaiting for players to join...\n" @@ -4117,43 +4123,43 @@ msgstr "" "^BGEsperando a que se xunan xugadores...\n" "Precísense xugadores activos pa: %s" -#: qcsrc/common/notifications/all.inc:708 +#: qcsrc/common/notifications/all.inc:709 #, c-format msgid "^BGWaiting for %s player(s) to join..." msgstr "" -#: qcsrc/common/notifications/all.inc:710 +#: qcsrc/common/notifications/all.inc:711 msgid "^BGYour weapon has been downgraded until you find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:711 +#: qcsrc/common/notifications/all.inc:712 msgid "^F4^COUNT^BG left to find some ammo!" msgstr "^BG¡Atopa munición enantes de ^F4^COUNT^BG!" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo or you'll be dead in ^F4^COUNT^BG!" msgstr "^BG¡Consigui munición o vas morrer en ^F4^COUNT^BG!" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo! ^F4^COUNT^BG left!" msgstr "" -#: qcsrc/common/notifications/all.inc:713 +#: qcsrc/common/notifications/all.inc:714 #, c-format msgid "^F2Extra lives remaining: ^K1%s" msgstr "^F2Vides adicionales que queden: ^K1%s" -#: qcsrc/common/notifications/all.inc:715 qcsrc/menu/xonotic/campaign.qc:244 +#: qcsrc/common/notifications/all.inc:716 qcsrc/menu/xonotic/campaign.qc:244 #, c-format msgid "Level %s: " msgstr "Nivel %s: " -#: qcsrc/common/notifications/all.inc:715 +#: qcsrc/common/notifications/all.inc:716 #, c-format msgid "^BGPress ^F2%s^BG to enter the game" msgstr "^BGPrimi ^F2%s^BG pa entrar na partida" -#: qcsrc/common/notifications/all.inc:718 +#: qcsrc/common/notifications/all.inc:719 #, c-format msgid "" "^F2^COUNT^BG until weapon change...\n" @@ -4162,34 +4168,34 @@ msgstr "" "^F2^COUNT^BG hasta'l cambéu de l'arma...\n" "Arma siguiente: ^F1%s" -#: qcsrc/common/notifications/all.inc:719 +#: qcsrc/common/notifications/all.inc:720 #, c-format msgid "^F2Active weapon: ^F1%s" msgstr "^F2Arma activa: ^F1%s" -#: qcsrc/common/notifications/all.inc:721 +#: qcsrc/common/notifications/all.inc:722 #, c-format msgid "^BGYou captured %s^BG control point" msgstr "^BGCapturesti'l puntu de control: %s" -#: qcsrc/common/notifications/all.inc:722 +#: qcsrc/common/notifications/all.inc:723 msgid "^BGYou captured a control point" msgstr "^BGCapturesti un puntu de control" -#: qcsrc/common/notifications/all.inc:723 +#: qcsrc/common/notifications/all.inc:724 #, c-format msgid "^TC^TT^BG team captured %s^BG control point" msgstr "^BGL'equipu ^TC^TT^BG capturó'l puntu de control %s" -#: qcsrc/common/notifications/all.inc:724 +#: qcsrc/common/notifications/all.inc:725 msgid "^TC^TT^BG team captured a control point" msgstr "^BGL'equipu ^TC^TT ^BG capturó un puntu de control" -#: qcsrc/common/notifications/all.inc:725 +#: qcsrc/common/notifications/all.inc:726 msgid "^BGThis control point currently cannot be captured" msgstr "^BGAnguaño esti puntu de control nun pue capturase" -#: qcsrc/common/notifications/all.inc:726 +#: qcsrc/common/notifications/all.inc:727 msgid "" "^BGThe enemy generator cannot be destroyed yet\n" "^F2Capture some control points to unshield it" @@ -4197,11 +4203,11 @@ msgstr "" "^BGEl xenerador enemigu entá nun pue destruyise\n" "^F2Captura dalgún puntu de control pa quitá-y la proteición" -#: qcsrc/common/notifications/all.inc:727 +#: qcsrc/common/notifications/all.inc:728 msgid "^BGThe ^TCenemy^BG generator is no longer shielded!" msgstr "^BG¡El xenerador ^TCenemigu^BG yá nun ta protexíu!" -#: qcsrc/common/notifications/all.inc:728 +#: qcsrc/common/notifications/all.inc:729 msgid "" "^K1Your generator is NOT shielded!\n" "^BGRe-capture control points to shield it!" @@ -4209,29 +4215,29 @@ msgstr "" "^K1¡El to xenerador NUN ta protexíu!\n" "^BGVolvi capturar puntos de control pa protexelu" -#: qcsrc/common/notifications/all.inc:729 +#: qcsrc/common/notifications/all.inc:730 #, c-format msgid "^BGPress ^F2%s^BG to teleport" msgstr "^BGPrimi ^F2%s^BG pa teletresportate" -#: qcsrc/common/notifications/all.inc:730 +#: qcsrc/common/notifications/all.inc:731 #, c-format msgid "^BGTeleporting disabled for %s" msgstr "^BGEl teletresporte desactivóse demientres %s" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep fragging until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep scoring until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:733 +#: qcsrc/common/notifications/all.inc:734 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "\n" @@ -4245,130 +4251,130 @@ msgstr "" "Cuantos más xeneradores capture'l to equipu,\n" "más rápido va romper el xenerador enemigu" -#: qcsrc/common/notifications/all.inc:734 +#: qcsrc/common/notifications/all.inc:735 #, c-format msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "^BGAdded ^F4%s^BG to the game!" msgstr "" -#: qcsrc/common/notifications/all.inc:736 +#: qcsrc/common/notifications/all.inc:737 msgid "^K1In^BG-portal created" msgstr "^BGCreóse un portal d'^K1entrada" -#: qcsrc/common/notifications/all.inc:737 +#: qcsrc/common/notifications/all.inc:738 msgid "^F3Out^BG-portal created" msgstr "^BGCreóse un portal de ^F3salida" -#: qcsrc/common/notifications/all.inc:738 +#: qcsrc/common/notifications/all.inc:739 msgid "^F1Portal creation failed" msgstr "^F1Falló la creación del portal" -#: qcsrc/common/notifications/all.inc:740 +#: qcsrc/common/notifications/all.inc:741 msgid "^F2Strength infuses your weapons with devastating power" msgstr "^F2La fuercia inflúi nes armes dándo-yos un poder afarador" -#: qcsrc/common/notifications/all.inc:741 +#: qcsrc/common/notifications/all.inc:742 msgid "^F2Strength has worn off" msgstr "^F2La fuercia desapaeció" -#: qcsrc/common/notifications/all.inc:743 +#: qcsrc/common/notifications/all.inc:744 msgid "^F2Shield surrounds you" msgstr "^F2Arródiate un escudu" -#: qcsrc/common/notifications/all.inc:744 +#: qcsrc/common/notifications/all.inc:745 msgid "^F2Shield has worn off" msgstr "^F2L'escudu desapaeció" -#: qcsrc/common/notifications/all.inc:746 +#: qcsrc/common/notifications/all.inc:747 msgid "^F2You are on speed" msgstr "^F2Tienes velocidá" -#: qcsrc/common/notifications/all.inc:747 +#: qcsrc/common/notifications/all.inc:748 msgid "^F2Speed has worn off" msgstr "^F2La velocidá desapaeció" -#: qcsrc/common/notifications/all.inc:749 +#: qcsrc/common/notifications/all.inc:750 msgid "^F2You are invisible" msgstr "^F2Yes invisible" -#: qcsrc/common/notifications/all.inc:750 +#: qcsrc/common/notifications/all.inc:751 msgid "^F2Invisibility has worn off" msgstr "^F2La invisibilidá desapaeció" -#: qcsrc/common/notifications/all.inc:752 +#: qcsrc/common/notifications/all.inc:753 msgid "^F2The race is over, finish your lap!" msgstr "^F2La carrera acabó, ¡termina la vuelta!" -#: qcsrc/common/notifications/all.inc:754 +#: qcsrc/common/notifications/all.inc:755 msgid "^BGSequence completed!" msgstr "^BG¡Completóse la secuencia!" -#: qcsrc/common/notifications/all.inc:755 +#: qcsrc/common/notifications/all.inc:756 msgid "^BGThere are more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:756 +#: qcsrc/common/notifications/all.inc:757 #, c-format msgid "^BGOnly %s^BG more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:758 +#: qcsrc/common/notifications/all.inc:759 msgid "^F2Superweapons have broken down" msgstr "^F2Les superarmes rompieron" -#: qcsrc/common/notifications/all.inc:759 +#: qcsrc/common/notifications/all.inc:760 msgid "^F2Superweapons have been lost" msgstr "^F2Les superarmes perdiéronse" -#: qcsrc/common/notifications/all.inc:760 +#: qcsrc/common/notifications/all.inc:761 msgid "^F2You now have a superweapon" msgstr "^F2Agora tienes una superarma" -#: qcsrc/common/notifications/all.inc:762 +#: qcsrc/common/notifications/all.inc:763 msgid "^K1Changing to ^TC^TT^K1 in ^COUNT" msgstr "^K1Vas cambiar al ^TC^TT^K1 en ^COUNT" -#: qcsrc/common/notifications/all.inc:763 +#: qcsrc/common/notifications/all.inc:764 msgid "^K1Changing team in ^COUNT" msgstr "^K1Vas cambiar d'equipu en ^COUNT" -#: qcsrc/common/notifications/all.inc:764 +#: qcsrc/common/notifications/all.inc:765 msgid "^K1Spectating in ^COUNT" msgstr "^K1Vas ser espectador en ^COUNT" -#: qcsrc/common/notifications/all.inc:765 +#: qcsrc/common/notifications/all.inc:766 msgid "^K1Suicide in ^COUNT" msgstr "^K1Vas suicidate en ^COUNT" -#: qcsrc/common/notifications/all.inc:767 +#: qcsrc/common/notifications/all.inc:768 msgid "^F4Timeout begins in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:768 +#: qcsrc/common/notifications/all.inc:769 msgid "^F4Timeout ends in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:770 +#: qcsrc/common/notifications/all.inc:771 msgid "^K1Cannot join given minigame session!" msgstr "" -#: qcsrc/common/notifications/all.inc:772 +#: qcsrc/common/notifications/all.inc:773 #, c-format msgid "^BGPress ^F2%s^BG to enter/exit the vehicle" msgstr "^BGPrimi ^F2%s^BG pa entrar/colar del vehículu" -#: qcsrc/common/notifications/all.inc:773 +#: qcsrc/common/notifications/all.inc:774 #, c-format msgid "^BGPress ^F2%s^BG to enter the vehicle gunner" msgstr "" -#: qcsrc/common/notifications/all.inc:774 +#: qcsrc/common/notifications/all.inc:775 #, c-format msgid "^BGPress ^F2%s^BG to steal this vehicle" msgstr "^BGPrimi ^F2%s^BG pa robar esti vehículu" -#: qcsrc/common/notifications/all.inc:775 +#: qcsrc/common/notifications/all.inc:776 msgid "" "^F2The enemy is stealing one of your vehicles!\n" "^F4Stop them!" @@ -4376,7 +4382,7 @@ msgstr "" "^F2L'enemigu robó unu de los tos vehículos\n" "^F4¡Páralu!" -#: qcsrc/common/notifications/all.inc:776 +#: qcsrc/common/notifications/all.inc:777 msgid "^F2Intruder detected, disabling shields!" msgstr "^F2Detectóse un intrusu, ¡van desactivase los escudos!" diff --git a/common.be.po b/common.be.po index dd0bec97e7..9defdbe57d 100644 --- a/common.be.po +++ b/common.be.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: Xonotic\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-06 07:22+0100\n" -"PO-Revision-Date: 2022-03-06 06:22+0000\n" -"Last-Translator: divVerent \n" +"POT-Creation-Date: 2022-03-27 07:22+0200\n" +"PO-Revision-Date: 2013-09-12 16:53+0000\n" +"Last-Translator: , 2013-2014, 2015\n" "Language-Team: Belarusian (http://www.transifex.com/team-xonotic/xonotic/" "language/be/)\n" "Language: be\n" @@ -220,270 +220,270 @@ msgstr "^3ALT ^7+ ^3СТРЭЛКІ ^7для дакладнага рэгуляв msgid "Player %d" msgstr "Гулец %d" -#: qcsrc/client/hud/panel/quickmenu.qc:617 -#: qcsrc/client/hud/panel/quickmenu.qc:619 +#: qcsrc/client/hud/panel/quickmenu.qc:608 +#: qcsrc/client/hud/panel/quickmenu.qc:610 #, c-format msgid "Submenu%d" msgstr "Падменю%d" -#: qcsrc/client/hud/panel/quickmenu.qc:624 +#: qcsrc/client/hud/panel/quickmenu.qc:615 #, c-format msgid "Command%d" msgstr "Загад%d" -#: qcsrc/client/hud/panel/quickmenu.qc:650 +#: qcsrc/client/hud/panel/quickmenu.qc:641 msgid "Continue..." msgstr "Працягваць..." -#: qcsrc/client/hud/panel/quickmenu.qc:807 -#: qcsrc/client/hud/panel/quickmenu.qc:814 +#: qcsrc/client/hud/panel/quickmenu.qc:798 +#: qcsrc/client/hud/panel/quickmenu.qc:805 msgid "Chat" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:808 +#: qcsrc/client/hud/panel/quickmenu.qc:799 msgid "QMCMD^Send public message to" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^:-) / nice one" msgstr "QMCMD^:-) / цудоўна" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^nice one" msgstr "QMCMD^цудоўна" -#: qcsrc/client/hud/panel/quickmenu.qc:810 +#: qcsrc/client/hud/panel/quickmenu.qc:801 msgid "QMCMD^good game" msgstr "QMCMD^добрая гульня" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck" msgstr "QMCMD^прывіт і ўдачы" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck and have fun" msgstr "QMCMD^прывіт, прыемнай гульні і ўдачы" -#: qcsrc/client/hud/panel/quickmenu.qc:813 +#: qcsrc/client/hud/panel/quickmenu.qc:804 msgid "QMCMD^Send in English" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:818 -#: qcsrc/client/hud/panel/quickmenu.qc:834 +#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:825 msgid "QMCMD^Team chat" msgstr "QMCMD^Камандны чат" -#: qcsrc/client/hud/panel/quickmenu.qc:819 +#: qcsrc/client/hud/panel/quickmenu.qc:810 msgid "QMCMD^strength soon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item %x^7 (l:%y^7)" msgstr "QMCMD^ёсць рэч %x^7 (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item, icon" msgstr "QMCMD^ёсць рэч, значок" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item (l:%l^7)" msgstr "QMCMD^узяў рэч (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item, icon" msgstr "QMCMD^узяў рэч, значок" -#: qcsrc/client/hud/panel/quickmenu.qc:822 +#: qcsrc/client/hud/panel/quickmenu.qc:813 msgid "QMCMD^negative" msgstr "QMCMD^адхілена" -#: qcsrc/client/hud/panel/quickmenu.qc:823 +#: qcsrc/client/hud/panel/quickmenu.qc:814 msgid "QMCMD^positive" msgstr "QMCMD^прынята" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^трэба дапамога (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help, icon" msgstr "QMCMD^трэба дапамога, значок" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 #, c-format msgid "QMCMD^dropped flag (l:%d^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 msgid "QMCMD^dropped flag, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^drop weapon, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^dropped weapon %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^drop flag/key, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^dropped flag/key %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:837 +#: qcsrc/client/hud/panel/quickmenu.qc:828 msgid "QMCMD^Send private message to" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:839 -#: qcsrc/client/hud/panel/quickmenu.qc:869 +#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:860 msgid "QMCMD^Settings" msgstr "QMCMD^Настáўленні" -#: qcsrc/client/hud/panel/quickmenu.qc:840 -#: qcsrc/client/hud/panel/quickmenu.qc:847 +#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:838 msgid "QMCMD^View/HUD settings" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:841 +#: qcsrc/client/hud/panel/quickmenu.qc:832 msgid "QMCMD^3rd person view" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:842 +#: qcsrc/client/hud/panel/quickmenu.qc:833 msgid "QMCMD^Player models like mine" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:843 +#: qcsrc/client/hud/panel/quickmenu.qc:834 msgid "QMCMD^Names above players" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:844 +#: qcsrc/client/hud/panel/quickmenu.qc:835 msgid "QMCMD^Crosshair per weapon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:845 +#: qcsrc/client/hud/panel/quickmenu.qc:836 msgid "QMCMD^FPS" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:846 +#: qcsrc/client/hud/panel/quickmenu.qc:837 msgid "QMCMD^Net graph" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:849 -#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:840 +#: qcsrc/client/hud/panel/quickmenu.qc:843 msgid "QMCMD^Sound settings" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:850 +#: qcsrc/client/hud/panel/quickmenu.qc:841 msgid "QMCMD^Hit sound" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:851 +#: qcsrc/client/hud/panel/quickmenu.qc:842 msgid "QMCMD^Chat sound" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:856 +#: qcsrc/client/hud/panel/quickmenu.qc:847 msgid "QMCMD^Change spectator camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:861 -#: qcsrc/client/hud/panel/quickmenu.qc:865 +#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:856 msgid "QMCMD^Observer camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:853 msgid "QMCMD^Increase speed" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:863 +#: qcsrc/client/hud/panel/quickmenu.qc:854 msgid "QMCMD^Decrease speed" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:864 +#: qcsrc/client/hud/panel/quickmenu.qc:855 msgid "QMCMD^Wall collision" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:868 +#: qcsrc/client/hud/panel/quickmenu.qc:859 msgid "QMCMD^Fullscreen" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:871 -#: qcsrc/client/hud/panel/quickmenu.qc:881 +#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:872 msgid "QMCMD^Call a vote" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:872 +#: qcsrc/client/hud/panel/quickmenu.qc:863 msgid "QMCMD^Restart the map" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:873 +#: qcsrc/client/hud/panel/quickmenu.qc:864 msgid "QMCMD^End match" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:876 +#: qcsrc/client/hud/panel/quickmenu.qc:867 msgid "QMCMD^Reduce match time" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:877 +#: qcsrc/client/hud/panel/quickmenu.qc:868 msgid "QMCMD^Extend match time" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:880 +#: qcsrc/client/hud/panel/quickmenu.qc:871 msgid "QMCMD^Shuffle teams" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:885 +#: qcsrc/client/hud/panel/quickmenu.qc:876 msgid "QMCMD^Spectate a player" msgstr "" @@ -1234,14 +1234,14 @@ msgstr "Забіць усю варожую каманду, каб перамаг #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 #: qcsrc/menu/xonotic/dialog_multiplayer_create.qc:105 msgid "Frag limit:" msgstr "Абмежаванне забойстваў:" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 msgid "The amount of frags needed before the match will end" msgstr "" @@ -3283,7 +3283,7 @@ msgid "^BG%s%s^K1 was riddled full of holes by ^BG%s^K1's Machine Gun%s%s" msgstr "" #: qcsrc/common/notifications/all.inc:472 -#: qcsrc/common/notifications/all.inc:778 +#: qcsrc/common/notifications/all.inc:779 #, c-format msgid "^BGYou cannot place more than ^F2%s^BG mines at a time" msgstr "" @@ -4066,122 +4066,128 @@ msgstr "" msgid "^BGYou have no lives left, you must wait until the next match" msgstr "" -#: qcsrc/common/notifications/all.inc:707 +#: qcsrc/common/notifications/all.inc:706 +msgid "" +"^F4WARNING:^BG you can't rejoin this match after spectating.\n" +"Use the same command again to spectate anyway." +msgstr "" + +#: qcsrc/common/notifications/all.inc:708 #, c-format msgid "" "^BGWaiting for players to join...\n" "Need active players for: %s" msgstr "" -#: qcsrc/common/notifications/all.inc:708 +#: qcsrc/common/notifications/all.inc:709 #, c-format msgid "^BGWaiting for %s player(s) to join..." msgstr "" -#: qcsrc/common/notifications/all.inc:710 +#: qcsrc/common/notifications/all.inc:711 msgid "^BGYour weapon has been downgraded until you find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:711 +#: qcsrc/common/notifications/all.inc:712 msgid "^F4^COUNT^BG left to find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo or you'll be dead in ^F4^COUNT^BG!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo! ^F4^COUNT^BG left!" msgstr "" -#: qcsrc/common/notifications/all.inc:713 +#: qcsrc/common/notifications/all.inc:714 #, c-format msgid "^F2Extra lives remaining: ^K1%s" msgstr "^F2Дадатковых жыццяў засталося: ^K1%s" -#: qcsrc/common/notifications/all.inc:715 qcsrc/menu/xonotic/campaign.qc:244 +#: qcsrc/common/notifications/all.inc:716 qcsrc/menu/xonotic/campaign.qc:244 #, c-format msgid "Level %s: " msgstr "" -#: qcsrc/common/notifications/all.inc:715 +#: qcsrc/common/notifications/all.inc:716 #, c-format msgid "^BGPress ^F2%s^BG to enter the game" msgstr "" -#: qcsrc/common/notifications/all.inc:718 +#: qcsrc/common/notifications/all.inc:719 #, c-format msgid "" "^F2^COUNT^BG until weapon change...\n" "Next weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:719 +#: qcsrc/common/notifications/all.inc:720 #, c-format msgid "^F2Active weapon: ^F1%s" msgstr "^F2Дзейная зброя: ^F1%s" -#: qcsrc/common/notifications/all.inc:721 +#: qcsrc/common/notifications/all.inc:722 #, c-format msgid "^BGYou captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:722 +#: qcsrc/common/notifications/all.inc:723 msgid "^BGYou captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:723 +#: qcsrc/common/notifications/all.inc:724 #, c-format msgid "^TC^TT^BG team captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:724 +#: qcsrc/common/notifications/all.inc:725 msgid "^TC^TT^BG team captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:725 +#: qcsrc/common/notifications/all.inc:726 msgid "^BGThis control point currently cannot be captured" msgstr "" -#: qcsrc/common/notifications/all.inc:726 +#: qcsrc/common/notifications/all.inc:727 msgid "" "^BGThe enemy generator cannot be destroyed yet\n" "^F2Capture some control points to unshield it" msgstr "" -#: qcsrc/common/notifications/all.inc:727 +#: qcsrc/common/notifications/all.inc:728 msgid "^BGThe ^TCenemy^BG generator is no longer shielded!" msgstr "" -#: qcsrc/common/notifications/all.inc:728 +#: qcsrc/common/notifications/all.inc:729 msgid "" "^K1Your generator is NOT shielded!\n" "^BGRe-capture control points to shield it!" msgstr "" -#: qcsrc/common/notifications/all.inc:729 +#: qcsrc/common/notifications/all.inc:730 #, c-format msgid "^BGPress ^F2%s^BG to teleport" msgstr "" -#: qcsrc/common/notifications/all.inc:730 +#: qcsrc/common/notifications/all.inc:731 #, c-format msgid "^BGTeleporting disabled for %s" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep fragging until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep scoring until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:733 +#: qcsrc/common/notifications/all.inc:734 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "\n" @@ -4190,136 +4196,136 @@ msgid "" "the faster the enemy generator decays" msgstr "" -#: qcsrc/common/notifications/all.inc:734 +#: qcsrc/common/notifications/all.inc:735 #, c-format msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "^BGAdded ^F4%s^BG to the game!" msgstr "" -#: qcsrc/common/notifications/all.inc:736 +#: qcsrc/common/notifications/all.inc:737 msgid "^K1In^BG-portal created" msgstr "^K1Уваходны^BG партал створаны" -#: qcsrc/common/notifications/all.inc:737 +#: qcsrc/common/notifications/all.inc:738 msgid "^F3Out^BG-portal created" msgstr "^F3Выходны^BG партал створаны" -#: qcsrc/common/notifications/all.inc:738 +#: qcsrc/common/notifications/all.inc:739 msgid "^F1Portal creation failed" msgstr "" -#: qcsrc/common/notifications/all.inc:740 +#: qcsrc/common/notifications/all.inc:741 msgid "^F2Strength infuses your weapons with devastating power" msgstr "" -#: qcsrc/common/notifications/all.inc:741 +#: qcsrc/common/notifications/all.inc:742 msgid "^F2Strength has worn off" msgstr "^F2Сіла скончылася" -#: qcsrc/common/notifications/all.inc:743 +#: qcsrc/common/notifications/all.inc:744 msgid "^F2Shield surrounds you" msgstr "" -#: qcsrc/common/notifications/all.inc:744 +#: qcsrc/common/notifications/all.inc:745 msgid "^F2Shield has worn off" msgstr "^F2Панцыр скончыўся" -#: qcsrc/common/notifications/all.inc:746 +#: qcsrc/common/notifications/all.inc:747 msgid "^F2You are on speed" msgstr "" -#: qcsrc/common/notifications/all.inc:747 +#: qcsrc/common/notifications/all.inc:748 msgid "^F2Speed has worn off" msgstr "^F2Хуткасць скончылася" -#: qcsrc/common/notifications/all.inc:749 +#: qcsrc/common/notifications/all.inc:750 msgid "^F2You are invisible" msgstr "" -#: qcsrc/common/notifications/all.inc:750 +#: qcsrc/common/notifications/all.inc:751 msgid "^F2Invisibility has worn off" msgstr "^F2Нябачнасць скончылася" -#: qcsrc/common/notifications/all.inc:752 +#: qcsrc/common/notifications/all.inc:753 msgid "^F2The race is over, finish your lap!" msgstr "" -#: qcsrc/common/notifications/all.inc:754 +#: qcsrc/common/notifications/all.inc:755 msgid "^BGSequence completed!" msgstr "" -#: qcsrc/common/notifications/all.inc:755 +#: qcsrc/common/notifications/all.inc:756 msgid "^BGThere are more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:756 +#: qcsrc/common/notifications/all.inc:757 #, c-format msgid "^BGOnly %s^BG more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:758 +#: qcsrc/common/notifications/all.inc:759 msgid "^F2Superweapons have broken down" msgstr "" -#: qcsrc/common/notifications/all.inc:759 +#: qcsrc/common/notifications/all.inc:760 msgid "^F2Superweapons have been lost" msgstr "" -#: qcsrc/common/notifications/all.inc:760 +#: qcsrc/common/notifications/all.inc:761 msgid "^F2You now have a superweapon" msgstr "" -#: qcsrc/common/notifications/all.inc:762 +#: qcsrc/common/notifications/all.inc:763 msgid "^K1Changing to ^TC^TT^K1 in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:763 +#: qcsrc/common/notifications/all.inc:764 msgid "^K1Changing team in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:764 +#: qcsrc/common/notifications/all.inc:765 msgid "^K1Spectating in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:765 +#: qcsrc/common/notifications/all.inc:766 msgid "^K1Suicide in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:767 +#: qcsrc/common/notifications/all.inc:768 msgid "^F4Timeout begins in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:768 +#: qcsrc/common/notifications/all.inc:769 msgid "^F4Timeout ends in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:770 +#: qcsrc/common/notifications/all.inc:771 msgid "^K1Cannot join given minigame session!" msgstr "" -#: qcsrc/common/notifications/all.inc:772 +#: qcsrc/common/notifications/all.inc:773 #, c-format msgid "^BGPress ^F2%s^BG to enter/exit the vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:773 +#: qcsrc/common/notifications/all.inc:774 #, c-format msgid "^BGPress ^F2%s^BG to enter the vehicle gunner" msgstr "" -#: qcsrc/common/notifications/all.inc:774 +#: qcsrc/common/notifications/all.inc:775 #, c-format msgid "^BGPress ^F2%s^BG to steal this vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:775 +#: qcsrc/common/notifications/all.inc:776 msgid "" "^F2The enemy is stealing one of your vehicles!\n" "^F4Stop them!" msgstr "" -#: qcsrc/common/notifications/all.inc:776 +#: qcsrc/common/notifications/all.inc:777 msgid "^F2Intruder detected, disabling shields!" msgstr "" diff --git a/common.bg.po b/common.bg.po index 33524a7992..e3a1746b70 100644 --- a/common.bg.po +++ b/common.bg.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: Xonotic\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-06 07:22+0100\n" -"PO-Revision-Date: 2022-03-06 06:22+0000\n" -"Last-Translator: divVerent \n" +"POT-Creation-Date: 2022-03-27 07:22+0200\n" +"PO-Revision-Date: 2013-09-12 16:53+0000\n" +"Last-Translator: ubone , 2016\n" "Language-Team: Bulgarian (http://www.transifex.com/team-xonotic/xonotic/" "language/bg/)\n" "Language: bg\n" @@ -221,270 +221,270 @@ msgstr "^3ALT ^7+ ^3ARROW KEYS ^7за фини настройки" msgid "Player %d" msgstr "Играч %d" -#: qcsrc/client/hud/panel/quickmenu.qc:617 -#: qcsrc/client/hud/panel/quickmenu.qc:619 +#: qcsrc/client/hud/panel/quickmenu.qc:608 +#: qcsrc/client/hud/panel/quickmenu.qc:610 #, c-format msgid "Submenu%d" msgstr "Подменю%d" -#: qcsrc/client/hud/panel/quickmenu.qc:624 +#: qcsrc/client/hud/panel/quickmenu.qc:615 #, c-format msgid "Command%d" msgstr "Команда%d" -#: qcsrc/client/hud/panel/quickmenu.qc:650 +#: qcsrc/client/hud/panel/quickmenu.qc:641 msgid "Continue..." msgstr "Продължи..." -#: qcsrc/client/hud/panel/quickmenu.qc:807 -#: qcsrc/client/hud/panel/quickmenu.qc:814 +#: qcsrc/client/hud/panel/quickmenu.qc:798 +#: qcsrc/client/hud/panel/quickmenu.qc:805 msgid "Chat" msgstr "Чат" -#: qcsrc/client/hud/panel/quickmenu.qc:808 +#: qcsrc/client/hud/panel/quickmenu.qc:799 msgid "QMCMD^Send public message to" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^:-) / nice one" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^nice one" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:810 +#: qcsrc/client/hud/panel/quickmenu.qc:801 msgid "QMCMD^good game" msgstr "QMCMD^добра игра" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck and have fun" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:813 +#: qcsrc/client/hud/panel/quickmenu.qc:804 msgid "QMCMD^Send in English" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:818 -#: qcsrc/client/hud/panel/quickmenu.qc:834 +#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:825 msgid "QMCMD^Team chat" msgstr "QMCMD^Отборен чат" -#: qcsrc/client/hud/panel/quickmenu.qc:819 +#: qcsrc/client/hud/panel/quickmenu.qc:810 msgid "QMCMD^strength soon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item %x^7 (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:822 +#: qcsrc/client/hud/panel/quickmenu.qc:813 msgid "QMCMD^negative" msgstr "QMCMD^отрицателен" -#: qcsrc/client/hud/panel/quickmenu.qc:823 +#: qcsrc/client/hud/panel/quickmenu.qc:814 msgid "QMCMD^positive" msgstr "QMCMD^положителен" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 #, c-format msgid "QMCMD^dropped flag (l:%d^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 msgid "QMCMD^dropped flag, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^drop weapon, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^dropped weapon %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^drop flag/key, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^dropped flag/key %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:837 +#: qcsrc/client/hud/panel/quickmenu.qc:828 msgid "QMCMD^Send private message to" msgstr "QMCMD^Изпрати лично съобщение до" -#: qcsrc/client/hud/panel/quickmenu.qc:839 -#: qcsrc/client/hud/panel/quickmenu.qc:869 +#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:860 msgid "QMCMD^Settings" msgstr "QMCMD^Настройки" -#: qcsrc/client/hud/panel/quickmenu.qc:840 -#: qcsrc/client/hud/panel/quickmenu.qc:847 +#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:838 msgid "QMCMD^View/HUD settings" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:841 +#: qcsrc/client/hud/panel/quickmenu.qc:832 msgid "QMCMD^3rd person view" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:842 +#: qcsrc/client/hud/panel/quickmenu.qc:833 msgid "QMCMD^Player models like mine" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:843 +#: qcsrc/client/hud/panel/quickmenu.qc:834 msgid "QMCMD^Names above players" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:844 +#: qcsrc/client/hud/panel/quickmenu.qc:835 msgid "QMCMD^Crosshair per weapon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:845 +#: qcsrc/client/hud/panel/quickmenu.qc:836 msgid "QMCMD^FPS" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:846 +#: qcsrc/client/hud/panel/quickmenu.qc:837 msgid "QMCMD^Net graph" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:849 -#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:840 +#: qcsrc/client/hud/panel/quickmenu.qc:843 msgid "QMCMD^Sound settings" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:850 +#: qcsrc/client/hud/panel/quickmenu.qc:841 msgid "QMCMD^Hit sound" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:851 +#: qcsrc/client/hud/panel/quickmenu.qc:842 msgid "QMCMD^Chat sound" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:856 +#: qcsrc/client/hud/panel/quickmenu.qc:847 msgid "QMCMD^Change spectator camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:861 -#: qcsrc/client/hud/panel/quickmenu.qc:865 +#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:856 msgid "QMCMD^Observer camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:853 msgid "QMCMD^Increase speed" msgstr "QMCMD^Увеличи скоростта" -#: qcsrc/client/hud/panel/quickmenu.qc:863 +#: qcsrc/client/hud/panel/quickmenu.qc:854 msgid "QMCMD^Decrease speed" msgstr "QMCMD^Намали скоростта" -#: qcsrc/client/hud/panel/quickmenu.qc:864 +#: qcsrc/client/hud/panel/quickmenu.qc:855 msgid "QMCMD^Wall collision" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:868 +#: qcsrc/client/hud/panel/quickmenu.qc:859 msgid "QMCMD^Fullscreen" msgstr "QMCMD^Цял екран" -#: qcsrc/client/hud/panel/quickmenu.qc:871 -#: qcsrc/client/hud/panel/quickmenu.qc:881 +#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:872 msgid "QMCMD^Call a vote" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:872 +#: qcsrc/client/hud/panel/quickmenu.qc:863 msgid "QMCMD^Restart the map" msgstr "QMCMD^Рестартиране на картата" -#: qcsrc/client/hud/panel/quickmenu.qc:873 +#: qcsrc/client/hud/panel/quickmenu.qc:864 msgid "QMCMD^End match" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:876 +#: qcsrc/client/hud/panel/quickmenu.qc:867 msgid "QMCMD^Reduce match time" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:877 +#: qcsrc/client/hud/panel/quickmenu.qc:868 msgid "QMCMD^Extend match time" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:880 +#: qcsrc/client/hud/panel/quickmenu.qc:871 msgid "QMCMD^Shuffle teams" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:885 +#: qcsrc/client/hud/panel/quickmenu.qc:876 msgid "QMCMD^Spectate a player" msgstr "" @@ -1236,14 +1236,14 @@ msgstr "Убий всички противници, за да спечелиш #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 #: qcsrc/menu/xonotic/dialog_multiplayer_create.qc:105 msgid "Frag limit:" msgstr "Максимум убийства:" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 msgid "The amount of frags needed before the match will end" msgstr "" @@ -3308,7 +3308,7 @@ msgid "^BG%s%s^K1 was riddled full of holes by ^BG%s^K1's Machine Gun%s%s" msgstr "^BG%s%s^K1 бе направен на решето от Machine Gun%s%s на ^BG%s^K1" #: qcsrc/common/notifications/all.inc:472 -#: qcsrc/common/notifications/all.inc:778 +#: qcsrc/common/notifications/all.inc:779 #, c-format msgid "^BGYou cannot place more than ^F2%s^BG mines at a time" msgstr "" @@ -4107,7 +4107,13 @@ msgstr "^BGВие започвате с(ъс) ^TC^TT ключ" msgid "^BGYou have no lives left, you must wait until the next match" msgstr "" -#: qcsrc/common/notifications/all.inc:707 +#: qcsrc/common/notifications/all.inc:706 +msgid "" +"^F4WARNING:^BG you can't rejoin this match after spectating.\n" +"Use the same command again to spectate anyway." +msgstr "" + +#: qcsrc/common/notifications/all.inc:708 #, c-format msgid "" "^BGWaiting for players to join...\n" @@ -4116,44 +4122,44 @@ msgstr "" "^BGИзчакване на играчи...\n" "Необходими активни играчи за: %s" -#: qcsrc/common/notifications/all.inc:708 +#: qcsrc/common/notifications/all.inc:709 #, c-format msgid "^BGWaiting for %s player(s) to join..." msgstr "^BGИзчакване на %s допълнителни играчи(а)..." -#: qcsrc/common/notifications/all.inc:710 +#: qcsrc/common/notifications/all.inc:711 msgid "^BGYour weapon has been downgraded until you find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:711 +#: qcsrc/common/notifications/all.inc:712 msgid "^F4^COUNT^BG left to find some ammo!" msgstr "^F4^COUNT^BG остават за да намерите допълнителни муниции!" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo or you'll be dead in ^F4^COUNT^BG!" msgstr "" "^BGНамерете допълнителни муниции или ще се споминате след ^F4^COUNT^BG!" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo! ^F4^COUNT^BG left!" msgstr "^BGНамерете муниции! ^F4^COUNT^BG остават!" -#: qcsrc/common/notifications/all.inc:713 +#: qcsrc/common/notifications/all.inc:714 #, c-format msgid "^F2Extra lives remaining: ^K1%s" msgstr "^F2Оставащи допълнителни животи: ^K1%s" -#: qcsrc/common/notifications/all.inc:715 qcsrc/menu/xonotic/campaign.qc:244 +#: qcsrc/common/notifications/all.inc:716 qcsrc/menu/xonotic/campaign.qc:244 #, c-format msgid "Level %s: " msgstr "" -#: qcsrc/common/notifications/all.inc:715 +#: qcsrc/common/notifications/all.inc:716 #, c-format msgid "^BGPress ^F2%s^BG to enter the game" msgstr "" -#: qcsrc/common/notifications/all.inc:718 +#: qcsrc/common/notifications/all.inc:719 #, c-format msgid "" "^F2^COUNT^BG until weapon change...\n" @@ -4162,60 +4168,60 @@ msgstr "" "^F2^COUNT^BG до смяната на следващото оръжие...\n" "Следващо оръжие: ^F1%s" -#: qcsrc/common/notifications/all.inc:719 +#: qcsrc/common/notifications/all.inc:720 #, c-format msgid "^F2Active weapon: ^F1%s" msgstr "^F2Активно оръжие: ^F1%s" -#: qcsrc/common/notifications/all.inc:721 +#: qcsrc/common/notifications/all.inc:722 #, c-format msgid "^BGYou captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:722 +#: qcsrc/common/notifications/all.inc:723 msgid "^BGYou captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:723 +#: qcsrc/common/notifications/all.inc:724 #, c-format msgid "^TC^TT^BG team captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:724 +#: qcsrc/common/notifications/all.inc:725 msgid "^TC^TT^BG team captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:725 +#: qcsrc/common/notifications/all.inc:726 msgid "^BGThis control point currently cannot be captured" msgstr "" -#: qcsrc/common/notifications/all.inc:726 +#: qcsrc/common/notifications/all.inc:727 msgid "" "^BGThe enemy generator cannot be destroyed yet\n" "^F2Capture some control points to unshield it" msgstr "" -#: qcsrc/common/notifications/all.inc:727 +#: qcsrc/common/notifications/all.inc:728 msgid "^BGThe ^TCenemy^BG generator is no longer shielded!" msgstr "" -#: qcsrc/common/notifications/all.inc:728 +#: qcsrc/common/notifications/all.inc:729 msgid "" "^K1Your generator is NOT shielded!\n" "^BGRe-capture control points to shield it!" msgstr "" -#: qcsrc/common/notifications/all.inc:729 +#: qcsrc/common/notifications/all.inc:730 #, c-format msgid "^BGPress ^F2%s^BG to teleport" msgstr "" -#: qcsrc/common/notifications/all.inc:730 +#: qcsrc/common/notifications/all.inc:731 #, c-format msgid "^BGTeleporting disabled for %s" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep fragging until we have a winner!" @@ -4223,7 +4229,7 @@ msgstr "" "^F2Сега играете ^F4ИЗВЪНРЕДНО^F2!\n" "Продължете да се стреляте докато имаме победител!" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep scoring until we have a winner!" @@ -4231,7 +4237,7 @@ msgstr "" "^F2Сега играете ^F4ИЗВЪНРЕДНО^F2!\n" "Продължете да бележите докато имаме победител!" -#: qcsrc/common/notifications/all.inc:733 +#: qcsrc/common/notifications/all.inc:734 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "\n" @@ -4240,7 +4246,7 @@ msgid "" "the faster the enemy generator decays" msgstr "" -#: qcsrc/common/notifications/all.inc:734 +#: qcsrc/common/notifications/all.inc:735 #, c-format msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" @@ -4249,129 +4255,129 @@ msgstr "" "^F2Сега играете ^F4ИЗВЪНРЕДНО^F2!\n" "^BGДобавихме ^F4%s^BG към играта!" -#: qcsrc/common/notifications/all.inc:736 +#: qcsrc/common/notifications/all.inc:737 msgid "^K1In^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:737 +#: qcsrc/common/notifications/all.inc:738 msgid "^F3Out^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:738 +#: qcsrc/common/notifications/all.inc:739 msgid "^F1Portal creation failed" msgstr "" -#: qcsrc/common/notifications/all.inc:740 +#: qcsrc/common/notifications/all.inc:741 msgid "^F2Strength infuses your weapons with devastating power" msgstr "^F2Strength изпълва вашето оръжие с опустушителна сила" -#: qcsrc/common/notifications/all.inc:741 +#: qcsrc/common/notifications/all.inc:742 msgid "^F2Strength has worn off" msgstr "^F2Силата бе свалена" -#: qcsrc/common/notifications/all.inc:743 +#: qcsrc/common/notifications/all.inc:744 msgid "^F2Shield surrounds you" msgstr "^F2Щитът ви обгръща" -#: qcsrc/common/notifications/all.inc:744 +#: qcsrc/common/notifications/all.inc:745 msgid "^F2Shield has worn off" msgstr "^F2Бронята бе свалена" -#: qcsrc/common/notifications/all.inc:746 +#: qcsrc/common/notifications/all.inc:747 msgid "^F2You are on speed" msgstr "^F2Вие сте на скорост" -#: qcsrc/common/notifications/all.inc:747 +#: qcsrc/common/notifications/all.inc:748 msgid "^F2Speed has worn off" msgstr "^F2Скоростта бе свалена" -#: qcsrc/common/notifications/all.inc:749 +#: qcsrc/common/notifications/all.inc:750 msgid "^F2You are invisible" msgstr "^F2Вие сте невидим" -#: qcsrc/common/notifications/all.inc:750 +#: qcsrc/common/notifications/all.inc:751 msgid "^F2Invisibility has worn off" msgstr "^F2Невидимостта бе свалена" -#: qcsrc/common/notifications/all.inc:752 +#: qcsrc/common/notifications/all.inc:753 msgid "^F2The race is over, finish your lap!" msgstr "^F2Състезанието приключи, завършете своята обиколка!" -#: qcsrc/common/notifications/all.inc:754 +#: qcsrc/common/notifications/all.inc:755 msgid "^BGSequence completed!" msgstr "" -#: qcsrc/common/notifications/all.inc:755 +#: qcsrc/common/notifications/all.inc:756 msgid "^BGThere are more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:756 +#: qcsrc/common/notifications/all.inc:757 #, c-format msgid "^BGOnly %s^BG more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:758 +#: qcsrc/common/notifications/all.inc:759 msgid "^F2Superweapons have broken down" msgstr "^F2Супероръжията се развалиха" -#: qcsrc/common/notifications/all.inc:759 +#: qcsrc/common/notifications/all.inc:760 msgid "^F2Superweapons have been lost" msgstr "^F2Супероръжията бяха изгубени" -#: qcsrc/common/notifications/all.inc:760 +#: qcsrc/common/notifications/all.inc:761 msgid "^F2You now have a superweapon" msgstr "^F2Сега притежавате супероръжие" -#: qcsrc/common/notifications/all.inc:762 +#: qcsrc/common/notifications/all.inc:763 msgid "^K1Changing to ^TC^TT^K1 in ^COUNT" msgstr "^K1Смяна към ^TC^TT^K1 след ^COUNT" -#: qcsrc/common/notifications/all.inc:763 +#: qcsrc/common/notifications/all.inc:764 msgid "^K1Changing team in ^COUNT" msgstr "^K1Смяна на отбор след ^COUNT" -#: qcsrc/common/notifications/all.inc:764 +#: qcsrc/common/notifications/all.inc:765 msgid "^K1Spectating in ^COUNT" msgstr "^K1Зяпане след ^COUNT" -#: qcsrc/common/notifications/all.inc:765 +#: qcsrc/common/notifications/all.inc:766 msgid "^K1Suicide in ^COUNT" msgstr "^K1Самоубийство след ^COUNT" -#: qcsrc/common/notifications/all.inc:767 +#: qcsrc/common/notifications/all.inc:768 msgid "^F4Timeout begins in ^COUNT" msgstr "^F4Timeout започва след ^COUNT" -#: qcsrc/common/notifications/all.inc:768 +#: qcsrc/common/notifications/all.inc:769 msgid "^F4Timeout ends in ^COUNT" msgstr "^F4Timeout приключва след ^COUNT" -#: qcsrc/common/notifications/all.inc:770 +#: qcsrc/common/notifications/all.inc:771 msgid "^K1Cannot join given minigame session!" msgstr "" -#: qcsrc/common/notifications/all.inc:772 +#: qcsrc/common/notifications/all.inc:773 #, c-format msgid "^BGPress ^F2%s^BG to enter/exit the vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:773 +#: qcsrc/common/notifications/all.inc:774 #, c-format msgid "^BGPress ^F2%s^BG to enter the vehicle gunner" msgstr "" -#: qcsrc/common/notifications/all.inc:774 +#: qcsrc/common/notifications/all.inc:775 #, c-format msgid "^BGPress ^F2%s^BG to steal this vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:775 +#: qcsrc/common/notifications/all.inc:776 msgid "" "^F2The enemy is stealing one of your vehicles!\n" "^F4Stop them!" msgstr "" -#: qcsrc/common/notifications/all.inc:776 +#: qcsrc/common/notifications/all.inc:777 msgid "^F2Intruder detected, disabling shields!" msgstr "" diff --git a/common.ca.po b/common.ca.po index 918b8c51fa..42c26390c7 100644 --- a/common.ca.po +++ b/common.ca.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: Xonotic\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-06 07:22+0100\n" -"PO-Revision-Date: 2022-03-06 06:22+0000\n" -"Last-Translator: divVerent \n" +"POT-Creation-Date: 2022-03-27 07:22+0200\n" +"PO-Revision-Date: 2013-09-12 16:53+0000\n" +"Last-Translator: Roi Asher Gerszkoviez , 2017\n" "Language-Team: Catalan (http://www.transifex.com/team-xonotic/xonotic/" "language/ca/)\n" "Language: ca\n" @@ -221,270 +221,270 @@ msgstr "^3ALT ^7+ ^3TECLES DE DIRECCIÓ ^7per ajustaments fins." msgid "Player %d" msgstr "Jugador %d" -#: qcsrc/client/hud/panel/quickmenu.qc:617 -#: qcsrc/client/hud/panel/quickmenu.qc:619 +#: qcsrc/client/hud/panel/quickmenu.qc:608 +#: qcsrc/client/hud/panel/quickmenu.qc:610 #, c-format msgid "Submenu%d" msgstr "Submenú%d" -#: qcsrc/client/hud/panel/quickmenu.qc:624 +#: qcsrc/client/hud/panel/quickmenu.qc:615 #, c-format msgid "Command%d" msgstr "Ordre%d" -#: qcsrc/client/hud/panel/quickmenu.qc:650 +#: qcsrc/client/hud/panel/quickmenu.qc:641 msgid "Continue..." msgstr "Continuar..." -#: qcsrc/client/hud/panel/quickmenu.qc:807 -#: qcsrc/client/hud/panel/quickmenu.qc:814 +#: qcsrc/client/hud/panel/quickmenu.qc:798 +#: qcsrc/client/hud/panel/quickmenu.qc:805 msgid "Chat" msgstr "Xat" -#: qcsrc/client/hud/panel/quickmenu.qc:808 +#: qcsrc/client/hud/panel/quickmenu.qc:799 msgid "QMCMD^Send public message to" msgstr "QMCMD^Enviar missatge públic a" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^:-) / nice one" msgstr "QMCMD^:-) / bona" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^nice one" msgstr "QMCMD^bona" -#: qcsrc/client/hud/panel/quickmenu.qc:810 +#: qcsrc/client/hud/panel/quickmenu.qc:801 msgid "QMCMD^good game" msgstr "QMCMD^ben jugat" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck" msgstr "QMCMD^hola / bona sort" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck and have fun" msgstr "QMCMD^hola / bona sort i diverteix" -#: qcsrc/client/hud/panel/quickmenu.qc:813 +#: qcsrc/client/hud/panel/quickmenu.qc:804 msgid "QMCMD^Send in English" msgstr "QMCMD^Enviar en anglès" -#: qcsrc/client/hud/panel/quickmenu.qc:818 -#: qcsrc/client/hud/panel/quickmenu.qc:834 +#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:825 msgid "QMCMD^Team chat" msgstr "QMCMD^Xat de l'equip" -#: qcsrc/client/hud/panel/quickmenu.qc:819 +#: qcsrc/client/hud/panel/quickmenu.qc:810 msgid "QMCMD^strength soon" msgstr "QMCMD^la força apareixerà aviat" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item %x^7 (l:%y^7)" msgstr "QMCMD^objecte gratuït %x^7 (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item, icon" msgstr "QMCMD^objecte gratuït, icona" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item (l:%l^7)" msgstr "QMCMD^va prendre l'objecte (l:% l ^ 7)" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item, icon" msgstr "QMCMD^va prendre l'objecte, icona" -#: qcsrc/client/hud/panel/quickmenu.qc:822 +#: qcsrc/client/hud/panel/quickmenu.qc:813 msgid "QMCMD^negative" msgstr "QMCMD^negatiu" -#: qcsrc/client/hud/panel/quickmenu.qc:823 +#: qcsrc/client/hud/panel/quickmenu.qc:814 msgid "QMCMD^positive" msgstr "QMCMD^positiu" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^necessito ajuda (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help, icon" msgstr "QMCMD^necessito ajuda, icona" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen (l:%y^7)" msgstr "QMCMD^enemic vist (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen, icon" msgstr "QMCMD^enemic vist, icona" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen (l:%y^7)" msgstr "QMCMD^bandera vista (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen, icon" msgstr "QMCMD^bandera vista, icona" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^defensant (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending, icon" msgstr "QMCMD^defensant, icona" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^movent-me (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming, icon" msgstr "QMCMD^movent-me, icona" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^atacant (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking, icon" msgstr "QMCMD^atacant, icona" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier (l:%y^7)" msgstr "QMCMD^el portador de la bandera ha estat assassinat (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier, icon" msgstr "QMCMD^el portador de la bandera ha estat assassinat, icona" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 #, c-format msgid "QMCMD^dropped flag (l:%d^7)" msgstr "QMCMD^bandera tirada (l:%d^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 msgid "QMCMD^dropped flag, icon" msgstr "QMCMD^bandera tirada, icona" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^drop weapon, icon" msgstr "QMCMD^tirar arma, icona" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^dropped weapon %w^7 (l:%l^7)" msgstr "QMCMD^arma tirada %w^7 (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^drop flag/key, icon" msgstr "QMCMD^tirar bandera/clau, icona" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^dropped flag/key %w^7 (l:%l^7)" msgstr "QMCMD^bandera/clau tirada %w^7 (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:837 +#: qcsrc/client/hud/panel/quickmenu.qc:828 msgid "QMCMD^Send private message to" msgstr "QMCMD^Enviar missatge privat a" -#: qcsrc/client/hud/panel/quickmenu.qc:839 -#: qcsrc/client/hud/panel/quickmenu.qc:869 +#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:860 msgid "QMCMD^Settings" msgstr "QMCMD^Ajustaments" -#: qcsrc/client/hud/panel/quickmenu.qc:840 -#: qcsrc/client/hud/panel/quickmenu.qc:847 +#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:838 msgid "QMCMD^View/HUD settings" msgstr "QMCMD^Ajustaments de Vista/HUD" -#: qcsrc/client/hud/panel/quickmenu.qc:841 +#: qcsrc/client/hud/panel/quickmenu.qc:832 msgid "QMCMD^3rd person view" msgstr "QMCMD^Vista en 3ª persona" -#: qcsrc/client/hud/panel/quickmenu.qc:842 +#: qcsrc/client/hud/panel/quickmenu.qc:833 msgid "QMCMD^Player models like mine" msgstr "QMCMD^Models de el jugador com el meu" -#: qcsrc/client/hud/panel/quickmenu.qc:843 +#: qcsrc/client/hud/panel/quickmenu.qc:834 msgid "QMCMD^Names above players" msgstr "QMCMD^Noms per sobre dels jugadors" -#: qcsrc/client/hud/panel/quickmenu.qc:844 +#: qcsrc/client/hud/panel/quickmenu.qc:835 msgid "QMCMD^Crosshair per weapon" msgstr "QMCMD^Punt de mira per arma" -#: qcsrc/client/hud/panel/quickmenu.qc:845 +#: qcsrc/client/hud/panel/quickmenu.qc:836 msgid "QMCMD^FPS" msgstr "QMCMD^FPS" -#: qcsrc/client/hud/panel/quickmenu.qc:846 +#: qcsrc/client/hud/panel/quickmenu.qc:837 msgid "QMCMD^Net graph" msgstr "QMCMD^Gràfic de xarxa" -#: qcsrc/client/hud/panel/quickmenu.qc:849 -#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:840 +#: qcsrc/client/hud/panel/quickmenu.qc:843 msgid "QMCMD^Sound settings" msgstr "QMCMD^Ajustaments de so" -#: qcsrc/client/hud/panel/quickmenu.qc:850 +#: qcsrc/client/hud/panel/quickmenu.qc:841 msgid "QMCMD^Hit sound" msgstr "QMCMD^So dels cops" -#: qcsrc/client/hud/panel/quickmenu.qc:851 +#: qcsrc/client/hud/panel/quickmenu.qc:842 msgid "QMCMD^Chat sound" msgstr "QMCMD^So del xat" -#: qcsrc/client/hud/panel/quickmenu.qc:856 +#: qcsrc/client/hud/panel/quickmenu.qc:847 msgid "QMCMD^Change spectator camera" msgstr "QMCMD^Canviar càmera d'espectador" -#: qcsrc/client/hud/panel/quickmenu.qc:861 -#: qcsrc/client/hud/panel/quickmenu.qc:865 +#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:856 msgid "QMCMD^Observer camera" msgstr "QMCMD^Càmera d'observador" -#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:853 msgid "QMCMD^Increase speed" msgstr "QMCMD^Incrementar velocitat" -#: qcsrc/client/hud/panel/quickmenu.qc:863 +#: qcsrc/client/hud/panel/quickmenu.qc:854 msgid "QMCMD^Decrease speed" msgstr "QMCMD^Reduir velocitat" -#: qcsrc/client/hud/panel/quickmenu.qc:864 +#: qcsrc/client/hud/panel/quickmenu.qc:855 msgid "QMCMD^Wall collision" msgstr "QMCMD^Col·lisió del mur" -#: qcsrc/client/hud/panel/quickmenu.qc:868 +#: qcsrc/client/hud/panel/quickmenu.qc:859 msgid "QMCMD^Fullscreen" msgstr "QMCMD^Pantalla completa" -#: qcsrc/client/hud/panel/quickmenu.qc:871 -#: qcsrc/client/hud/panel/quickmenu.qc:881 +#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:872 msgid "QMCMD^Call a vote" msgstr "QMCMD^Demanar vot" -#: qcsrc/client/hud/panel/quickmenu.qc:872 +#: qcsrc/client/hud/panel/quickmenu.qc:863 msgid "QMCMD^Restart the map" msgstr "QMCMD^Reiniciar el mapa" -#: qcsrc/client/hud/panel/quickmenu.qc:873 +#: qcsrc/client/hud/panel/quickmenu.qc:864 msgid "QMCMD^End match" msgstr "QMCMD^Acabar partida" -#: qcsrc/client/hud/panel/quickmenu.qc:876 +#: qcsrc/client/hud/panel/quickmenu.qc:867 msgid "QMCMD^Reduce match time" msgstr "QMCMD^Reduir temps de partida" -#: qcsrc/client/hud/panel/quickmenu.qc:877 +#: qcsrc/client/hud/panel/quickmenu.qc:868 msgid "QMCMD^Extend match time" msgstr "QMCMD^Estendre temps de partida" -#: qcsrc/client/hud/panel/quickmenu.qc:880 +#: qcsrc/client/hud/panel/quickmenu.qc:871 msgid "QMCMD^Shuffle teams" msgstr "QMCMD^Barrejar equips" -#: qcsrc/client/hud/panel/quickmenu.qc:885 +#: qcsrc/client/hud/panel/quickmenu.qc:876 msgid "QMCMD^Spectate a player" msgstr "QMCMD^Espectar a un jugador" @@ -1255,14 +1255,14 @@ msgstr "" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 #: qcsrc/menu/xonotic/dialog_multiplayer_create.qc:105 msgid "Frag limit:" msgstr "" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 msgid "The amount of frags needed before the match will end" msgstr "" @@ -3293,7 +3293,7 @@ msgid "^BG%s%s^K1 was riddled full of holes by ^BG%s^K1's Machine Gun%s%s" msgstr "" #: qcsrc/common/notifications/all.inc:472 -#: qcsrc/common/notifications/all.inc:778 +#: qcsrc/common/notifications/all.inc:779 #, c-format msgid "^BGYou cannot place more than ^F2%s^BG mines at a time" msgstr "" @@ -4071,122 +4071,128 @@ msgstr "" msgid "^BGYou have no lives left, you must wait until the next match" msgstr "" -#: qcsrc/common/notifications/all.inc:707 +#: qcsrc/common/notifications/all.inc:706 +msgid "" +"^F4WARNING:^BG you can't rejoin this match after spectating.\n" +"Use the same command again to spectate anyway." +msgstr "" + +#: qcsrc/common/notifications/all.inc:708 #, c-format msgid "" "^BGWaiting for players to join...\n" "Need active players for: %s" msgstr "" -#: qcsrc/common/notifications/all.inc:708 +#: qcsrc/common/notifications/all.inc:709 #, c-format msgid "^BGWaiting for %s player(s) to join..." msgstr "" -#: qcsrc/common/notifications/all.inc:710 +#: qcsrc/common/notifications/all.inc:711 msgid "^BGYour weapon has been downgraded until you find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:711 +#: qcsrc/common/notifications/all.inc:712 msgid "^F4^COUNT^BG left to find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo or you'll be dead in ^F4^COUNT^BG!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo! ^F4^COUNT^BG left!" msgstr "" -#: qcsrc/common/notifications/all.inc:713 +#: qcsrc/common/notifications/all.inc:714 #, c-format msgid "^F2Extra lives remaining: ^K1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:715 qcsrc/menu/xonotic/campaign.qc:244 +#: qcsrc/common/notifications/all.inc:716 qcsrc/menu/xonotic/campaign.qc:244 #, c-format msgid "Level %s: " msgstr "" -#: qcsrc/common/notifications/all.inc:715 +#: qcsrc/common/notifications/all.inc:716 #, c-format msgid "^BGPress ^F2%s^BG to enter the game" msgstr "" -#: qcsrc/common/notifications/all.inc:718 +#: qcsrc/common/notifications/all.inc:719 #, c-format msgid "" "^F2^COUNT^BG until weapon change...\n" "Next weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:719 +#: qcsrc/common/notifications/all.inc:720 #, c-format msgid "^F2Active weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:721 +#: qcsrc/common/notifications/all.inc:722 #, c-format msgid "^BGYou captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:722 +#: qcsrc/common/notifications/all.inc:723 msgid "^BGYou captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:723 +#: qcsrc/common/notifications/all.inc:724 #, c-format msgid "^TC^TT^BG team captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:724 +#: qcsrc/common/notifications/all.inc:725 msgid "^TC^TT^BG team captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:725 +#: qcsrc/common/notifications/all.inc:726 msgid "^BGThis control point currently cannot be captured" msgstr "" -#: qcsrc/common/notifications/all.inc:726 +#: qcsrc/common/notifications/all.inc:727 msgid "" "^BGThe enemy generator cannot be destroyed yet\n" "^F2Capture some control points to unshield it" msgstr "" -#: qcsrc/common/notifications/all.inc:727 +#: qcsrc/common/notifications/all.inc:728 msgid "^BGThe ^TCenemy^BG generator is no longer shielded!" msgstr "" -#: qcsrc/common/notifications/all.inc:728 +#: qcsrc/common/notifications/all.inc:729 msgid "" "^K1Your generator is NOT shielded!\n" "^BGRe-capture control points to shield it!" msgstr "" -#: qcsrc/common/notifications/all.inc:729 +#: qcsrc/common/notifications/all.inc:730 #, c-format msgid "^BGPress ^F2%s^BG to teleport" msgstr "" -#: qcsrc/common/notifications/all.inc:730 +#: qcsrc/common/notifications/all.inc:731 #, c-format msgid "^BGTeleporting disabled for %s" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep fragging until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep scoring until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:733 +#: qcsrc/common/notifications/all.inc:734 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "\n" @@ -4195,136 +4201,136 @@ msgid "" "the faster the enemy generator decays" msgstr "" -#: qcsrc/common/notifications/all.inc:734 +#: qcsrc/common/notifications/all.inc:735 #, c-format msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "^BGAdded ^F4%s^BG to the game!" msgstr "" -#: qcsrc/common/notifications/all.inc:736 +#: qcsrc/common/notifications/all.inc:737 msgid "^K1In^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:737 +#: qcsrc/common/notifications/all.inc:738 msgid "^F3Out^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:738 +#: qcsrc/common/notifications/all.inc:739 msgid "^F1Portal creation failed" msgstr "" -#: qcsrc/common/notifications/all.inc:740 +#: qcsrc/common/notifications/all.inc:741 msgid "^F2Strength infuses your weapons with devastating power" msgstr "" -#: qcsrc/common/notifications/all.inc:741 +#: qcsrc/common/notifications/all.inc:742 msgid "^F2Strength has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:743 +#: qcsrc/common/notifications/all.inc:744 msgid "^F2Shield surrounds you" msgstr "" -#: qcsrc/common/notifications/all.inc:744 +#: qcsrc/common/notifications/all.inc:745 msgid "^F2Shield has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:746 +#: qcsrc/common/notifications/all.inc:747 msgid "^F2You are on speed" msgstr "" -#: qcsrc/common/notifications/all.inc:747 +#: qcsrc/common/notifications/all.inc:748 msgid "^F2Speed has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:749 +#: qcsrc/common/notifications/all.inc:750 msgid "^F2You are invisible" msgstr "" -#: qcsrc/common/notifications/all.inc:750 +#: qcsrc/common/notifications/all.inc:751 msgid "^F2Invisibility has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:752 +#: qcsrc/common/notifications/all.inc:753 msgid "^F2The race is over, finish your lap!" msgstr "" -#: qcsrc/common/notifications/all.inc:754 +#: qcsrc/common/notifications/all.inc:755 msgid "^BGSequence completed!" msgstr "" -#: qcsrc/common/notifications/all.inc:755 +#: qcsrc/common/notifications/all.inc:756 msgid "^BGThere are more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:756 +#: qcsrc/common/notifications/all.inc:757 #, c-format msgid "^BGOnly %s^BG more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:758 +#: qcsrc/common/notifications/all.inc:759 msgid "^F2Superweapons have broken down" msgstr "^F2Les superarmes s'han trencat" -#: qcsrc/common/notifications/all.inc:759 +#: qcsrc/common/notifications/all.inc:760 msgid "^F2Superweapons have been lost" msgstr "^F2Les superarmes s'han perdut" -#: qcsrc/common/notifications/all.inc:760 +#: qcsrc/common/notifications/all.inc:761 msgid "^F2You now have a superweapon" msgstr "^F2Ara tens una superarma" -#: qcsrc/common/notifications/all.inc:762 +#: qcsrc/common/notifications/all.inc:763 msgid "^K1Changing to ^TC^TT^K1 in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:763 +#: qcsrc/common/notifications/all.inc:764 msgid "^K1Changing team in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:764 +#: qcsrc/common/notifications/all.inc:765 msgid "^K1Spectating in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:765 +#: qcsrc/common/notifications/all.inc:766 msgid "^K1Suicide in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:767 +#: qcsrc/common/notifications/all.inc:768 msgid "^F4Timeout begins in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:768 +#: qcsrc/common/notifications/all.inc:769 msgid "^F4Timeout ends in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:770 +#: qcsrc/common/notifications/all.inc:771 msgid "^K1Cannot join given minigame session!" msgstr "" -#: qcsrc/common/notifications/all.inc:772 +#: qcsrc/common/notifications/all.inc:773 #, c-format msgid "^BGPress ^F2%s^BG to enter/exit the vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:773 +#: qcsrc/common/notifications/all.inc:774 #, c-format msgid "^BGPress ^F2%s^BG to enter the vehicle gunner" msgstr "" -#: qcsrc/common/notifications/all.inc:774 +#: qcsrc/common/notifications/all.inc:775 #, c-format msgid "^BGPress ^F2%s^BG to steal this vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:775 +#: qcsrc/common/notifications/all.inc:776 msgid "" "^F2The enemy is stealing one of your vehicles!\n" "^F4Stop them!" msgstr "" -#: qcsrc/common/notifications/all.inc:776 +#: qcsrc/common/notifications/all.inc:777 msgid "^F2Intruder detected, disabling shields!" msgstr "" diff --git a/common.cs.po b/common.cs.po index c23b2a8561..d249db8270 100644 --- a/common.cs.po +++ b/common.cs.po @@ -20,9 +20,9 @@ msgid "" msgstr "" "Project-Id-Version: Xonotic\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-06 07:22+0100\n" -"PO-Revision-Date: 2022-03-06 06:22+0000\n" -"Last-Translator: divVerent \n" +"POT-Creation-Date: 2022-03-27 07:22+0200\n" +"PO-Revision-Date: 2013-09-12 16:53+0000\n" +"Last-Translator: Tomáš Volavka , 2015,2018\n" "Language-Team: Czech (http://www.transifex.com/team-xonotic/xonotic/language/" "cs/)\n" "Language: cs\n" @@ -231,270 +231,270 @@ msgstr "" msgid "Player %d" msgstr "Hráč %d" -#: qcsrc/client/hud/panel/quickmenu.qc:617 -#: qcsrc/client/hud/panel/quickmenu.qc:619 +#: qcsrc/client/hud/panel/quickmenu.qc:608 +#: qcsrc/client/hud/panel/quickmenu.qc:610 #, c-format msgid "Submenu%d" msgstr "Podmenu%d" -#: qcsrc/client/hud/panel/quickmenu.qc:624 +#: qcsrc/client/hud/panel/quickmenu.qc:615 #, c-format msgid "Command%d" msgstr "Příkaz%d" -#: qcsrc/client/hud/panel/quickmenu.qc:650 +#: qcsrc/client/hud/panel/quickmenu.qc:641 msgid "Continue..." msgstr "Pokračovat..." -#: qcsrc/client/hud/panel/quickmenu.qc:807 -#: qcsrc/client/hud/panel/quickmenu.qc:814 +#: qcsrc/client/hud/panel/quickmenu.qc:798 +#: qcsrc/client/hud/panel/quickmenu.qc:805 msgid "Chat" msgstr "Chat" -#: qcsrc/client/hud/panel/quickmenu.qc:808 +#: qcsrc/client/hud/panel/quickmenu.qc:799 msgid "QMCMD^Send public message to" msgstr "QMCMD^Poslat veřejnou zprávu do" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^:-) / nice one" msgstr "QMCMD^:-) / hezký" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^nice one" msgstr "QMCMD^hezký" -#: qcsrc/client/hud/panel/quickmenu.qc:810 +#: qcsrc/client/hud/panel/quickmenu.qc:801 msgid "QMCMD^good game" msgstr "QMCMD^dobrá hra" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck" msgstr "QMCMD^ahoj/hodně štěstí" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck and have fun" msgstr "QMCMD^ahoj/hodně štěstí a užijte si hru" -#: qcsrc/client/hud/panel/quickmenu.qc:813 +#: qcsrc/client/hud/panel/quickmenu.qc:804 msgid "QMCMD^Send in English" msgstr "QMCMD^Pošli v angličtině" -#: qcsrc/client/hud/panel/quickmenu.qc:818 -#: qcsrc/client/hud/panel/quickmenu.qc:834 +#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:825 msgid "QMCMD^Team chat" msgstr "QMCMD^Týmový chat" -#: qcsrc/client/hud/panel/quickmenu.qc:819 +#: qcsrc/client/hud/panel/quickmenu.qc:810 msgid "QMCMD^strength soon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item %x^7 (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item, icon" msgstr "QMCMD^předmět zdarma, ikona" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:822 +#: qcsrc/client/hud/panel/quickmenu.qc:813 msgid "QMCMD^negative" msgstr "QMCMD^negativní" -#: qcsrc/client/hud/panel/quickmenu.qc:823 +#: qcsrc/client/hud/panel/quickmenu.qc:814 msgid "QMCMD^positive" msgstr "QMCMD^pozitivní" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^potřebuje pomoc (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 #, c-format msgid "QMCMD^dropped flag (l:%d^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 msgid "QMCMD^dropped flag, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^drop weapon, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^dropped weapon %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^drop flag/key, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^dropped flag/key %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:837 +#: qcsrc/client/hud/panel/quickmenu.qc:828 msgid "QMCMD^Send private message to" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:839 -#: qcsrc/client/hud/panel/quickmenu.qc:869 +#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:860 msgid "QMCMD^Settings" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:840 -#: qcsrc/client/hud/panel/quickmenu.qc:847 +#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:838 msgid "QMCMD^View/HUD settings" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:841 +#: qcsrc/client/hud/panel/quickmenu.qc:832 msgid "QMCMD^3rd person view" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:842 +#: qcsrc/client/hud/panel/quickmenu.qc:833 msgid "QMCMD^Player models like mine" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:843 +#: qcsrc/client/hud/panel/quickmenu.qc:834 msgid "QMCMD^Names above players" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:844 +#: qcsrc/client/hud/panel/quickmenu.qc:835 msgid "QMCMD^Crosshair per weapon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:845 +#: qcsrc/client/hud/panel/quickmenu.qc:836 msgid "QMCMD^FPS" msgstr "QMCMD^FPS" -#: qcsrc/client/hud/panel/quickmenu.qc:846 +#: qcsrc/client/hud/panel/quickmenu.qc:837 msgid "QMCMD^Net graph" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:849 -#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:840 +#: qcsrc/client/hud/panel/quickmenu.qc:843 msgid "QMCMD^Sound settings" msgstr "QMCMD^Nastavení zvuku" -#: qcsrc/client/hud/panel/quickmenu.qc:850 +#: qcsrc/client/hud/panel/quickmenu.qc:841 msgid "QMCMD^Hit sound" msgstr "QMCMD^Zvuk zásahu" -#: qcsrc/client/hud/panel/quickmenu.qc:851 +#: qcsrc/client/hud/panel/quickmenu.qc:842 msgid "QMCMD^Chat sound" msgstr "QMCMD^Zvuk chatu" -#: qcsrc/client/hud/panel/quickmenu.qc:856 +#: qcsrc/client/hud/panel/quickmenu.qc:847 msgid "QMCMD^Change spectator camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:861 -#: qcsrc/client/hud/panel/quickmenu.qc:865 +#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:856 msgid "QMCMD^Observer camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:853 msgid "QMCMD^Increase speed" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:863 +#: qcsrc/client/hud/panel/quickmenu.qc:854 msgid "QMCMD^Decrease speed" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:864 +#: qcsrc/client/hud/panel/quickmenu.qc:855 msgid "QMCMD^Wall collision" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:868 +#: qcsrc/client/hud/panel/quickmenu.qc:859 msgid "QMCMD^Fullscreen" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:871 -#: qcsrc/client/hud/panel/quickmenu.qc:881 +#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:872 msgid "QMCMD^Call a vote" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:872 +#: qcsrc/client/hud/panel/quickmenu.qc:863 msgid "QMCMD^Restart the map" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:873 +#: qcsrc/client/hud/panel/quickmenu.qc:864 msgid "QMCMD^End match" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:876 +#: qcsrc/client/hud/panel/quickmenu.qc:867 msgid "QMCMD^Reduce match time" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:877 +#: qcsrc/client/hud/panel/quickmenu.qc:868 msgid "QMCMD^Extend match time" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:880 +#: qcsrc/client/hud/panel/quickmenu.qc:871 msgid "QMCMD^Shuffle teams" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:885 +#: qcsrc/client/hud/panel/quickmenu.qc:876 msgid "QMCMD^Spectate a player" msgstr "" @@ -1243,14 +1243,14 @@ msgstr "Zabij všechny nepřátele, abys vyhrál kolo" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 #: qcsrc/menu/xonotic/dialog_multiplayer_create.qc:105 msgid "Frag limit:" msgstr "Limit zabití:" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 msgid "The amount of frags needed before the match will end" msgstr "Počet fragů, který je nutný pro dohrání zápasu" @@ -3281,7 +3281,7 @@ msgid "^BG%s%s^K1 was riddled full of holes by ^BG%s^K1's Machine Gun%s%s" msgstr "" #: qcsrc/common/notifications/all.inc:472 -#: qcsrc/common/notifications/all.inc:778 +#: qcsrc/common/notifications/all.inc:779 #, c-format msgid "^BGYou cannot place more than ^F2%s^BG mines at a time" msgstr "" @@ -4059,122 +4059,128 @@ msgstr "" msgid "^BGYou have no lives left, you must wait until the next match" msgstr "" -#: qcsrc/common/notifications/all.inc:707 +#: qcsrc/common/notifications/all.inc:706 +msgid "" +"^F4WARNING:^BG you can't rejoin this match after spectating.\n" +"Use the same command again to spectate anyway." +msgstr "" + +#: qcsrc/common/notifications/all.inc:708 #, c-format msgid "" "^BGWaiting for players to join...\n" "Need active players for: %s" msgstr "" -#: qcsrc/common/notifications/all.inc:708 +#: qcsrc/common/notifications/all.inc:709 #, c-format msgid "^BGWaiting for %s player(s) to join..." msgstr "" -#: qcsrc/common/notifications/all.inc:710 +#: qcsrc/common/notifications/all.inc:711 msgid "^BGYour weapon has been downgraded until you find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:711 +#: qcsrc/common/notifications/all.inc:712 msgid "^F4^COUNT^BG left to find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo or you'll be dead in ^F4^COUNT^BG!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo! ^F4^COUNT^BG left!" msgstr "" -#: qcsrc/common/notifications/all.inc:713 +#: qcsrc/common/notifications/all.inc:714 #, c-format msgid "^F2Extra lives remaining: ^K1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:715 qcsrc/menu/xonotic/campaign.qc:244 +#: qcsrc/common/notifications/all.inc:716 qcsrc/menu/xonotic/campaign.qc:244 #, c-format msgid "Level %s: " msgstr "" -#: qcsrc/common/notifications/all.inc:715 +#: qcsrc/common/notifications/all.inc:716 #, c-format msgid "^BGPress ^F2%s^BG to enter the game" msgstr "" -#: qcsrc/common/notifications/all.inc:718 +#: qcsrc/common/notifications/all.inc:719 #, c-format msgid "" "^F2^COUNT^BG until weapon change...\n" "Next weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:719 +#: qcsrc/common/notifications/all.inc:720 #, c-format msgid "^F2Active weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:721 +#: qcsrc/common/notifications/all.inc:722 #, c-format msgid "^BGYou captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:722 +#: qcsrc/common/notifications/all.inc:723 msgid "^BGYou captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:723 +#: qcsrc/common/notifications/all.inc:724 #, c-format msgid "^TC^TT^BG team captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:724 +#: qcsrc/common/notifications/all.inc:725 msgid "^TC^TT^BG team captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:725 +#: qcsrc/common/notifications/all.inc:726 msgid "^BGThis control point currently cannot be captured" msgstr "" -#: qcsrc/common/notifications/all.inc:726 +#: qcsrc/common/notifications/all.inc:727 msgid "" "^BGThe enemy generator cannot be destroyed yet\n" "^F2Capture some control points to unshield it" msgstr "" -#: qcsrc/common/notifications/all.inc:727 +#: qcsrc/common/notifications/all.inc:728 msgid "^BGThe ^TCenemy^BG generator is no longer shielded!" msgstr "" -#: qcsrc/common/notifications/all.inc:728 +#: qcsrc/common/notifications/all.inc:729 msgid "" "^K1Your generator is NOT shielded!\n" "^BGRe-capture control points to shield it!" msgstr "" -#: qcsrc/common/notifications/all.inc:729 +#: qcsrc/common/notifications/all.inc:730 #, c-format msgid "^BGPress ^F2%s^BG to teleport" msgstr "" -#: qcsrc/common/notifications/all.inc:730 +#: qcsrc/common/notifications/all.inc:731 #, c-format msgid "^BGTeleporting disabled for %s" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep fragging until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep scoring until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:733 +#: qcsrc/common/notifications/all.inc:734 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "\n" @@ -4183,136 +4189,136 @@ msgid "" "the faster the enemy generator decays" msgstr "" -#: qcsrc/common/notifications/all.inc:734 +#: qcsrc/common/notifications/all.inc:735 #, c-format msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "^BGAdded ^F4%s^BG to the game!" msgstr "" -#: qcsrc/common/notifications/all.inc:736 +#: qcsrc/common/notifications/all.inc:737 msgid "^K1In^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:737 +#: qcsrc/common/notifications/all.inc:738 msgid "^F3Out^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:738 +#: qcsrc/common/notifications/all.inc:739 msgid "^F1Portal creation failed" msgstr "" -#: qcsrc/common/notifications/all.inc:740 +#: qcsrc/common/notifications/all.inc:741 msgid "^F2Strength infuses your weapons with devastating power" msgstr "" -#: qcsrc/common/notifications/all.inc:741 +#: qcsrc/common/notifications/all.inc:742 msgid "^F2Strength has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:743 +#: qcsrc/common/notifications/all.inc:744 msgid "^F2Shield surrounds you" msgstr "" -#: qcsrc/common/notifications/all.inc:744 +#: qcsrc/common/notifications/all.inc:745 msgid "^F2Shield has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:746 +#: qcsrc/common/notifications/all.inc:747 msgid "^F2You are on speed" msgstr "" -#: qcsrc/common/notifications/all.inc:747 +#: qcsrc/common/notifications/all.inc:748 msgid "^F2Speed has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:749 +#: qcsrc/common/notifications/all.inc:750 msgid "^F2You are invisible" msgstr "" -#: qcsrc/common/notifications/all.inc:750 +#: qcsrc/common/notifications/all.inc:751 msgid "^F2Invisibility has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:752 +#: qcsrc/common/notifications/all.inc:753 msgid "^F2The race is over, finish your lap!" msgstr "" -#: qcsrc/common/notifications/all.inc:754 +#: qcsrc/common/notifications/all.inc:755 msgid "^BGSequence completed!" msgstr "" -#: qcsrc/common/notifications/all.inc:755 +#: qcsrc/common/notifications/all.inc:756 msgid "^BGThere are more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:756 +#: qcsrc/common/notifications/all.inc:757 #, c-format msgid "^BGOnly %s^BG more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:758 +#: qcsrc/common/notifications/all.inc:759 msgid "^F2Superweapons have broken down" msgstr "" -#: qcsrc/common/notifications/all.inc:759 +#: qcsrc/common/notifications/all.inc:760 msgid "^F2Superweapons have been lost" msgstr "" -#: qcsrc/common/notifications/all.inc:760 +#: qcsrc/common/notifications/all.inc:761 msgid "^F2You now have a superweapon" msgstr "" -#: qcsrc/common/notifications/all.inc:762 +#: qcsrc/common/notifications/all.inc:763 msgid "^K1Changing to ^TC^TT^K1 in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:763 +#: qcsrc/common/notifications/all.inc:764 msgid "^K1Changing team in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:764 +#: qcsrc/common/notifications/all.inc:765 msgid "^K1Spectating in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:765 +#: qcsrc/common/notifications/all.inc:766 msgid "^K1Suicide in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:767 +#: qcsrc/common/notifications/all.inc:768 msgid "^F4Timeout begins in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:768 +#: qcsrc/common/notifications/all.inc:769 msgid "^F4Timeout ends in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:770 +#: qcsrc/common/notifications/all.inc:771 msgid "^K1Cannot join given minigame session!" msgstr "" -#: qcsrc/common/notifications/all.inc:772 +#: qcsrc/common/notifications/all.inc:773 #, c-format msgid "^BGPress ^F2%s^BG to enter/exit the vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:773 +#: qcsrc/common/notifications/all.inc:774 #, c-format msgid "^BGPress ^F2%s^BG to enter the vehicle gunner" msgstr "" -#: qcsrc/common/notifications/all.inc:774 +#: qcsrc/common/notifications/all.inc:775 #, c-format msgid "^BGPress ^F2%s^BG to steal this vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:775 +#: qcsrc/common/notifications/all.inc:776 msgid "" "^F2The enemy is stealing one of your vehicles!\n" "^F4Stop them!" msgstr "" -#: qcsrc/common/notifications/all.inc:776 +#: qcsrc/common/notifications/all.inc:777 msgid "^F2Intruder detected, disabling shields!" msgstr "" diff --git a/common.da.po b/common.da.po index d2b6c283d0..7e6bfc7a77 100644 --- a/common.da.po +++ b/common.da.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: Xonotic\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-06 07:22+0100\n" -"PO-Revision-Date: 2022-03-06 06:22+0000\n" -"Last-Translator: divVerent \n" +"POT-Creation-Date: 2022-03-27 07:22+0200\n" +"PO-Revision-Date: 2013-09-12 16:53+0000\n" +"Last-Translator: Archy Coder, 2022\n" "Language-Team: Danish (http://www.transifex.com/team-xonotic/xonotic/" "language/da/)\n" "Language: da\n" @@ -217,270 +217,270 @@ msgstr "" msgid "Player %d" msgstr "Spiller %d" -#: qcsrc/client/hud/panel/quickmenu.qc:617 -#: qcsrc/client/hud/panel/quickmenu.qc:619 +#: qcsrc/client/hud/panel/quickmenu.qc:608 +#: qcsrc/client/hud/panel/quickmenu.qc:610 #, c-format msgid "Submenu%d" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:624 +#: qcsrc/client/hud/panel/quickmenu.qc:615 #, c-format msgid "Command%d" msgstr "Kommando%d" -#: qcsrc/client/hud/panel/quickmenu.qc:650 +#: qcsrc/client/hud/panel/quickmenu.qc:641 msgid "Continue..." msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:807 -#: qcsrc/client/hud/panel/quickmenu.qc:814 +#: qcsrc/client/hud/panel/quickmenu.qc:798 +#: qcsrc/client/hud/panel/quickmenu.qc:805 msgid "Chat" msgstr "Chat" -#: qcsrc/client/hud/panel/quickmenu.qc:808 +#: qcsrc/client/hud/panel/quickmenu.qc:799 msgid "QMCMD^Send public message to" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^:-) / nice one" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^nice one" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:810 +#: qcsrc/client/hud/panel/quickmenu.qc:801 msgid "QMCMD^good game" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck and have fun" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:813 +#: qcsrc/client/hud/panel/quickmenu.qc:804 msgid "QMCMD^Send in English" msgstr "QMCMD^Send i Engelsk" -#: qcsrc/client/hud/panel/quickmenu.qc:818 -#: qcsrc/client/hud/panel/quickmenu.qc:834 +#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:825 msgid "QMCMD^Team chat" msgstr "QMCMD^Hold chat" -#: qcsrc/client/hud/panel/quickmenu.qc:819 +#: qcsrc/client/hud/panel/quickmenu.qc:810 msgid "QMCMD^strength soon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item %x^7 (l:%y^7)" msgstr "QMCMD^Gratis objekt %x^7 (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:822 +#: qcsrc/client/hud/panel/quickmenu.qc:813 msgid "QMCMD^negative" msgstr "QMCMD^negative" -#: qcsrc/client/hud/panel/quickmenu.qc:823 +#: qcsrc/client/hud/panel/quickmenu.qc:814 msgid "QMCMD^positive" msgstr "QMCMD^positive" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help, icon" msgstr "QMCMD^brug for hjælp, icon" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^angriber (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 #, c-format msgid "QMCMD^dropped flag (l:%d^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 msgid "QMCMD^dropped flag, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^drop weapon, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^dropped weapon %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^drop flag/key, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^dropped flag/key %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:837 +#: qcsrc/client/hud/panel/quickmenu.qc:828 msgid "QMCMD^Send private message to" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:839 -#: qcsrc/client/hud/panel/quickmenu.qc:869 +#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:860 msgid "QMCMD^Settings" msgstr "QMCMD^Indstillinger" -#: qcsrc/client/hud/panel/quickmenu.qc:840 -#: qcsrc/client/hud/panel/quickmenu.qc:847 +#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:838 msgid "QMCMD^View/HUD settings" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:841 +#: qcsrc/client/hud/panel/quickmenu.qc:832 msgid "QMCMD^3rd person view" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:842 +#: qcsrc/client/hud/panel/quickmenu.qc:833 msgid "QMCMD^Player models like mine" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:843 +#: qcsrc/client/hud/panel/quickmenu.qc:834 msgid "QMCMD^Names above players" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:844 +#: qcsrc/client/hud/panel/quickmenu.qc:835 msgid "QMCMD^Crosshair per weapon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:845 +#: qcsrc/client/hud/panel/quickmenu.qc:836 msgid "QMCMD^FPS" msgstr "QMCMD^FPS" -#: qcsrc/client/hud/panel/quickmenu.qc:846 +#: qcsrc/client/hud/panel/quickmenu.qc:837 msgid "QMCMD^Net graph" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:849 -#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:840 +#: qcsrc/client/hud/panel/quickmenu.qc:843 msgid "QMCMD^Sound settings" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:850 +#: qcsrc/client/hud/panel/quickmenu.qc:841 msgid "QMCMD^Hit sound" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:851 +#: qcsrc/client/hud/panel/quickmenu.qc:842 msgid "QMCMD^Chat sound" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:856 +#: qcsrc/client/hud/panel/quickmenu.qc:847 msgid "QMCMD^Change spectator camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:861 -#: qcsrc/client/hud/panel/quickmenu.qc:865 +#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:856 msgid "QMCMD^Observer camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:853 msgid "QMCMD^Increase speed" msgstr "QMCMD^Fart op" -#: qcsrc/client/hud/panel/quickmenu.qc:863 +#: qcsrc/client/hud/panel/quickmenu.qc:854 msgid "QMCMD^Decrease speed" msgstr "QMCMD^Fart ned" -#: qcsrc/client/hud/panel/quickmenu.qc:864 +#: qcsrc/client/hud/panel/quickmenu.qc:855 msgid "QMCMD^Wall collision" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:868 +#: qcsrc/client/hud/panel/quickmenu.qc:859 msgid "QMCMD^Fullscreen" msgstr "QMCMD^Fuldskærm" -#: qcsrc/client/hud/panel/quickmenu.qc:871 -#: qcsrc/client/hud/panel/quickmenu.qc:881 +#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:872 msgid "QMCMD^Call a vote" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:872 +#: qcsrc/client/hud/panel/quickmenu.qc:863 msgid "QMCMD^Restart the map" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:873 +#: qcsrc/client/hud/panel/quickmenu.qc:864 msgid "QMCMD^End match" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:876 +#: qcsrc/client/hud/panel/quickmenu.qc:867 msgid "QMCMD^Reduce match time" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:877 +#: qcsrc/client/hud/panel/quickmenu.qc:868 msgid "QMCMD^Extend match time" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:880 +#: qcsrc/client/hud/panel/quickmenu.qc:871 msgid "QMCMD^Shuffle teams" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:885 +#: qcsrc/client/hud/panel/quickmenu.qc:876 msgid "QMCMD^Spectate a player" msgstr "" @@ -1229,14 +1229,14 @@ msgstr "" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 #: qcsrc/menu/xonotic/dialog_multiplayer_create.qc:105 msgid "Frag limit:" msgstr "" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 msgid "The amount of frags needed before the match will end" msgstr "" @@ -3267,7 +3267,7 @@ msgid "^BG%s%s^K1 was riddled full of holes by ^BG%s^K1's Machine Gun%s%s" msgstr "" #: qcsrc/common/notifications/all.inc:472 -#: qcsrc/common/notifications/all.inc:778 +#: qcsrc/common/notifications/all.inc:779 #, c-format msgid "^BGYou cannot place more than ^F2%s^BG mines at a time" msgstr "" @@ -4045,122 +4045,128 @@ msgstr "" msgid "^BGYou have no lives left, you must wait until the next match" msgstr "" -#: qcsrc/common/notifications/all.inc:707 +#: qcsrc/common/notifications/all.inc:706 +msgid "" +"^F4WARNING:^BG you can't rejoin this match after spectating.\n" +"Use the same command again to spectate anyway." +msgstr "" + +#: qcsrc/common/notifications/all.inc:708 #, c-format msgid "" "^BGWaiting for players to join...\n" "Need active players for: %s" msgstr "" -#: qcsrc/common/notifications/all.inc:708 +#: qcsrc/common/notifications/all.inc:709 #, c-format msgid "^BGWaiting for %s player(s) to join..." msgstr "" -#: qcsrc/common/notifications/all.inc:710 +#: qcsrc/common/notifications/all.inc:711 msgid "^BGYour weapon has been downgraded until you find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:711 +#: qcsrc/common/notifications/all.inc:712 msgid "^F4^COUNT^BG left to find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo or you'll be dead in ^F4^COUNT^BG!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo! ^F4^COUNT^BG left!" msgstr "" -#: qcsrc/common/notifications/all.inc:713 +#: qcsrc/common/notifications/all.inc:714 #, c-format msgid "^F2Extra lives remaining: ^K1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:715 qcsrc/menu/xonotic/campaign.qc:244 +#: qcsrc/common/notifications/all.inc:716 qcsrc/menu/xonotic/campaign.qc:244 #, c-format msgid "Level %s: " msgstr "" -#: qcsrc/common/notifications/all.inc:715 +#: qcsrc/common/notifications/all.inc:716 #, c-format msgid "^BGPress ^F2%s^BG to enter the game" msgstr "" -#: qcsrc/common/notifications/all.inc:718 +#: qcsrc/common/notifications/all.inc:719 #, c-format msgid "" "^F2^COUNT^BG until weapon change...\n" "Next weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:719 +#: qcsrc/common/notifications/all.inc:720 #, c-format msgid "^F2Active weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:721 +#: qcsrc/common/notifications/all.inc:722 #, c-format msgid "^BGYou captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:722 +#: qcsrc/common/notifications/all.inc:723 msgid "^BGYou captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:723 +#: qcsrc/common/notifications/all.inc:724 #, c-format msgid "^TC^TT^BG team captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:724 +#: qcsrc/common/notifications/all.inc:725 msgid "^TC^TT^BG team captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:725 +#: qcsrc/common/notifications/all.inc:726 msgid "^BGThis control point currently cannot be captured" msgstr "" -#: qcsrc/common/notifications/all.inc:726 +#: qcsrc/common/notifications/all.inc:727 msgid "" "^BGThe enemy generator cannot be destroyed yet\n" "^F2Capture some control points to unshield it" msgstr "" -#: qcsrc/common/notifications/all.inc:727 +#: qcsrc/common/notifications/all.inc:728 msgid "^BGThe ^TCenemy^BG generator is no longer shielded!" msgstr "" -#: qcsrc/common/notifications/all.inc:728 +#: qcsrc/common/notifications/all.inc:729 msgid "" "^K1Your generator is NOT shielded!\n" "^BGRe-capture control points to shield it!" msgstr "" -#: qcsrc/common/notifications/all.inc:729 +#: qcsrc/common/notifications/all.inc:730 #, c-format msgid "^BGPress ^F2%s^BG to teleport" msgstr "" -#: qcsrc/common/notifications/all.inc:730 +#: qcsrc/common/notifications/all.inc:731 #, c-format msgid "^BGTeleporting disabled for %s" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep fragging until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep scoring until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:733 +#: qcsrc/common/notifications/all.inc:734 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "\n" @@ -4169,136 +4175,136 @@ msgid "" "the faster the enemy generator decays" msgstr "" -#: qcsrc/common/notifications/all.inc:734 +#: qcsrc/common/notifications/all.inc:735 #, c-format msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "^BGAdded ^F4%s^BG to the game!" msgstr "" -#: qcsrc/common/notifications/all.inc:736 +#: qcsrc/common/notifications/all.inc:737 msgid "^K1In^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:737 +#: qcsrc/common/notifications/all.inc:738 msgid "^F3Out^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:738 +#: qcsrc/common/notifications/all.inc:739 msgid "^F1Portal creation failed" msgstr "" -#: qcsrc/common/notifications/all.inc:740 +#: qcsrc/common/notifications/all.inc:741 msgid "^F2Strength infuses your weapons with devastating power" msgstr "" -#: qcsrc/common/notifications/all.inc:741 +#: qcsrc/common/notifications/all.inc:742 msgid "^F2Strength has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:743 +#: qcsrc/common/notifications/all.inc:744 msgid "^F2Shield surrounds you" msgstr "" -#: qcsrc/common/notifications/all.inc:744 +#: qcsrc/common/notifications/all.inc:745 msgid "^F2Shield has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:746 +#: qcsrc/common/notifications/all.inc:747 msgid "^F2You are on speed" msgstr "" -#: qcsrc/common/notifications/all.inc:747 +#: qcsrc/common/notifications/all.inc:748 msgid "^F2Speed has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:749 +#: qcsrc/common/notifications/all.inc:750 msgid "^F2You are invisible" msgstr "" -#: qcsrc/common/notifications/all.inc:750 +#: qcsrc/common/notifications/all.inc:751 msgid "^F2Invisibility has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:752 +#: qcsrc/common/notifications/all.inc:753 msgid "^F2The race is over, finish your lap!" msgstr "" -#: qcsrc/common/notifications/all.inc:754 +#: qcsrc/common/notifications/all.inc:755 msgid "^BGSequence completed!" msgstr "" -#: qcsrc/common/notifications/all.inc:755 +#: qcsrc/common/notifications/all.inc:756 msgid "^BGThere are more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:756 +#: qcsrc/common/notifications/all.inc:757 #, c-format msgid "^BGOnly %s^BG more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:758 +#: qcsrc/common/notifications/all.inc:759 msgid "^F2Superweapons have broken down" msgstr "" -#: qcsrc/common/notifications/all.inc:759 +#: qcsrc/common/notifications/all.inc:760 msgid "^F2Superweapons have been lost" msgstr "" -#: qcsrc/common/notifications/all.inc:760 +#: qcsrc/common/notifications/all.inc:761 msgid "^F2You now have a superweapon" msgstr "" -#: qcsrc/common/notifications/all.inc:762 +#: qcsrc/common/notifications/all.inc:763 msgid "^K1Changing to ^TC^TT^K1 in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:763 +#: qcsrc/common/notifications/all.inc:764 msgid "^K1Changing team in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:764 +#: qcsrc/common/notifications/all.inc:765 msgid "^K1Spectating in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:765 +#: qcsrc/common/notifications/all.inc:766 msgid "^K1Suicide in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:767 +#: qcsrc/common/notifications/all.inc:768 msgid "^F4Timeout begins in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:768 +#: qcsrc/common/notifications/all.inc:769 msgid "^F4Timeout ends in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:770 +#: qcsrc/common/notifications/all.inc:771 msgid "^K1Cannot join given minigame session!" msgstr "" -#: qcsrc/common/notifications/all.inc:772 +#: qcsrc/common/notifications/all.inc:773 #, c-format msgid "^BGPress ^F2%s^BG to enter/exit the vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:773 +#: qcsrc/common/notifications/all.inc:774 #, c-format msgid "^BGPress ^F2%s^BG to enter the vehicle gunner" msgstr "" -#: qcsrc/common/notifications/all.inc:774 +#: qcsrc/common/notifications/all.inc:775 #, c-format msgid "^BGPress ^F2%s^BG to steal this vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:775 +#: qcsrc/common/notifications/all.inc:776 msgid "" "^F2The enemy is stealing one of your vehicles!\n" "^F4Stop them!" msgstr "" -#: qcsrc/common/notifications/all.inc:776 +#: qcsrc/common/notifications/all.inc:777 msgid "^F2Intruder detected, disabling shields!" msgstr "" diff --git a/common.de.po b/common.de.po index 64667e86bd..b382507ebb 100644 --- a/common.de.po +++ b/common.de.po @@ -28,9 +28,9 @@ msgid "" msgstr "" "Project-Id-Version: Xonotic\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-06 07:22+0100\n" -"PO-Revision-Date: 2022-03-08 11:22+0000\n" -"Last-Translator: Mirio \n" +"POT-Creation-Date: 2022-03-27 07:22+0200\n" +"PO-Revision-Date: 2013-09-12 16:53+0000\n" +"Last-Translator: Yepoleb , 2013\n" "Language-Team: German (http://www.transifex.com/team-xonotic/xonotic/" "language/de/)\n" "Language: de\n" @@ -241,270 +241,270 @@ msgstr "^3ALT ^7+ ^3PFEILTASTEN ^7für Feinjustierungen." msgid "Player %d" msgstr "Spieler %d" -#: qcsrc/client/hud/panel/quickmenu.qc:617 -#: qcsrc/client/hud/panel/quickmenu.qc:619 +#: qcsrc/client/hud/panel/quickmenu.qc:608 +#: qcsrc/client/hud/panel/quickmenu.qc:610 #, c-format msgid "Submenu%d" msgstr "Untermenü%d" -#: qcsrc/client/hud/panel/quickmenu.qc:624 +#: qcsrc/client/hud/panel/quickmenu.qc:615 #, c-format msgid "Command%d" msgstr "Befehl%d" -#: qcsrc/client/hud/panel/quickmenu.qc:650 +#: qcsrc/client/hud/panel/quickmenu.qc:641 msgid "Continue..." msgstr "Fortfahren …" -#: qcsrc/client/hud/panel/quickmenu.qc:807 -#: qcsrc/client/hud/panel/quickmenu.qc:814 +#: qcsrc/client/hud/panel/quickmenu.qc:798 +#: qcsrc/client/hud/panel/quickmenu.qc:805 msgid "Chat" msgstr "Chat" -#: qcsrc/client/hud/panel/quickmenu.qc:808 +#: qcsrc/client/hud/panel/quickmenu.qc:799 msgid "QMCMD^Send public message to" msgstr "QMCMD^Sende öffentliche Nachricht an" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^:-) / nice one" msgstr "QMCMD^:-) / gut gemacht" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^nice one" msgstr "QMCMD^Gut gemacht" -#: qcsrc/client/hud/panel/quickmenu.qc:810 +#: qcsrc/client/hud/panel/quickmenu.qc:801 msgid "QMCMD^good game" msgstr "QMCMD^Gut gespielt" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck" msgstr "QMCMD^Hallo / Viel Glück" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck and have fun" msgstr "QMCMD^Hallo / Viel Glück und habt Spaß" -#: qcsrc/client/hud/panel/quickmenu.qc:813 +#: qcsrc/client/hud/panel/quickmenu.qc:804 msgid "QMCMD^Send in English" msgstr "QMCMD^Auf Englisch senden" -#: qcsrc/client/hud/panel/quickmenu.qc:818 -#: qcsrc/client/hud/panel/quickmenu.qc:834 +#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:825 msgid "QMCMD^Team chat" msgstr "QMCMD^Teamchat" -#: qcsrc/client/hud/panel/quickmenu.qc:819 +#: qcsrc/client/hud/panel/quickmenu.qc:810 msgid "QMCMD^strength soon" msgstr "QMCMD^Stärke kommt bald" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item %x^7 (l:%y^7)" msgstr "QMCMD^Freier Gegenstand %x^7 (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item, icon" msgstr "QMCMD^Freier Gegenstand, Icon" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item (l:%l^7)" msgstr "QMCMD^Gegenstand genommen (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item, icon" msgstr "QMCMD^Gegenstand genommen, Icon" -#: qcsrc/client/hud/panel/quickmenu.qc:822 +#: qcsrc/client/hud/panel/quickmenu.qc:813 msgid "QMCMD^negative" msgstr "QMCMD^Negativ" -#: qcsrc/client/hud/panel/quickmenu.qc:823 +#: qcsrc/client/hud/panel/quickmenu.qc:814 msgid "QMCMD^positive" msgstr "QMCMD^Positiv" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^Brauche Hilfe (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help, icon" msgstr "QMCMD^Brauche Hilfe, Icon" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen (l:%y^7)" msgstr "QMCMD^Gegner gesehen (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen, icon" msgstr "QMCMD^Gegner gesehen, Icon" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen (l:%y^7)" msgstr "QMCMD^Flagge gesehen (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen, icon" msgstr "QMCMD^Flagge gesehen, Icon" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^Verteidigend (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending, icon" msgstr "QMCMD^Verteidigend, Icon" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^Wandernd (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming, icon" msgstr "QMCMD^Wandernd, Icon" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^Angreifend (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking, icon" msgstr "QMCMD^Angreifend, Icon" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier (l:%y^7)" msgstr "QMCMD^Flaggenträger getötet (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier, icon" msgstr "QMCMD^Flaggenträger getötet, Icon" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 #, c-format msgid "QMCMD^dropped flag (l:%d^7)" msgstr "QMCMD^Flagge weggeworfen (l:%d^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 msgid "QMCMD^dropped flag, icon" msgstr "QMCMD^Flagge weggeworfen, Icon" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^drop weapon, icon" msgstr "QMCMD^Waffe weggeworfen, Icon" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^dropped weapon %w^7 (l:%l^7)" msgstr "QMCMD^Waffe weggeworfen %w^7 (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^drop flag/key, icon" msgstr "QMCMD^Flagge/Schlüssel weggeworfen, Icon" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^dropped flag/key %w^7 (l:%l^7)" msgstr "QMCMD^Flagge/Schlüssel weggeworfen %w^7 (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:837 +#: qcsrc/client/hud/panel/quickmenu.qc:828 msgid "QMCMD^Send private message to" msgstr "QMCMD^Sende private Nachricht an" -#: qcsrc/client/hud/panel/quickmenu.qc:839 -#: qcsrc/client/hud/panel/quickmenu.qc:869 +#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:860 msgid "QMCMD^Settings" msgstr "QMCMD^Einstellungen" -#: qcsrc/client/hud/panel/quickmenu.qc:840 -#: qcsrc/client/hud/panel/quickmenu.qc:847 +#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:838 msgid "QMCMD^View/HUD settings" msgstr "QMCMD^Ansicht/HUD-Einstellungen" -#: qcsrc/client/hud/panel/quickmenu.qc:841 +#: qcsrc/client/hud/panel/quickmenu.qc:832 msgid "QMCMD^3rd person view" msgstr "QMCMD^Dritte-Person-Ansicht" -#: qcsrc/client/hud/panel/quickmenu.qc:842 +#: qcsrc/client/hud/panel/quickmenu.qc:833 msgid "QMCMD^Player models like mine" msgstr "QMCMD^Spielermodelle wie meins" -#: qcsrc/client/hud/panel/quickmenu.qc:843 +#: qcsrc/client/hud/panel/quickmenu.qc:834 msgid "QMCMD^Names above players" msgstr "QMCMD^Namen über Spieler" -#: qcsrc/client/hud/panel/quickmenu.qc:844 +#: qcsrc/client/hud/panel/quickmenu.qc:835 msgid "QMCMD^Crosshair per weapon" msgstr "QMCMD^Fadenkreuz je nach Waffe" -#: qcsrc/client/hud/panel/quickmenu.qc:845 +#: qcsrc/client/hud/panel/quickmenu.qc:836 msgid "QMCMD^FPS" msgstr "QMCMD^FPS" -#: qcsrc/client/hud/panel/quickmenu.qc:846 +#: qcsrc/client/hud/panel/quickmenu.qc:837 msgid "QMCMD^Net graph" msgstr "QMCMD^Netzwerkgraph" -#: qcsrc/client/hud/panel/quickmenu.qc:849 -#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:840 +#: qcsrc/client/hud/panel/quickmenu.qc:843 msgid "QMCMD^Sound settings" msgstr "QMCMD^Ton-Einstellungen" -#: qcsrc/client/hud/panel/quickmenu.qc:850 +#: qcsrc/client/hud/panel/quickmenu.qc:841 msgid "QMCMD^Hit sound" msgstr "QMCMD^Ton bei Treffer" -#: qcsrc/client/hud/panel/quickmenu.qc:851 +#: qcsrc/client/hud/panel/quickmenu.qc:842 msgid "QMCMD^Chat sound" msgstr "QMCMD^Chat-Ton" -#: qcsrc/client/hud/panel/quickmenu.qc:856 +#: qcsrc/client/hud/panel/quickmenu.qc:847 msgid "QMCMD^Change spectator camera" msgstr "QMCMD^Zuschauerkamera wechseln" -#: qcsrc/client/hud/panel/quickmenu.qc:861 -#: qcsrc/client/hud/panel/quickmenu.qc:865 +#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:856 msgid "QMCMD^Observer camera" msgstr "QMCMD^Beobachterkamera" -#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:853 msgid "QMCMD^Increase speed" msgstr "QMCMD^Tempo erhöhen" -#: qcsrc/client/hud/panel/quickmenu.qc:863 +#: qcsrc/client/hud/panel/quickmenu.qc:854 msgid "QMCMD^Decrease speed" msgstr "QMCMD^Tempo verringern" -#: qcsrc/client/hud/panel/quickmenu.qc:864 +#: qcsrc/client/hud/panel/quickmenu.qc:855 msgid "QMCMD^Wall collision" msgstr "QMCMD^Wandkollision" -#: qcsrc/client/hud/panel/quickmenu.qc:868 +#: qcsrc/client/hud/panel/quickmenu.qc:859 msgid "QMCMD^Fullscreen" msgstr "QMCMD^Vollbild" -#: qcsrc/client/hud/panel/quickmenu.qc:871 -#: qcsrc/client/hud/panel/quickmenu.qc:881 +#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:872 msgid "QMCMD^Call a vote" msgstr "QMCMD^Abstimmung starten" -#: qcsrc/client/hud/panel/quickmenu.qc:872 +#: qcsrc/client/hud/panel/quickmenu.qc:863 msgid "QMCMD^Restart the map" msgstr "QMCMD^Karte neustarten" -#: qcsrc/client/hud/panel/quickmenu.qc:873 +#: qcsrc/client/hud/panel/quickmenu.qc:864 msgid "QMCMD^End match" msgstr "QMCMD^Spiel beenden" -#: qcsrc/client/hud/panel/quickmenu.qc:876 +#: qcsrc/client/hud/panel/quickmenu.qc:867 msgid "QMCMD^Reduce match time" msgstr "QMCMD^Spielzeit verringern" -#: qcsrc/client/hud/panel/quickmenu.qc:877 +#: qcsrc/client/hud/panel/quickmenu.qc:868 msgid "QMCMD^Extend match time" msgstr "QMCMD^Spielzeit erhöhen" -#: qcsrc/client/hud/panel/quickmenu.qc:880 +#: qcsrc/client/hud/panel/quickmenu.qc:871 msgid "QMCMD^Shuffle teams" msgstr "QMCMD^Teams mischen" -#: qcsrc/client/hud/panel/quickmenu.qc:885 +#: qcsrc/client/hud/panel/quickmenu.qc:876 msgid "QMCMD^Spectate a player" msgstr "QMCMD^Einem Spieler zuschauen" @@ -1281,14 +1281,14 @@ msgstr "Töte alle feindlichen Teammitglieder, um zu gewinnen" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 #: qcsrc/menu/xonotic/dialog_multiplayer_create.qc:105 msgid "Frag limit:" msgstr "Punktelimit:" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 msgid "The amount of frags needed before the match will end" msgstr "" "Wähle die Anzahl an Frags, die benötigt somd, damit die Map endet oder " @@ -3400,7 +3400,7 @@ msgid "^BG%s%s^K1 was riddled full of holes by ^BG%s^K1's Machine Gun%s%s" msgstr "^BG%s%s^K1 wurde durch ^BG%s^K1s Maschinengewehr durchsiebt%s%s" #: qcsrc/common/notifications/all.inc:472 -#: qcsrc/common/notifications/all.inc:778 +#: qcsrc/common/notifications/all.inc:779 #, c-format msgid "^BGYou cannot place more than ^F2%s^BG mines at a time" msgstr "^BGMehr als ^F2%s^BG Minen kannst du nicht auf einmal legen" @@ -4223,7 +4223,13 @@ msgstr "^BGDu beginnst mit dem ^TC^TT Schlüssel" msgid "^BGYou have no lives left, you must wait until the next match" msgstr "^BGDu hast keine Leben übrig und musst auf die nächste Runde warten" -#: qcsrc/common/notifications/all.inc:707 +#: qcsrc/common/notifications/all.inc:706 +msgid "" +"^F4WARNING:^BG you can't rejoin this match after spectating.\n" +"Use the same command again to spectate anyway." +msgstr "" + +#: qcsrc/common/notifications/all.inc:708 #, c-format msgid "" "^BGWaiting for players to join...\n" @@ -4232,43 +4238,43 @@ msgstr "" "^BGEs wird auf weitere Spieler gewartet …\n" "Benötigte Spieler: %s" -#: qcsrc/common/notifications/all.inc:708 +#: qcsrc/common/notifications/all.inc:709 #, c-format msgid "^BGWaiting for %s player(s) to join..." msgstr "^BGEs wird auf %s Spieler gewartet …" -#: qcsrc/common/notifications/all.inc:710 +#: qcsrc/common/notifications/all.inc:711 msgid "^BGYour weapon has been downgraded until you find some ammo!" msgstr "^BGDeine Waffe wurde verschlechtert, bis du etwas Munition findest!" -#: qcsrc/common/notifications/all.inc:711 +#: qcsrc/common/notifications/all.inc:712 msgid "^F4^COUNT^BG left to find some ammo!" msgstr "^BGNoch ^F4^COUNT^BG, um etwas Munition zu finden!" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo or you'll be dead in ^F4^COUNT^BG!" msgstr "^BGHol dir etwas Munition oder du stirbst in ^F4^COUNT^BG!" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo! ^F4^COUNT^BG left!" msgstr "^BGHol dir etwas Munition! Noch ^F4^COUNT^BG!" -#: qcsrc/common/notifications/all.inc:713 +#: qcsrc/common/notifications/all.inc:714 #, c-format msgid "^F2Extra lives remaining: ^K1%s" msgstr "^F2Extra-Leben übrig: ^K1%s" -#: qcsrc/common/notifications/all.inc:715 qcsrc/menu/xonotic/campaign.qc:244 +#: qcsrc/common/notifications/all.inc:716 qcsrc/menu/xonotic/campaign.qc:244 #, c-format msgid "Level %s: " msgstr "Level %s: " -#: qcsrc/common/notifications/all.inc:715 +#: qcsrc/common/notifications/all.inc:716 #, c-format msgid "^BGPress ^F2%s^BG to enter the game" msgstr "^BGDrücke ^F2%s^BG, um das Spiel zu betreten" -#: qcsrc/common/notifications/all.inc:718 +#: qcsrc/common/notifications/all.inc:719 #, c-format msgid "" "^F2^COUNT^BG until weapon change...\n" @@ -4277,34 +4283,34 @@ msgstr "" "^F2^COUNT^BG bis zum Waffenwechsel …\n" "Nächste Waffe: ^F1%s" -#: qcsrc/common/notifications/all.inc:719 +#: qcsrc/common/notifications/all.inc:720 #, c-format msgid "^F2Active weapon: ^F1%s" msgstr "^F2Aktive Waffe: ^F1%s" -#: qcsrc/common/notifications/all.inc:721 +#: qcsrc/common/notifications/all.inc:722 #, c-format msgid "^BGYou captured %s^BG control point" msgstr "^BGDu hast Kontrollpunkt „%s^BG“ erobert" -#: qcsrc/common/notifications/all.inc:722 +#: qcsrc/common/notifications/all.inc:723 msgid "^BGYou captured a control point" msgstr "^BGDu hast einen Kontrollpunkt erobert" -#: qcsrc/common/notifications/all.inc:723 +#: qcsrc/common/notifications/all.inc:724 #, c-format msgid "^TC^TT^BG team captured %s^BG control point" msgstr "Team ^TC^TT^BG hat Kontrollpunkt „%s^BG“ erobert" -#: qcsrc/common/notifications/all.inc:724 +#: qcsrc/common/notifications/all.inc:725 msgid "^TC^TT^BG team captured a control point" msgstr "Team ^TC^TT^BG hat einen Kontrollpunkt erobert" -#: qcsrc/common/notifications/all.inc:725 +#: qcsrc/common/notifications/all.inc:726 msgid "^BGThis control point currently cannot be captured" msgstr "^BGDieser Kontrollpunkt kann momentan nicht erobert werden" -#: qcsrc/common/notifications/all.inc:726 +#: qcsrc/common/notifications/all.inc:727 msgid "" "^BGThe enemy generator cannot be destroyed yet\n" "^F2Capture some control points to unshield it" @@ -4312,11 +4318,11 @@ msgstr "" "^BGDer feindliche Generator kann noch nicht zerstört werden\n" "^F2Erobere ein paar Kontrollpunkte, um den Schild zu deaktivieren" -#: qcsrc/common/notifications/all.inc:727 +#: qcsrc/common/notifications/all.inc:728 msgid "^BGThe ^TCenemy^BG generator is no longer shielded!" msgstr "^BGDer ^TCfeindliche^BG Generator hat keinen Schild mehr!" -#: qcsrc/common/notifications/all.inc:728 +#: qcsrc/common/notifications/all.inc:729 msgid "" "^K1Your generator is NOT shielded!\n" "^BGRe-capture control points to shield it!" @@ -4324,17 +4330,17 @@ msgstr "" "^K1Dein Generator hat KEINEN Schild!\n" "^BGErobere ein paar Kontrollpunkte zurück, um den Schild zu aktivieren!" -#: qcsrc/common/notifications/all.inc:729 +#: qcsrc/common/notifications/all.inc:730 #, c-format msgid "^BGPress ^F2%s^BG to teleport" msgstr "^BGDrücke ^F2%s^BG zum Teleportieren" -#: qcsrc/common/notifications/all.inc:730 +#: qcsrc/common/notifications/all.inc:731 #, c-format msgid "^BGTeleporting disabled for %s" msgstr "^BGTeleportation deaktiviert für %s" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep fragging until we have a winner!" @@ -4342,7 +4348,7 @@ msgstr "" "^F4VERLÄNGERUNG^F2!\n" "Tötet weiter, bis wir einen Gewinner haben!" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep scoring until we have a winner!" @@ -4350,7 +4356,7 @@ msgstr "" "^F4VERLÄNGERUNG^F2!\n" "Punktet weiter, bis wir einen Gewinner haben!" -#: qcsrc/common/notifications/all.inc:733 +#: qcsrc/common/notifications/all.inc:734 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "\n" @@ -4364,7 +4370,7 @@ msgstr "" "Je mehr Kontrollpunkte dein Team hält,\n" "desto schneller zerfällt der gegnerische Generator" -#: qcsrc/common/notifications/all.inc:734 +#: qcsrc/common/notifications/all.inc:735 #, c-format msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" @@ -4373,123 +4379,123 @@ msgstr "" "^F4VERLÄNGERUNG^F2!\n" "^F4%s ^BGwurde zum Spiel hinzugefügt!" -#: qcsrc/common/notifications/all.inc:736 +#: qcsrc/common/notifications/all.inc:737 msgid "^K1In^BG-portal created" msgstr "^K1Eingangs^BG-Portal erstellt" -#: qcsrc/common/notifications/all.inc:737 +#: qcsrc/common/notifications/all.inc:738 msgid "^F3Out^BG-portal created" msgstr "^F3Ausgangs^BG-Portal erstellt" -#: qcsrc/common/notifications/all.inc:738 +#: qcsrc/common/notifications/all.inc:739 msgid "^F1Portal creation failed" msgstr "^F1Portalerstellung fehlgeschlagen" -#: qcsrc/common/notifications/all.inc:740 +#: qcsrc/common/notifications/all.inc:741 msgid "^F2Strength infuses your weapons with devastating power" msgstr "^F2Stärke erfüllt deine Waffen mit unschlagbarer Kraft" -#: qcsrc/common/notifications/all.inc:741 +#: qcsrc/common/notifications/all.inc:742 msgid "^F2Strength has worn off" msgstr "^F2Die Stärke ist wieder verschwunden" -#: qcsrc/common/notifications/all.inc:743 +#: qcsrc/common/notifications/all.inc:744 msgid "^F2Shield surrounds you" msgstr "^F2Ein Schild umgibt dich" -#: qcsrc/common/notifications/all.inc:744 +#: qcsrc/common/notifications/all.inc:745 msgid "^F2Shield has worn off" msgstr "^F2Der Schild ist wieder verschwunden" -#: qcsrc/common/notifications/all.inc:746 +#: qcsrc/common/notifications/all.inc:747 msgid "^F2You are on speed" msgstr "^F2Du gibst Gas" -#: qcsrc/common/notifications/all.inc:747 +#: qcsrc/common/notifications/all.inc:748 msgid "^F2Speed has worn off" msgstr "^F2Der Geschwindigkeitsbonus ist wieder verschwunden" -#: qcsrc/common/notifications/all.inc:749 +#: qcsrc/common/notifications/all.inc:750 msgid "^F2You are invisible" msgstr "^F2Du bist unsichtbar" -#: qcsrc/common/notifications/all.inc:750 +#: qcsrc/common/notifications/all.inc:751 msgid "^F2Invisibility has worn off" msgstr "^F2Die Unsichtbarkeit ist wieder verschwunden" -#: qcsrc/common/notifications/all.inc:752 +#: qcsrc/common/notifications/all.inc:753 msgid "^F2The race is over, finish your lap!" msgstr "^F2Das Rennen ist vorbei, beende deine Runde!" -#: qcsrc/common/notifications/all.inc:754 +#: qcsrc/common/notifications/all.inc:755 msgid "^BGSequence completed!" msgstr "^BGAbfolge vollständig!" -#: qcsrc/common/notifications/all.inc:755 +#: qcsrc/common/notifications/all.inc:756 msgid "^BGThere are more to go..." msgstr "^BGEs gibt noch mehr …" -#: qcsrc/common/notifications/all.inc:756 +#: qcsrc/common/notifications/all.inc:757 #, c-format msgid "^BGOnly %s^BG more to go..." msgstr "^BGNur noch %s^BG sind übrig …" -#: qcsrc/common/notifications/all.inc:758 +#: qcsrc/common/notifications/all.inc:759 msgid "^F2Superweapons have broken down" msgstr "^F2Die Superwaffen wurden zerstört" -#: qcsrc/common/notifications/all.inc:759 +#: qcsrc/common/notifications/all.inc:760 msgid "^F2Superweapons have been lost" msgstr "^F2Die Superwaffen sind verloren gegangen" -#: qcsrc/common/notifications/all.inc:760 +#: qcsrc/common/notifications/all.inc:761 msgid "^F2You now have a superweapon" msgstr "^F2Du hast jetzt eine Superwaffe" -#: qcsrc/common/notifications/all.inc:762 +#: qcsrc/common/notifications/all.inc:763 msgid "^K1Changing to ^TC^TT^K1 in ^COUNT" msgstr "^K1Teamwechsel zu ^TC^TT^K1 in ^COUNT" -#: qcsrc/common/notifications/all.inc:763 +#: qcsrc/common/notifications/all.inc:764 msgid "^K1Changing team in ^COUNT" msgstr "^K1Teamwechsel in ^COUNT" -#: qcsrc/common/notifications/all.inc:764 +#: qcsrc/common/notifications/all.inc:765 msgid "^K1Spectating in ^COUNT" msgstr "^K1Du schaust zu in ^COUNT" -#: qcsrc/common/notifications/all.inc:765 +#: qcsrc/common/notifications/all.inc:766 msgid "^K1Suicide in ^COUNT" msgstr "^K1Selbstmord in ^COUNT" -#: qcsrc/common/notifications/all.inc:767 +#: qcsrc/common/notifications/all.inc:768 msgid "^F4Timeout begins in ^COUNT" msgstr "^F4Timeout beginnt in ^COUNT" -#: qcsrc/common/notifications/all.inc:768 +#: qcsrc/common/notifications/all.inc:769 msgid "^F4Timeout ends in ^COUNT" msgstr "^F4Timeout endet in ^COUNT" -#: qcsrc/common/notifications/all.inc:770 +#: qcsrc/common/notifications/all.inc:771 msgid "^K1Cannot join given minigame session!" msgstr "^K1Der angegebenen Minispielsitzung kann nicht beigetreten werden!" -#: qcsrc/common/notifications/all.inc:772 +#: qcsrc/common/notifications/all.inc:773 #, c-format msgid "^BGPress ^F2%s^BG to enter/exit the vehicle" msgstr "^BGDrücke ^F2%s^BG, um ein- oder auszusteigen" -#: qcsrc/common/notifications/all.inc:773 +#: qcsrc/common/notifications/all.inc:774 #, c-format msgid "^BGPress ^F2%s^BG to enter the vehicle gunner" msgstr "^BGDrücke ^F2%s^BG, um den Fahrzeuggeschützturm zu betreten" -#: qcsrc/common/notifications/all.inc:774 +#: qcsrc/common/notifications/all.inc:775 #, c-format msgid "^BGPress ^F2%s^BG to steal this vehicle" msgstr "^BGDrücke ^F2%s^BG, um dieses Fahrzeug zu stehlen" -#: qcsrc/common/notifications/all.inc:775 +#: qcsrc/common/notifications/all.inc:776 msgid "" "^F2The enemy is stealing one of your vehicles!\n" "^F4Stop them!" @@ -4497,7 +4503,7 @@ msgstr "" "^F2Der Feind stehlt eines eurer Fahrzeuge!\n" "^F4Haltet sie auf!" -#: qcsrc/common/notifications/all.inc:776 +#: qcsrc/common/notifications/all.inc:777 msgid "^F2Intruder detected, disabling shields!" msgstr "^F2Eindringling entdeckt, deaktiviere Schilde!" diff --git a/common.de_CH.po b/common.de_CH.po index d0bc9517a8..8410015e5a 100644 --- a/common.de_CH.po +++ b/common.de_CH.po @@ -28,9 +28,9 @@ msgid "" msgstr "" "Project-Id-Version: Xonotic\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-06 07:22+0100\n" -"PO-Revision-Date: 2022-03-08 11:22+0000\n" -"Last-Translator: Mirio \n" +"POT-Creation-Date: 2022-03-27 07:22+0200\n" +"PO-Revision-Date: 2013-09-12 16:53+0000\n" +"Last-Translator: Yepoleb , 2013\n" "Language-Team: German (http://www.transifex.com/team-xonotic/xonotic/" "language/de/)\n" "Language: de\n" @@ -241,270 +241,270 @@ msgstr "^3ALT ^7+ ^3PFEILTASTEN ^7für Feinjustierungen." msgid "Player %d" msgstr "Spieler %d" -#: qcsrc/client/hud/panel/quickmenu.qc:617 -#: qcsrc/client/hud/panel/quickmenu.qc:619 +#: qcsrc/client/hud/panel/quickmenu.qc:608 +#: qcsrc/client/hud/panel/quickmenu.qc:610 #, c-format msgid "Submenu%d" msgstr "Untermenü%d" -#: qcsrc/client/hud/panel/quickmenu.qc:624 +#: qcsrc/client/hud/panel/quickmenu.qc:615 #, c-format msgid "Command%d" msgstr "Befehl%d" -#: qcsrc/client/hud/panel/quickmenu.qc:650 +#: qcsrc/client/hud/panel/quickmenu.qc:641 msgid "Continue..." msgstr "Fortfahren …" -#: qcsrc/client/hud/panel/quickmenu.qc:807 -#: qcsrc/client/hud/panel/quickmenu.qc:814 +#: qcsrc/client/hud/panel/quickmenu.qc:798 +#: qcsrc/client/hud/panel/quickmenu.qc:805 msgid "Chat" msgstr "Chat" -#: qcsrc/client/hud/panel/quickmenu.qc:808 +#: qcsrc/client/hud/panel/quickmenu.qc:799 msgid "QMCMD^Send public message to" msgstr "QMCMD^Sende öffentliche Nachricht an" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^:-) / nice one" msgstr "QMCMD^:-) / gut gemacht" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^nice one" msgstr "QMCMD^Gut gemacht" -#: qcsrc/client/hud/panel/quickmenu.qc:810 +#: qcsrc/client/hud/panel/quickmenu.qc:801 msgid "QMCMD^good game" msgstr "QMCMD^Gut gespielt" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck" msgstr "QMCMD^Hallo / Viel Glück" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck and have fun" msgstr "QMCMD^Hallo / Viel Glück und habt Spass" -#: qcsrc/client/hud/panel/quickmenu.qc:813 +#: qcsrc/client/hud/panel/quickmenu.qc:804 msgid "QMCMD^Send in English" msgstr "QMCMD^Auf Englisch senden" -#: qcsrc/client/hud/panel/quickmenu.qc:818 -#: qcsrc/client/hud/panel/quickmenu.qc:834 +#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:825 msgid "QMCMD^Team chat" msgstr "QMCMD^Teamchat" -#: qcsrc/client/hud/panel/quickmenu.qc:819 +#: qcsrc/client/hud/panel/quickmenu.qc:810 msgid "QMCMD^strength soon" msgstr "QMCMD^Stärke kommt bald" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item %x^7 (l:%y^7)" msgstr "QMCMD^Freier Gegenstand %x^7 (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item, icon" msgstr "QMCMD^Freier Gegenstand, Icon" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item (l:%l^7)" msgstr "QMCMD^Gegenstand genommen (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item, icon" msgstr "QMCMD^Gegenstand genommen, Icon" -#: qcsrc/client/hud/panel/quickmenu.qc:822 +#: qcsrc/client/hud/panel/quickmenu.qc:813 msgid "QMCMD^negative" msgstr "QMCMD^Negativ" -#: qcsrc/client/hud/panel/quickmenu.qc:823 +#: qcsrc/client/hud/panel/quickmenu.qc:814 msgid "QMCMD^positive" msgstr "QMCMD^Positiv" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^Brauche Hilfe (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help, icon" msgstr "QMCMD^Brauche Hilfe, Icon" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen (l:%y^7)" msgstr "QMCMD^Gegner gesehen (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen, icon" msgstr "QMCMD^Gegner gesehen, Icon" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen (l:%y^7)" msgstr "QMCMD^Flagge gesehen (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen, icon" msgstr "QMCMD^Flagge gesehen, Icon" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^Verteidigend (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending, icon" msgstr "QMCMD^Verteidigend, Icon" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^Wandernd (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming, icon" msgstr "QMCMD^Wandernd, Icon" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^Angreifend (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking, icon" msgstr "QMCMD^Angreifend, Icon" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier (l:%y^7)" msgstr "QMCMD^Flaggenträger getötet (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier, icon" msgstr "QMCMD^Flaggenträger getötet, Icon" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 #, c-format msgid "QMCMD^dropped flag (l:%d^7)" msgstr "QMCMD^Flagge weggeworfen (l:%d^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 msgid "QMCMD^dropped flag, icon" msgstr "QMCMD^Flagge weggeworfen, Icon" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^drop weapon, icon" msgstr "QMCMD^Waffe weggeworfen, Icon" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^dropped weapon %w^7 (l:%l^7)" msgstr "QMCMD^Waffe weggeworfen %w^7 (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^drop flag/key, icon" msgstr "QMCMD^Flagge/Schlüssel weggeworfen, Icon" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^dropped flag/key %w^7 (l:%l^7)" msgstr "QMCMD^Flagge/Schlüssel weggeworfen %w^7 (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:837 +#: qcsrc/client/hud/panel/quickmenu.qc:828 msgid "QMCMD^Send private message to" msgstr "QMCMD^Sende private Nachricht an" -#: qcsrc/client/hud/panel/quickmenu.qc:839 -#: qcsrc/client/hud/panel/quickmenu.qc:869 +#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:860 msgid "QMCMD^Settings" msgstr "QMCMD^Einstellungen" -#: qcsrc/client/hud/panel/quickmenu.qc:840 -#: qcsrc/client/hud/panel/quickmenu.qc:847 +#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:838 msgid "QMCMD^View/HUD settings" msgstr "QMCMD^Ansicht/HUD-Einstellungen" -#: qcsrc/client/hud/panel/quickmenu.qc:841 +#: qcsrc/client/hud/panel/quickmenu.qc:832 msgid "QMCMD^3rd person view" msgstr "QMCMD^Dritte-Person-Ansicht" -#: qcsrc/client/hud/panel/quickmenu.qc:842 +#: qcsrc/client/hud/panel/quickmenu.qc:833 msgid "QMCMD^Player models like mine" msgstr "QMCMD^Spielermodelle wie meins" -#: qcsrc/client/hud/panel/quickmenu.qc:843 +#: qcsrc/client/hud/panel/quickmenu.qc:834 msgid "QMCMD^Names above players" msgstr "QMCMD^Namen über Spieler" -#: qcsrc/client/hud/panel/quickmenu.qc:844 +#: qcsrc/client/hud/panel/quickmenu.qc:835 msgid "QMCMD^Crosshair per weapon" msgstr "QMCMD^Fadenkreuz je nach Waffe" -#: qcsrc/client/hud/panel/quickmenu.qc:845 +#: qcsrc/client/hud/panel/quickmenu.qc:836 msgid "QMCMD^FPS" msgstr "QMCMD^FPS" -#: qcsrc/client/hud/panel/quickmenu.qc:846 +#: qcsrc/client/hud/panel/quickmenu.qc:837 msgid "QMCMD^Net graph" msgstr "QMCMD^Netzwerkgraph" -#: qcsrc/client/hud/panel/quickmenu.qc:849 -#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:840 +#: qcsrc/client/hud/panel/quickmenu.qc:843 msgid "QMCMD^Sound settings" msgstr "QMCMD^Ton-Einstellungen" -#: qcsrc/client/hud/panel/quickmenu.qc:850 +#: qcsrc/client/hud/panel/quickmenu.qc:841 msgid "QMCMD^Hit sound" msgstr "QMCMD^Ton bei Treffer" -#: qcsrc/client/hud/panel/quickmenu.qc:851 +#: qcsrc/client/hud/panel/quickmenu.qc:842 msgid "QMCMD^Chat sound" msgstr "QMCMD^Chat-Ton" -#: qcsrc/client/hud/panel/quickmenu.qc:856 +#: qcsrc/client/hud/panel/quickmenu.qc:847 msgid "QMCMD^Change spectator camera" msgstr "QMCMD^Zuschauerkamera wechseln" -#: qcsrc/client/hud/panel/quickmenu.qc:861 -#: qcsrc/client/hud/panel/quickmenu.qc:865 +#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:856 msgid "QMCMD^Observer camera" msgstr "QMCMD^Beobachterkamera" -#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:853 msgid "QMCMD^Increase speed" msgstr "QMCMD^Tempo erhöhen" -#: qcsrc/client/hud/panel/quickmenu.qc:863 +#: qcsrc/client/hud/panel/quickmenu.qc:854 msgid "QMCMD^Decrease speed" msgstr "QMCMD^Tempo verringern" -#: qcsrc/client/hud/panel/quickmenu.qc:864 +#: qcsrc/client/hud/panel/quickmenu.qc:855 msgid "QMCMD^Wall collision" msgstr "QMCMD^Wandkollision" -#: qcsrc/client/hud/panel/quickmenu.qc:868 +#: qcsrc/client/hud/panel/quickmenu.qc:859 msgid "QMCMD^Fullscreen" msgstr "QMCMD^Vollbild" -#: qcsrc/client/hud/panel/quickmenu.qc:871 -#: qcsrc/client/hud/panel/quickmenu.qc:881 +#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:872 msgid "QMCMD^Call a vote" msgstr "QMCMD^Abstimmung starten" -#: qcsrc/client/hud/panel/quickmenu.qc:872 +#: qcsrc/client/hud/panel/quickmenu.qc:863 msgid "QMCMD^Restart the map" msgstr "QMCMD^Karte neustarten" -#: qcsrc/client/hud/panel/quickmenu.qc:873 +#: qcsrc/client/hud/panel/quickmenu.qc:864 msgid "QMCMD^End match" msgstr "QMCMD^Spiel beenden" -#: qcsrc/client/hud/panel/quickmenu.qc:876 +#: qcsrc/client/hud/panel/quickmenu.qc:867 msgid "QMCMD^Reduce match time" msgstr "QMCMD^Spielzeit verringern" -#: qcsrc/client/hud/panel/quickmenu.qc:877 +#: qcsrc/client/hud/panel/quickmenu.qc:868 msgid "QMCMD^Extend match time" msgstr "QMCMD^Spielzeit erhöhen" -#: qcsrc/client/hud/panel/quickmenu.qc:880 +#: qcsrc/client/hud/panel/quickmenu.qc:871 msgid "QMCMD^Shuffle teams" msgstr "QMCMD^Teams mischen" -#: qcsrc/client/hud/panel/quickmenu.qc:885 +#: qcsrc/client/hud/panel/quickmenu.qc:876 msgid "QMCMD^Spectate a player" msgstr "QMCMD^Einem Spieler zuschauen" @@ -1281,14 +1281,14 @@ msgstr "Töte alle feindlichen Teammitglieder, um zu gewinnen" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 #: qcsrc/menu/xonotic/dialog_multiplayer_create.qc:105 msgid "Frag limit:" msgstr "Punktelimit:" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 msgid "The amount of frags needed before the match will end" msgstr "" "Wähle die Anzahl an Frags, die benötigt somd, damit die Map endet oder " @@ -3400,7 +3400,7 @@ msgid "^BG%s%s^K1 was riddled full of holes by ^BG%s^K1's Machine Gun%s%s" msgstr "^BG%s%s^K1 wurde durch ^BG%s^K1s Maschinengewehr durchsiebt%s%s" #: qcsrc/common/notifications/all.inc:472 -#: qcsrc/common/notifications/all.inc:778 +#: qcsrc/common/notifications/all.inc:779 #, c-format msgid "^BGYou cannot place more than ^F2%s^BG mines at a time" msgstr "^BGMehr als ^F2%s^BG Minen kannst du nicht auf einmal legen" @@ -4223,7 +4223,13 @@ msgstr "^BGDu beginnst mit dem ^TC^TT Schlüssel" msgid "^BGYou have no lives left, you must wait until the next match" msgstr "^BGDu hast keine Leben übrig und musst auf die nächste Runde warten" -#: qcsrc/common/notifications/all.inc:707 +#: qcsrc/common/notifications/all.inc:706 +msgid "" +"^F4WARNING:^BG you can't rejoin this match after spectating.\n" +"Use the same command again to spectate anyway." +msgstr "" + +#: qcsrc/common/notifications/all.inc:708 #, c-format msgid "" "^BGWaiting for players to join...\n" @@ -4232,43 +4238,43 @@ msgstr "" "^BGEs wird auf weitere Spieler gewartet …\n" "Benötigte Spieler: %s" -#: qcsrc/common/notifications/all.inc:708 +#: qcsrc/common/notifications/all.inc:709 #, c-format msgid "^BGWaiting for %s player(s) to join..." msgstr "^BGEs wird auf %s Spieler gewartet …" -#: qcsrc/common/notifications/all.inc:710 +#: qcsrc/common/notifications/all.inc:711 msgid "^BGYour weapon has been downgraded until you find some ammo!" msgstr "^BGDeine Waffe wurde verschlechtert, bis du etwas Munition findest!" -#: qcsrc/common/notifications/all.inc:711 +#: qcsrc/common/notifications/all.inc:712 msgid "^F4^COUNT^BG left to find some ammo!" msgstr "^BGNoch ^F4^COUNT^BG, um etwas Munition zu finden!" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo or you'll be dead in ^F4^COUNT^BG!" msgstr "^BGHol dir etwas Munition oder du stirbst in ^F4^COUNT^BG!" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo! ^F4^COUNT^BG left!" msgstr "^BGHol dir etwas Munition! Noch ^F4^COUNT^BG!" -#: qcsrc/common/notifications/all.inc:713 +#: qcsrc/common/notifications/all.inc:714 #, c-format msgid "^F2Extra lives remaining: ^K1%s" msgstr "^F2Extra-Leben übrig: ^K1%s" -#: qcsrc/common/notifications/all.inc:715 qcsrc/menu/xonotic/campaign.qc:244 +#: qcsrc/common/notifications/all.inc:716 qcsrc/menu/xonotic/campaign.qc:244 #, c-format msgid "Level %s: " msgstr "Level %s: " -#: qcsrc/common/notifications/all.inc:715 +#: qcsrc/common/notifications/all.inc:716 #, c-format msgid "^BGPress ^F2%s^BG to enter the game" msgstr "^BGDrücke ^F2%s^BG, um das Spiel zu betreten" -#: qcsrc/common/notifications/all.inc:718 +#: qcsrc/common/notifications/all.inc:719 #, c-format msgid "" "^F2^COUNT^BG until weapon change...\n" @@ -4277,34 +4283,34 @@ msgstr "" "^F2^COUNT^BG bis zum Waffenwechsel …\n" "Nächste Waffe: ^F1%s" -#: qcsrc/common/notifications/all.inc:719 +#: qcsrc/common/notifications/all.inc:720 #, c-format msgid "^F2Active weapon: ^F1%s" msgstr "^F2Aktive Waffe: ^F1%s" -#: qcsrc/common/notifications/all.inc:721 +#: qcsrc/common/notifications/all.inc:722 #, c-format msgid "^BGYou captured %s^BG control point" msgstr "^BGDu hast Kontrollpunkt „%s^BG“ erobert" -#: qcsrc/common/notifications/all.inc:722 +#: qcsrc/common/notifications/all.inc:723 msgid "^BGYou captured a control point" msgstr "^BGDu hast einen Kontrollpunkt erobert" -#: qcsrc/common/notifications/all.inc:723 +#: qcsrc/common/notifications/all.inc:724 #, c-format msgid "^TC^TT^BG team captured %s^BG control point" msgstr "Team ^TC^TT^BG hat Kontrollpunkt „%s^BG“ erobert" -#: qcsrc/common/notifications/all.inc:724 +#: qcsrc/common/notifications/all.inc:725 msgid "^TC^TT^BG team captured a control point" msgstr "Team ^TC^TT^BG hat einen Kontrollpunkt erobert" -#: qcsrc/common/notifications/all.inc:725 +#: qcsrc/common/notifications/all.inc:726 msgid "^BGThis control point currently cannot be captured" msgstr "^BGDieser Kontrollpunkt kann momentan nicht erobert werden" -#: qcsrc/common/notifications/all.inc:726 +#: qcsrc/common/notifications/all.inc:727 msgid "" "^BGThe enemy generator cannot be destroyed yet\n" "^F2Capture some control points to unshield it" @@ -4312,11 +4318,11 @@ msgstr "" "^BGDer feindliche Generator kann noch nicht zerstört werden\n" "^F2Erobere ein paar Kontrollpunkte, um den Schild zu deaktivieren" -#: qcsrc/common/notifications/all.inc:727 +#: qcsrc/common/notifications/all.inc:728 msgid "^BGThe ^TCenemy^BG generator is no longer shielded!" msgstr "^BGDer ^TCfeindliche^BG Generator hat keinen Schild mehr!" -#: qcsrc/common/notifications/all.inc:728 +#: qcsrc/common/notifications/all.inc:729 msgid "" "^K1Your generator is NOT shielded!\n" "^BGRe-capture control points to shield it!" @@ -4324,17 +4330,17 @@ msgstr "" "^K1Dein Generator hat KEINEN Schild!\n" "^BGErobere ein paar Kontrollpunkte zurück, um den Schild zu aktivieren!" -#: qcsrc/common/notifications/all.inc:729 +#: qcsrc/common/notifications/all.inc:730 #, c-format msgid "^BGPress ^F2%s^BG to teleport" msgstr "^BGDrücke ^F2%s^BG zum Teleportieren" -#: qcsrc/common/notifications/all.inc:730 +#: qcsrc/common/notifications/all.inc:731 #, c-format msgid "^BGTeleporting disabled for %s" msgstr "^BGTeleportation deaktiviert für %s" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep fragging until we have a winner!" @@ -4342,7 +4348,7 @@ msgstr "" "^F4VERLÄNGERUNG^F2!\n" "Tötet weiter, bis wir einen Gewinner haben!" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep scoring until we have a winner!" @@ -4350,7 +4356,7 @@ msgstr "" "^F4VERLÄNGERUNG^F2!\n" "Punktet weiter, bis wir einen Gewinner haben!" -#: qcsrc/common/notifications/all.inc:733 +#: qcsrc/common/notifications/all.inc:734 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "\n" @@ -4364,7 +4370,7 @@ msgstr "" "Je mehr Kontrollpunkte dein Team hält,\n" "desto schneller zerfällt der gegnerische Generator" -#: qcsrc/common/notifications/all.inc:734 +#: qcsrc/common/notifications/all.inc:735 #, c-format msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" @@ -4373,123 +4379,123 @@ msgstr "" "^F4VERLÄNGERUNG^F2!\n" "^F4%s ^BGwurde zum Spiel hinzugefügt!" -#: qcsrc/common/notifications/all.inc:736 +#: qcsrc/common/notifications/all.inc:737 msgid "^K1In^BG-portal created" msgstr "^K1Eingangs^BG-Portal erstellt" -#: qcsrc/common/notifications/all.inc:737 +#: qcsrc/common/notifications/all.inc:738 msgid "^F3Out^BG-portal created" msgstr "^F3Ausgangs^BG-Portal erstellt" -#: qcsrc/common/notifications/all.inc:738 +#: qcsrc/common/notifications/all.inc:739 msgid "^F1Portal creation failed" msgstr "^F1Portalerstellung fehlgeschlagen" -#: qcsrc/common/notifications/all.inc:740 +#: qcsrc/common/notifications/all.inc:741 msgid "^F2Strength infuses your weapons with devastating power" msgstr "^F2Stärke erfüllt deine Waffen mit unschlagbarer Kraft" -#: qcsrc/common/notifications/all.inc:741 +#: qcsrc/common/notifications/all.inc:742 msgid "^F2Strength has worn off" msgstr "^F2Die Stärke ist wieder verschwunden" -#: qcsrc/common/notifications/all.inc:743 +#: qcsrc/common/notifications/all.inc:744 msgid "^F2Shield surrounds you" msgstr "^F2Ein Schild umgibt dich" -#: qcsrc/common/notifications/all.inc:744 +#: qcsrc/common/notifications/all.inc:745 msgid "^F2Shield has worn off" msgstr "^F2Der Schild ist wieder verschwunden" -#: qcsrc/common/notifications/all.inc:746 +#: qcsrc/common/notifications/all.inc:747 msgid "^F2You are on speed" msgstr "^F2Du gibst Gas" -#: qcsrc/common/notifications/all.inc:747 +#: qcsrc/common/notifications/all.inc:748 msgid "^F2Speed has worn off" msgstr "^F2Der Geschwindigkeitsbonus ist wieder verschwunden" -#: qcsrc/common/notifications/all.inc:749 +#: qcsrc/common/notifications/all.inc:750 msgid "^F2You are invisible" msgstr "^F2Du bist unsichtbar" -#: qcsrc/common/notifications/all.inc:750 +#: qcsrc/common/notifications/all.inc:751 msgid "^F2Invisibility has worn off" msgstr "^F2Die Unsichtbarkeit ist wieder verschwunden" -#: qcsrc/common/notifications/all.inc:752 +#: qcsrc/common/notifications/all.inc:753 msgid "^F2The race is over, finish your lap!" msgstr "^F2Das Rennen ist vorbei, beende deine Runde!" -#: qcsrc/common/notifications/all.inc:754 +#: qcsrc/common/notifications/all.inc:755 msgid "^BGSequence completed!" msgstr "^BGAbfolge vollständig!" -#: qcsrc/common/notifications/all.inc:755 +#: qcsrc/common/notifications/all.inc:756 msgid "^BGThere are more to go..." msgstr "^BGEs gibt noch mehr …" -#: qcsrc/common/notifications/all.inc:756 +#: qcsrc/common/notifications/all.inc:757 #, c-format msgid "^BGOnly %s^BG more to go..." msgstr "^BGNur noch %s^BG sind übrig …" -#: qcsrc/common/notifications/all.inc:758 +#: qcsrc/common/notifications/all.inc:759 msgid "^F2Superweapons have broken down" msgstr "^F2Die Superwaffen wurden zerstört" -#: qcsrc/common/notifications/all.inc:759 +#: qcsrc/common/notifications/all.inc:760 msgid "^F2Superweapons have been lost" msgstr "^F2Die Superwaffen sind verloren gegangen" -#: qcsrc/common/notifications/all.inc:760 +#: qcsrc/common/notifications/all.inc:761 msgid "^F2You now have a superweapon" msgstr "^F2Du hast jetzt eine Superwaffe" -#: qcsrc/common/notifications/all.inc:762 +#: qcsrc/common/notifications/all.inc:763 msgid "^K1Changing to ^TC^TT^K1 in ^COUNT" msgstr "^K1Teamwechsel zu ^TC^TT^K1 in ^COUNT" -#: qcsrc/common/notifications/all.inc:763 +#: qcsrc/common/notifications/all.inc:764 msgid "^K1Changing team in ^COUNT" msgstr "^K1Teamwechsel in ^COUNT" -#: qcsrc/common/notifications/all.inc:764 +#: qcsrc/common/notifications/all.inc:765 msgid "^K1Spectating in ^COUNT" msgstr "^K1Du schaust zu in ^COUNT" -#: qcsrc/common/notifications/all.inc:765 +#: qcsrc/common/notifications/all.inc:766 msgid "^K1Suicide in ^COUNT" msgstr "^K1Selbstmord in ^COUNT" -#: qcsrc/common/notifications/all.inc:767 +#: qcsrc/common/notifications/all.inc:768 msgid "^F4Timeout begins in ^COUNT" msgstr "^F4Timeout beginnt in ^COUNT" -#: qcsrc/common/notifications/all.inc:768 +#: qcsrc/common/notifications/all.inc:769 msgid "^F4Timeout ends in ^COUNT" msgstr "^F4Timeout endet in ^COUNT" -#: qcsrc/common/notifications/all.inc:770 +#: qcsrc/common/notifications/all.inc:771 msgid "^K1Cannot join given minigame session!" msgstr "^K1Der angegebenen Minispielsitzung kann nicht beigetreten werden!" -#: qcsrc/common/notifications/all.inc:772 +#: qcsrc/common/notifications/all.inc:773 #, c-format msgid "^BGPress ^F2%s^BG to enter/exit the vehicle" msgstr "^BGDrücke ^F2%s^BG, um ein- oder auszusteigen" -#: qcsrc/common/notifications/all.inc:773 +#: qcsrc/common/notifications/all.inc:774 #, c-format msgid "^BGPress ^F2%s^BG to enter the vehicle gunner" msgstr "^BGDrücke ^F2%s^BG, um den Fahrzeuggeschützturm zu betreten" -#: qcsrc/common/notifications/all.inc:774 +#: qcsrc/common/notifications/all.inc:775 #, c-format msgid "^BGPress ^F2%s^BG to steal this vehicle" msgstr "^BGDrücke ^F2%s^BG, um dieses Fahrzeug zu stehlen" -#: qcsrc/common/notifications/all.inc:775 +#: qcsrc/common/notifications/all.inc:776 msgid "" "^F2The enemy is stealing one of your vehicles!\n" "^F4Stop them!" @@ -4497,7 +4503,7 @@ msgstr "" "^F2Der Feind stehlt eines eurer Fahrzeuge!\n" "^F4Haltet sie auf!" -#: qcsrc/common/notifications/all.inc:776 +#: qcsrc/common/notifications/all.inc:777 msgid "^F2Intruder detected, disabling shields!" msgstr "^F2Eindringling entdeckt, deaktiviere Schilde!" diff --git a/common.el.po b/common.el.po index 8e7f424361..c074fe62b5 100644 --- a/common.el.po +++ b/common.el.po @@ -20,9 +20,9 @@ msgid "" msgstr "" "Project-Id-Version: Xonotic\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-06 07:22+0100\n" -"PO-Revision-Date: 2022-03-06 06:22+0000\n" -"Last-Translator: divVerent \n" +"POT-Creation-Date: 2022-03-27 07:22+0200\n" +"PO-Revision-Date: 2013-09-12 16:53+0000\n" +"Last-Translator: Γιώργος Καρδάμης , 2021\n" "Language-Team: Greek (http://www.transifex.com/team-xonotic/xonotic/language/" "el/)\n" "Language: el\n" @@ -236,270 +236,270 @@ msgstr "^3ALT ^7+ ^3ΚΑΤΕΥΘΗΝΤΗΡΙΑ ΒΕΛΗ ^7για λεπτομε msgid "Player %d" msgstr "Παίχτης %d" -#: qcsrc/client/hud/panel/quickmenu.qc:617 -#: qcsrc/client/hud/panel/quickmenu.qc:619 +#: qcsrc/client/hud/panel/quickmenu.qc:608 +#: qcsrc/client/hud/panel/quickmenu.qc:610 #, c-format msgid "Submenu%d" msgstr "Υπό - μενού%d" -#: qcsrc/client/hud/panel/quickmenu.qc:624 +#: qcsrc/client/hud/panel/quickmenu.qc:615 #, c-format msgid "Command%d" msgstr "Εντολή%d" -#: qcsrc/client/hud/panel/quickmenu.qc:650 +#: qcsrc/client/hud/panel/quickmenu.qc:641 msgid "Continue..." msgstr "Συνέχεια..." -#: qcsrc/client/hud/panel/quickmenu.qc:807 -#: qcsrc/client/hud/panel/quickmenu.qc:814 +#: qcsrc/client/hud/panel/quickmenu.qc:798 +#: qcsrc/client/hud/panel/quickmenu.qc:805 msgid "Chat" msgstr "Συνομιλία" -#: qcsrc/client/hud/panel/quickmenu.qc:808 +#: qcsrc/client/hud/panel/quickmenu.qc:799 msgid "QMCMD^Send public message to" msgstr "QMCMD^Στείλτε δημόσιο μήνυμα σε" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^:-) / nice one" msgstr "QMCMD^:-) / καλό!" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^nice one" msgstr "QMCMD^καλό!" -#: qcsrc/client/hud/panel/quickmenu.qc:810 +#: qcsrc/client/hud/panel/quickmenu.qc:801 msgid "QMCMD^good game" msgstr "QMCMD^ωραίο παιχνίδι" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck" msgstr "QMCMD^γεια / καλή τύχη" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck and have fun" msgstr "QMCMD^γεια / καλή τύχη και καλή διασκέδαση" -#: qcsrc/client/hud/panel/quickmenu.qc:813 +#: qcsrc/client/hud/panel/quickmenu.qc:804 msgid "QMCMD^Send in English" msgstr "QMCMD^Στέιλε στα αγγλικά" -#: qcsrc/client/hud/panel/quickmenu.qc:818 -#: qcsrc/client/hud/panel/quickmenu.qc:834 +#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:825 msgid "QMCMD^Team chat" msgstr "QMCMD^Συνομιλία ομάδας" -#: qcsrc/client/hud/panel/quickmenu.qc:819 +#: qcsrc/client/hud/panel/quickmenu.qc:810 msgid "QMCMD^strength soon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item %x^7 (l:%y^7)" msgstr "QMCMD^Ελέυθερο αντικείμενο %x^7 (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item, icon" msgstr "QMCMD^Ελέυθερο αντικείμενο, εικονίδιο" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item (l:%l^7)" msgstr "QMCMD^αντικείμενο πάρθηκε (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item, icon" msgstr "QMCMD^αντικείμενο πάρθηκε, εικονίδιο" -#: qcsrc/client/hud/panel/quickmenu.qc:822 +#: qcsrc/client/hud/panel/quickmenu.qc:813 msgid "QMCMD^negative" msgstr "QMCMD^αρνητικό" -#: qcsrc/client/hud/panel/quickmenu.qc:823 +#: qcsrc/client/hud/panel/quickmenu.qc:814 msgid "QMCMD^positive" msgstr "QMCMD^θετικό" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^χρειάζομαι βοήθεια (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help, icon" msgstr "QMCMD^χρειάζομαι βοήθεια, εικονίδιο" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen (l:%y^7)" msgstr "QMCMD^εχθρός εθεάθη (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen, icon" msgstr "QMCMD^εχθρός εθεάθη, εικονίδιο" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen (l:%y^7)" msgstr "QMCMD^η σημαία εθεάθη (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen, icon" msgstr "QMCMD^η σημαία εθεάθη, εικονίδιο" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^αμυνόμενος/η (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending, icon" msgstr "QMCMD^αμυνόμενος/η, εικονίδιο" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^περιπλανώμενος/η (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming, icon" msgstr "QMCMD^περιπλανώμενος/η, εικονίδιο" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^επιτιθέμενος/η (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking, icon" msgstr "QMCMD^επιτιθέμενος/η, εικονίδιο" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 #, c-format msgid "QMCMD^dropped flag (l:%d^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 msgid "QMCMD^dropped flag, icon" msgstr "QMCMD^πεζμένει σημαία, εικονίδιο" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^drop weapon, icon" msgstr "QMCMD^πεζμένο όπλο, εικονίδιο" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^dropped weapon %w^7 (l:%l^7)" msgstr "QMCMD^πεζμένο όπλο %w^7 (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^drop flag/key, icon" msgstr "QMCMD^πεζμένει σημαία/κλειδί, εικονίδιο" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^dropped flag/key %w^7 (l:%l^7)" msgstr "QMCMD^πεζμένει σημαία/κλειδί %w^7 (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:837 +#: qcsrc/client/hud/panel/quickmenu.qc:828 msgid "QMCMD^Send private message to" msgstr "QMCMD^Στείλτε ιδιοτικό μήνυμα σε" -#: qcsrc/client/hud/panel/quickmenu.qc:839 -#: qcsrc/client/hud/panel/quickmenu.qc:869 +#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:860 msgid "QMCMD^Settings" msgstr "QMCMD^Ρυθμίσεις" -#: qcsrc/client/hud/panel/quickmenu.qc:840 -#: qcsrc/client/hud/panel/quickmenu.qc:847 +#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:838 msgid "QMCMD^View/HUD settings" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:841 +#: qcsrc/client/hud/panel/quickmenu.qc:832 msgid "QMCMD^3rd person view" msgstr "QMCMD^Προοπτική 3ου προσώπου" -#: qcsrc/client/hud/panel/quickmenu.qc:842 +#: qcsrc/client/hud/panel/quickmenu.qc:833 msgid "QMCMD^Player models like mine" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:843 +#: qcsrc/client/hud/panel/quickmenu.qc:834 msgid "QMCMD^Names above players" msgstr "QMCMD^Ονόματα πάνω από του παίκτες" -#: qcsrc/client/hud/panel/quickmenu.qc:844 +#: qcsrc/client/hud/panel/quickmenu.qc:835 msgid "QMCMD^Crosshair per weapon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:845 +#: qcsrc/client/hud/panel/quickmenu.qc:836 msgid "QMCMD^FPS" msgstr "QMCMD^FPS" -#: qcsrc/client/hud/panel/quickmenu.qc:846 +#: qcsrc/client/hud/panel/quickmenu.qc:837 msgid "QMCMD^Net graph" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:849 -#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:840 +#: qcsrc/client/hud/panel/quickmenu.qc:843 msgid "QMCMD^Sound settings" msgstr "QMCMD^Ρυθμίσεις ήχου" -#: qcsrc/client/hud/panel/quickmenu.qc:850 +#: qcsrc/client/hud/panel/quickmenu.qc:841 msgid "QMCMD^Hit sound" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:851 +#: qcsrc/client/hud/panel/quickmenu.qc:842 msgid "QMCMD^Chat sound" msgstr "QMCMD^Ήχος συζήτησης" -#: qcsrc/client/hud/panel/quickmenu.qc:856 +#: qcsrc/client/hud/panel/quickmenu.qc:847 msgid "QMCMD^Change spectator camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:861 -#: qcsrc/client/hud/panel/quickmenu.qc:865 +#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:856 msgid "QMCMD^Observer camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:853 msgid "QMCMD^Increase speed" msgstr "QMCMD^Αύξηση ταχύτητας" -#: qcsrc/client/hud/panel/quickmenu.qc:863 +#: qcsrc/client/hud/panel/quickmenu.qc:854 msgid "QMCMD^Decrease speed" msgstr "QMCMD^Μείωση Ταχύτητας" -#: qcsrc/client/hud/panel/quickmenu.qc:864 +#: qcsrc/client/hud/panel/quickmenu.qc:855 msgid "QMCMD^Wall collision" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:868 +#: qcsrc/client/hud/panel/quickmenu.qc:859 msgid "QMCMD^Fullscreen" msgstr "QMCMD^Πλήρης οθόνη" -#: qcsrc/client/hud/panel/quickmenu.qc:871 -#: qcsrc/client/hud/panel/quickmenu.qc:881 +#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:872 msgid "QMCMD^Call a vote" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:872 +#: qcsrc/client/hud/panel/quickmenu.qc:863 msgid "QMCMD^Restart the map" msgstr "QMCMD^Ανανέωση τον χάρτη" -#: qcsrc/client/hud/panel/quickmenu.qc:873 +#: qcsrc/client/hud/panel/quickmenu.qc:864 msgid "QMCMD^End match" msgstr "QMCMD^Τέλος match" -#: qcsrc/client/hud/panel/quickmenu.qc:876 +#: qcsrc/client/hud/panel/quickmenu.qc:867 msgid "QMCMD^Reduce match time" msgstr "QMCMD^Μείωση χρόνου παιχνιδιού" -#: qcsrc/client/hud/panel/quickmenu.qc:877 +#: qcsrc/client/hud/panel/quickmenu.qc:868 msgid "QMCMD^Extend match time" msgstr "QMCMD^Επέκταση χρόνου παιχνιδιού" -#: qcsrc/client/hud/panel/quickmenu.qc:880 +#: qcsrc/client/hud/panel/quickmenu.qc:871 msgid "QMCMD^Shuffle teams" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:885 +#: qcsrc/client/hud/panel/quickmenu.qc:876 msgid "QMCMD^Spectate a player" msgstr "" @@ -1249,14 +1249,14 @@ msgstr "" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 #: qcsrc/menu/xonotic/dialog_multiplayer_create.qc:105 msgid "Frag limit:" msgstr "" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 msgid "The amount of frags needed before the match will end" msgstr "" @@ -3290,7 +3290,7 @@ msgid "^BG%s%s^K1 was riddled full of holes by ^BG%s^K1's Machine Gun%s%s" msgstr "" #: qcsrc/common/notifications/all.inc:472 -#: qcsrc/common/notifications/all.inc:778 +#: qcsrc/common/notifications/all.inc:779 #, c-format msgid "^BGYou cannot place more than ^F2%s^BG mines at a time" msgstr "" @@ -4068,122 +4068,128 @@ msgstr "" msgid "^BGYou have no lives left, you must wait until the next match" msgstr "" -#: qcsrc/common/notifications/all.inc:707 +#: qcsrc/common/notifications/all.inc:706 +msgid "" +"^F4WARNING:^BG you can't rejoin this match after spectating.\n" +"Use the same command again to spectate anyway." +msgstr "" + +#: qcsrc/common/notifications/all.inc:708 #, c-format msgid "" "^BGWaiting for players to join...\n" "Need active players for: %s" msgstr "" -#: qcsrc/common/notifications/all.inc:708 +#: qcsrc/common/notifications/all.inc:709 #, c-format msgid "^BGWaiting for %s player(s) to join..." msgstr "" -#: qcsrc/common/notifications/all.inc:710 +#: qcsrc/common/notifications/all.inc:711 msgid "^BGYour weapon has been downgraded until you find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:711 +#: qcsrc/common/notifications/all.inc:712 msgid "^F4^COUNT^BG left to find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo or you'll be dead in ^F4^COUNT^BG!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo! ^F4^COUNT^BG left!" msgstr "" -#: qcsrc/common/notifications/all.inc:713 +#: qcsrc/common/notifications/all.inc:714 #, c-format msgid "^F2Extra lives remaining: ^K1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:715 qcsrc/menu/xonotic/campaign.qc:244 +#: qcsrc/common/notifications/all.inc:716 qcsrc/menu/xonotic/campaign.qc:244 #, c-format msgid "Level %s: " msgstr "" -#: qcsrc/common/notifications/all.inc:715 +#: qcsrc/common/notifications/all.inc:716 #, c-format msgid "^BGPress ^F2%s^BG to enter the game" msgstr "" -#: qcsrc/common/notifications/all.inc:718 +#: qcsrc/common/notifications/all.inc:719 #, c-format msgid "" "^F2^COUNT^BG until weapon change...\n" "Next weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:719 +#: qcsrc/common/notifications/all.inc:720 #, c-format msgid "^F2Active weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:721 +#: qcsrc/common/notifications/all.inc:722 #, c-format msgid "^BGYou captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:722 +#: qcsrc/common/notifications/all.inc:723 msgid "^BGYou captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:723 +#: qcsrc/common/notifications/all.inc:724 #, c-format msgid "^TC^TT^BG team captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:724 +#: qcsrc/common/notifications/all.inc:725 msgid "^TC^TT^BG team captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:725 +#: qcsrc/common/notifications/all.inc:726 msgid "^BGThis control point currently cannot be captured" msgstr "" -#: qcsrc/common/notifications/all.inc:726 +#: qcsrc/common/notifications/all.inc:727 msgid "" "^BGThe enemy generator cannot be destroyed yet\n" "^F2Capture some control points to unshield it" msgstr "" -#: qcsrc/common/notifications/all.inc:727 +#: qcsrc/common/notifications/all.inc:728 msgid "^BGThe ^TCenemy^BG generator is no longer shielded!" msgstr "" -#: qcsrc/common/notifications/all.inc:728 +#: qcsrc/common/notifications/all.inc:729 msgid "" "^K1Your generator is NOT shielded!\n" "^BGRe-capture control points to shield it!" msgstr "" -#: qcsrc/common/notifications/all.inc:729 +#: qcsrc/common/notifications/all.inc:730 #, c-format msgid "^BGPress ^F2%s^BG to teleport" msgstr "^BGΠάτα ^F2%s^BG για να τηλεμεταφερθείς" -#: qcsrc/common/notifications/all.inc:730 +#: qcsrc/common/notifications/all.inc:731 #, c-format msgid "^BGTeleporting disabled for %s" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep fragging until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep scoring until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:733 +#: qcsrc/common/notifications/all.inc:734 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "\n" @@ -4192,136 +4198,136 @@ msgid "" "the faster the enemy generator decays" msgstr "" -#: qcsrc/common/notifications/all.inc:734 +#: qcsrc/common/notifications/all.inc:735 #, c-format msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "^BGAdded ^F4%s^BG to the game!" msgstr "" -#: qcsrc/common/notifications/all.inc:736 +#: qcsrc/common/notifications/all.inc:737 msgid "^K1In^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:737 +#: qcsrc/common/notifications/all.inc:738 msgid "^F3Out^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:738 +#: qcsrc/common/notifications/all.inc:739 msgid "^F1Portal creation failed" msgstr "" -#: qcsrc/common/notifications/all.inc:740 +#: qcsrc/common/notifications/all.inc:741 msgid "^F2Strength infuses your weapons with devastating power" msgstr "" -#: qcsrc/common/notifications/all.inc:741 +#: qcsrc/common/notifications/all.inc:742 msgid "^F2Strength has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:743 +#: qcsrc/common/notifications/all.inc:744 msgid "^F2Shield surrounds you" msgstr "" -#: qcsrc/common/notifications/all.inc:744 +#: qcsrc/common/notifications/all.inc:745 msgid "^F2Shield has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:746 +#: qcsrc/common/notifications/all.inc:747 msgid "^F2You are on speed" msgstr "" -#: qcsrc/common/notifications/all.inc:747 +#: qcsrc/common/notifications/all.inc:748 msgid "^F2Speed has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:749 +#: qcsrc/common/notifications/all.inc:750 msgid "^F2You are invisible" msgstr "" -#: qcsrc/common/notifications/all.inc:750 +#: qcsrc/common/notifications/all.inc:751 msgid "^F2Invisibility has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:752 +#: qcsrc/common/notifications/all.inc:753 msgid "^F2The race is over, finish your lap!" msgstr "" -#: qcsrc/common/notifications/all.inc:754 +#: qcsrc/common/notifications/all.inc:755 msgid "^BGSequence completed!" msgstr "" -#: qcsrc/common/notifications/all.inc:755 +#: qcsrc/common/notifications/all.inc:756 msgid "^BGThere are more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:756 +#: qcsrc/common/notifications/all.inc:757 #, c-format msgid "^BGOnly %s^BG more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:758 +#: qcsrc/common/notifications/all.inc:759 msgid "^F2Superweapons have broken down" msgstr "" -#: qcsrc/common/notifications/all.inc:759 +#: qcsrc/common/notifications/all.inc:760 msgid "^F2Superweapons have been lost" msgstr "" -#: qcsrc/common/notifications/all.inc:760 +#: qcsrc/common/notifications/all.inc:761 msgid "^F2You now have a superweapon" msgstr "" -#: qcsrc/common/notifications/all.inc:762 +#: qcsrc/common/notifications/all.inc:763 msgid "^K1Changing to ^TC^TT^K1 in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:763 +#: qcsrc/common/notifications/all.inc:764 msgid "^K1Changing team in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:764 +#: qcsrc/common/notifications/all.inc:765 msgid "^K1Spectating in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:765 +#: qcsrc/common/notifications/all.inc:766 msgid "^K1Suicide in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:767 +#: qcsrc/common/notifications/all.inc:768 msgid "^F4Timeout begins in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:768 +#: qcsrc/common/notifications/all.inc:769 msgid "^F4Timeout ends in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:770 +#: qcsrc/common/notifications/all.inc:771 msgid "^K1Cannot join given minigame session!" msgstr "" -#: qcsrc/common/notifications/all.inc:772 +#: qcsrc/common/notifications/all.inc:773 #, c-format msgid "^BGPress ^F2%s^BG to enter/exit the vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:773 +#: qcsrc/common/notifications/all.inc:774 #, c-format msgid "^BGPress ^F2%s^BG to enter the vehicle gunner" msgstr "" -#: qcsrc/common/notifications/all.inc:774 +#: qcsrc/common/notifications/all.inc:775 #, c-format msgid "^BGPress ^F2%s^BG to steal this vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:775 +#: qcsrc/common/notifications/all.inc:776 msgid "" "^F2The enemy is stealing one of your vehicles!\n" "^F4Stop them!" msgstr "" -#: qcsrc/common/notifications/all.inc:776 +#: qcsrc/common/notifications/all.inc:777 msgid "^F2Intruder detected, disabling shields!" msgstr "" diff --git a/common.en_AU.po b/common.en_AU.po index 4c7e847000..04c407b2ef 100644 --- a/common.en_AU.po +++ b/common.en_AU.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: Xonotic\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-06 07:22+0100\n" -"PO-Revision-Date: 2022-03-06 06:22+0000\n" -"Last-Translator: divVerent \n" +"POT-Creation-Date: 2022-03-27 07:22+0200\n" +"PO-Revision-Date: 2013-09-12 16:53+0000\n" +"Last-Translator: Stuart Young , 2016\n" "Language-Team: English (Australia) (http://www.transifex.com/team-xonotic/" "xonotic/language/en_AU/)\n" "Language: en_AU\n" @@ -220,270 +220,270 @@ msgstr "^3ALT ^7+ ^3ARROW KEYS ^7for fine adjustments." msgid "Player %d" msgstr "Player %d" -#: qcsrc/client/hud/panel/quickmenu.qc:617 -#: qcsrc/client/hud/panel/quickmenu.qc:619 +#: qcsrc/client/hud/panel/quickmenu.qc:608 +#: qcsrc/client/hud/panel/quickmenu.qc:610 #, c-format msgid "Submenu%d" msgstr "Submenu%d" -#: qcsrc/client/hud/panel/quickmenu.qc:624 +#: qcsrc/client/hud/panel/quickmenu.qc:615 #, c-format msgid "Command%d" msgstr "Command%d" -#: qcsrc/client/hud/panel/quickmenu.qc:650 +#: qcsrc/client/hud/panel/quickmenu.qc:641 msgid "Continue..." msgstr "Continue..." -#: qcsrc/client/hud/panel/quickmenu.qc:807 -#: qcsrc/client/hud/panel/quickmenu.qc:814 +#: qcsrc/client/hud/panel/quickmenu.qc:798 +#: qcsrc/client/hud/panel/quickmenu.qc:805 msgid "Chat" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:808 +#: qcsrc/client/hud/panel/quickmenu.qc:799 msgid "QMCMD^Send public message to" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^:-) / nice one" msgstr "QMCMD^:-) / nice one" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^nice one" msgstr "QMCMD^nice one" -#: qcsrc/client/hud/panel/quickmenu.qc:810 +#: qcsrc/client/hud/panel/quickmenu.qc:801 msgid "QMCMD^good game" msgstr "QMCMD^good game" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck" msgstr "QMCMD^hi / good luck" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck and have fun" msgstr "QMCMD^hi / good luck and have fun" -#: qcsrc/client/hud/panel/quickmenu.qc:813 +#: qcsrc/client/hud/panel/quickmenu.qc:804 msgid "QMCMD^Send in English" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:818 -#: qcsrc/client/hud/panel/quickmenu.qc:834 +#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:825 msgid "QMCMD^Team chat" msgstr "QMCMD^Team chat" -#: qcsrc/client/hud/panel/quickmenu.qc:819 +#: qcsrc/client/hud/panel/quickmenu.qc:810 msgid "QMCMD^strength soon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item %x^7 (l:%y^7)" msgstr "QMCMD^free item %x^7 (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item, icon" msgstr "QMCMD^free item, icon" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item (l:%l^7)" msgstr "QMCMD^took item (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item, icon" msgstr "QMCMD^took item, icon" -#: qcsrc/client/hud/panel/quickmenu.qc:822 +#: qcsrc/client/hud/panel/quickmenu.qc:813 msgid "QMCMD^negative" msgstr "QMCMD^negative" -#: qcsrc/client/hud/panel/quickmenu.qc:823 +#: qcsrc/client/hud/panel/quickmenu.qc:814 msgid "QMCMD^positive" msgstr "QMCMD^positive" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^need help (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help, icon" msgstr "QMCMD^need help, icon" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen (l:%y^7)" msgstr "QMCMD^enemy seen (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen, icon" msgstr "QMCMD^enemy seen, icon" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen (l:%y^7)" msgstr "QMCMD^flag seen (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen, icon" msgstr "QMCMD^flag seen, icon" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^defending (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending, icon" msgstr "QMCMD^defending, icon" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^roaming (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming, icon" msgstr "QMCMD^roaming, icon" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^attacking (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking, icon" msgstr "QMCMD^attacking, icon" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier (l:%y^7)" msgstr "QMCMD^killed flagcarrier (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 #, c-format msgid "QMCMD^dropped flag (l:%d^7)" msgstr "QMCMD^dropped flag (l:%d^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 msgid "QMCMD^dropped flag, icon" msgstr "QMCMD^dropped flag, icon" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^drop weapon, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^dropped weapon %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^drop flag/key, icon" msgstr "QMCMD^drop flag/key, icon" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^dropped flag/key %w^7 (l:%l^7)" msgstr "QMCMD^dropped flag/key %w^7 (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:837 +#: qcsrc/client/hud/panel/quickmenu.qc:828 msgid "QMCMD^Send private message to" msgstr "QMCMD^Send private message to" -#: qcsrc/client/hud/panel/quickmenu.qc:839 -#: qcsrc/client/hud/panel/quickmenu.qc:869 +#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:860 msgid "QMCMD^Settings" msgstr "QMCMD^Settings" -#: qcsrc/client/hud/panel/quickmenu.qc:840 -#: qcsrc/client/hud/panel/quickmenu.qc:847 +#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:838 msgid "QMCMD^View/HUD settings" msgstr "QMCMD^View/HUD settings" -#: qcsrc/client/hud/panel/quickmenu.qc:841 +#: qcsrc/client/hud/panel/quickmenu.qc:832 msgid "QMCMD^3rd person view" msgstr "QMCMD^3rd person view" -#: qcsrc/client/hud/panel/quickmenu.qc:842 +#: qcsrc/client/hud/panel/quickmenu.qc:833 msgid "QMCMD^Player models like mine" msgstr "QMCMD^Player models like mine" -#: qcsrc/client/hud/panel/quickmenu.qc:843 +#: qcsrc/client/hud/panel/quickmenu.qc:834 msgid "QMCMD^Names above players" msgstr "QMCMD^Names above players" -#: qcsrc/client/hud/panel/quickmenu.qc:844 +#: qcsrc/client/hud/panel/quickmenu.qc:835 msgid "QMCMD^Crosshair per weapon" msgstr "QMCMD^Crosshair per weapon" -#: qcsrc/client/hud/panel/quickmenu.qc:845 +#: qcsrc/client/hud/panel/quickmenu.qc:836 msgid "QMCMD^FPS" msgstr "QMCMD^FPS" -#: qcsrc/client/hud/panel/quickmenu.qc:846 +#: qcsrc/client/hud/panel/quickmenu.qc:837 msgid "QMCMD^Net graph" msgstr "QMCMD^Net graph" -#: qcsrc/client/hud/panel/quickmenu.qc:849 -#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:840 +#: qcsrc/client/hud/panel/quickmenu.qc:843 msgid "QMCMD^Sound settings" msgstr "QMCMD^Sound settings" -#: qcsrc/client/hud/panel/quickmenu.qc:850 +#: qcsrc/client/hud/panel/quickmenu.qc:841 msgid "QMCMD^Hit sound" msgstr "QMCMD^Hit sound" -#: qcsrc/client/hud/panel/quickmenu.qc:851 +#: qcsrc/client/hud/panel/quickmenu.qc:842 msgid "QMCMD^Chat sound" msgstr "QMCMD^Chat sound" -#: qcsrc/client/hud/panel/quickmenu.qc:856 +#: qcsrc/client/hud/panel/quickmenu.qc:847 msgid "QMCMD^Change spectator camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:861 -#: qcsrc/client/hud/panel/quickmenu.qc:865 +#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:856 msgid "QMCMD^Observer camera" msgstr "QMCMD^Observer camera" -#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:853 msgid "QMCMD^Increase speed" msgstr "QMCMD^Increase speed" -#: qcsrc/client/hud/panel/quickmenu.qc:863 +#: qcsrc/client/hud/panel/quickmenu.qc:854 msgid "QMCMD^Decrease speed" msgstr "QMCMD^Decrease speed" -#: qcsrc/client/hud/panel/quickmenu.qc:864 +#: qcsrc/client/hud/panel/quickmenu.qc:855 msgid "QMCMD^Wall collision" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:868 +#: qcsrc/client/hud/panel/quickmenu.qc:859 msgid "QMCMD^Fullscreen" msgstr "QMCMD^Fullscreen" -#: qcsrc/client/hud/panel/quickmenu.qc:871 -#: qcsrc/client/hud/panel/quickmenu.qc:881 +#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:872 msgid "QMCMD^Call a vote" msgstr "QMCMD^Call a vote" -#: qcsrc/client/hud/panel/quickmenu.qc:872 +#: qcsrc/client/hud/panel/quickmenu.qc:863 msgid "QMCMD^Restart the map" msgstr "QMCMD^Restart the map" -#: qcsrc/client/hud/panel/quickmenu.qc:873 +#: qcsrc/client/hud/panel/quickmenu.qc:864 msgid "QMCMD^End match" msgstr "QMCMD^End match" -#: qcsrc/client/hud/panel/quickmenu.qc:876 +#: qcsrc/client/hud/panel/quickmenu.qc:867 msgid "QMCMD^Reduce match time" msgstr "QMCMD^Reduce match time" -#: qcsrc/client/hud/panel/quickmenu.qc:877 +#: qcsrc/client/hud/panel/quickmenu.qc:868 msgid "QMCMD^Extend match time" msgstr "QMCMD^Extend match time" -#: qcsrc/client/hud/panel/quickmenu.qc:880 +#: qcsrc/client/hud/panel/quickmenu.qc:871 msgid "QMCMD^Shuffle teams" msgstr "QMCMD^Shuffle teams" -#: qcsrc/client/hud/panel/quickmenu.qc:885 +#: qcsrc/client/hud/panel/quickmenu.qc:876 msgid "QMCMD^Spectate a player" msgstr "" @@ -1234,14 +1234,14 @@ msgstr "Kill all enemy teammates to win the round" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 #: qcsrc/menu/xonotic/dialog_multiplayer_create.qc:105 msgid "Frag limit:" msgstr "Frag limit:" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 msgid "The amount of frags needed before the match will end" msgstr "" @@ -3302,7 +3302,7 @@ msgid "^BG%s%s^K1 was riddled full of holes by ^BG%s^K1's Machine Gun%s%s" msgstr "^BG%s%s^K1 was riddled full of holes by ^BG%s^K1's Machine Gun%s%s" #: qcsrc/common/notifications/all.inc:472 -#: qcsrc/common/notifications/all.inc:778 +#: qcsrc/common/notifications/all.inc:779 #, c-format msgid "^BGYou cannot place more than ^F2%s^BG mines at a time" msgstr "^BGYou cannot place more than ^F2%s^BG mines at a time" @@ -4100,7 +4100,13 @@ msgstr "^BGYou are starting with the ^TC^TT Key" msgid "^BGYou have no lives left, you must wait until the next match" msgstr "^BGYou have no lives left, you must wait until the next match" -#: qcsrc/common/notifications/all.inc:707 +#: qcsrc/common/notifications/all.inc:706 +msgid "" +"^F4WARNING:^BG you can't rejoin this match after spectating.\n" +"Use the same command again to spectate anyway." +msgstr "" + +#: qcsrc/common/notifications/all.inc:708 #, c-format msgid "" "^BGWaiting for players to join...\n" @@ -4109,43 +4115,43 @@ msgstr "" "^BGWaiting for players to join...\n" "Need active players for: %s" -#: qcsrc/common/notifications/all.inc:708 +#: qcsrc/common/notifications/all.inc:709 #, c-format msgid "^BGWaiting for %s player(s) to join..." msgstr "^BGWaiting for %s player(s) to join..." -#: qcsrc/common/notifications/all.inc:710 +#: qcsrc/common/notifications/all.inc:711 msgid "^BGYour weapon has been downgraded until you find some ammo!" msgstr "^BGYour weapon has been downgraded until you find some ammo!" -#: qcsrc/common/notifications/all.inc:711 +#: qcsrc/common/notifications/all.inc:712 msgid "^F4^COUNT^BG left to find some ammo!" msgstr "^F4^COUNT^BG left to find some ammo!" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo or you'll be dead in ^F4^COUNT^BG!" msgstr "^BGGet some ammo or you'll be dead in ^F4^COUNT^BG!" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo! ^F4^COUNT^BG left!" msgstr "^BGGet some ammo! ^F4^COUNT^BG left!" -#: qcsrc/common/notifications/all.inc:713 +#: qcsrc/common/notifications/all.inc:714 #, c-format msgid "^F2Extra lives remaining: ^K1%s" msgstr "^F2Extra lives remaining: ^K1%s" -#: qcsrc/common/notifications/all.inc:715 qcsrc/menu/xonotic/campaign.qc:244 +#: qcsrc/common/notifications/all.inc:716 qcsrc/menu/xonotic/campaign.qc:244 #, c-format msgid "Level %s: " msgstr "" -#: qcsrc/common/notifications/all.inc:715 +#: qcsrc/common/notifications/all.inc:716 #, c-format msgid "^BGPress ^F2%s^BG to enter the game" msgstr "" -#: qcsrc/common/notifications/all.inc:718 +#: qcsrc/common/notifications/all.inc:719 #, c-format msgid "" "^F2^COUNT^BG until weapon change...\n" @@ -4154,34 +4160,34 @@ msgstr "" "^F2^COUNT^BG until weapon change...\n" "Next weapon: ^F1%s" -#: qcsrc/common/notifications/all.inc:719 +#: qcsrc/common/notifications/all.inc:720 #, c-format msgid "^F2Active weapon: ^F1%s" msgstr "^F2Active weapon: ^F1%s" -#: qcsrc/common/notifications/all.inc:721 +#: qcsrc/common/notifications/all.inc:722 #, c-format msgid "^BGYou captured %s^BG control point" msgstr "^BGYou captured %s^BG control point" -#: qcsrc/common/notifications/all.inc:722 +#: qcsrc/common/notifications/all.inc:723 msgid "^BGYou captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:723 +#: qcsrc/common/notifications/all.inc:724 #, c-format msgid "^TC^TT^BG team captured %s^BG control point" msgstr "^TC^TT^BG team captured %s^BG control point" -#: qcsrc/common/notifications/all.inc:724 +#: qcsrc/common/notifications/all.inc:725 msgid "^TC^TT^BG team captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:725 +#: qcsrc/common/notifications/all.inc:726 msgid "^BGThis control point currently cannot be captured" msgstr "^BGThis control point currently cannot be captured" -#: qcsrc/common/notifications/all.inc:726 +#: qcsrc/common/notifications/all.inc:727 msgid "" "^BGThe enemy generator cannot be destroyed yet\n" "^F2Capture some control points to unshield it" @@ -4189,11 +4195,11 @@ msgstr "" "^BGThe enemy generator cannot be destroyed yet\n" "^F2Capture some control points to unshield it" -#: qcsrc/common/notifications/all.inc:727 +#: qcsrc/common/notifications/all.inc:728 msgid "^BGThe ^TCenemy^BG generator is no longer shielded!" msgstr "^BGThe ^TCenemy^BG generator is no longer shielded!" -#: qcsrc/common/notifications/all.inc:728 +#: qcsrc/common/notifications/all.inc:729 msgid "" "^K1Your generator is NOT shielded!\n" "^BGRe-capture control points to shield it!" @@ -4201,17 +4207,17 @@ msgstr "" "^K1Your generator is NOT shielded!\n" "^BGRe-capture control points to shield it!" -#: qcsrc/common/notifications/all.inc:729 +#: qcsrc/common/notifications/all.inc:730 #, c-format msgid "^BGPress ^F2%s^BG to teleport" msgstr "" -#: qcsrc/common/notifications/all.inc:730 +#: qcsrc/common/notifications/all.inc:731 #, c-format msgid "^BGTeleporting disabled for %s" msgstr "^BGTeleporting disabled for %s" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep fragging until we have a winner!" @@ -4219,7 +4225,7 @@ msgstr "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep fragging until we have a winner!" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep scoring until we have a winner!" @@ -4227,7 +4233,7 @@ msgstr "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep scoring until we have a winner!" -#: qcsrc/common/notifications/all.inc:733 +#: qcsrc/common/notifications/all.inc:734 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "\n" @@ -4241,7 +4247,7 @@ msgstr "" "The more control points your team holds,\n" "the faster the enemy generator decays" -#: qcsrc/common/notifications/all.inc:734 +#: qcsrc/common/notifications/all.inc:735 #, c-format msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" @@ -4250,123 +4256,123 @@ msgstr "" "^F2Now playing ^F4OVERTIME^F2!\n" "^BGAdded ^F4%s^BG to the game!" -#: qcsrc/common/notifications/all.inc:736 +#: qcsrc/common/notifications/all.inc:737 msgid "^K1In^BG-portal created" msgstr "^K1In^BG-portal created" -#: qcsrc/common/notifications/all.inc:737 +#: qcsrc/common/notifications/all.inc:738 msgid "^F3Out^BG-portal created" msgstr "^F3Out^BG-portal created" -#: qcsrc/common/notifications/all.inc:738 +#: qcsrc/common/notifications/all.inc:739 msgid "^F1Portal creation failed" msgstr "^F1Portal creation failed" -#: qcsrc/common/notifications/all.inc:740 +#: qcsrc/common/notifications/all.inc:741 msgid "^F2Strength infuses your weapons with devastating power" msgstr "^F2Strength infuses your weapons with devastating power" -#: qcsrc/common/notifications/all.inc:741 +#: qcsrc/common/notifications/all.inc:742 msgid "^F2Strength has worn off" msgstr "^F2Strength has worn off" -#: qcsrc/common/notifications/all.inc:743 +#: qcsrc/common/notifications/all.inc:744 msgid "^F2Shield surrounds you" msgstr "^F2Shield surrounds you" -#: qcsrc/common/notifications/all.inc:744 +#: qcsrc/common/notifications/all.inc:745 msgid "^F2Shield has worn off" msgstr "^F2Shield has worn off" -#: qcsrc/common/notifications/all.inc:746 +#: qcsrc/common/notifications/all.inc:747 msgid "^F2You are on speed" msgstr "^F2You are on speed" -#: qcsrc/common/notifications/all.inc:747 +#: qcsrc/common/notifications/all.inc:748 msgid "^F2Speed has worn off" msgstr "^F2Speed has worn off" -#: qcsrc/common/notifications/all.inc:749 +#: qcsrc/common/notifications/all.inc:750 msgid "^F2You are invisible" msgstr "^F2You are invisible" -#: qcsrc/common/notifications/all.inc:750 +#: qcsrc/common/notifications/all.inc:751 msgid "^F2Invisibility has worn off" msgstr "^F2Invisibility has worn off" -#: qcsrc/common/notifications/all.inc:752 +#: qcsrc/common/notifications/all.inc:753 msgid "^F2The race is over, finish your lap!" msgstr "^F2The race is over, finish your lap!" -#: qcsrc/common/notifications/all.inc:754 +#: qcsrc/common/notifications/all.inc:755 msgid "^BGSequence completed!" msgstr "^BGSequence completed!" -#: qcsrc/common/notifications/all.inc:755 +#: qcsrc/common/notifications/all.inc:756 msgid "^BGThere are more to go..." msgstr "^BGThere are more to go..." -#: qcsrc/common/notifications/all.inc:756 +#: qcsrc/common/notifications/all.inc:757 #, c-format msgid "^BGOnly %s^BG more to go..." msgstr "^BGOnly %s^BG more to go..." -#: qcsrc/common/notifications/all.inc:758 +#: qcsrc/common/notifications/all.inc:759 msgid "^F2Superweapons have broken down" msgstr "^F2Superweapons have broken down" -#: qcsrc/common/notifications/all.inc:759 +#: qcsrc/common/notifications/all.inc:760 msgid "^F2Superweapons have been lost" msgstr "^F2Superweapons have been lost" -#: qcsrc/common/notifications/all.inc:760 +#: qcsrc/common/notifications/all.inc:761 msgid "^F2You now have a superweapon" msgstr "^F2You now have a superweapon" -#: qcsrc/common/notifications/all.inc:762 +#: qcsrc/common/notifications/all.inc:763 msgid "^K1Changing to ^TC^TT^K1 in ^COUNT" msgstr "^K1Changing to ^TC^TT^K1 in ^COUNT" -#: qcsrc/common/notifications/all.inc:763 +#: qcsrc/common/notifications/all.inc:764 msgid "^K1Changing team in ^COUNT" msgstr "^K1Changing team in ^COUNT" -#: qcsrc/common/notifications/all.inc:764 +#: qcsrc/common/notifications/all.inc:765 msgid "^K1Spectating in ^COUNT" msgstr "^K1Spectating in ^COUNT" -#: qcsrc/common/notifications/all.inc:765 +#: qcsrc/common/notifications/all.inc:766 msgid "^K1Suicide in ^COUNT" msgstr "^K1Suicide in ^COUNT" -#: qcsrc/common/notifications/all.inc:767 +#: qcsrc/common/notifications/all.inc:768 msgid "^F4Timeout begins in ^COUNT" msgstr "^F4Timeout begins in ^COUNT" -#: qcsrc/common/notifications/all.inc:768 +#: qcsrc/common/notifications/all.inc:769 msgid "^F4Timeout ends in ^COUNT" msgstr "^F4Timeout ends in ^COUNT" -#: qcsrc/common/notifications/all.inc:770 +#: qcsrc/common/notifications/all.inc:771 msgid "^K1Cannot join given minigame session!" msgstr "^K1Cannot join given minigame session!" -#: qcsrc/common/notifications/all.inc:772 +#: qcsrc/common/notifications/all.inc:773 #, c-format msgid "^BGPress ^F2%s^BG to enter/exit the vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:773 +#: qcsrc/common/notifications/all.inc:774 #, c-format msgid "^BGPress ^F2%s^BG to enter the vehicle gunner" msgstr "" -#: qcsrc/common/notifications/all.inc:774 +#: qcsrc/common/notifications/all.inc:775 #, c-format msgid "^BGPress ^F2%s^BG to steal this vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:775 +#: qcsrc/common/notifications/all.inc:776 msgid "" "^F2The enemy is stealing one of your vehicles!\n" "^F4Stop them!" @@ -4374,7 +4380,7 @@ msgstr "" "^F2The enemy is stealing one of your vehicles!\n" "^F4Stop them!" -#: qcsrc/common/notifications/all.inc:776 +#: qcsrc/common/notifications/all.inc:777 msgid "^F2Intruder detected, disabling shields!" msgstr "" diff --git a/common.eo.po b/common.eo.po index d55bd0ec38..fb71f78880 100644 --- a/common.eo.po +++ b/common.eo.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: Xonotic\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-06 07:22+0100\n" -"PO-Revision-Date: 2022-03-06 06:22+0000\n" -"Last-Translator: divVerent \n" +"POT-Creation-Date: 2022-03-27 07:22+0200\n" +"PO-Revision-Date: 2013-09-12 16:53+0000\n" +"Last-Translator: Kamparano , 2017\n" "Language-Team: Esperanto (http://www.transifex.com/team-xonotic/xonotic/" "language/eo/)\n" "Language: eo\n" @@ -216,270 +216,270 @@ msgstr "" msgid "Player %d" msgstr "Ludanto %d" -#: qcsrc/client/hud/panel/quickmenu.qc:617 -#: qcsrc/client/hud/panel/quickmenu.qc:619 +#: qcsrc/client/hud/panel/quickmenu.qc:608 +#: qcsrc/client/hud/panel/quickmenu.qc:610 #, c-format msgid "Submenu%d" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:624 +#: qcsrc/client/hud/panel/quickmenu.qc:615 #, c-format msgid "Command%d" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:650 +#: qcsrc/client/hud/panel/quickmenu.qc:641 msgid "Continue..." msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:807 -#: qcsrc/client/hud/panel/quickmenu.qc:814 +#: qcsrc/client/hud/panel/quickmenu.qc:798 +#: qcsrc/client/hud/panel/quickmenu.qc:805 msgid "Chat" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:808 +#: qcsrc/client/hud/panel/quickmenu.qc:799 msgid "QMCMD^Send public message to" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^:-) / nice one" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^nice one" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:810 +#: qcsrc/client/hud/panel/quickmenu.qc:801 msgid "QMCMD^good game" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck and have fun" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:813 +#: qcsrc/client/hud/panel/quickmenu.qc:804 msgid "QMCMD^Send in English" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:818 -#: qcsrc/client/hud/panel/quickmenu.qc:834 +#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:825 msgid "QMCMD^Team chat" msgstr "QMCMD^Teama babilejo" -#: qcsrc/client/hud/panel/quickmenu.qc:819 +#: qcsrc/client/hud/panel/quickmenu.qc:810 msgid "QMCMD^strength soon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item %x^7 (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:822 +#: qcsrc/client/hud/panel/quickmenu.qc:813 msgid "QMCMD^negative" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:823 +#: qcsrc/client/hud/panel/quickmenu.qc:814 msgid "QMCMD^positive" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 #, c-format msgid "QMCMD^dropped flag (l:%d^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 msgid "QMCMD^dropped flag, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^drop weapon, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^dropped weapon %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^drop flag/key, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^dropped flag/key %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:837 +#: qcsrc/client/hud/panel/quickmenu.qc:828 msgid "QMCMD^Send private message to" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:839 -#: qcsrc/client/hud/panel/quickmenu.qc:869 +#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:860 msgid "QMCMD^Settings" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:840 -#: qcsrc/client/hud/panel/quickmenu.qc:847 +#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:838 msgid "QMCMD^View/HUD settings" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:841 +#: qcsrc/client/hud/panel/quickmenu.qc:832 msgid "QMCMD^3rd person view" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:842 +#: qcsrc/client/hud/panel/quickmenu.qc:833 msgid "QMCMD^Player models like mine" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:843 +#: qcsrc/client/hud/panel/quickmenu.qc:834 msgid "QMCMD^Names above players" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:844 +#: qcsrc/client/hud/panel/quickmenu.qc:835 msgid "QMCMD^Crosshair per weapon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:845 +#: qcsrc/client/hud/panel/quickmenu.qc:836 msgid "QMCMD^FPS" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:846 +#: qcsrc/client/hud/panel/quickmenu.qc:837 msgid "QMCMD^Net graph" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:849 -#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:840 +#: qcsrc/client/hud/panel/quickmenu.qc:843 msgid "QMCMD^Sound settings" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:850 +#: qcsrc/client/hud/panel/quickmenu.qc:841 msgid "QMCMD^Hit sound" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:851 +#: qcsrc/client/hud/panel/quickmenu.qc:842 msgid "QMCMD^Chat sound" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:856 +#: qcsrc/client/hud/panel/quickmenu.qc:847 msgid "QMCMD^Change spectator camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:861 -#: qcsrc/client/hud/panel/quickmenu.qc:865 +#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:856 msgid "QMCMD^Observer camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:853 msgid "QMCMD^Increase speed" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:863 +#: qcsrc/client/hud/panel/quickmenu.qc:854 msgid "QMCMD^Decrease speed" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:864 +#: qcsrc/client/hud/panel/quickmenu.qc:855 msgid "QMCMD^Wall collision" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:868 +#: qcsrc/client/hud/panel/quickmenu.qc:859 msgid "QMCMD^Fullscreen" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:871 -#: qcsrc/client/hud/panel/quickmenu.qc:881 +#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:872 msgid "QMCMD^Call a vote" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:872 +#: qcsrc/client/hud/panel/quickmenu.qc:863 msgid "QMCMD^Restart the map" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:873 +#: qcsrc/client/hud/panel/quickmenu.qc:864 msgid "QMCMD^End match" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:876 +#: qcsrc/client/hud/panel/quickmenu.qc:867 msgid "QMCMD^Reduce match time" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:877 +#: qcsrc/client/hud/panel/quickmenu.qc:868 msgid "QMCMD^Extend match time" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:880 +#: qcsrc/client/hud/panel/quickmenu.qc:871 msgid "QMCMD^Shuffle teams" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:885 +#: qcsrc/client/hud/panel/quickmenu.qc:876 msgid "QMCMD^Spectate a player" msgstr "" @@ -1228,14 +1228,14 @@ msgstr "" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 #: qcsrc/menu/xonotic/dialog_multiplayer_create.qc:105 msgid "Frag limit:" msgstr "" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 msgid "The amount of frags needed before the match will end" msgstr "" @@ -3266,7 +3266,7 @@ msgid "^BG%s%s^K1 was riddled full of holes by ^BG%s^K1's Machine Gun%s%s" msgstr "" #: qcsrc/common/notifications/all.inc:472 -#: qcsrc/common/notifications/all.inc:778 +#: qcsrc/common/notifications/all.inc:779 #, c-format msgid "^BGYou cannot place more than ^F2%s^BG mines at a time" msgstr "" @@ -4044,122 +4044,128 @@ msgstr "" msgid "^BGYou have no lives left, you must wait until the next match" msgstr "" -#: qcsrc/common/notifications/all.inc:707 +#: qcsrc/common/notifications/all.inc:706 +msgid "" +"^F4WARNING:^BG you can't rejoin this match after spectating.\n" +"Use the same command again to spectate anyway." +msgstr "" + +#: qcsrc/common/notifications/all.inc:708 #, c-format msgid "" "^BGWaiting for players to join...\n" "Need active players for: %s" msgstr "" -#: qcsrc/common/notifications/all.inc:708 +#: qcsrc/common/notifications/all.inc:709 #, c-format msgid "^BGWaiting for %s player(s) to join..." msgstr "" -#: qcsrc/common/notifications/all.inc:710 +#: qcsrc/common/notifications/all.inc:711 msgid "^BGYour weapon has been downgraded until you find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:711 +#: qcsrc/common/notifications/all.inc:712 msgid "^F4^COUNT^BG left to find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo or you'll be dead in ^F4^COUNT^BG!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo! ^F4^COUNT^BG left!" msgstr "" -#: qcsrc/common/notifications/all.inc:713 +#: qcsrc/common/notifications/all.inc:714 #, c-format msgid "^F2Extra lives remaining: ^K1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:715 qcsrc/menu/xonotic/campaign.qc:244 +#: qcsrc/common/notifications/all.inc:716 qcsrc/menu/xonotic/campaign.qc:244 #, c-format msgid "Level %s: " msgstr "" -#: qcsrc/common/notifications/all.inc:715 +#: qcsrc/common/notifications/all.inc:716 #, c-format msgid "^BGPress ^F2%s^BG to enter the game" msgstr "" -#: qcsrc/common/notifications/all.inc:718 +#: qcsrc/common/notifications/all.inc:719 #, c-format msgid "" "^F2^COUNT^BG until weapon change...\n" "Next weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:719 +#: qcsrc/common/notifications/all.inc:720 #, c-format msgid "^F2Active weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:721 +#: qcsrc/common/notifications/all.inc:722 #, c-format msgid "^BGYou captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:722 +#: qcsrc/common/notifications/all.inc:723 msgid "^BGYou captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:723 +#: qcsrc/common/notifications/all.inc:724 #, c-format msgid "^TC^TT^BG team captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:724 +#: qcsrc/common/notifications/all.inc:725 msgid "^TC^TT^BG team captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:725 +#: qcsrc/common/notifications/all.inc:726 msgid "^BGThis control point currently cannot be captured" msgstr "" -#: qcsrc/common/notifications/all.inc:726 +#: qcsrc/common/notifications/all.inc:727 msgid "" "^BGThe enemy generator cannot be destroyed yet\n" "^F2Capture some control points to unshield it" msgstr "" -#: qcsrc/common/notifications/all.inc:727 +#: qcsrc/common/notifications/all.inc:728 msgid "^BGThe ^TCenemy^BG generator is no longer shielded!" msgstr "" -#: qcsrc/common/notifications/all.inc:728 +#: qcsrc/common/notifications/all.inc:729 msgid "" "^K1Your generator is NOT shielded!\n" "^BGRe-capture control points to shield it!" msgstr "" -#: qcsrc/common/notifications/all.inc:729 +#: qcsrc/common/notifications/all.inc:730 #, c-format msgid "^BGPress ^F2%s^BG to teleport" msgstr "" -#: qcsrc/common/notifications/all.inc:730 +#: qcsrc/common/notifications/all.inc:731 #, c-format msgid "^BGTeleporting disabled for %s" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep fragging until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep scoring until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:733 +#: qcsrc/common/notifications/all.inc:734 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "\n" @@ -4168,136 +4174,136 @@ msgid "" "the faster the enemy generator decays" msgstr "" -#: qcsrc/common/notifications/all.inc:734 +#: qcsrc/common/notifications/all.inc:735 #, c-format msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "^BGAdded ^F4%s^BG to the game!" msgstr "" -#: qcsrc/common/notifications/all.inc:736 +#: qcsrc/common/notifications/all.inc:737 msgid "^K1In^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:737 +#: qcsrc/common/notifications/all.inc:738 msgid "^F3Out^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:738 +#: qcsrc/common/notifications/all.inc:739 msgid "^F1Portal creation failed" msgstr "" -#: qcsrc/common/notifications/all.inc:740 +#: qcsrc/common/notifications/all.inc:741 msgid "^F2Strength infuses your weapons with devastating power" msgstr "" -#: qcsrc/common/notifications/all.inc:741 +#: qcsrc/common/notifications/all.inc:742 msgid "^F2Strength has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:743 +#: qcsrc/common/notifications/all.inc:744 msgid "^F2Shield surrounds you" msgstr "" -#: qcsrc/common/notifications/all.inc:744 +#: qcsrc/common/notifications/all.inc:745 msgid "^F2Shield has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:746 +#: qcsrc/common/notifications/all.inc:747 msgid "^F2You are on speed" msgstr "" -#: qcsrc/common/notifications/all.inc:747 +#: qcsrc/common/notifications/all.inc:748 msgid "^F2Speed has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:749 +#: qcsrc/common/notifications/all.inc:750 msgid "^F2You are invisible" msgstr "" -#: qcsrc/common/notifications/all.inc:750 +#: qcsrc/common/notifications/all.inc:751 msgid "^F2Invisibility has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:752 +#: qcsrc/common/notifications/all.inc:753 msgid "^F2The race is over, finish your lap!" msgstr "" -#: qcsrc/common/notifications/all.inc:754 +#: qcsrc/common/notifications/all.inc:755 msgid "^BGSequence completed!" msgstr "" -#: qcsrc/common/notifications/all.inc:755 +#: qcsrc/common/notifications/all.inc:756 msgid "^BGThere are more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:756 +#: qcsrc/common/notifications/all.inc:757 #, c-format msgid "^BGOnly %s^BG more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:758 +#: qcsrc/common/notifications/all.inc:759 msgid "^F2Superweapons have broken down" msgstr "" -#: qcsrc/common/notifications/all.inc:759 +#: qcsrc/common/notifications/all.inc:760 msgid "^F2Superweapons have been lost" msgstr "" -#: qcsrc/common/notifications/all.inc:760 +#: qcsrc/common/notifications/all.inc:761 msgid "^F2You now have a superweapon" msgstr "" -#: qcsrc/common/notifications/all.inc:762 +#: qcsrc/common/notifications/all.inc:763 msgid "^K1Changing to ^TC^TT^K1 in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:763 +#: qcsrc/common/notifications/all.inc:764 msgid "^K1Changing team in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:764 +#: qcsrc/common/notifications/all.inc:765 msgid "^K1Spectating in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:765 +#: qcsrc/common/notifications/all.inc:766 msgid "^K1Suicide in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:767 +#: qcsrc/common/notifications/all.inc:768 msgid "^F4Timeout begins in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:768 +#: qcsrc/common/notifications/all.inc:769 msgid "^F4Timeout ends in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:770 +#: qcsrc/common/notifications/all.inc:771 msgid "^K1Cannot join given minigame session!" msgstr "" -#: qcsrc/common/notifications/all.inc:772 +#: qcsrc/common/notifications/all.inc:773 #, c-format msgid "^BGPress ^F2%s^BG to enter/exit the vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:773 +#: qcsrc/common/notifications/all.inc:774 #, c-format msgid "^BGPress ^F2%s^BG to enter the vehicle gunner" msgstr "" -#: qcsrc/common/notifications/all.inc:774 +#: qcsrc/common/notifications/all.inc:775 #, c-format msgid "^BGPress ^F2%s^BG to steal this vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:775 +#: qcsrc/common/notifications/all.inc:776 msgid "" "^F2The enemy is stealing one of your vehicles!\n" "^F4Stop them!" msgstr "" -#: qcsrc/common/notifications/all.inc:776 +#: qcsrc/common/notifications/all.inc:777 msgid "^F2Intruder detected, disabling shields!" msgstr "" diff --git a/common.es.po b/common.es.po index fcf6dbaf3c..f7b5b7becb 100644 --- a/common.es.po +++ b/common.es.po @@ -14,7 +14,7 @@ # kammy smb , 2013 # kammy smb , 2013 # LegendGuard, 2020 -# LegendGuard, 2020-2021 +# LegendGuard, 2020-2022 # LegendGuard, 2020 # roader_gentoo , 2014 # Rodrigo Mouton Laudin , 2011 @@ -31,9 +31,9 @@ msgid "" msgstr "" "Project-Id-Version: Xonotic\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-06 07:22+0100\n" -"PO-Revision-Date: 2022-03-06 06:22+0000\n" -"Last-Translator: divVerent \n" +"POT-Creation-Date: 2022-03-27 07:22+0200\n" +"PO-Revision-Date: 2013-09-12 16:53+0000\n" +"Last-Translator: z 411 , 2021\n" "Language-Team: Spanish (http://www.transifex.com/team-xonotic/xonotic/" "language/es/)\n" "Language: es\n" @@ -242,270 +242,270 @@ msgstr "^3ALT ^7+ ^3TECLAS DE DIRECCIÓN ^7para ajustes finos." msgid "Player %d" msgstr "Jugador %d" -#: qcsrc/client/hud/panel/quickmenu.qc:617 -#: qcsrc/client/hud/panel/quickmenu.qc:619 +#: qcsrc/client/hud/panel/quickmenu.qc:608 +#: qcsrc/client/hud/panel/quickmenu.qc:610 #, c-format msgid "Submenu%d" msgstr "Submenú%d" -#: qcsrc/client/hud/panel/quickmenu.qc:624 +#: qcsrc/client/hud/panel/quickmenu.qc:615 #, c-format msgid "Command%d" msgstr "Comando%d" -#: qcsrc/client/hud/panel/quickmenu.qc:650 +#: qcsrc/client/hud/panel/quickmenu.qc:641 msgid "Continue..." msgstr "Continuar..." -#: qcsrc/client/hud/panel/quickmenu.qc:807 -#: qcsrc/client/hud/panel/quickmenu.qc:814 +#: qcsrc/client/hud/panel/quickmenu.qc:798 +#: qcsrc/client/hud/panel/quickmenu.qc:805 msgid "Chat" msgstr "Chat" -#: qcsrc/client/hud/panel/quickmenu.qc:808 +#: qcsrc/client/hud/panel/quickmenu.qc:799 msgid "QMCMD^Send public message to" msgstr "QMCMD^Enviar mensaje público a" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^:-) / nice one" msgstr "QMCMD^:-) / buena" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^nice one" msgstr "QMCMD^buena" -#: qcsrc/client/hud/panel/quickmenu.qc:810 +#: qcsrc/client/hud/panel/quickmenu.qc:801 msgid "QMCMD^good game" msgstr "QMCMD^bien jugado" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck" msgstr "QMCMD^hola / buena suerte" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck and have fun" msgstr "QMCMD^hola / buena suerte y diviértete" -#: qcsrc/client/hud/panel/quickmenu.qc:813 +#: qcsrc/client/hud/panel/quickmenu.qc:804 msgid "QMCMD^Send in English" msgstr "QMCMD^Enviar en inglés" -#: qcsrc/client/hud/panel/quickmenu.qc:818 -#: qcsrc/client/hud/panel/quickmenu.qc:834 +#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:825 msgid "QMCMD^Team chat" msgstr "QMCMD^Chat del equipo" -#: qcsrc/client/hud/panel/quickmenu.qc:819 +#: qcsrc/client/hud/panel/quickmenu.qc:810 msgid "QMCMD^strength soon" msgstr "QMCMD^la fuerza aparecerá pronto" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item %x^7 (l:%y^7)" msgstr "QMCMD^objeto gratuito %x^7 (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item, icon" msgstr "QMCMD^objeto gratuito, icono" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item (l:%l^7)" msgstr "QMCMD^tomó el objeto (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item, icon" msgstr "QMCMD^tomó el objeto, icono" -#: qcsrc/client/hud/panel/quickmenu.qc:822 +#: qcsrc/client/hud/panel/quickmenu.qc:813 msgid "QMCMD^negative" msgstr "QMCMD^negativo" -#: qcsrc/client/hud/panel/quickmenu.qc:823 +#: qcsrc/client/hud/panel/quickmenu.qc:814 msgid "QMCMD^positive" msgstr "QMCMD^positivo" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^necesito ayuda (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help, icon" msgstr "QMCMD^necesito ayuda, icono" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen (l:%y^7)" msgstr "QMCMD^enemigo visto (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen, icon" msgstr "QMCMD^enemigo visto, icono" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen (l:%y^7)" msgstr "QMCMD^bandera vista (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen, icon" msgstr "QMCMD^bandera vista, icono" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^defendiendo (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending, icon" msgstr "QMCMD^defendiendo, icono" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^moviéndome (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming, icon" msgstr "QMCMD^moviéndome, icono" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^atacando (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking, icon" msgstr "QMCMD^atacando, icono" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier (l:%y^7)" msgstr "QMCMD^el portador de la bandera ha sido asesinado (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier, icon" msgstr "QMCMD^el portador de la bandera ha sido asesinado, icono" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 #, c-format msgid "QMCMD^dropped flag (l:%d^7)" msgstr "QMCMD^bandera tirada (l:%d^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 msgid "QMCMD^dropped flag, icon" msgstr "QMCMD^bandera tirada, icono" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^drop weapon, icon" msgstr "QMCMD^tirar arma, icono" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^dropped weapon %w^7 (l:%l^7)" msgstr "QMCMD^arma tirada %w^7 (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^drop flag/key, icon" msgstr "QMCMD^tirar bandera/llave, icono" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^dropped flag/key %w^7 (l:%l^7)" msgstr "QMCMD^bandera/llave tirada %w^7 (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:837 +#: qcsrc/client/hud/panel/quickmenu.qc:828 msgid "QMCMD^Send private message to" msgstr "QMCMD^Enviar mensaje privado a" -#: qcsrc/client/hud/panel/quickmenu.qc:839 -#: qcsrc/client/hud/panel/quickmenu.qc:869 +#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:860 msgid "QMCMD^Settings" msgstr "QMCMD^Ajustes" -#: qcsrc/client/hud/panel/quickmenu.qc:840 -#: qcsrc/client/hud/panel/quickmenu.qc:847 +#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:838 msgid "QMCMD^View/HUD settings" msgstr "QMCMD^Ajustes de la Vista/HUD" -#: qcsrc/client/hud/panel/quickmenu.qc:841 +#: qcsrc/client/hud/panel/quickmenu.qc:832 msgid "QMCMD^3rd person view" msgstr "QMCMD^Vista en 3ª persona" -#: qcsrc/client/hud/panel/quickmenu.qc:842 +#: qcsrc/client/hud/panel/quickmenu.qc:833 msgid "QMCMD^Player models like mine" msgstr "QMCMD^Modelos del jugador como el mío" -#: qcsrc/client/hud/panel/quickmenu.qc:843 +#: qcsrc/client/hud/panel/quickmenu.qc:834 msgid "QMCMD^Names above players" msgstr "QMCMD^Nombres por encima de los jugadores" -#: qcsrc/client/hud/panel/quickmenu.qc:844 +#: qcsrc/client/hud/panel/quickmenu.qc:835 msgid "QMCMD^Crosshair per weapon" msgstr "QMCMD^Punto de mira por arma" -#: qcsrc/client/hud/panel/quickmenu.qc:845 +#: qcsrc/client/hud/panel/quickmenu.qc:836 msgid "QMCMD^FPS" msgstr "QMCMD^FPS" -#: qcsrc/client/hud/panel/quickmenu.qc:846 +#: qcsrc/client/hud/panel/quickmenu.qc:837 msgid "QMCMD^Net graph" msgstr "QMCMD^Gráfico de red" -#: qcsrc/client/hud/panel/quickmenu.qc:849 -#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:840 +#: qcsrc/client/hud/panel/quickmenu.qc:843 msgid "QMCMD^Sound settings" msgstr "QMCMD^Ajustes de sonido" -#: qcsrc/client/hud/panel/quickmenu.qc:850 +#: qcsrc/client/hud/panel/quickmenu.qc:841 msgid "QMCMD^Hit sound" msgstr "QMCMD^Sonido de los golpes" -#: qcsrc/client/hud/panel/quickmenu.qc:851 +#: qcsrc/client/hud/panel/quickmenu.qc:842 msgid "QMCMD^Chat sound" msgstr "QMCMD^Sonido del chat" -#: qcsrc/client/hud/panel/quickmenu.qc:856 +#: qcsrc/client/hud/panel/quickmenu.qc:847 msgid "QMCMD^Change spectator camera" msgstr "QMCMD^Cambiar cámara de espectador" -#: qcsrc/client/hud/panel/quickmenu.qc:861 -#: qcsrc/client/hud/panel/quickmenu.qc:865 +#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:856 msgid "QMCMD^Observer camera" msgstr "QMCMD^Cámara de observador" -#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:853 msgid "QMCMD^Increase speed" msgstr "QMCMD^Incrementar velocidad" -#: qcsrc/client/hud/panel/quickmenu.qc:863 +#: qcsrc/client/hud/panel/quickmenu.qc:854 msgid "QMCMD^Decrease speed" msgstr "QMCMD^Reducir velocidad" -#: qcsrc/client/hud/panel/quickmenu.qc:864 +#: qcsrc/client/hud/panel/quickmenu.qc:855 msgid "QMCMD^Wall collision" msgstr "QMCMD^Colisión del muro" -#: qcsrc/client/hud/panel/quickmenu.qc:868 +#: qcsrc/client/hud/panel/quickmenu.qc:859 msgid "QMCMD^Fullscreen" msgstr "QMCMD^Pantalla completa" -#: qcsrc/client/hud/panel/quickmenu.qc:871 -#: qcsrc/client/hud/panel/quickmenu.qc:881 +#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:872 msgid "QMCMD^Call a vote" msgstr "QMCMD^Pedir voto" -#: qcsrc/client/hud/panel/quickmenu.qc:872 +#: qcsrc/client/hud/panel/quickmenu.qc:863 msgid "QMCMD^Restart the map" msgstr "QMCMD^Reiniciar el mapa" -#: qcsrc/client/hud/panel/quickmenu.qc:873 +#: qcsrc/client/hud/panel/quickmenu.qc:864 msgid "QMCMD^End match" msgstr "QMCMD^Terminar partida" -#: qcsrc/client/hud/panel/quickmenu.qc:876 +#: qcsrc/client/hud/panel/quickmenu.qc:867 msgid "QMCMD^Reduce match time" msgstr "QMCMD^Reducir tiempo de partida" -#: qcsrc/client/hud/panel/quickmenu.qc:877 +#: qcsrc/client/hud/panel/quickmenu.qc:868 msgid "QMCMD^Extend match time" msgstr "QMCMD^Extender tiempo de partida" -#: qcsrc/client/hud/panel/quickmenu.qc:880 +#: qcsrc/client/hud/panel/quickmenu.qc:871 msgid "QMCMD^Shuffle teams" msgstr "QMCMD^Barajar equipos" -#: qcsrc/client/hud/panel/quickmenu.qc:885 +#: qcsrc/client/hud/panel/quickmenu.qc:876 msgid "QMCMD^Spectate a player" msgstr "QMCMD^Espectar a un jugador" @@ -1088,24 +1088,24 @@ msgstr "nmi" #: qcsrc/client/hud/panel/timer.qc:132 msgid "Warmup" -msgstr "" +msgstr "Calentamiento" #: qcsrc/client/hud/panel/timer.qc:134 msgid "Timeout" -msgstr "" +msgstr "Tiempo muerto" #: qcsrc/client/hud/panel/timer.qc:136 msgid "Sudden Death" -msgstr "" +msgstr "Muerte súbita" #: qcsrc/client/hud/panel/timer.qc:138 msgid "Overtime" -msgstr "" +msgstr "Tiempo extra" #: qcsrc/client/hud/panel/timer.qc:140 #, c-format msgid "Overtime #%d" -msgstr "" +msgstr "Tiempo extra #%d" #: qcsrc/client/hud/panel/vote.qc:30 msgid "^1You must answer before entering hud configure mode" @@ -1281,14 +1281,14 @@ msgstr "Mata a todos los compañeros del enemigo para ganar la ronda" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 #: qcsrc/menu/xonotic/dialog_multiplayer_create.qc:105 msgid "Frag limit:" msgstr "Límite de muertes:" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 msgid "The amount of frags needed before the match will end" msgstr "Cantidad de puntos necesarios antes de que termine el combate" @@ -3394,7 +3394,7 @@ msgid "^BG%s%s^K1 was riddled full of holes by ^BG%s^K1's Machine Gun%s%s" msgstr "^BG%s%s^K1 fue acribillado por la Ametralladora de ^BG%s^K1%s%s" #: qcsrc/common/notifications/all.inc:472 -#: qcsrc/common/notifications/all.inc:778 +#: qcsrc/common/notifications/all.inc:779 #, c-format msgid "^BGYou cannot place more than ^F2%s^BG mines at a time" msgstr "^BGNo puedes colocar más de ^F2%s^BG minas a la vez" @@ -4214,7 +4214,13 @@ msgstr "^BGEstás empezando con la Llave ^TC^TT" msgid "^BGYou have no lives left, you must wait until the next match" msgstr "^BGNo tienes más vidas, debes esperar hasta la siguiente partida" -#: qcsrc/common/notifications/all.inc:707 +#: qcsrc/common/notifications/all.inc:706 +msgid "" +"^F4WARNING:^BG you can't rejoin this match after spectating.\n" +"Use the same command again to spectate anyway." +msgstr "" + +#: qcsrc/common/notifications/all.inc:708 #, c-format msgid "" "^BGWaiting for players to join...\n" @@ -4223,43 +4229,43 @@ msgstr "" "^BGEsperando a que se unan jugadores...\n" "Se necesitan jugadores activos para: %s" -#: qcsrc/common/notifications/all.inc:708 +#: qcsrc/common/notifications/all.inc:709 #, c-format msgid "^BGWaiting for %s player(s) to join..." msgstr "^BGEsperando a que %s jugador(es) se unan..." -#: qcsrc/common/notifications/all.inc:710 +#: qcsrc/common/notifications/all.inc:711 msgid "^BGYour weapon has been downgraded until you find some ammo!" msgstr "^BG¡Tu arma ha sido degradada hasta que encuentres algo de munición!" -#: qcsrc/common/notifications/all.inc:711 +#: qcsrc/common/notifications/all.inc:712 msgid "^F4^COUNT^BG left to find some ammo!" msgstr "^F4¡^COUNT^BG restante para encontrar algunas municiones!" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo or you'll be dead in ^F4^COUNT^BG!" msgstr "^BG¡Consigue algunas municiones o morirás en ^F4^COUNT^BG!" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo! ^F4^COUNT^BG left!" msgstr "^BG¡Consigue algunas municiones! ¡Te queda ^F4^COUNT^BG!" -#: qcsrc/common/notifications/all.inc:713 +#: qcsrc/common/notifications/all.inc:714 #, c-format msgid "^F2Extra lives remaining: ^K1%s" msgstr "^F2Vidas sobrantes: ^K1%s" -#: qcsrc/common/notifications/all.inc:715 qcsrc/menu/xonotic/campaign.qc:244 +#: qcsrc/common/notifications/all.inc:716 qcsrc/menu/xonotic/campaign.qc:244 #, c-format msgid "Level %s: " msgstr "Nivel %s: " -#: qcsrc/common/notifications/all.inc:715 +#: qcsrc/common/notifications/all.inc:716 #, c-format msgid "^BGPress ^F2%s^BG to enter the game" msgstr "^BGPulsa ^F2%s^BG para entrar en el juego" -#: qcsrc/common/notifications/all.inc:718 +#: qcsrc/common/notifications/all.inc:719 #, c-format msgid "" "^F2^COUNT^BG until weapon change...\n" @@ -4268,34 +4274,34 @@ msgstr "" "^F2^COUNT^BG hasta el cambio de arma...\n" "Siguiente arma: ^F1%s" -#: qcsrc/common/notifications/all.inc:719 +#: qcsrc/common/notifications/all.inc:720 #, c-format msgid "^F2Active weapon: ^F1%s" msgstr "^F2Arma activa: ^F1%s" -#: qcsrc/common/notifications/all.inc:721 +#: qcsrc/common/notifications/all.inc:722 #, c-format msgid "^BGYou captured %s^BG control point" msgstr "^BGHas capturado el punto de control de %s^BG" -#: qcsrc/common/notifications/all.inc:722 +#: qcsrc/common/notifications/all.inc:723 msgid "^BGYou captured a control point" msgstr "^BGHas capturado un punto de control" -#: qcsrc/common/notifications/all.inc:723 +#: qcsrc/common/notifications/all.inc:724 #, c-format msgid "^TC^TT^BG team captured %s^BG control point" msgstr "El equipo ^TC^TT^BG capturó el punto de control de %s^BG" -#: qcsrc/common/notifications/all.inc:724 +#: qcsrc/common/notifications/all.inc:725 msgid "^TC^TT^BG team captured a control point" msgstr "El equipo ^TC^TT^BG capturó un punto de control" -#: qcsrc/common/notifications/all.inc:725 +#: qcsrc/common/notifications/all.inc:726 msgid "^BGThis control point currently cannot be captured" msgstr "^BGEl punto de control no puede ser capturado en este momento" -#: qcsrc/common/notifications/all.inc:726 +#: qcsrc/common/notifications/all.inc:727 msgid "" "^BGThe enemy generator cannot be destroyed yet\n" "^F2Capture some control points to unshield it" @@ -4303,11 +4309,11 @@ msgstr "" "^BGEl generador enemigo no puede ser destruido ahora\n" "^F2Captura puntos de control para desprotegerlo" -#: qcsrc/common/notifications/all.inc:727 +#: qcsrc/common/notifications/all.inc:728 msgid "^BGThe ^TCenemy^BG generator is no longer shielded!" msgstr "^BG¡El generador ^TCenemigo^BG ya no está protegido!" -#: qcsrc/common/notifications/all.inc:728 +#: qcsrc/common/notifications/all.inc:729 msgid "" "^K1Your generator is NOT shielded!\n" "^BGRe-capture control points to shield it!" @@ -4315,17 +4321,17 @@ msgstr "" "^K1¡Tu generador NO está protegido!\n" "^BG¡Vuelve a capturar puntos de control para protegerlo!" -#: qcsrc/common/notifications/all.inc:729 +#: qcsrc/common/notifications/all.inc:730 #, c-format msgid "^BGPress ^F2%s^BG to teleport" msgstr "^BGPulsa ^F2%s^BG para teletransportarse" -#: qcsrc/common/notifications/all.inc:730 +#: qcsrc/common/notifications/all.inc:731 #, c-format msgid "^BGTeleporting disabled for %s" msgstr "^BGTeletransportación deshabilitada por %s" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep fragging until we have a winner!" @@ -4333,7 +4339,7 @@ msgstr "" "^F2¡Ahora jugando en ^F4TIEMPO EXTRA^F2!\n" "¡Sigue eliminando hasta que tengamos un ganador!" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep scoring until we have a winner!" @@ -4341,7 +4347,7 @@ msgstr "" "^F2¡Ahora jugando en ^F4TIEMPO EXTRA^F2!\n" "¡Sigue acertando hasta que tengamos un ganador!" -#: qcsrc/common/notifications/all.inc:733 +#: qcsrc/common/notifications/all.inc:734 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "\n" @@ -4355,7 +4361,7 @@ msgstr "" "Cuánto más puntos de control tenga tu equipo,\n" "más rápido decaerá el generador enemigo" -#: qcsrc/common/notifications/all.inc:734 +#: qcsrc/common/notifications/all.inc:735 #, c-format msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" @@ -4364,123 +4370,123 @@ msgstr "" "^F2¡Ahora jugando en ^F4TIEMPO EXTRA^F2!\n" "^BG¡Se ha añadido ^F4%s^BG al juego!" -#: qcsrc/common/notifications/all.inc:736 +#: qcsrc/common/notifications/all.inc:737 msgid "^K1In^BG-portal created" msgstr "^K1Portal de entrada^BG creado" -#: qcsrc/common/notifications/all.inc:737 +#: qcsrc/common/notifications/all.inc:738 msgid "^F3Out^BG-portal created" msgstr "^F3Portal de salida^BG creado" -#: qcsrc/common/notifications/all.inc:738 +#: qcsrc/common/notifications/all.inc:739 msgid "^F1Portal creation failed" msgstr "^F1Creación de portal ha fallado" -#: qcsrc/common/notifications/all.inc:740 +#: qcsrc/common/notifications/all.inc:741 msgid "^F2Strength infuses your weapons with devastating power" msgstr "^F2La fuerza infunde tus armas con poder devastador" -#: qcsrc/common/notifications/all.inc:741 +#: qcsrc/common/notifications/all.inc:742 msgid "^F2Strength has worn off" msgstr "^F2La fuerza se ha agotado" -#: qcsrc/common/notifications/all.inc:743 +#: qcsrc/common/notifications/all.inc:744 msgid "^F2Shield surrounds you" msgstr "^F2Un escudo te rodea" -#: qcsrc/common/notifications/all.inc:744 +#: qcsrc/common/notifications/all.inc:745 msgid "^F2Shield has worn off" msgstr "^F2El escudo se ha agotado" -#: qcsrc/common/notifications/all.inc:746 +#: qcsrc/common/notifications/all.inc:747 msgid "^F2You are on speed" msgstr "^F2Tienes la velocidad" -#: qcsrc/common/notifications/all.inc:747 +#: qcsrc/common/notifications/all.inc:748 msgid "^F2Speed has worn off" msgstr "^F2La velocidad se ha agotado" -#: qcsrc/common/notifications/all.inc:749 +#: qcsrc/common/notifications/all.inc:750 msgid "^F2You are invisible" msgstr "^F2Eres invisible" -#: qcsrc/common/notifications/all.inc:750 +#: qcsrc/common/notifications/all.inc:751 msgid "^F2Invisibility has worn off" msgstr "^F2La invisibilidad se ha agotado" -#: qcsrc/common/notifications/all.inc:752 +#: qcsrc/common/notifications/all.inc:753 msgid "^F2The race is over, finish your lap!" msgstr "^F2¡La carrera se ha terminado, completa tu vuelta!" -#: qcsrc/common/notifications/all.inc:754 +#: qcsrc/common/notifications/all.inc:755 msgid "^BGSequence completed!" msgstr "^BG¡Secuencia completada!" -#: qcsrc/common/notifications/all.inc:755 +#: qcsrc/common/notifications/all.inc:756 msgid "^BGThere are more to go..." msgstr "^BGHacen falta más para continuar..." -#: qcsrc/common/notifications/all.inc:756 +#: qcsrc/common/notifications/all.inc:757 #, c-format msgid "^BGOnly %s^BG more to go..." msgstr "^BGSolo %s^BG mas para continuar..." -#: qcsrc/common/notifications/all.inc:758 +#: qcsrc/common/notifications/all.inc:759 msgid "^F2Superweapons have broken down" msgstr "^F2Las superarmas se han descompuesto" -#: qcsrc/common/notifications/all.inc:759 +#: qcsrc/common/notifications/all.inc:760 msgid "^F2Superweapons have been lost" msgstr "^F2Se han perdido las superarmas" -#: qcsrc/common/notifications/all.inc:760 +#: qcsrc/common/notifications/all.inc:761 msgid "^F2You now have a superweapon" msgstr "^F2Ahora tienes una superarma" -#: qcsrc/common/notifications/all.inc:762 +#: qcsrc/common/notifications/all.inc:763 msgid "^K1Changing to ^TC^TT^K1 in ^COUNT" msgstr "^K1Cambiando a ^TC^TT^K1 en ^COUNT" -#: qcsrc/common/notifications/all.inc:763 +#: qcsrc/common/notifications/all.inc:764 msgid "^K1Changing team in ^COUNT" msgstr "^K1Cambiando equipo en ^COUNT" -#: qcsrc/common/notifications/all.inc:764 +#: qcsrc/common/notifications/all.inc:765 msgid "^K1Spectating in ^COUNT" msgstr "^K1Cambiando a espectador en ^COUNT" -#: qcsrc/common/notifications/all.inc:765 +#: qcsrc/common/notifications/all.inc:766 msgid "^K1Suicide in ^COUNT" msgstr "^K1Suicidio en ^COUNT" -#: qcsrc/common/notifications/all.inc:767 +#: qcsrc/common/notifications/all.inc:768 msgid "^F4Timeout begins in ^COUNT" -msgstr "^F4Tiempo fuera comienza en ^COUNT" +msgstr "^F4Tiempo muerto comienza en ^COUNT" -#: qcsrc/common/notifications/all.inc:768 +#: qcsrc/common/notifications/all.inc:769 msgid "^F4Timeout ends in ^COUNT" -msgstr "^F4Tiempo fuera se acaba en ^COUNT" +msgstr "^F4Tiempo muerto en ^COUNT" -#: qcsrc/common/notifications/all.inc:770 +#: qcsrc/common/notifications/all.inc:771 msgid "^K1Cannot join given minigame session!" msgstr "^K1¡No se puede unir a la sesión del minijuego que se ha dado!" -#: qcsrc/common/notifications/all.inc:772 +#: qcsrc/common/notifications/all.inc:773 #, c-format msgid "^BGPress ^F2%s^BG to enter/exit the vehicle" msgstr "^BGPulsa ^F2%s^BG para entrar/salir del vehículo" -#: qcsrc/common/notifications/all.inc:773 +#: qcsrc/common/notifications/all.inc:774 #, c-format msgid "^BGPress ^F2%s^BG to enter the vehicle gunner" msgstr "^BGPulsa ^F2%s^BG para entrar en el artillero del vehículo" -#: qcsrc/common/notifications/all.inc:774 +#: qcsrc/common/notifications/all.inc:775 #, c-format msgid "^BGPress ^F2%s^BG to steal this vehicle" msgstr "^BGPulsa ^F2%s^BG para robar este vehículo" -#: qcsrc/common/notifications/all.inc:775 +#: qcsrc/common/notifications/all.inc:776 msgid "" "^F2The enemy is stealing one of your vehicles!\n" "^F4Stop them!" @@ -4488,7 +4494,7 @@ msgstr "" "^F2¡El enemigo está robando uno de tus vehículos!\n" "^F4¡Deténganlos!" -#: qcsrc/common/notifications/all.inc:776 +#: qcsrc/common/notifications/all.inc:777 msgid "^F2Intruder detected, disabling shields!" msgstr "^F2¡Intruso detectado, desactivando escudos!" @@ -6458,11 +6464,11 @@ msgstr "Mostrar el tiempo transcurrido" #: qcsrc/menu/xonotic/dialog_hudpanel_timer.qc:23 msgid "Secondary timer:" -msgstr "" +msgstr "Reloj secundario:" #: qcsrc/menu/xonotic/dialog_hudpanel_timer.qc:27 msgid "Swapped" -msgstr "" +msgstr "Intercambiado" #: qcsrc/menu/xonotic/dialog_hudpanel_timer.qh:6 msgid "Timer Panel" @@ -7305,7 +7311,7 @@ msgstr "¡Unirse!" #: qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfo.qc:93 #: qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfo.qc:105 msgid "No Terms of Service specified" -msgstr "" +msgstr "No se han especificado los Términos del Servicio" #: qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfo.qc:144 #: qcsrc/menu/xonotic/serverlist.qc:1052 @@ -7368,7 +7374,7 @@ msgstr "Usa la cvar `crypto_aeslevel` para cambiar tus preferencias" #: qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfo.qc:203 #: qcsrc/menu/xonotic/serverlist.qc:1056 msgid "custom stats server" -msgstr "" +msgstr "estadísticas personalizadas del servidor" #: qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfo.qc:203 #: qcsrc/menu/xonotic/serverlist.qc:1056 @@ -7382,17 +7388,17 @@ msgstr "estadísticas habilitadas" #: qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfo.qc:213 msgid "Status" -msgstr "" +msgstr "Estado" #: qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfo.qc:214 #: qcsrc/menu/xonotic/dialog_multiplayer_join_termsofservice.qh:7 #: qcsrc/menu/xonotic/dialog_termsofservice.qh:11 msgid "Terms of Service" -msgstr "" +msgstr "Términos del Servicio" #: qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfo.qh:7 msgid "Server Info" -msgstr "" +msgstr "Información del servidor" #: qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfotab.qc:24 msgid "Hostname:" @@ -7445,7 +7451,7 @@ msgstr "Llave:" #: qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfotab.qc:96 msgid "Stats:" -msgstr "" +msgstr "Estadísticas:" #: qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfotab.qh:6 msgid "Server Information" @@ -9801,18 +9807,20 @@ msgstr "Selección de equipo" #: qcsrc/menu/xonotic/dialog_termsofservice.qc:78 msgid "Terms of Service have been updated. Please read them before continuing:" msgstr "" +"Los Términos del Servicio han sido actualizados. Por favor, lea antes de " +"continuar:" #: qcsrc/menu/xonotic/dialog_termsofservice.qc:80 msgid "Welcome to Xonotic! Please read the following Terms of Service:" -msgstr "" +msgstr "¡Bienvenido a Xonotic! Por favor, lea los Términos del Servicio:" #: qcsrc/menu/xonotic/dialog_termsofservice.qc:93 msgid "Accept" -msgstr "" +msgstr "Acepto" #: qcsrc/menu/xonotic/dialog_termsofservice.qc:97 msgid "Don't accept (quit the game)" -msgstr "" +msgstr "No acepto (salir del juego)" #: qcsrc/menu/xonotic/dialog_uid2name.qc:10 msgid "Allow player statistics to use your nickname?" diff --git a/common.es_MX.po b/common.es_MX.po index fa09052237..7f19ba6431 100644 --- a/common.es_MX.po +++ b/common.es_MX.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: Xonotic\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-06 07:22+0100\n" -"PO-Revision-Date: 2022-03-06 06:22+0000\n" -"Last-Translator: divVerent \n" +"POT-Creation-Date: 2022-03-27 07:22+0200\n" +"PO-Revision-Date: 2013-09-12 16:53+0000\n" +"Last-Translator: FULL NAME \n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/team-xonotic/" "xonotic/language/es_MX/)\n" "Language: es_MX\n" @@ -215,270 +215,270 @@ msgstr "" msgid "Player %d" msgstr "Jugador %d" -#: qcsrc/client/hud/panel/quickmenu.qc:617 -#: qcsrc/client/hud/panel/quickmenu.qc:619 +#: qcsrc/client/hud/panel/quickmenu.qc:608 +#: qcsrc/client/hud/panel/quickmenu.qc:610 #, c-format msgid "Submenu%d" msgstr "Submenú%d" -#: qcsrc/client/hud/panel/quickmenu.qc:624 +#: qcsrc/client/hud/panel/quickmenu.qc:615 #, c-format msgid "Command%d" msgstr "Comando%d" -#: qcsrc/client/hud/panel/quickmenu.qc:650 +#: qcsrc/client/hud/panel/quickmenu.qc:641 msgid "Continue..." msgstr "Continuar..." -#: qcsrc/client/hud/panel/quickmenu.qc:807 -#: qcsrc/client/hud/panel/quickmenu.qc:814 +#: qcsrc/client/hud/panel/quickmenu.qc:798 +#: qcsrc/client/hud/panel/quickmenu.qc:805 msgid "Chat" msgstr "Chat" -#: qcsrc/client/hud/panel/quickmenu.qc:808 +#: qcsrc/client/hud/panel/quickmenu.qc:799 msgid "QMCMD^Send public message to" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^:-) / nice one" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^nice one" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:810 +#: qcsrc/client/hud/panel/quickmenu.qc:801 msgid "QMCMD^good game" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck and have fun" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:813 +#: qcsrc/client/hud/panel/quickmenu.qc:804 msgid "QMCMD^Send in English" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:818 -#: qcsrc/client/hud/panel/quickmenu.qc:834 +#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:825 msgid "QMCMD^Team chat" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:819 +#: qcsrc/client/hud/panel/quickmenu.qc:810 msgid "QMCMD^strength soon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item %x^7 (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:822 +#: qcsrc/client/hud/panel/quickmenu.qc:813 msgid "QMCMD^negative" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:823 +#: qcsrc/client/hud/panel/quickmenu.qc:814 msgid "QMCMD^positive" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 #, c-format msgid "QMCMD^dropped flag (l:%d^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 msgid "QMCMD^dropped flag, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^drop weapon, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^dropped weapon %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^drop flag/key, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^dropped flag/key %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:837 +#: qcsrc/client/hud/panel/quickmenu.qc:828 msgid "QMCMD^Send private message to" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:839 -#: qcsrc/client/hud/panel/quickmenu.qc:869 +#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:860 msgid "QMCMD^Settings" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:840 -#: qcsrc/client/hud/panel/quickmenu.qc:847 +#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:838 msgid "QMCMD^View/HUD settings" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:841 +#: qcsrc/client/hud/panel/quickmenu.qc:832 msgid "QMCMD^3rd person view" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:842 +#: qcsrc/client/hud/panel/quickmenu.qc:833 msgid "QMCMD^Player models like mine" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:843 +#: qcsrc/client/hud/panel/quickmenu.qc:834 msgid "QMCMD^Names above players" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:844 +#: qcsrc/client/hud/panel/quickmenu.qc:835 msgid "QMCMD^Crosshair per weapon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:845 +#: qcsrc/client/hud/panel/quickmenu.qc:836 msgid "QMCMD^FPS" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:846 +#: qcsrc/client/hud/panel/quickmenu.qc:837 msgid "QMCMD^Net graph" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:849 -#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:840 +#: qcsrc/client/hud/panel/quickmenu.qc:843 msgid "QMCMD^Sound settings" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:850 +#: qcsrc/client/hud/panel/quickmenu.qc:841 msgid "QMCMD^Hit sound" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:851 +#: qcsrc/client/hud/panel/quickmenu.qc:842 msgid "QMCMD^Chat sound" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:856 +#: qcsrc/client/hud/panel/quickmenu.qc:847 msgid "QMCMD^Change spectator camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:861 -#: qcsrc/client/hud/panel/quickmenu.qc:865 +#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:856 msgid "QMCMD^Observer camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:853 msgid "QMCMD^Increase speed" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:863 +#: qcsrc/client/hud/panel/quickmenu.qc:854 msgid "QMCMD^Decrease speed" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:864 +#: qcsrc/client/hud/panel/quickmenu.qc:855 msgid "QMCMD^Wall collision" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:868 +#: qcsrc/client/hud/panel/quickmenu.qc:859 msgid "QMCMD^Fullscreen" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:871 -#: qcsrc/client/hud/panel/quickmenu.qc:881 +#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:872 msgid "QMCMD^Call a vote" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:872 +#: qcsrc/client/hud/panel/quickmenu.qc:863 msgid "QMCMD^Restart the map" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:873 +#: qcsrc/client/hud/panel/quickmenu.qc:864 msgid "QMCMD^End match" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:876 +#: qcsrc/client/hud/panel/quickmenu.qc:867 msgid "QMCMD^Reduce match time" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:877 +#: qcsrc/client/hud/panel/quickmenu.qc:868 msgid "QMCMD^Extend match time" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:880 +#: qcsrc/client/hud/panel/quickmenu.qc:871 msgid "QMCMD^Shuffle teams" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:885 +#: qcsrc/client/hud/panel/quickmenu.qc:876 msgid "QMCMD^Spectate a player" msgstr "" @@ -1229,14 +1229,14 @@ msgstr "Mata a todos los miembros del equipo enemigo para ganar la ronda" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 #: qcsrc/menu/xonotic/dialog_multiplayer_create.qc:105 msgid "Frag limit:" msgstr "" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 msgid "The amount of frags needed before the match will end" msgstr "" @@ -3267,7 +3267,7 @@ msgid "^BG%s%s^K1 was riddled full of holes by ^BG%s^K1's Machine Gun%s%s" msgstr "" #: qcsrc/common/notifications/all.inc:472 -#: qcsrc/common/notifications/all.inc:778 +#: qcsrc/common/notifications/all.inc:779 #, c-format msgid "^BGYou cannot place more than ^F2%s^BG mines at a time" msgstr "" @@ -4045,122 +4045,128 @@ msgstr "" msgid "^BGYou have no lives left, you must wait until the next match" msgstr "" -#: qcsrc/common/notifications/all.inc:707 +#: qcsrc/common/notifications/all.inc:706 +msgid "" +"^F4WARNING:^BG you can't rejoin this match after spectating.\n" +"Use the same command again to spectate anyway." +msgstr "" + +#: qcsrc/common/notifications/all.inc:708 #, c-format msgid "" "^BGWaiting for players to join...\n" "Need active players for: %s" msgstr "" -#: qcsrc/common/notifications/all.inc:708 +#: qcsrc/common/notifications/all.inc:709 #, c-format msgid "^BGWaiting for %s player(s) to join..." msgstr "" -#: qcsrc/common/notifications/all.inc:710 +#: qcsrc/common/notifications/all.inc:711 msgid "^BGYour weapon has been downgraded until you find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:711 +#: qcsrc/common/notifications/all.inc:712 msgid "^F4^COUNT^BG left to find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo or you'll be dead in ^F4^COUNT^BG!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo! ^F4^COUNT^BG left!" msgstr "" -#: qcsrc/common/notifications/all.inc:713 +#: qcsrc/common/notifications/all.inc:714 #, c-format msgid "^F2Extra lives remaining: ^K1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:715 qcsrc/menu/xonotic/campaign.qc:244 +#: qcsrc/common/notifications/all.inc:716 qcsrc/menu/xonotic/campaign.qc:244 #, c-format msgid "Level %s: " msgstr "" -#: qcsrc/common/notifications/all.inc:715 +#: qcsrc/common/notifications/all.inc:716 #, c-format msgid "^BGPress ^F2%s^BG to enter the game" msgstr "" -#: qcsrc/common/notifications/all.inc:718 +#: qcsrc/common/notifications/all.inc:719 #, c-format msgid "" "^F2^COUNT^BG until weapon change...\n" "Next weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:719 +#: qcsrc/common/notifications/all.inc:720 #, c-format msgid "^F2Active weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:721 +#: qcsrc/common/notifications/all.inc:722 #, c-format msgid "^BGYou captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:722 +#: qcsrc/common/notifications/all.inc:723 msgid "^BGYou captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:723 +#: qcsrc/common/notifications/all.inc:724 #, c-format msgid "^TC^TT^BG team captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:724 +#: qcsrc/common/notifications/all.inc:725 msgid "^TC^TT^BG team captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:725 +#: qcsrc/common/notifications/all.inc:726 msgid "^BGThis control point currently cannot be captured" msgstr "" -#: qcsrc/common/notifications/all.inc:726 +#: qcsrc/common/notifications/all.inc:727 msgid "" "^BGThe enemy generator cannot be destroyed yet\n" "^F2Capture some control points to unshield it" msgstr "" -#: qcsrc/common/notifications/all.inc:727 +#: qcsrc/common/notifications/all.inc:728 msgid "^BGThe ^TCenemy^BG generator is no longer shielded!" msgstr "" -#: qcsrc/common/notifications/all.inc:728 +#: qcsrc/common/notifications/all.inc:729 msgid "" "^K1Your generator is NOT shielded!\n" "^BGRe-capture control points to shield it!" msgstr "" -#: qcsrc/common/notifications/all.inc:729 +#: qcsrc/common/notifications/all.inc:730 #, c-format msgid "^BGPress ^F2%s^BG to teleport" msgstr "" -#: qcsrc/common/notifications/all.inc:730 +#: qcsrc/common/notifications/all.inc:731 #, c-format msgid "^BGTeleporting disabled for %s" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep fragging until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep scoring until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:733 +#: qcsrc/common/notifications/all.inc:734 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "\n" @@ -4169,136 +4175,136 @@ msgid "" "the faster the enemy generator decays" msgstr "" -#: qcsrc/common/notifications/all.inc:734 +#: qcsrc/common/notifications/all.inc:735 #, c-format msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "^BGAdded ^F4%s^BG to the game!" msgstr "" -#: qcsrc/common/notifications/all.inc:736 +#: qcsrc/common/notifications/all.inc:737 msgid "^K1In^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:737 +#: qcsrc/common/notifications/all.inc:738 msgid "^F3Out^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:738 +#: qcsrc/common/notifications/all.inc:739 msgid "^F1Portal creation failed" msgstr "" -#: qcsrc/common/notifications/all.inc:740 +#: qcsrc/common/notifications/all.inc:741 msgid "^F2Strength infuses your weapons with devastating power" msgstr "" -#: qcsrc/common/notifications/all.inc:741 +#: qcsrc/common/notifications/all.inc:742 msgid "^F2Strength has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:743 +#: qcsrc/common/notifications/all.inc:744 msgid "^F2Shield surrounds you" msgstr "" -#: qcsrc/common/notifications/all.inc:744 +#: qcsrc/common/notifications/all.inc:745 msgid "^F2Shield has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:746 +#: qcsrc/common/notifications/all.inc:747 msgid "^F2You are on speed" msgstr "" -#: qcsrc/common/notifications/all.inc:747 +#: qcsrc/common/notifications/all.inc:748 msgid "^F2Speed has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:749 +#: qcsrc/common/notifications/all.inc:750 msgid "^F2You are invisible" msgstr "" -#: qcsrc/common/notifications/all.inc:750 +#: qcsrc/common/notifications/all.inc:751 msgid "^F2Invisibility has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:752 +#: qcsrc/common/notifications/all.inc:753 msgid "^F2The race is over, finish your lap!" msgstr "" -#: qcsrc/common/notifications/all.inc:754 +#: qcsrc/common/notifications/all.inc:755 msgid "^BGSequence completed!" msgstr "" -#: qcsrc/common/notifications/all.inc:755 +#: qcsrc/common/notifications/all.inc:756 msgid "^BGThere are more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:756 +#: qcsrc/common/notifications/all.inc:757 #, c-format msgid "^BGOnly %s^BG more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:758 +#: qcsrc/common/notifications/all.inc:759 msgid "^F2Superweapons have broken down" msgstr "" -#: qcsrc/common/notifications/all.inc:759 +#: qcsrc/common/notifications/all.inc:760 msgid "^F2Superweapons have been lost" msgstr "" -#: qcsrc/common/notifications/all.inc:760 +#: qcsrc/common/notifications/all.inc:761 msgid "^F2You now have a superweapon" msgstr "" -#: qcsrc/common/notifications/all.inc:762 +#: qcsrc/common/notifications/all.inc:763 msgid "^K1Changing to ^TC^TT^K1 in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:763 +#: qcsrc/common/notifications/all.inc:764 msgid "^K1Changing team in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:764 +#: qcsrc/common/notifications/all.inc:765 msgid "^K1Spectating in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:765 +#: qcsrc/common/notifications/all.inc:766 msgid "^K1Suicide in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:767 +#: qcsrc/common/notifications/all.inc:768 msgid "^F4Timeout begins in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:768 +#: qcsrc/common/notifications/all.inc:769 msgid "^F4Timeout ends in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:770 +#: qcsrc/common/notifications/all.inc:771 msgid "^K1Cannot join given minigame session!" msgstr "" -#: qcsrc/common/notifications/all.inc:772 +#: qcsrc/common/notifications/all.inc:773 #, c-format msgid "^BGPress ^F2%s^BG to enter/exit the vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:773 +#: qcsrc/common/notifications/all.inc:774 #, c-format msgid "^BGPress ^F2%s^BG to enter the vehicle gunner" msgstr "" -#: qcsrc/common/notifications/all.inc:774 +#: qcsrc/common/notifications/all.inc:775 #, c-format msgid "^BGPress ^F2%s^BG to steal this vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:775 +#: qcsrc/common/notifications/all.inc:776 msgid "" "^F2The enemy is stealing one of your vehicles!\n" "^F4Stop them!" msgstr "" -#: qcsrc/common/notifications/all.inc:776 +#: qcsrc/common/notifications/all.inc:777 msgid "^F2Intruder detected, disabling shields!" msgstr "" diff --git a/common.fi.po b/common.fi.po index 1dc41e2b93..f6a2184570 100644 --- a/common.fi.po +++ b/common.fi.po @@ -6,15 +6,16 @@ # Dr. Jaska , 2020 # Dr. Jaska , 2020 # Henry 'Exitium' Sanmark , 2011 +# Jaakko Saarikko , 2022 # Jonas Sahlberg , 2015 # Oi Suomi On! , 2020,2022 msgid "" msgstr "" "Project-Id-Version: Xonotic\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-06 07:22+0100\n" -"PO-Revision-Date: 2022-03-06 06:22+0000\n" -"Last-Translator: divVerent \n" +"POT-Creation-Date: 2022-03-27 07:22+0200\n" +"PO-Revision-Date: 2013-09-12 16:53+0000\n" +"Last-Translator: Oi Suomi On! , 2020,2022\n" "Language-Team: Finnish (http://www.transifex.com/team-xonotic/xonotic/" "language/fi/)\n" "Language: fi\n" @@ -225,270 +226,270 @@ msgstr "^3ALT ^7+ ^3NUOLINÄPPÄIMET ^7hienosäätöä varten." msgid "Player %d" msgstr "Pelaaja %d" -#: qcsrc/client/hud/panel/quickmenu.qc:617 -#: qcsrc/client/hud/panel/quickmenu.qc:619 +#: qcsrc/client/hud/panel/quickmenu.qc:608 +#: qcsrc/client/hud/panel/quickmenu.qc:610 #, c-format msgid "Submenu%d" msgstr "Alivalikko%d" -#: qcsrc/client/hud/panel/quickmenu.qc:624 +#: qcsrc/client/hud/panel/quickmenu.qc:615 #, c-format msgid "Command%d" msgstr "Komento%d" -#: qcsrc/client/hud/panel/quickmenu.qc:650 +#: qcsrc/client/hud/panel/quickmenu.qc:641 msgid "Continue..." msgstr "Jatka..." -#: qcsrc/client/hud/panel/quickmenu.qc:807 -#: qcsrc/client/hud/panel/quickmenu.qc:814 +#: qcsrc/client/hud/panel/quickmenu.qc:798 +#: qcsrc/client/hud/panel/quickmenu.qc:805 msgid "Chat" msgstr "Keskustelu" -#: qcsrc/client/hud/panel/quickmenu.qc:808 +#: qcsrc/client/hud/panel/quickmenu.qc:799 msgid "QMCMD^Send public message to" msgstr "QMCMD^Lähetä julkinen viesti " -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^:-) / nice one" msgstr "QMCMD^:-) / se oli hieno" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^nice one" msgstr "QMCMD^se oli hieno" -#: qcsrc/client/hud/panel/quickmenu.qc:810 +#: qcsrc/client/hud/panel/quickmenu.qc:801 msgid "QMCMD^good game" msgstr "QMCMD^hyvä peli" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck" msgstr "QMCMD^hei / onnea matkaan" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck and have fun" msgstr "QMCMD^hei / onnea matkaan ja pidäthän hauskaa" -#: qcsrc/client/hud/panel/quickmenu.qc:813 +#: qcsrc/client/hud/panel/quickmenu.qc:804 msgid "QMCMD^Send in English" msgstr "QMCMD^Lähetä Suomeksi" -#: qcsrc/client/hud/panel/quickmenu.qc:818 -#: qcsrc/client/hud/panel/quickmenu.qc:834 +#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:825 msgid "QMCMD^Team chat" msgstr "QMCMD^joukkuekeskustelu" -#: qcsrc/client/hud/panel/quickmenu.qc:819 +#: qcsrc/client/hud/panel/quickmenu.qc:810 msgid "QMCMD^strength soon" msgstr "QMCMD^voimistus pian" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item %x^7 (l:%y^7)" msgstr "QMCMD^vapauta esine %x^7 (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item, icon" msgstr "QMCMD^vapaa esine, kuvake" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item (l:%l^7)" msgstr "QMCMD^otti esineen (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item, icon" msgstr "QMCMD^otti esineen, kuvake" -#: qcsrc/client/hud/panel/quickmenu.qc:822 +#: qcsrc/client/hud/panel/quickmenu.qc:813 msgid "QMCMD^negative" msgstr "QMCMD^negatiivinen" -#: qcsrc/client/hud/panel/quickmenu.qc:823 +#: qcsrc/client/hud/panel/quickmenu.qc:814 msgid "QMCMD^positive" msgstr "QMCMD^positiivinen" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^avuntarve (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help, icon" msgstr "QMCMD^avuntarve, kuvake" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen (l:%y^7)" msgstr "QMCMD^vihollinen havaittu (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen, icon" msgstr "QMCMD^vihollinen havaittu, kuvake" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen (l:%y^7)" msgstr "QMCMD^lippu havaittu (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen, icon" msgstr "QMCMD^lippu havaittu, kuvake" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^puolustaa (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending, icon" msgstr "QMCMD^puolustaa, kuvake" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^kuljeskelee (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming, icon" msgstr "QMCMD^kuljeskelee, kuvake" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^hyökkäämässä (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking, icon" msgstr "QMCMD^hyökkäämässä, kuvake" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier (l:%y^7)" msgstr "QMCMD^lipunkantaja tapettu (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier, icon" msgstr "QMCMD^lipunkantaja tapettu, kuvake" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 #, c-format msgid "QMCMD^dropped flag (l:%d^7)" msgstr "QMCMD^lippu pudotettu (l:%d^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 msgid "QMCMD^dropped flag, icon" msgstr "QMCMD^lippu pudotettu, kuvake" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^drop weapon, icon" msgstr "QMCMD^pudota ase, kuvake" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^dropped weapon %w^7 (l:%l^7)" msgstr "QMCMD^ase pudotettu %w^7 (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^drop flag/key, icon" msgstr "QMCMD^pudota lippu/avain, kuvake" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^dropped flag/key %w^7 (l:%l^7)" msgstr "QMCMD^pudotettu lippu/avain %w^7 (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:837 +#: qcsrc/client/hud/panel/quickmenu.qc:828 msgid "QMCMD^Send private message to" msgstr "QMCMD^Lähetä yksityisviesti" -#: qcsrc/client/hud/panel/quickmenu.qc:839 -#: qcsrc/client/hud/panel/quickmenu.qc:869 +#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:860 msgid "QMCMD^Settings" msgstr "QMCMD^Asetukset" -#: qcsrc/client/hud/panel/quickmenu.qc:840 -#: qcsrc/client/hud/panel/quickmenu.qc:847 +#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:838 msgid "QMCMD^View/HUD settings" msgstr "QMCMD^Katso/HUD-asetukset" -#: qcsrc/client/hud/panel/quickmenu.qc:841 +#: qcsrc/client/hud/panel/quickmenu.qc:832 msgid "QMCMD^3rd person view" msgstr "QMCMD^näkymä kolmannessa persoonassa" -#: qcsrc/client/hud/panel/quickmenu.qc:842 +#: qcsrc/client/hud/panel/quickmenu.qc:833 msgid "QMCMD^Player models like mine" msgstr "QMCMD^Pelaajamallit, jotka vastaavat omaani" -#: qcsrc/client/hud/panel/quickmenu.qc:843 +#: qcsrc/client/hud/panel/quickmenu.qc:834 msgid "QMCMD^Names above players" msgstr "QMCMD^Nimet pelaajien yläpuolella" -#: qcsrc/client/hud/panel/quickmenu.qc:844 +#: qcsrc/client/hud/panel/quickmenu.qc:835 msgid "QMCMD^Crosshair per weapon" msgstr "QMCMD^Asekohtainen tähtäin" -#: qcsrc/client/hud/panel/quickmenu.qc:845 +#: qcsrc/client/hud/panel/quickmenu.qc:836 msgid "QMCMD^FPS" msgstr "QMCMD^FPS-ruutunopeus" -#: qcsrc/client/hud/panel/quickmenu.qc:846 +#: qcsrc/client/hud/panel/quickmenu.qc:837 msgid "QMCMD^Net graph" msgstr "QMCMD^Nettomallinnus" -#: qcsrc/client/hud/panel/quickmenu.qc:849 -#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:840 +#: qcsrc/client/hud/panel/quickmenu.qc:843 msgid "QMCMD^Sound settings" msgstr "QMCMD^Ääniasetukset" -#: qcsrc/client/hud/panel/quickmenu.qc:850 +#: qcsrc/client/hud/panel/quickmenu.qc:841 msgid "QMCMD^Hit sound" msgstr "QMCMD^Osumaääni" -#: qcsrc/client/hud/panel/quickmenu.qc:851 +#: qcsrc/client/hud/panel/quickmenu.qc:842 msgid "QMCMD^Chat sound" msgstr "QMCMD^Chat-keskustelun ääni" -#: qcsrc/client/hud/panel/quickmenu.qc:856 +#: qcsrc/client/hud/panel/quickmenu.qc:847 msgid "QMCMD^Change spectator camera" msgstr "QMCMD^Muuta katselijakameraa" -#: qcsrc/client/hud/panel/quickmenu.qc:861 -#: qcsrc/client/hud/panel/quickmenu.qc:865 +#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:856 msgid "QMCMD^Observer camera" msgstr "QMCMD^Tarkkailijakamera" -#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:853 msgid "QMCMD^Increase speed" msgstr "QMCMD^Korota nopeutta" -#: qcsrc/client/hud/panel/quickmenu.qc:863 +#: qcsrc/client/hud/panel/quickmenu.qc:854 msgid "QMCMD^Decrease speed" msgstr "QMCMD^Vähennä nopeutta" -#: qcsrc/client/hud/panel/quickmenu.qc:864 +#: qcsrc/client/hud/panel/quickmenu.qc:855 msgid "QMCMD^Wall collision" msgstr "QMCMD^Seinätörmäys" -#: qcsrc/client/hud/panel/quickmenu.qc:868 +#: qcsrc/client/hud/panel/quickmenu.qc:859 msgid "QMCMD^Fullscreen" msgstr "QMCMD^Kokoruutu" -#: qcsrc/client/hud/panel/quickmenu.qc:871 -#: qcsrc/client/hud/panel/quickmenu.qc:881 +#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:872 msgid "QMCMD^Call a vote" msgstr "QMCMD^Pyydä äänestystä" -#: qcsrc/client/hud/panel/quickmenu.qc:872 +#: qcsrc/client/hud/panel/quickmenu.qc:863 msgid "QMCMD^Restart the map" msgstr "QMCMD^Uudelleenkäynnistä kartta" -#: qcsrc/client/hud/panel/quickmenu.qc:873 +#: qcsrc/client/hud/panel/quickmenu.qc:864 msgid "QMCMD^End match" msgstr "QMCMD^Lopeta ottelu" -#: qcsrc/client/hud/panel/quickmenu.qc:876 +#: qcsrc/client/hud/panel/quickmenu.qc:867 msgid "QMCMD^Reduce match time" msgstr "QMCMD^Vähennä otteluaikaa" -#: qcsrc/client/hud/panel/quickmenu.qc:877 +#: qcsrc/client/hud/panel/quickmenu.qc:868 msgid "QMCMD^Extend match time" msgstr "QMCMD^Lisää otteluaikaa" -#: qcsrc/client/hud/panel/quickmenu.qc:880 +#: qcsrc/client/hud/panel/quickmenu.qc:871 msgid "QMCMD^Shuffle teams" msgstr "QMCMD^Sekoita joukkueet" -#: qcsrc/client/hud/panel/quickmenu.qc:885 +#: qcsrc/client/hud/panel/quickmenu.qc:876 msgid "QMCMD^Spectate a player" msgstr "QMCMD^Katsele pelaajaa" @@ -1067,7 +1068,7 @@ msgstr "mpk" #: qcsrc/client/hud/panel/timer.qc:132 msgid "Warmup" -msgstr "" +msgstr "Lämmittely" #: qcsrc/client/hud/panel/timer.qc:134 msgid "Timeout" @@ -1075,16 +1076,16 @@ msgstr "" #: qcsrc/client/hud/panel/timer.qc:136 msgid "Sudden Death" -msgstr "" +msgstr "Äkkikuolema" #: qcsrc/client/hud/panel/timer.qc:138 msgid "Overtime" -msgstr "" +msgstr "Yliaika" #: qcsrc/client/hud/panel/timer.qc:140 #, c-format msgid "Overtime #%d" -msgstr "" +msgstr "Yliaika #%d" #: qcsrc/client/hud/panel/vote.qc:30 msgid "^1You must answer before entering hud configure mode" @@ -1260,14 +1261,14 @@ msgstr "Tapa kaikki vihollisjoukkueen jäsenet voittaaksesi kierroksen" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 #: qcsrc/menu/xonotic/dialog_multiplayer_create.qc:105 msgid "Frag limit:" msgstr "Tapporaja:" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 msgid "The amount of frags needed before the match will end" msgstr "Tarvittava tappojen määrä ennen ottelun päättymistä" @@ -3355,7 +3356,7 @@ msgid "^BG%s%s^K1 was riddled full of holes by ^BG%s^K1's Machine Gun%s%s" msgstr "^BG%s%s^K1 koristeltiin reikiä täyteen ^BG%s^K1'n Konekiväärillä%s%s" #: qcsrc/common/notifications/all.inc:472 -#: qcsrc/common/notifications/all.inc:778 +#: qcsrc/common/notifications/all.inc:779 #, c-format msgid "^BGYou cannot place more than ^F2%s^BG mines at a time" msgstr "^BGEt voi asettaa enempää kuin ^F2%s^BG miinaa kerrallaan" @@ -4177,7 +4178,13 @@ msgstr "" "^BGSinulla ei ole enää elämiä jäljellä, sinun täytyy odottaa seuraavaa " "ottelua" -#: qcsrc/common/notifications/all.inc:707 +#: qcsrc/common/notifications/all.inc:706 +msgid "" +"^F4WARNING:^BG you can't rejoin this match after spectating.\n" +"Use the same command again to spectate anyway." +msgstr "" + +#: qcsrc/common/notifications/all.inc:708 #, c-format msgid "" "^BGWaiting for players to join...\n" @@ -4186,43 +4193,43 @@ msgstr "" "^BGPelaajia odotetaan liittyväksi...\n" "Aktiivisia tarvitaan: %s" -#: qcsrc/common/notifications/all.inc:708 +#: qcsrc/common/notifications/all.inc:709 #, c-format msgid "^BGWaiting for %s player(s) to join..." msgstr "^BGOdotetaan %s pelaajaa (pelaajia) liittymään..." -#: qcsrc/common/notifications/all.inc:710 +#: qcsrc/common/notifications/all.inc:711 msgid "^BGYour weapon has been downgraded until you find some ammo!" msgstr "^BGAseesi alasluokattiin kunnes löydät ammuksia!" -#: qcsrc/common/notifications/all.inc:711 +#: qcsrc/common/notifications/all.inc:712 msgid "^F4^COUNT^BG left to find some ammo!" msgstr "^F4^COUNT^BG jäljellä löytää ammuksia!" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo or you'll be dead in ^F4^COUNT^BG!" msgstr "^BGHanki ammuksia tai olet kuollut tuotapikaa ^F4^COUNT^BG!" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo! ^F4^COUNT^BG left!" msgstr "^BGHanki niitä ammuksia! ^F4^COUNT^BG jäljellä!" -#: qcsrc/common/notifications/all.inc:713 +#: qcsrc/common/notifications/all.inc:714 #, c-format msgid "^F2Extra lives remaining: ^K1%s" msgstr "^F2Lisäelämiä jäljellä: ^K1%s" -#: qcsrc/common/notifications/all.inc:715 qcsrc/menu/xonotic/campaign.qc:244 +#: qcsrc/common/notifications/all.inc:716 qcsrc/menu/xonotic/campaign.qc:244 #, c-format msgid "Level %s: " msgstr "Taso %s: " -#: qcsrc/common/notifications/all.inc:715 +#: qcsrc/common/notifications/all.inc:716 #, c-format msgid "^BGPress ^F2%s^BG to enter the game" msgstr "^BGPaina ^F2%s^BG liittyäksesi peliin" -#: qcsrc/common/notifications/all.inc:718 +#: qcsrc/common/notifications/all.inc:719 #, c-format msgid "" "^F2^COUNT^BG until weapon change...\n" @@ -4231,34 +4238,34 @@ msgstr "" "^F2^COUNT^BG jäljellä seuraavaan asevaihtoon...\n" "Seuraava ase: ^F1%s" -#: qcsrc/common/notifications/all.inc:719 +#: qcsrc/common/notifications/all.inc:720 #, c-format msgid "^F2Active weapon: ^F1%s" msgstr "^F2Aktiivinen ase: ^F1%s" -#: qcsrc/common/notifications/all.inc:721 +#: qcsrc/common/notifications/all.inc:722 #, c-format msgid "^BGYou captured %s^BG control point" msgstr "^BGKaappasit haltuusi %s^BG hallintapisteen" -#: qcsrc/common/notifications/all.inc:722 +#: qcsrc/common/notifications/all.inc:723 msgid "^BGYou captured a control point" msgstr "^BGSinä kaappasit hallintapisteen" -#: qcsrc/common/notifications/all.inc:723 +#: qcsrc/common/notifications/all.inc:724 #, c-format msgid "^TC^TT^BG team captured %s^BG control point" msgstr "^TC^TT^BG joukkue kaappasi %s^BG hallintapisteen" -#: qcsrc/common/notifications/all.inc:724 +#: qcsrc/common/notifications/all.inc:725 msgid "^TC^TT^BG team captured a control point" msgstr "^TC^TT^BG joukkue kaappasi hallintapisteen" -#: qcsrc/common/notifications/all.inc:725 +#: qcsrc/common/notifications/all.inc:726 msgid "^BGThis control point currently cannot be captured" msgstr "^BGTätä hallintapistettä ei nykyisellään voi kaapata haltuun" -#: qcsrc/common/notifications/all.inc:726 +#: qcsrc/common/notifications/all.inc:727 msgid "" "^BGThe enemy generator cannot be destroyed yet\n" "^F2Capture some control points to unshield it" @@ -4266,11 +4273,11 @@ msgstr "" "^BGVihollisgeneraattoria ei vielä voi tuhota\n" "^F2Kaappaa hallintapisteitä haltuusi riisuaksesi sen suojaukset" -#: qcsrc/common/notifications/all.inc:727 +#: qcsrc/common/notifications/all.inc:728 msgid "^BGThe ^TCenemy^BG generator is no longer shielded!" msgstr "^BGNyt ^TCvihollisten^BG generaattori on riisuttu suojauksistaan!" -#: qcsrc/common/notifications/all.inc:728 +#: qcsrc/common/notifications/all.inc:729 msgid "" "^K1Your generator is NOT shielded!\n" "^BGRe-capture control points to shield it!" @@ -4278,17 +4285,17 @@ msgstr "" "^K1Generaattorisi EI OLE suojattu!\n" "^BGKaappaa hallintapisteet takaisin suojataksesi sen!" -#: qcsrc/common/notifications/all.inc:729 +#: qcsrc/common/notifications/all.inc:730 #, c-format msgid "^BGPress ^F2%s^BG to teleport" msgstr "^BGPaina ^F2%s^BG etäsiirtyäksesi" -#: qcsrc/common/notifications/all.inc:730 +#: qcsrc/common/notifications/all.inc:731 #, c-format msgid "^BGTeleporting disabled for %s" msgstr "^BGEtäsiirto on kytketty pois %s :lle" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep fragging until we have a winner!" @@ -4296,7 +4303,7 @@ msgstr "" "^F2Nyt pelataan ^F4JATKOAIKAA^F2!\n" "Jatka frägäämistä kunnes voittaja selviää!" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep scoring until we have a winner!" @@ -4304,7 +4311,7 @@ msgstr "" "^F2Nyt pelataan ^F4JATKOAIKAA^F2!\n" "Jatka pisteiden takomista kunnes voittaja selviää!" -#: qcsrc/common/notifications/all.inc:733 +#: qcsrc/common/notifications/all.inc:734 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "\n" @@ -4318,7 +4325,7 @@ msgstr "" "Mitä enemmän hallintapisteitä joukkueesi pitää hallussa,\n" "sitä nopeammin vastustajan generaattorit hiipuvat" -#: qcsrc/common/notifications/all.inc:734 +#: qcsrc/common/notifications/all.inc:735 #, c-format msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" @@ -4327,123 +4334,123 @@ msgstr "" "^F2Nyt pelataan ^F4JATKOAIKAA^F2!\n" "^BGLisätty ^F4%s^BG peliin!" -#: qcsrc/common/notifications/all.inc:736 +#: qcsrc/common/notifications/all.inc:737 msgid "^K1In^BG-portal created" msgstr "^K1Sisäänkäynti^BG-portaali on luotu" -#: qcsrc/common/notifications/all.inc:737 +#: qcsrc/common/notifications/all.inc:738 msgid "^F3Out^BG-portal created" msgstr "^F3Uloskäynti^BG-portaali luotu" -#: qcsrc/common/notifications/all.inc:738 +#: qcsrc/common/notifications/all.inc:739 msgid "^F1Portal creation failed" msgstr "^F1Portaalin luominen epäonnistui" -#: qcsrc/common/notifications/all.inc:740 +#: qcsrc/common/notifications/all.inc:741 msgid "^F2Strength infuses your weapons with devastating power" msgstr "^F2Voima sytyttää aseesi tuhoisalla vahvuudella" -#: qcsrc/common/notifications/all.inc:741 +#: qcsrc/common/notifications/all.inc:742 msgid "^F2Strength has worn off" msgstr "^F2Voima ehtyi pois" -#: qcsrc/common/notifications/all.inc:743 +#: qcsrc/common/notifications/all.inc:744 msgid "^F2Shield surrounds you" msgstr "^F2Sinua ympäröi suojus" -#: qcsrc/common/notifications/all.inc:744 +#: qcsrc/common/notifications/all.inc:745 msgid "^F2Shield has worn off" msgstr "^F2Suoja ehtyi pois" -#: qcsrc/common/notifications/all.inc:746 +#: qcsrc/common/notifications/all.inc:747 msgid "^F2You are on speed" msgstr "^F2Olet vauhdissa" -#: qcsrc/common/notifications/all.inc:747 +#: qcsrc/common/notifications/all.inc:748 msgid "^F2Speed has worn off" msgstr "^F2Vauhti ehtyi pois" -#: qcsrc/common/notifications/all.inc:749 +#: qcsrc/common/notifications/all.inc:750 msgid "^F2You are invisible" msgstr "^F2Olet näkymätön" -#: qcsrc/common/notifications/all.inc:750 +#: qcsrc/common/notifications/all.inc:751 msgid "^F2Invisibility has worn off" msgstr "^F2Näkymättömyys ehtyi pois" -#: qcsrc/common/notifications/all.inc:752 +#: qcsrc/common/notifications/all.inc:753 msgid "^F2The race is over, finish your lap!" msgstr "^F2Kilpa on ohi, päätä kierroksesi päätökseen!" -#: qcsrc/common/notifications/all.inc:754 +#: qcsrc/common/notifications/all.inc:755 msgid "^BGSequence completed!" msgstr "^BGOsio saatettu päätökseen!" -#: qcsrc/common/notifications/all.inc:755 +#: qcsrc/common/notifications/all.inc:756 msgid "^BGThere are more to go..." msgstr "^BGEdessä on lisää..." -#: qcsrc/common/notifications/all.inc:756 +#: qcsrc/common/notifications/all.inc:757 #, c-format msgid "^BGOnly %s^BG more to go..." msgstr "^BGAinoastaan %s^BG jäljellä..." -#: qcsrc/common/notifications/all.inc:758 +#: qcsrc/common/notifications/all.inc:759 msgid "^F2Superweapons have broken down" msgstr "^F2Mahtiaseet ovat menneet rikki" -#: qcsrc/common/notifications/all.inc:759 +#: qcsrc/common/notifications/all.inc:760 msgid "^F2Superweapons have been lost" msgstr "^F2Mahtiaseet menetetty" -#: qcsrc/common/notifications/all.inc:760 +#: qcsrc/common/notifications/all.inc:761 msgid "^F2You now have a superweapon" msgstr "^F2Sinulla on nyt hallussasi mahtiase" -#: qcsrc/common/notifications/all.inc:762 +#: qcsrc/common/notifications/all.inc:763 msgid "^K1Changing to ^TC^TT^K1 in ^COUNT" msgstr "^K1Vaihdetaan ^TC^TT^K1 ajassa ^COUNT" -#: qcsrc/common/notifications/all.inc:763 +#: qcsrc/common/notifications/all.inc:764 msgid "^K1Changing team in ^COUNT" msgstr "^K1Vaihdetaan joukkuetta ajassa ^COUNT" -#: qcsrc/common/notifications/all.inc:764 +#: qcsrc/common/notifications/all.inc:765 msgid "^K1Spectating in ^COUNT" msgstr "^K1Katselu alkaa ^COUNT" -#: qcsrc/common/notifications/all.inc:765 +#: qcsrc/common/notifications/all.inc:766 msgid "^K1Suicide in ^COUNT" msgstr "^K1Itsemurha ajassa ^COUNT" -#: qcsrc/common/notifications/all.inc:767 +#: qcsrc/common/notifications/all.inc:768 msgid "^F4Timeout begins in ^COUNT" msgstr "^F4Aikalisä alkaa ^COUNT" -#: qcsrc/common/notifications/all.inc:768 +#: qcsrc/common/notifications/all.inc:769 msgid "^F4Timeout ends in ^COUNT" msgstr "^F4Aikalisä päättyy ajassa ^COUNT" -#: qcsrc/common/notifications/all.inc:770 +#: qcsrc/common/notifications/all.inc:771 msgid "^K1Cannot join given minigame session!" msgstr "^K1Annettuun pienpeli-istuntoon ei voitu liittyä!" -#: qcsrc/common/notifications/all.inc:772 +#: qcsrc/common/notifications/all.inc:773 #, c-format msgid "^BGPress ^F2%s^BG to enter/exit the vehicle" msgstr "^BGPaina ^F2%s^BG käydäksesi sisään/poistuaksesi ajoneuvosta" -#: qcsrc/common/notifications/all.inc:773 +#: qcsrc/common/notifications/all.inc:774 #, c-format msgid "^BGPress ^F2%s^BG to enter the vehicle gunner" msgstr "^BGPaina ^F2%s^BG käydäksesi sisälle ajoneuvon ampumisosaan" -#: qcsrc/common/notifications/all.inc:774 +#: qcsrc/common/notifications/all.inc:775 #, c-format msgid "^BGPress ^F2%s^BG to steal this vehicle" msgstr "^BGPaina ^F2%s^BG varastaaksesi ajoneuvon" -#: qcsrc/common/notifications/all.inc:775 +#: qcsrc/common/notifications/all.inc:776 msgid "" "^F2The enemy is stealing one of your vehicles!\n" "^F4Stop them!" @@ -4451,7 +4458,7 @@ msgstr "" "^F2Vihulainen varastaa yhtä ajoneuvoistasi!\n" "^F4Pysäytä heidät!" -#: qcsrc/common/notifications/all.inc:776 +#: qcsrc/common/notifications/all.inc:777 msgid "^F2Intruder detected, disabling shields!" msgstr "^F2Havaittu tunkeilija, kytketään suojat pois!" @@ -7275,7 +7282,7 @@ msgstr "Liity!" #: qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfo.qc:93 #: qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfo.qc:105 msgid "No Terms of Service specified" -msgstr "" +msgstr "Käyttöehtoja ei ole määritelty" #: qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfo.qc:144 #: qcsrc/menu/xonotic/serverlist.qc:1052 @@ -7358,11 +7365,11 @@ msgstr "" #: qcsrc/menu/xonotic/dialog_multiplayer_join_termsofservice.qh:7 #: qcsrc/menu/xonotic/dialog_termsofservice.qh:11 msgid "Terms of Service" -msgstr "" +msgstr "Käyttöehdot" #: qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfo.qh:7 msgid "Server Info" -msgstr "" +msgstr "Palvelimen tiedot" #: qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfotab.qc:24 msgid "Hostname:" @@ -9781,7 +9788,7 @@ msgstr "" #: qcsrc/menu/xonotic/dialog_termsofservice.qc:93 msgid "Accept" -msgstr "" +msgstr "Hyväksy" #: qcsrc/menu/xonotic/dialog_termsofservice.qc:97 msgid "Don't accept (quit the game)" diff --git a/common.fr.po b/common.fr.po index 739c3ba49a..071fff29d8 100644 --- a/common.fr.po +++ b/common.fr.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: Xonotic\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-06 07:22+0100\n" -"PO-Revision-Date: 2022-03-08 12:08+0000\n" -"Last-Translator: Yannick Le Guen \n" +"POT-Creation-Date: 2022-03-27 07:22+0200\n" +"PO-Revision-Date: 2013-09-12 16:53+0000\n" +"Last-Translator: Yannick Le Guen , 2013-2022\n" "Language-Team: French (http://www.transifex.com/team-xonotic/xonotic/" "language/fr/)\n" "Language: fr\n" @@ -235,282 +235,282 @@ msgstr "^3ALT ^7+ ^3TOUCHES FLÉCHÉES ^7pour des ajustements précis." msgid "Player %d" msgstr "Joueur %d" -#: qcsrc/client/hud/panel/quickmenu.qc:617 -#: qcsrc/client/hud/panel/quickmenu.qc:619 +#: qcsrc/client/hud/panel/quickmenu.qc:608 +#: qcsrc/client/hud/panel/quickmenu.qc:610 #, c-format msgid "Submenu%d" msgstr "Sous-menu%d" -#: qcsrc/client/hud/panel/quickmenu.qc:624 +#: qcsrc/client/hud/panel/quickmenu.qc:615 #, c-format msgid "Command%d" msgstr "Commande%d" -#: qcsrc/client/hud/panel/quickmenu.qc:650 +#: qcsrc/client/hud/panel/quickmenu.qc:641 msgid "Continue..." msgstr "Continuer…" -#: qcsrc/client/hud/panel/quickmenu.qc:807 -#: qcsrc/client/hud/panel/quickmenu.qc:814 +#: qcsrc/client/hud/panel/quickmenu.qc:798 +#: qcsrc/client/hud/panel/quickmenu.qc:805 msgid "Chat" msgstr "Tchat" -#: qcsrc/client/hud/panel/quickmenu.qc:808 +#: qcsrc/client/hud/panel/quickmenu.qc:799 msgid "QMCMD^Send public message to" msgstr "Envoyer un message public à" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^:-) / nice one" msgstr ":-) / joli" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^nice one" msgstr "joli" -#: qcsrc/client/hud/panel/quickmenu.qc:810 +#: qcsrc/client/hud/panel/quickmenu.qc:801 msgid "QMCMD^good game" msgstr "belle partie" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck" msgstr "salut / bonne chance" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck and have fun" msgstr "salut / bonne chance et amusez-vous bien" -#: qcsrc/client/hud/panel/quickmenu.qc:813 +#: qcsrc/client/hud/panel/quickmenu.qc:804 msgid "QMCMD^Send in English" msgstr "Envoyer en anglais" -#: qcsrc/client/hud/panel/quickmenu.qc:818 -#: qcsrc/client/hud/panel/quickmenu.qc:834 +#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:825 msgid "QMCMD^Team chat" msgstr "Tchat d'équipe" -#: qcsrc/client/hud/panel/quickmenu.qc:819 +#: qcsrc/client/hud/panel/quickmenu.qc:810 msgid "QMCMD^strength soon" msgstr "bientôt le bonus de Force" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item %x^7 (l:%y^7)" msgstr "objet disponible %x^7 (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item, icon" msgstr "objet disponible, icône" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item (l:%l^7)" msgstr "pris l'objet (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item, icon" msgstr "pris l'objet, icône" -#: qcsrc/client/hud/panel/quickmenu.qc:822 +#: qcsrc/client/hud/panel/quickmenu.qc:813 msgid "QMCMD^negative" msgstr "négatif" -#: qcsrc/client/hud/panel/quickmenu.qc:823 +#: qcsrc/client/hud/panel/quickmenu.qc:814 msgid "QMCMD^positive" msgstr "affirmatif" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "besoin d'aide (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help, icon" msgstr "besoin d'aide, icône" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen (l:%y^7)" msgstr "ennemi aperçu (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen, icon" msgstr "ennemi aperçu, icône" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen (l:%y^7)" msgstr "drapeau aperçu (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen, icon" msgstr "drapeau aperçu, icône" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "en défense (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending, icon" msgstr "en défense, icône" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "en itinérance (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming, icon" msgstr "en itinérance, icône" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "en attaque (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking, icon" msgstr "en attaque, icône" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier (l:%y^7)" msgstr "tué le porteur de drapeau (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier, icon" msgstr "tué le porteur de drapeau, icône" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 #, c-format msgid "QMCMD^dropped flag (l:%d^7)" msgstr "lâché le drapeau (l:%d^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 msgid "QMCMD^dropped flag, icon" msgstr "lâché le drapeau, icône" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^drop weapon, icon" msgstr "lâché l'arme, icône" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^dropped weapon %w^7 (l:%l^7)" msgstr "lâché l'arme %w^7 (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^drop flag/key, icon" msgstr "lâcher le drapeau / la clé, icône" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^dropped flag/key %w^7 (l:%l^7)" msgstr "lâché le drapeau / la clé %w^7 (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:837 +#: qcsrc/client/hud/panel/quickmenu.qc:828 msgid "QMCMD^Send private message to" msgstr "Envoyer un message privé à" -#: qcsrc/client/hud/panel/quickmenu.qc:839 -#: qcsrc/client/hud/panel/quickmenu.qc:869 +#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:860 msgid "QMCMD^Settings" msgstr "Paramètres" -#: qcsrc/client/hud/panel/quickmenu.qc:840 -#: qcsrc/client/hud/panel/quickmenu.qc:847 +#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:838 msgid "QMCMD^View/HUD settings" msgstr "Paramètres de vue / ATH" -#: qcsrc/client/hud/panel/quickmenu.qc:841 +#: qcsrc/client/hud/panel/quickmenu.qc:832 msgid "QMCMD^3rd person view" msgstr "Vue à la 3è personne" -#: qcsrc/client/hud/panel/quickmenu.qc:842 +#: qcsrc/client/hud/panel/quickmenu.qc:833 msgid "QMCMD^Player models like mine" msgstr "Apparence des joueurs semblable à la mienne" -#: qcsrc/client/hud/panel/quickmenu.qc:843 +#: qcsrc/client/hud/panel/quickmenu.qc:834 msgid "QMCMD^Names above players" msgstr "Noms au-dessus des joueurs" -#: qcsrc/client/hud/panel/quickmenu.qc:844 +#: qcsrc/client/hud/panel/quickmenu.qc:835 msgid "QMCMD^Crosshair per weapon" msgstr "Réticule selon l'arme" -#: qcsrc/client/hud/panel/quickmenu.qc:845 +#: qcsrc/client/hud/panel/quickmenu.qc:836 msgid "QMCMD^FPS" msgstr "IPS" -#: qcsrc/client/hud/panel/quickmenu.qc:846 +#: qcsrc/client/hud/panel/quickmenu.qc:837 msgid "QMCMD^Net graph" msgstr "Netgraphe" -#: qcsrc/client/hud/panel/quickmenu.qc:849 -#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:840 +#: qcsrc/client/hud/panel/quickmenu.qc:843 msgid "QMCMD^Sound settings" msgstr "Paramètres sonores" -#: qcsrc/client/hud/panel/quickmenu.qc:850 +#: qcsrc/client/hud/panel/quickmenu.qc:841 msgid "QMCMD^Hit sound" msgstr "Son de tir réussi" -#: qcsrc/client/hud/panel/quickmenu.qc:851 +#: qcsrc/client/hud/panel/quickmenu.qc:842 msgid "QMCMD^Chat sound" msgstr "Sons du tchat" -#: qcsrc/client/hud/panel/quickmenu.qc:856 +#: qcsrc/client/hud/panel/quickmenu.qc:847 msgid "QMCMD^Change spectator camera" msgstr "Changer de caméra spectateur" -#: qcsrc/client/hud/panel/quickmenu.qc:861 -#: qcsrc/client/hud/panel/quickmenu.qc:865 +#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:856 msgid "QMCMD^Observer camera" msgstr "Caméra observateur" -#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:853 msgid "QMCMD^Increase speed" msgstr "Augmenter la vitesse" -#: qcsrc/client/hud/panel/quickmenu.qc:863 +#: qcsrc/client/hud/panel/quickmenu.qc:854 msgid "QMCMD^Decrease speed" msgstr "Réduire la vitesse" -#: qcsrc/client/hud/panel/quickmenu.qc:864 +#: qcsrc/client/hud/panel/quickmenu.qc:855 msgid "QMCMD^Wall collision" msgstr "Collision avec les murs" -#: qcsrc/client/hud/panel/quickmenu.qc:868 +#: qcsrc/client/hud/panel/quickmenu.qc:859 msgid "QMCMD^Fullscreen" msgstr "Plein écran" -#: qcsrc/client/hud/panel/quickmenu.qc:871 -#: qcsrc/client/hud/panel/quickmenu.qc:881 +#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:872 msgid "QMCMD^Call a vote" msgstr "Lancer un vote" -#: qcsrc/client/hud/panel/quickmenu.qc:872 +#: qcsrc/client/hud/panel/quickmenu.qc:863 msgid "QMCMD^Restart the map" msgstr "Relancer la carte" -#: qcsrc/client/hud/panel/quickmenu.qc:873 +#: qcsrc/client/hud/panel/quickmenu.qc:864 msgid "QMCMD^End match" msgstr "Terminer la partie" -#: qcsrc/client/hud/panel/quickmenu.qc:876 +#: qcsrc/client/hud/panel/quickmenu.qc:867 msgid "QMCMD^Reduce match time" msgstr "Réduire la durée de jeu" -#: qcsrc/client/hud/panel/quickmenu.qc:877 +#: qcsrc/client/hud/panel/quickmenu.qc:868 msgid "QMCMD^Extend match time" msgstr "Étendre la durée de jeu" -#: qcsrc/client/hud/panel/quickmenu.qc:880 +#: qcsrc/client/hud/panel/quickmenu.qc:871 msgid "QMCMD^Shuffle teams" msgstr "Mélanger les équipes" -#: qcsrc/client/hud/panel/quickmenu.qc:885 +#: qcsrc/client/hud/panel/quickmenu.qc:876 msgid "QMCMD^Spectate a player" msgstr "Regarder un joueur" #: qcsrc/client/hud/panel/racetimer.qc:56 #, c-format msgid " (-%dL)" -msgstr " (-%dL)" +msgstr " (-%dT)" #: qcsrc/client/hud/panel/racetimer.qc:61 #, c-format msgid " (+%dL)" -msgstr " (+%dL)" +msgstr " (+%dT)" #: qcsrc/client/hud/panel/racetimer.qc:80 msgid "Start line" @@ -1276,14 +1276,14 @@ msgstr "Tuez tous les équipiers ennemis pour gagner la manche" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 #: qcsrc/menu/xonotic/dialog_multiplayer_create.qc:105 msgid "Frag limit:" msgstr "Limite de frags :" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 msgid "The amount of frags needed before the match will end" msgstr "Nombre de frags nécessaire pour terminer le match" @@ -3390,7 +3390,7 @@ msgid "^BG%s%s^K1 was riddled full of holes by ^BG%s^K1's Machine Gun%s%s" msgstr "^BG%s%s^K1 a été criblé de balles par la Mitraillette de ^BG%s^K1%s%s" #: qcsrc/common/notifications/all.inc:472 -#: qcsrc/common/notifications/all.inc:778 +#: qcsrc/common/notifications/all.inc:779 #, c-format msgid "^BGYou cannot place more than ^F2%s^BG mines at a time" msgstr "^BGVous ne pouvez pas placer plus de ^F2%s^BG mines à la fois" @@ -4213,7 +4213,16 @@ msgstr "^BGVous commencez avec la Clé ^TC^TT" msgid "^BGYou have no lives left, you must wait until the next match" msgstr "^BGVous n'avez plus de vies, vous devez attendre la prochaine partie" -#: qcsrc/common/notifications/all.inc:707 +#: qcsrc/common/notifications/all.inc:706 +msgid "" +"^F4WARNING:^BG you can't rejoin this match after spectating.\n" +"Use the same command again to spectate anyway." +msgstr "" +"^F4ATTENTION :^BG vous ne pourrez pas rejoindre ce match après avoir été " +"spectateur.\n" +"Utilisez à nouveau la même commande pour devenir spectateur malgré tout." + +#: qcsrc/common/notifications/all.inc:708 #, c-format msgid "" "^BGWaiting for players to join...\n" @@ -4222,44 +4231,44 @@ msgstr "" "^BGEn attente de joueurs…\n" "Joueurs requis pour : %s" -#: qcsrc/common/notifications/all.inc:708 +#: qcsrc/common/notifications/all.inc:709 #, c-format msgid "^BGWaiting for %s player(s) to join..." msgstr "^BGEn attente de %s joueur(s)…" -#: qcsrc/common/notifications/all.inc:710 +#: qcsrc/common/notifications/all.inc:711 msgid "^BGYour weapon has been downgraded until you find some ammo!" msgstr "" "^BGVotre arme a été déclassée jusqu'à ce que vous trouviez des munitions !" -#: qcsrc/common/notifications/all.inc:711 +#: qcsrc/common/notifications/all.inc:712 msgid "^F4^COUNT^BG left to find some ammo!" msgstr "^F4^COUNT^BG restantes pour trouver des munitions !" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo or you'll be dead in ^F4^COUNT^BG!" msgstr "^BGTrouvez des munitions ou vous allez mourir dans ^F4^COUNT^BG !" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo! ^F4^COUNT^BG left!" msgstr "^BGTrouvez des munitions ! ^F4^COUNT^BG restantes !" -#: qcsrc/common/notifications/all.inc:713 +#: qcsrc/common/notifications/all.inc:714 #, c-format msgid "^F2Extra lives remaining: ^K1%s" msgstr "^F2Vies supplémentaires restantes : ^K1%s" -#: qcsrc/common/notifications/all.inc:715 qcsrc/menu/xonotic/campaign.qc:244 +#: qcsrc/common/notifications/all.inc:716 qcsrc/menu/xonotic/campaign.qc:244 #, c-format msgid "Level %s: " msgstr "Niveau %s :" -#: qcsrc/common/notifications/all.inc:715 +#: qcsrc/common/notifications/all.inc:716 #, c-format msgid "^BGPress ^F2%s^BG to enter the game" msgstr "^BGAppuyez sur ^F2%s^BG pour rejoindre la partie" -#: qcsrc/common/notifications/all.inc:718 +#: qcsrc/common/notifications/all.inc:719 #, c-format msgid "" "^F2^COUNT^BG until weapon change...\n" @@ -4268,34 +4277,34 @@ msgstr "" "^F2^COUNT^BG avant le changement d'arme…\n" "Prochaine arme : ^F1%s" -#: qcsrc/common/notifications/all.inc:719 +#: qcsrc/common/notifications/all.inc:720 #, c-format msgid "^F2Active weapon: ^F1%s" msgstr "^F2Arme actuelle : ^F1%s" -#: qcsrc/common/notifications/all.inc:721 +#: qcsrc/common/notifications/all.inc:722 #, c-format msgid "^BGYou captured %s^BG control point" msgstr "^BGVous avez capturé le point de contrôle %s^BG" -#: qcsrc/common/notifications/all.inc:722 +#: qcsrc/common/notifications/all.inc:723 msgid "^BGYou captured a control point" msgstr "^BGVous avez capturé un point de contrôle" -#: qcsrc/common/notifications/all.inc:723 +#: qcsrc/common/notifications/all.inc:724 #, c-format msgid "^TC^TT^BG team captured %s^BG control point" msgstr "L'équipe ^TC^TT^BG a capturé le point de contrôle %s^BG" -#: qcsrc/common/notifications/all.inc:724 +#: qcsrc/common/notifications/all.inc:725 msgid "^TC^TT^BG team captured a control point" msgstr "^BGL'équipe ^TC^TT^BG a capturé un point de contrôle" -#: qcsrc/common/notifications/all.inc:725 +#: qcsrc/common/notifications/all.inc:726 msgid "^BGThis control point currently cannot be captured" msgstr "^BGCe point de contrôle ne peut pas être capturé actuellement" -#: qcsrc/common/notifications/all.inc:726 +#: qcsrc/common/notifications/all.inc:727 msgid "" "^BGThe enemy generator cannot be destroyed yet\n" "^F2Capture some control points to unshield it" @@ -4303,11 +4312,11 @@ msgstr "" "^BGLe générateur ennemi ne peut pas encore être détruit\n" "^F2Capturez des points de contrôle pour le rendre vulnérable" -#: qcsrc/common/notifications/all.inc:727 +#: qcsrc/common/notifications/all.inc:728 msgid "^BGThe ^TCenemy^BG generator is no longer shielded!" msgstr "^BGLe générateur ennemi n'est plus protégé !" -#: qcsrc/common/notifications/all.inc:728 +#: qcsrc/common/notifications/all.inc:729 msgid "" "^K1Your generator is NOT shielded!\n" "^BGRe-capture control points to shield it!" @@ -4315,17 +4324,17 @@ msgstr "" "^K1Votre générateur n'est PAS protégé !\n" "^BGRe-capturez des points de contrôle pour le protéger !" -#: qcsrc/common/notifications/all.inc:729 +#: qcsrc/common/notifications/all.inc:730 #, c-format msgid "^BGPress ^F2%s^BG to teleport" msgstr "^BGAppuyez sur ^F2%s^BG pour vous téléporter" -#: qcsrc/common/notifications/all.inc:730 +#: qcsrc/common/notifications/all.inc:731 #, c-format msgid "^BGTeleporting disabled for %s" msgstr "^BGTéléportation désactivée pendant %s" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep fragging until we have a winner!" @@ -4333,7 +4342,7 @@ msgstr "" "^F4PROLONGATIONS^F2 ^F2commencées !\n" "Continuez de jouer jusqu'à ce qu'il y ait un gagnant !" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep scoring until we have a winner!" @@ -4341,7 +4350,7 @@ msgstr "" "^F4PROLONGATIONS^F2 ^F2commencées !\n" "Continuez de marquer des points jusqu'à ce qu'il y ait un gagnant !" -#: qcsrc/common/notifications/all.inc:733 +#: qcsrc/common/notifications/all.inc:734 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "\n" @@ -4355,7 +4364,7 @@ msgstr "" "Plus votre équipe détient de points de contrôle,\n" "plus vite le générateur ennemi se détériore." -#: qcsrc/common/notifications/all.inc:734 +#: qcsrc/common/notifications/all.inc:735 #, c-format msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" @@ -4364,123 +4373,123 @@ msgstr "" "^F4PROLONGATIONS^F2 ^F2commencées !\n" "^BG^F4%s^BG de jeu supplémentaires !" -#: qcsrc/common/notifications/all.inc:736 +#: qcsrc/common/notifications/all.inc:737 msgid "^K1In^BG-portal created" msgstr "Portail ^K1entrant^BG créé" -#: qcsrc/common/notifications/all.inc:737 +#: qcsrc/common/notifications/all.inc:738 msgid "^F3Out^BG-portal created" msgstr "Portail ^F3sortant^BG créé" -#: qcsrc/common/notifications/all.inc:738 +#: qcsrc/common/notifications/all.inc:739 msgid "^F1Portal creation failed" msgstr "^F1Échec de la création du portail" -#: qcsrc/common/notifications/all.inc:740 +#: qcsrc/common/notifications/all.inc:741 msgid "^F2Strength infuses your weapons with devastating power" msgstr "^F2Le bonus de Force confère à vos armes une puissance dévastatrice" -#: qcsrc/common/notifications/all.inc:741 +#: qcsrc/common/notifications/all.inc:742 msgid "^F2Strength has worn off" msgstr "^F2Le bonus de Force a expiré" -#: qcsrc/common/notifications/all.inc:743 +#: qcsrc/common/notifications/all.inc:744 msgid "^F2Shield surrounds you" msgstr "^F2Le Bouclier vous entoure" -#: qcsrc/common/notifications/all.inc:744 +#: qcsrc/common/notifications/all.inc:745 msgid "^F2Shield has worn off" msgstr "^F2Le bonus de Bouclier a expiré" -#: qcsrc/common/notifications/all.inc:746 +#: qcsrc/common/notifications/all.inc:747 msgid "^F2You are on speed" msgstr "^F2Vous êtes rapide comme l'éclair" -#: qcsrc/common/notifications/all.inc:747 +#: qcsrc/common/notifications/all.inc:748 msgid "^F2Speed has worn off" msgstr "^F2Le bonus de Vitesse a expiré" -#: qcsrc/common/notifications/all.inc:749 +#: qcsrc/common/notifications/all.inc:750 msgid "^F2You are invisible" msgstr "^F2Vous êtes invisible" -#: qcsrc/common/notifications/all.inc:750 +#: qcsrc/common/notifications/all.inc:751 msgid "^F2Invisibility has worn off" msgstr "^F2Le bonus d'Invisibilité a expiré" -#: qcsrc/common/notifications/all.inc:752 +#: qcsrc/common/notifications/all.inc:753 msgid "^F2The race is over, finish your lap!" msgstr "^F2La course est terminée, finissez votre tour !" -#: qcsrc/common/notifications/all.inc:754 +#: qcsrc/common/notifications/all.inc:755 msgid "^BGSequence completed!" msgstr "^BGSéquence terminée !" -#: qcsrc/common/notifications/all.inc:755 +#: qcsrc/common/notifications/all.inc:756 msgid "^BGThere are more to go..." msgstr "^BGMais il y en a encore…" -#: qcsrc/common/notifications/all.inc:756 +#: qcsrc/common/notifications/all.inc:757 #, c-format msgid "^BGOnly %s^BG more to go..." msgstr "^BGEncore %s^BG à faire…" -#: qcsrc/common/notifications/all.inc:758 +#: qcsrc/common/notifications/all.inc:759 msgid "^F2Superweapons have broken down" msgstr "^F2Les Super-armes se sont désactivées" -#: qcsrc/common/notifications/all.inc:759 +#: qcsrc/common/notifications/all.inc:760 msgid "^F2Superweapons have been lost" msgstr "^F2Les Super-armes ont été égarées" -#: qcsrc/common/notifications/all.inc:760 +#: qcsrc/common/notifications/all.inc:761 msgid "^F2You now have a superweapon" msgstr "^F2Vous avez maintenant une super-arme" -#: qcsrc/common/notifications/all.inc:762 +#: qcsrc/common/notifications/all.inc:763 msgid "^K1Changing to ^TC^TT^K1 in ^COUNT" msgstr "^K1Changement vers ^TC^TT^K1 dans ^COUNT" -#: qcsrc/common/notifications/all.inc:763 +#: qcsrc/common/notifications/all.inc:764 msgid "^K1Changing team in ^COUNT" msgstr "^K1Changement d'équipe dans ^COUNT" -#: qcsrc/common/notifications/all.inc:764 +#: qcsrc/common/notifications/all.inc:765 msgid "^K1Spectating in ^COUNT" msgstr "^K1Spectateur dans ^COUNT" -#: qcsrc/common/notifications/all.inc:765 +#: qcsrc/common/notifications/all.inc:766 msgid "^K1Suicide in ^COUNT" msgstr "^K1Suicide dans ^COUNT" -#: qcsrc/common/notifications/all.inc:767 +#: qcsrc/common/notifications/all.inc:768 msgid "^F4Timeout begins in ^COUNT" msgstr "^F4Le temps mort commence dans ^COUNT" -#: qcsrc/common/notifications/all.inc:768 +#: qcsrc/common/notifications/all.inc:769 msgid "^F4Timeout ends in ^COUNT" msgstr "^F4Fin du temps mort dans ^COUNT" -#: qcsrc/common/notifications/all.inc:770 +#: qcsrc/common/notifications/all.inc:771 msgid "^K1Cannot join given minigame session!" msgstr "^K1Impossible de rejoindre cette session de mini jeux !" -#: qcsrc/common/notifications/all.inc:772 +#: qcsrc/common/notifications/all.inc:773 #, c-format msgid "^BGPress ^F2%s^BG to enter/exit the vehicle" msgstr "^BGAppuyez sur ^F2%s^BG pour entrer / sortir du véhicule" -#: qcsrc/common/notifications/all.inc:773 +#: qcsrc/common/notifications/all.inc:774 #, c-format msgid "^BGPress ^F2%s^BG to enter the vehicle gunner" msgstr "^BGAppuyez sur ^F2%s^BG pour entrer dans le canon du véhicule" -#: qcsrc/common/notifications/all.inc:774 +#: qcsrc/common/notifications/all.inc:775 #, c-format msgid "^BGPress ^F2%s^BG to steal this vehicle" msgstr "^BGAppuyez sur ^F2%s^BG pour voler ce véhicule" -#: qcsrc/common/notifications/all.inc:775 +#: qcsrc/common/notifications/all.inc:776 msgid "" "^F2The enemy is stealing one of your vehicles!\n" "^F4Stop them!" @@ -4488,7 +4497,7 @@ msgstr "" "^F2L'ennemi est en train de voler un de vos véhicules !\n" "^F4Arrêtez-le !" -#: qcsrc/common/notifications/all.inc:776 +#: qcsrc/common/notifications/all.inc:777 msgid "^F2Intruder detected, disabling shields!" msgstr "^F2Intrus détecté, boucliers désactivés !" diff --git a/common.ga.po b/common.ga.po index f8ffebf5a3..db985c389b 100644 --- a/common.ga.po +++ b/common.ga.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: Xonotic\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-06 07:22+0100\n" -"PO-Revision-Date: 2022-03-06 06:22+0000\n" -"Last-Translator: divVerent \n" +"POT-Creation-Date: 2022-03-27 07:22+0200\n" +"PO-Revision-Date: 2013-09-12 16:53+0000\n" +"Last-Translator: Kevin Scannell , 2017\n" "Language-Team: Irish (http://www.transifex.com/team-xonotic/xonotic/language/" "ga/)\n" "Language: ga\n" @@ -218,270 +218,270 @@ msgstr "" msgid "Player %d" msgstr "Imreoir %d" -#: qcsrc/client/hud/panel/quickmenu.qc:617 -#: qcsrc/client/hud/panel/quickmenu.qc:619 +#: qcsrc/client/hud/panel/quickmenu.qc:608 +#: qcsrc/client/hud/panel/quickmenu.qc:610 #, c-format msgid "Submenu%d" msgstr "Fo-roghchlár%d" -#: qcsrc/client/hud/panel/quickmenu.qc:624 +#: qcsrc/client/hud/panel/quickmenu.qc:615 #, c-format msgid "Command%d" msgstr "Ordú%d" -#: qcsrc/client/hud/panel/quickmenu.qc:650 +#: qcsrc/client/hud/panel/quickmenu.qc:641 msgid "Continue..." msgstr "Lean ar aghaidh..." -#: qcsrc/client/hud/panel/quickmenu.qc:807 -#: qcsrc/client/hud/panel/quickmenu.qc:814 +#: qcsrc/client/hud/panel/quickmenu.qc:798 +#: qcsrc/client/hud/panel/quickmenu.qc:805 msgid "Chat" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:808 +#: qcsrc/client/hud/panel/quickmenu.qc:799 msgid "QMCMD^Send public message to" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^:-) / nice one" msgstr ":-) / maith thú" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^nice one" msgstr "maith thú" -#: qcsrc/client/hud/panel/quickmenu.qc:810 +#: qcsrc/client/hud/panel/quickmenu.qc:801 msgid "QMCMD^good game" msgstr "cluiche maith" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck" msgstr "dia dhuit / ádh mór" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck and have fun" msgstr "dia dhuit / ádh mór agus bain sult as" -#: qcsrc/client/hud/panel/quickmenu.qc:813 +#: qcsrc/client/hud/panel/quickmenu.qc:804 msgid "QMCMD^Send in English" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:818 -#: qcsrc/client/hud/panel/quickmenu.qc:834 +#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:825 msgid "QMCMD^Team chat" msgstr "Comhrá foirne" -#: qcsrc/client/hud/panel/quickmenu.qc:819 +#: qcsrc/client/hud/panel/quickmenu.qc:810 msgid "QMCMD^strength soon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item %x^7 (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:822 +#: qcsrc/client/hud/panel/quickmenu.qc:813 msgid "QMCMD^negative" msgstr "diúltach" -#: qcsrc/client/hud/panel/quickmenu.qc:823 +#: qcsrc/client/hud/panel/quickmenu.qc:814 msgid "QMCMD^positive" msgstr "deimhneach" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 #, c-format msgid "QMCMD^dropped flag (l:%d^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 msgid "QMCMD^dropped flag, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^drop weapon, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^dropped weapon %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^drop flag/key, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^dropped flag/key %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:837 +#: qcsrc/client/hud/panel/quickmenu.qc:828 msgid "QMCMD^Send private message to" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:839 -#: qcsrc/client/hud/panel/quickmenu.qc:869 +#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:860 msgid "QMCMD^Settings" msgstr "Socruithe" -#: qcsrc/client/hud/panel/quickmenu.qc:840 -#: qcsrc/client/hud/panel/quickmenu.qc:847 +#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:838 msgid "QMCMD^View/HUD settings" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:841 +#: qcsrc/client/hud/panel/quickmenu.qc:832 msgid "QMCMD^3rd person view" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:842 +#: qcsrc/client/hud/panel/quickmenu.qc:833 msgid "QMCMD^Player models like mine" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:843 +#: qcsrc/client/hud/panel/quickmenu.qc:834 msgid "QMCMD^Names above players" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:844 +#: qcsrc/client/hud/panel/quickmenu.qc:835 msgid "QMCMD^Crosshair per weapon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:845 +#: qcsrc/client/hud/panel/quickmenu.qc:836 msgid "QMCMD^FPS" msgstr "FSS" -#: qcsrc/client/hud/panel/quickmenu.qc:846 +#: qcsrc/client/hud/panel/quickmenu.qc:837 msgid "QMCMD^Net graph" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:849 -#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:840 +#: qcsrc/client/hud/panel/quickmenu.qc:843 msgid "QMCMD^Sound settings" msgstr "Socruithe fuaime" -#: qcsrc/client/hud/panel/quickmenu.qc:850 +#: qcsrc/client/hud/panel/quickmenu.qc:841 msgid "QMCMD^Hit sound" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:851 +#: qcsrc/client/hud/panel/quickmenu.qc:842 msgid "QMCMD^Chat sound" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:856 +#: qcsrc/client/hud/panel/quickmenu.qc:847 msgid "QMCMD^Change spectator camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:861 -#: qcsrc/client/hud/panel/quickmenu.qc:865 +#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:856 msgid "QMCMD^Observer camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:853 msgid "QMCMD^Increase speed" msgstr "Géarú luais" -#: qcsrc/client/hud/panel/quickmenu.qc:863 +#: qcsrc/client/hud/panel/quickmenu.qc:854 msgid "QMCMD^Decrease speed" msgstr "Maolú luais" -#: qcsrc/client/hud/panel/quickmenu.qc:864 +#: qcsrc/client/hud/panel/quickmenu.qc:855 msgid "QMCMD^Wall collision" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:868 +#: qcsrc/client/hud/panel/quickmenu.qc:859 msgid "QMCMD^Fullscreen" msgstr "Lánscáileán" -#: qcsrc/client/hud/panel/quickmenu.qc:871 -#: qcsrc/client/hud/panel/quickmenu.qc:881 +#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:872 msgid "QMCMD^Call a vote" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:872 +#: qcsrc/client/hud/panel/quickmenu.qc:863 msgid "QMCMD^Restart the map" msgstr "Atosaigh an léarscáil" -#: qcsrc/client/hud/panel/quickmenu.qc:873 +#: qcsrc/client/hud/panel/quickmenu.qc:864 msgid "QMCMD^End match" msgstr "Cuir deireadh leis an mbabhta" -#: qcsrc/client/hud/panel/quickmenu.qc:876 +#: qcsrc/client/hud/panel/quickmenu.qc:867 msgid "QMCMD^Reduce match time" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:877 +#: qcsrc/client/hud/panel/quickmenu.qc:868 msgid "QMCMD^Extend match time" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:880 +#: qcsrc/client/hud/panel/quickmenu.qc:871 msgid "QMCMD^Shuffle teams" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:885 +#: qcsrc/client/hud/panel/quickmenu.qc:876 msgid "QMCMD^Spectate a player" msgstr "" @@ -1230,14 +1230,14 @@ msgstr "" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 #: qcsrc/menu/xonotic/dialog_multiplayer_create.qc:105 msgid "Frag limit:" msgstr "" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 msgid "The amount of frags needed before the match will end" msgstr "" @@ -3268,7 +3268,7 @@ msgid "^BG%s%s^K1 was riddled full of holes by ^BG%s^K1's Machine Gun%s%s" msgstr "" #: qcsrc/common/notifications/all.inc:472 -#: qcsrc/common/notifications/all.inc:778 +#: qcsrc/common/notifications/all.inc:779 #, c-format msgid "^BGYou cannot place more than ^F2%s^BG mines at a time" msgstr "" @@ -4046,122 +4046,128 @@ msgstr "" msgid "^BGYou have no lives left, you must wait until the next match" msgstr "" -#: qcsrc/common/notifications/all.inc:707 +#: qcsrc/common/notifications/all.inc:706 +msgid "" +"^F4WARNING:^BG you can't rejoin this match after spectating.\n" +"Use the same command again to spectate anyway." +msgstr "" + +#: qcsrc/common/notifications/all.inc:708 #, c-format msgid "" "^BGWaiting for players to join...\n" "Need active players for: %s" msgstr "" -#: qcsrc/common/notifications/all.inc:708 +#: qcsrc/common/notifications/all.inc:709 #, c-format msgid "^BGWaiting for %s player(s) to join..." msgstr "" -#: qcsrc/common/notifications/all.inc:710 +#: qcsrc/common/notifications/all.inc:711 msgid "^BGYour weapon has been downgraded until you find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:711 +#: qcsrc/common/notifications/all.inc:712 msgid "^F4^COUNT^BG left to find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo or you'll be dead in ^F4^COUNT^BG!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo! ^F4^COUNT^BG left!" msgstr "" -#: qcsrc/common/notifications/all.inc:713 +#: qcsrc/common/notifications/all.inc:714 #, c-format msgid "^F2Extra lives remaining: ^K1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:715 qcsrc/menu/xonotic/campaign.qc:244 +#: qcsrc/common/notifications/all.inc:716 qcsrc/menu/xonotic/campaign.qc:244 #, c-format msgid "Level %s: " msgstr "" -#: qcsrc/common/notifications/all.inc:715 +#: qcsrc/common/notifications/all.inc:716 #, c-format msgid "^BGPress ^F2%s^BG to enter the game" msgstr "" -#: qcsrc/common/notifications/all.inc:718 +#: qcsrc/common/notifications/all.inc:719 #, c-format msgid "" "^F2^COUNT^BG until weapon change...\n" "Next weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:719 +#: qcsrc/common/notifications/all.inc:720 #, c-format msgid "^F2Active weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:721 +#: qcsrc/common/notifications/all.inc:722 #, c-format msgid "^BGYou captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:722 +#: qcsrc/common/notifications/all.inc:723 msgid "^BGYou captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:723 +#: qcsrc/common/notifications/all.inc:724 #, c-format msgid "^TC^TT^BG team captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:724 +#: qcsrc/common/notifications/all.inc:725 msgid "^TC^TT^BG team captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:725 +#: qcsrc/common/notifications/all.inc:726 msgid "^BGThis control point currently cannot be captured" msgstr "" -#: qcsrc/common/notifications/all.inc:726 +#: qcsrc/common/notifications/all.inc:727 msgid "" "^BGThe enemy generator cannot be destroyed yet\n" "^F2Capture some control points to unshield it" msgstr "" -#: qcsrc/common/notifications/all.inc:727 +#: qcsrc/common/notifications/all.inc:728 msgid "^BGThe ^TCenemy^BG generator is no longer shielded!" msgstr "" -#: qcsrc/common/notifications/all.inc:728 +#: qcsrc/common/notifications/all.inc:729 msgid "" "^K1Your generator is NOT shielded!\n" "^BGRe-capture control points to shield it!" msgstr "" -#: qcsrc/common/notifications/all.inc:729 +#: qcsrc/common/notifications/all.inc:730 #, c-format msgid "^BGPress ^F2%s^BG to teleport" msgstr "" -#: qcsrc/common/notifications/all.inc:730 +#: qcsrc/common/notifications/all.inc:731 #, c-format msgid "^BGTeleporting disabled for %s" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep fragging until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep scoring until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:733 +#: qcsrc/common/notifications/all.inc:734 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "\n" @@ -4170,136 +4176,136 @@ msgid "" "the faster the enemy generator decays" msgstr "" -#: qcsrc/common/notifications/all.inc:734 +#: qcsrc/common/notifications/all.inc:735 #, c-format msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "^BGAdded ^F4%s^BG to the game!" msgstr "" -#: qcsrc/common/notifications/all.inc:736 +#: qcsrc/common/notifications/all.inc:737 msgid "^K1In^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:737 +#: qcsrc/common/notifications/all.inc:738 msgid "^F3Out^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:738 +#: qcsrc/common/notifications/all.inc:739 msgid "^F1Portal creation failed" msgstr "" -#: qcsrc/common/notifications/all.inc:740 +#: qcsrc/common/notifications/all.inc:741 msgid "^F2Strength infuses your weapons with devastating power" msgstr "" -#: qcsrc/common/notifications/all.inc:741 +#: qcsrc/common/notifications/all.inc:742 msgid "^F2Strength has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:743 +#: qcsrc/common/notifications/all.inc:744 msgid "^F2Shield surrounds you" msgstr "" -#: qcsrc/common/notifications/all.inc:744 +#: qcsrc/common/notifications/all.inc:745 msgid "^F2Shield has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:746 +#: qcsrc/common/notifications/all.inc:747 msgid "^F2You are on speed" msgstr "" -#: qcsrc/common/notifications/all.inc:747 +#: qcsrc/common/notifications/all.inc:748 msgid "^F2Speed has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:749 +#: qcsrc/common/notifications/all.inc:750 msgid "^F2You are invisible" msgstr "" -#: qcsrc/common/notifications/all.inc:750 +#: qcsrc/common/notifications/all.inc:751 msgid "^F2Invisibility has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:752 +#: qcsrc/common/notifications/all.inc:753 msgid "^F2The race is over, finish your lap!" msgstr "" -#: qcsrc/common/notifications/all.inc:754 +#: qcsrc/common/notifications/all.inc:755 msgid "^BGSequence completed!" msgstr "" -#: qcsrc/common/notifications/all.inc:755 +#: qcsrc/common/notifications/all.inc:756 msgid "^BGThere are more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:756 +#: qcsrc/common/notifications/all.inc:757 #, c-format msgid "^BGOnly %s^BG more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:758 +#: qcsrc/common/notifications/all.inc:759 msgid "^F2Superweapons have broken down" msgstr "" -#: qcsrc/common/notifications/all.inc:759 +#: qcsrc/common/notifications/all.inc:760 msgid "^F2Superweapons have been lost" msgstr "" -#: qcsrc/common/notifications/all.inc:760 +#: qcsrc/common/notifications/all.inc:761 msgid "^F2You now have a superweapon" msgstr "" -#: qcsrc/common/notifications/all.inc:762 +#: qcsrc/common/notifications/all.inc:763 msgid "^K1Changing to ^TC^TT^K1 in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:763 +#: qcsrc/common/notifications/all.inc:764 msgid "^K1Changing team in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:764 +#: qcsrc/common/notifications/all.inc:765 msgid "^K1Spectating in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:765 +#: qcsrc/common/notifications/all.inc:766 msgid "^K1Suicide in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:767 +#: qcsrc/common/notifications/all.inc:768 msgid "^F4Timeout begins in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:768 +#: qcsrc/common/notifications/all.inc:769 msgid "^F4Timeout ends in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:770 +#: qcsrc/common/notifications/all.inc:771 msgid "^K1Cannot join given minigame session!" msgstr "" -#: qcsrc/common/notifications/all.inc:772 +#: qcsrc/common/notifications/all.inc:773 #, c-format msgid "^BGPress ^F2%s^BG to enter/exit the vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:773 +#: qcsrc/common/notifications/all.inc:774 #, c-format msgid "^BGPress ^F2%s^BG to enter the vehicle gunner" msgstr "" -#: qcsrc/common/notifications/all.inc:774 +#: qcsrc/common/notifications/all.inc:775 #, c-format msgid "^BGPress ^F2%s^BG to steal this vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:775 +#: qcsrc/common/notifications/all.inc:776 msgid "" "^F2The enemy is stealing one of your vehicles!\n" "^F4Stop them!" msgstr "" -#: qcsrc/common/notifications/all.inc:776 +#: qcsrc/common/notifications/all.inc:777 msgid "^F2Intruder detected, disabling shields!" msgstr "" diff --git a/common.gd.po b/common.gd.po index 1d796b984b..9bcb6a27de 100644 --- a/common.gd.po +++ b/common.gd.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: Xonotic\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-06 07:22+0100\n" -"PO-Revision-Date: 2022-03-06 06:22+0000\n" -"Last-Translator: divVerent \n" +"POT-Creation-Date: 2022-03-27 07:22+0200\n" +"PO-Revision-Date: 2013-09-12 16:53+0000\n" +"Last-Translator: GunChleoc, 2017\n" "Language-Team: Gaelic, Scottish (http://www.transifex.com/team-xonotic/" "xonotic/language/gd/)\n" "Language: gd\n" @@ -225,270 +225,270 @@ msgstr "^3ALT ^7+ ^3IUCHRAICHEAN SAIGHDE ^7airson mion-ghleusadh." msgid "Player %d" msgstr "Cluicheadair %d" -#: qcsrc/client/hud/panel/quickmenu.qc:617 -#: qcsrc/client/hud/panel/quickmenu.qc:619 +#: qcsrc/client/hud/panel/quickmenu.qc:608 +#: qcsrc/client/hud/panel/quickmenu.qc:610 #, c-format msgid "Submenu%d" msgstr "Fo-chlàr-taice%d" -#: qcsrc/client/hud/panel/quickmenu.qc:624 +#: qcsrc/client/hud/panel/quickmenu.qc:615 #, c-format msgid "Command%d" msgstr "Àithne%d" -#: qcsrc/client/hud/panel/quickmenu.qc:650 +#: qcsrc/client/hud/panel/quickmenu.qc:641 msgid "Continue..." msgstr "Lean air adhart…" -#: qcsrc/client/hud/panel/quickmenu.qc:807 -#: qcsrc/client/hud/panel/quickmenu.qc:814 +#: qcsrc/client/hud/panel/quickmenu.qc:798 +#: qcsrc/client/hud/panel/quickmenu.qc:805 msgid "Chat" msgstr "Cabadaich" -#: qcsrc/client/hud/panel/quickmenu.qc:808 +#: qcsrc/client/hud/panel/quickmenu.qc:799 msgid "QMCMD^Send public message to" msgstr "QMCMD^Cuir teachdaireachd phoblach gu" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^:-) / nice one" msgstr ":-) / glè mhath" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^nice one" msgstr "glè mhath" -#: qcsrc/client/hud/panel/quickmenu.qc:810 +#: qcsrc/client/hud/panel/quickmenu.qc:801 msgid "QMCMD^good game" msgstr "deagh-gheana" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck" msgstr "sin sibh / gura math a thèid leibh" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck and have fun" msgstr "sin sibh / gura math a thèid leibh is gabhaibh tlachd" -#: qcsrc/client/hud/panel/quickmenu.qc:813 +#: qcsrc/client/hud/panel/quickmenu.qc:804 msgid "QMCMD^Send in English" msgstr "QMCMD^Cuir sa Bheurla" -#: qcsrc/client/hud/panel/quickmenu.qc:818 -#: qcsrc/client/hud/panel/quickmenu.qc:834 +#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:825 msgid "QMCMD^Team chat" msgstr "Cabadaich an sgioba" -#: qcsrc/client/hud/panel/quickmenu.qc:819 +#: qcsrc/client/hud/panel/quickmenu.qc:810 msgid "QMCMD^strength soon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item %x^7 (l:%y^7)" msgstr "nì an-asgaidh %x^7 (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item, icon" msgstr "nì an-asgaidh, ìomhaigheag" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item (l:%l^7)" msgstr "chaidh nì a thogail (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item, icon" msgstr "chaidh nì a thogail, ìomhaigheag" -#: qcsrc/client/hud/panel/quickmenu.qc:822 +#: qcsrc/client/hud/panel/quickmenu.qc:813 msgid "QMCMD^negative" msgstr "àicheach" -#: qcsrc/client/hud/panel/quickmenu.qc:823 +#: qcsrc/client/hud/panel/quickmenu.qc:814 msgid "QMCMD^positive" msgstr "dearbh" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "feumach air cobhair, (i:%l^7) (s:%h^7 d:%a^7 a:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help, icon" msgstr "feumach air cobhair, ìomhaigheag" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen (l:%y^7)" msgstr "chunnacas nàmhaid (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen, icon" msgstr "chunnacas nàmhaid, ìomhaigheag" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen (l:%y^7)" msgstr "chunnacas bratach (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen, icon" msgstr "chunnacas bratach, ìomhaigheag" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "a’ dìon (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending, icon" msgstr "a’ dìon, ìomhaigheag" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "a’ toirt ionnsaigh (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking, icon" msgstr "a’ toirt ionnsaigh, ìomhaigheag" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 #, c-format msgid "QMCMD^dropped flag (l:%d^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 msgid "QMCMD^dropped flag, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^drop weapon, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^dropped weapon %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^drop flag/key, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^dropped flag/key %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:837 +#: qcsrc/client/hud/panel/quickmenu.qc:828 msgid "QMCMD^Send private message to" msgstr "Cuir teachdaireachd phrìobhaideach gu" -#: qcsrc/client/hud/panel/quickmenu.qc:839 -#: qcsrc/client/hud/panel/quickmenu.qc:869 +#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:860 msgid "QMCMD^Settings" msgstr "Roghainnean" -#: qcsrc/client/hud/panel/quickmenu.qc:840 -#: qcsrc/client/hud/panel/quickmenu.qc:847 +#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:838 msgid "QMCMD^View/HUD settings" msgstr "Roghainnean an t-seallaidh/HUD" -#: qcsrc/client/hud/panel/quickmenu.qc:841 +#: qcsrc/client/hud/panel/quickmenu.qc:832 msgid "QMCMD^3rd person view" msgstr "Sealladh treas pearsa" -#: qcsrc/client/hud/panel/quickmenu.qc:842 +#: qcsrc/client/hud/panel/quickmenu.qc:833 msgid "QMCMD^Player models like mine" msgstr "Modailean chluicheadairean mar am fear agamsa" -#: qcsrc/client/hud/panel/quickmenu.qc:843 +#: qcsrc/client/hud/panel/quickmenu.qc:834 msgid "QMCMD^Names above players" msgstr "Ainmean os cionn nan cluicheadairean" -#: qcsrc/client/hud/panel/quickmenu.qc:844 +#: qcsrc/client/hud/panel/quickmenu.qc:835 msgid "QMCMD^Crosshair per weapon" msgstr "Crois-ribe gach airm" -#: qcsrc/client/hud/panel/quickmenu.qc:845 +#: qcsrc/client/hud/panel/quickmenu.qc:836 msgid "QMCMD^FPS" msgstr "FPS" -#: qcsrc/client/hud/panel/quickmenu.qc:846 +#: qcsrc/client/hud/panel/quickmenu.qc:837 msgid "QMCMD^Net graph" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:849 -#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:840 +#: qcsrc/client/hud/panel/quickmenu.qc:843 msgid "QMCMD^Sound settings" msgstr "Roghainnean fuaime" -#: qcsrc/client/hud/panel/quickmenu.qc:850 +#: qcsrc/client/hud/panel/quickmenu.qc:841 msgid "QMCMD^Hit sound" msgstr "Fuaim bualaidh" -#: qcsrc/client/hud/panel/quickmenu.qc:851 +#: qcsrc/client/hud/panel/quickmenu.qc:842 msgid "QMCMD^Chat sound" msgstr "Fuaim na cabadaich" -#: qcsrc/client/hud/panel/quickmenu.qc:856 +#: qcsrc/client/hud/panel/quickmenu.qc:847 msgid "QMCMD^Change spectator camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:861 -#: qcsrc/client/hud/panel/quickmenu.qc:865 +#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:856 msgid "QMCMD^Observer camera" msgstr "Camara an amhairc" -#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:853 msgid "QMCMD^Increase speed" msgstr "Dèan nas luaithe" -#: qcsrc/client/hud/panel/quickmenu.qc:863 +#: qcsrc/client/hud/panel/quickmenu.qc:854 msgid "QMCMD^Decrease speed" msgstr "Dèan nas maille" -#: qcsrc/client/hud/panel/quickmenu.qc:864 +#: qcsrc/client/hud/panel/quickmenu.qc:855 msgid "QMCMD^Wall collision" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:868 +#: qcsrc/client/hud/panel/quickmenu.qc:859 msgid "QMCMD^Fullscreen" msgstr "Làn-sgrìn" -#: qcsrc/client/hud/panel/quickmenu.qc:871 -#: qcsrc/client/hud/panel/quickmenu.qc:881 +#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:872 msgid "QMCMD^Call a vote" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:872 +#: qcsrc/client/hud/panel/quickmenu.qc:863 msgid "QMCMD^Restart the map" msgstr "Ath-thòisich am mapa" -#: qcsrc/client/hud/panel/quickmenu.qc:873 +#: qcsrc/client/hud/panel/quickmenu.qc:864 msgid "QMCMD^End match" msgstr "Cuir crìoch air a’ mhaids" -#: qcsrc/client/hud/panel/quickmenu.qc:876 +#: qcsrc/client/hud/panel/quickmenu.qc:867 msgid "QMCMD^Reduce match time" msgstr "Lùghdaich ùine a’ mhaids" -#: qcsrc/client/hud/panel/quickmenu.qc:877 +#: qcsrc/client/hud/panel/quickmenu.qc:868 msgid "QMCMD^Extend match time" msgstr "Meudaich ùine a’ mhaids" -#: qcsrc/client/hud/panel/quickmenu.qc:880 +#: qcsrc/client/hud/panel/quickmenu.qc:871 msgid "QMCMD^Shuffle teams" msgstr "Cuir na sgiobaidhean air thuaiream" -#: qcsrc/client/hud/panel/quickmenu.qc:885 +#: qcsrc/client/hud/panel/quickmenu.qc:876 msgid "QMCMD^Spectate a player" msgstr "" @@ -1237,14 +1237,14 @@ msgstr "" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 #: qcsrc/menu/xonotic/dialog_multiplayer_create.qc:105 msgid "Frag limit:" msgstr "" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 msgid "The amount of frags needed before the match will end" msgstr "" @@ -3279,7 +3279,7 @@ msgid "^BG%s%s^K1 was riddled full of holes by ^BG%s^K1's Machine Gun%s%s" msgstr "" #: qcsrc/common/notifications/all.inc:472 -#: qcsrc/common/notifications/all.inc:778 +#: qcsrc/common/notifications/all.inc:779 #, c-format msgid "^BGYou cannot place more than ^F2%s^BG mines at a time" msgstr "" @@ -4057,122 +4057,128 @@ msgstr "" msgid "^BGYou have no lives left, you must wait until the next match" msgstr "" -#: qcsrc/common/notifications/all.inc:707 +#: qcsrc/common/notifications/all.inc:706 +msgid "" +"^F4WARNING:^BG you can't rejoin this match after spectating.\n" +"Use the same command again to spectate anyway." +msgstr "" + +#: qcsrc/common/notifications/all.inc:708 #, c-format msgid "" "^BGWaiting for players to join...\n" "Need active players for: %s" msgstr "" -#: qcsrc/common/notifications/all.inc:708 +#: qcsrc/common/notifications/all.inc:709 #, c-format msgid "^BGWaiting for %s player(s) to join..." msgstr "" -#: qcsrc/common/notifications/all.inc:710 +#: qcsrc/common/notifications/all.inc:711 msgid "^BGYour weapon has been downgraded until you find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:711 +#: qcsrc/common/notifications/all.inc:712 msgid "^F4^COUNT^BG left to find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo or you'll be dead in ^F4^COUNT^BG!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo! ^F4^COUNT^BG left!" msgstr "" -#: qcsrc/common/notifications/all.inc:713 +#: qcsrc/common/notifications/all.inc:714 #, c-format msgid "^F2Extra lives remaining: ^K1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:715 qcsrc/menu/xonotic/campaign.qc:244 +#: qcsrc/common/notifications/all.inc:716 qcsrc/menu/xonotic/campaign.qc:244 #, c-format msgid "Level %s: " msgstr "" -#: qcsrc/common/notifications/all.inc:715 +#: qcsrc/common/notifications/all.inc:716 #, c-format msgid "^BGPress ^F2%s^BG to enter the game" msgstr "" -#: qcsrc/common/notifications/all.inc:718 +#: qcsrc/common/notifications/all.inc:719 #, c-format msgid "" "^F2^COUNT^BG until weapon change...\n" "Next weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:719 +#: qcsrc/common/notifications/all.inc:720 #, c-format msgid "^F2Active weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:721 +#: qcsrc/common/notifications/all.inc:722 #, c-format msgid "^BGYou captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:722 +#: qcsrc/common/notifications/all.inc:723 msgid "^BGYou captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:723 +#: qcsrc/common/notifications/all.inc:724 #, c-format msgid "^TC^TT^BG team captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:724 +#: qcsrc/common/notifications/all.inc:725 msgid "^TC^TT^BG team captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:725 +#: qcsrc/common/notifications/all.inc:726 msgid "^BGThis control point currently cannot be captured" msgstr "" -#: qcsrc/common/notifications/all.inc:726 +#: qcsrc/common/notifications/all.inc:727 msgid "" "^BGThe enemy generator cannot be destroyed yet\n" "^F2Capture some control points to unshield it" msgstr "" -#: qcsrc/common/notifications/all.inc:727 +#: qcsrc/common/notifications/all.inc:728 msgid "^BGThe ^TCenemy^BG generator is no longer shielded!" msgstr "" -#: qcsrc/common/notifications/all.inc:728 +#: qcsrc/common/notifications/all.inc:729 msgid "" "^K1Your generator is NOT shielded!\n" "^BGRe-capture control points to shield it!" msgstr "" -#: qcsrc/common/notifications/all.inc:729 +#: qcsrc/common/notifications/all.inc:730 #, c-format msgid "^BGPress ^F2%s^BG to teleport" msgstr "" -#: qcsrc/common/notifications/all.inc:730 +#: qcsrc/common/notifications/all.inc:731 #, c-format msgid "^BGTeleporting disabled for %s" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep fragging until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep scoring until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:733 +#: qcsrc/common/notifications/all.inc:734 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "\n" @@ -4181,136 +4187,136 @@ msgid "" "the faster the enemy generator decays" msgstr "" -#: qcsrc/common/notifications/all.inc:734 +#: qcsrc/common/notifications/all.inc:735 #, c-format msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "^BGAdded ^F4%s^BG to the game!" msgstr "" -#: qcsrc/common/notifications/all.inc:736 +#: qcsrc/common/notifications/all.inc:737 msgid "^K1In^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:737 +#: qcsrc/common/notifications/all.inc:738 msgid "^F3Out^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:738 +#: qcsrc/common/notifications/all.inc:739 msgid "^F1Portal creation failed" msgstr "" -#: qcsrc/common/notifications/all.inc:740 +#: qcsrc/common/notifications/all.inc:741 msgid "^F2Strength infuses your weapons with devastating power" msgstr "" -#: qcsrc/common/notifications/all.inc:741 +#: qcsrc/common/notifications/all.inc:742 msgid "^F2Strength has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:743 +#: qcsrc/common/notifications/all.inc:744 msgid "^F2Shield surrounds you" msgstr "" -#: qcsrc/common/notifications/all.inc:744 +#: qcsrc/common/notifications/all.inc:745 msgid "^F2Shield has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:746 +#: qcsrc/common/notifications/all.inc:747 msgid "^F2You are on speed" msgstr "" -#: qcsrc/common/notifications/all.inc:747 +#: qcsrc/common/notifications/all.inc:748 msgid "^F2Speed has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:749 +#: qcsrc/common/notifications/all.inc:750 msgid "^F2You are invisible" msgstr "" -#: qcsrc/common/notifications/all.inc:750 +#: qcsrc/common/notifications/all.inc:751 msgid "^F2Invisibility has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:752 +#: qcsrc/common/notifications/all.inc:753 msgid "^F2The race is over, finish your lap!" msgstr "" -#: qcsrc/common/notifications/all.inc:754 +#: qcsrc/common/notifications/all.inc:755 msgid "^BGSequence completed!" msgstr "" -#: qcsrc/common/notifications/all.inc:755 +#: qcsrc/common/notifications/all.inc:756 msgid "^BGThere are more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:756 +#: qcsrc/common/notifications/all.inc:757 #, c-format msgid "^BGOnly %s^BG more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:758 +#: qcsrc/common/notifications/all.inc:759 msgid "^F2Superweapons have broken down" msgstr "" -#: qcsrc/common/notifications/all.inc:759 +#: qcsrc/common/notifications/all.inc:760 msgid "^F2Superweapons have been lost" msgstr "" -#: qcsrc/common/notifications/all.inc:760 +#: qcsrc/common/notifications/all.inc:761 msgid "^F2You now have a superweapon" msgstr "" -#: qcsrc/common/notifications/all.inc:762 +#: qcsrc/common/notifications/all.inc:763 msgid "^K1Changing to ^TC^TT^K1 in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:763 +#: qcsrc/common/notifications/all.inc:764 msgid "^K1Changing team in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:764 +#: qcsrc/common/notifications/all.inc:765 msgid "^K1Spectating in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:765 +#: qcsrc/common/notifications/all.inc:766 msgid "^K1Suicide in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:767 +#: qcsrc/common/notifications/all.inc:768 msgid "^F4Timeout begins in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:768 +#: qcsrc/common/notifications/all.inc:769 msgid "^F4Timeout ends in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:770 +#: qcsrc/common/notifications/all.inc:771 msgid "^K1Cannot join given minigame session!" msgstr "" -#: qcsrc/common/notifications/all.inc:772 +#: qcsrc/common/notifications/all.inc:773 #, c-format msgid "^BGPress ^F2%s^BG to enter/exit the vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:773 +#: qcsrc/common/notifications/all.inc:774 #, c-format msgid "^BGPress ^F2%s^BG to enter the vehicle gunner" msgstr "" -#: qcsrc/common/notifications/all.inc:774 +#: qcsrc/common/notifications/all.inc:775 #, c-format msgid "^BGPress ^F2%s^BG to steal this vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:775 +#: qcsrc/common/notifications/all.inc:776 msgid "" "^F2The enemy is stealing one of your vehicles!\n" "^F4Stop them!" msgstr "" -#: qcsrc/common/notifications/all.inc:776 +#: qcsrc/common/notifications/all.inc:777 msgid "^F2Intruder detected, disabling shields!" msgstr "" diff --git a/common.gl.po b/common.gl.po index 86be5058f1..2fca8fc3d1 100644 --- a/common.gl.po +++ b/common.gl.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: Xonotic\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-06 07:22+0100\n" -"PO-Revision-Date: 2022-03-06 06:22+0000\n" -"Last-Translator: divVerent \n" +"POT-Creation-Date: 2022-03-27 07:22+0200\n" +"PO-Revision-Date: 2013-09-12 16:53+0000\n" +"Last-Translator: LegendGuard, 2020\n" "Language-Team: Galician (http://www.transifex.com/team-xonotic/xonotic/" "language/gl/)\n" "Language: gl\n" @@ -219,270 +219,270 @@ msgstr "" msgid "Player %d" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:617 -#: qcsrc/client/hud/panel/quickmenu.qc:619 +#: qcsrc/client/hud/panel/quickmenu.qc:608 +#: qcsrc/client/hud/panel/quickmenu.qc:610 #, c-format msgid "Submenu%d" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:624 +#: qcsrc/client/hud/panel/quickmenu.qc:615 #, c-format msgid "Command%d" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:650 +#: qcsrc/client/hud/panel/quickmenu.qc:641 msgid "Continue..." msgstr "Continúa..." -#: qcsrc/client/hud/panel/quickmenu.qc:807 -#: qcsrc/client/hud/panel/quickmenu.qc:814 +#: qcsrc/client/hud/panel/quickmenu.qc:798 +#: qcsrc/client/hud/panel/quickmenu.qc:805 msgid "Chat" msgstr "Chat" -#: qcsrc/client/hud/panel/quickmenu.qc:808 +#: qcsrc/client/hud/panel/quickmenu.qc:799 msgid "QMCMD^Send public message to" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^:-) / nice one" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^nice one" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:810 +#: qcsrc/client/hud/panel/quickmenu.qc:801 msgid "QMCMD^good game" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck and have fun" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:813 +#: qcsrc/client/hud/panel/quickmenu.qc:804 msgid "QMCMD^Send in English" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:818 -#: qcsrc/client/hud/panel/quickmenu.qc:834 +#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:825 msgid "QMCMD^Team chat" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:819 +#: qcsrc/client/hud/panel/quickmenu.qc:810 msgid "QMCMD^strength soon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item %x^7 (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:822 +#: qcsrc/client/hud/panel/quickmenu.qc:813 msgid "QMCMD^negative" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:823 +#: qcsrc/client/hud/panel/quickmenu.qc:814 msgid "QMCMD^positive" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 #, c-format msgid "QMCMD^dropped flag (l:%d^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 msgid "QMCMD^dropped flag, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^drop weapon, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^dropped weapon %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^drop flag/key, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^dropped flag/key %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:837 +#: qcsrc/client/hud/panel/quickmenu.qc:828 msgid "QMCMD^Send private message to" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:839 -#: qcsrc/client/hud/panel/quickmenu.qc:869 +#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:860 msgid "QMCMD^Settings" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:840 -#: qcsrc/client/hud/panel/quickmenu.qc:847 +#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:838 msgid "QMCMD^View/HUD settings" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:841 +#: qcsrc/client/hud/panel/quickmenu.qc:832 msgid "QMCMD^3rd person view" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:842 +#: qcsrc/client/hud/panel/quickmenu.qc:833 msgid "QMCMD^Player models like mine" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:843 +#: qcsrc/client/hud/panel/quickmenu.qc:834 msgid "QMCMD^Names above players" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:844 +#: qcsrc/client/hud/panel/quickmenu.qc:835 msgid "QMCMD^Crosshair per weapon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:845 +#: qcsrc/client/hud/panel/quickmenu.qc:836 msgid "QMCMD^FPS" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:846 +#: qcsrc/client/hud/panel/quickmenu.qc:837 msgid "QMCMD^Net graph" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:849 -#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:840 +#: qcsrc/client/hud/panel/quickmenu.qc:843 msgid "QMCMD^Sound settings" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:850 +#: qcsrc/client/hud/panel/quickmenu.qc:841 msgid "QMCMD^Hit sound" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:851 +#: qcsrc/client/hud/panel/quickmenu.qc:842 msgid "QMCMD^Chat sound" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:856 +#: qcsrc/client/hud/panel/quickmenu.qc:847 msgid "QMCMD^Change spectator camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:861 -#: qcsrc/client/hud/panel/quickmenu.qc:865 +#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:856 msgid "QMCMD^Observer camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:853 msgid "QMCMD^Increase speed" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:863 +#: qcsrc/client/hud/panel/quickmenu.qc:854 msgid "QMCMD^Decrease speed" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:864 +#: qcsrc/client/hud/panel/quickmenu.qc:855 msgid "QMCMD^Wall collision" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:868 +#: qcsrc/client/hud/panel/quickmenu.qc:859 msgid "QMCMD^Fullscreen" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:871 -#: qcsrc/client/hud/panel/quickmenu.qc:881 +#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:872 msgid "QMCMD^Call a vote" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:872 +#: qcsrc/client/hud/panel/quickmenu.qc:863 msgid "QMCMD^Restart the map" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:873 +#: qcsrc/client/hud/panel/quickmenu.qc:864 msgid "QMCMD^End match" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:876 +#: qcsrc/client/hud/panel/quickmenu.qc:867 msgid "QMCMD^Reduce match time" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:877 +#: qcsrc/client/hud/panel/quickmenu.qc:868 msgid "QMCMD^Extend match time" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:880 +#: qcsrc/client/hud/panel/quickmenu.qc:871 msgid "QMCMD^Shuffle teams" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:885 +#: qcsrc/client/hud/panel/quickmenu.qc:876 msgid "QMCMD^Spectate a player" msgstr "" @@ -1231,14 +1231,14 @@ msgstr "" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 #: qcsrc/menu/xonotic/dialog_multiplayer_create.qc:105 msgid "Frag limit:" msgstr "" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 msgid "The amount of frags needed before the match will end" msgstr "" @@ -3269,7 +3269,7 @@ msgid "^BG%s%s^K1 was riddled full of holes by ^BG%s^K1's Machine Gun%s%s" msgstr "" #: qcsrc/common/notifications/all.inc:472 -#: qcsrc/common/notifications/all.inc:778 +#: qcsrc/common/notifications/all.inc:779 #, c-format msgid "^BGYou cannot place more than ^F2%s^BG mines at a time" msgstr "" @@ -4047,122 +4047,128 @@ msgstr "" msgid "^BGYou have no lives left, you must wait until the next match" msgstr "" -#: qcsrc/common/notifications/all.inc:707 +#: qcsrc/common/notifications/all.inc:706 +msgid "" +"^F4WARNING:^BG you can't rejoin this match after spectating.\n" +"Use the same command again to spectate anyway." +msgstr "" + +#: qcsrc/common/notifications/all.inc:708 #, c-format msgid "" "^BGWaiting for players to join...\n" "Need active players for: %s" msgstr "" -#: qcsrc/common/notifications/all.inc:708 +#: qcsrc/common/notifications/all.inc:709 #, c-format msgid "^BGWaiting for %s player(s) to join..." msgstr "" -#: qcsrc/common/notifications/all.inc:710 +#: qcsrc/common/notifications/all.inc:711 msgid "^BGYour weapon has been downgraded until you find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:711 +#: qcsrc/common/notifications/all.inc:712 msgid "^F4^COUNT^BG left to find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo or you'll be dead in ^F4^COUNT^BG!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo! ^F4^COUNT^BG left!" msgstr "" -#: qcsrc/common/notifications/all.inc:713 +#: qcsrc/common/notifications/all.inc:714 #, c-format msgid "^F2Extra lives remaining: ^K1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:715 qcsrc/menu/xonotic/campaign.qc:244 +#: qcsrc/common/notifications/all.inc:716 qcsrc/menu/xonotic/campaign.qc:244 #, c-format msgid "Level %s: " msgstr "" -#: qcsrc/common/notifications/all.inc:715 +#: qcsrc/common/notifications/all.inc:716 #, c-format msgid "^BGPress ^F2%s^BG to enter the game" msgstr "" -#: qcsrc/common/notifications/all.inc:718 +#: qcsrc/common/notifications/all.inc:719 #, c-format msgid "" "^F2^COUNT^BG until weapon change...\n" "Next weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:719 +#: qcsrc/common/notifications/all.inc:720 #, c-format msgid "^F2Active weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:721 +#: qcsrc/common/notifications/all.inc:722 #, c-format msgid "^BGYou captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:722 +#: qcsrc/common/notifications/all.inc:723 msgid "^BGYou captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:723 +#: qcsrc/common/notifications/all.inc:724 #, c-format msgid "^TC^TT^BG team captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:724 +#: qcsrc/common/notifications/all.inc:725 msgid "^TC^TT^BG team captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:725 +#: qcsrc/common/notifications/all.inc:726 msgid "^BGThis control point currently cannot be captured" msgstr "" -#: qcsrc/common/notifications/all.inc:726 +#: qcsrc/common/notifications/all.inc:727 msgid "" "^BGThe enemy generator cannot be destroyed yet\n" "^F2Capture some control points to unshield it" msgstr "" -#: qcsrc/common/notifications/all.inc:727 +#: qcsrc/common/notifications/all.inc:728 msgid "^BGThe ^TCenemy^BG generator is no longer shielded!" msgstr "" -#: qcsrc/common/notifications/all.inc:728 +#: qcsrc/common/notifications/all.inc:729 msgid "" "^K1Your generator is NOT shielded!\n" "^BGRe-capture control points to shield it!" msgstr "" -#: qcsrc/common/notifications/all.inc:729 +#: qcsrc/common/notifications/all.inc:730 #, c-format msgid "^BGPress ^F2%s^BG to teleport" msgstr "" -#: qcsrc/common/notifications/all.inc:730 +#: qcsrc/common/notifications/all.inc:731 #, c-format msgid "^BGTeleporting disabled for %s" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep fragging until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep scoring until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:733 +#: qcsrc/common/notifications/all.inc:734 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "\n" @@ -4171,136 +4177,136 @@ msgid "" "the faster the enemy generator decays" msgstr "" -#: qcsrc/common/notifications/all.inc:734 +#: qcsrc/common/notifications/all.inc:735 #, c-format msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "^BGAdded ^F4%s^BG to the game!" msgstr "" -#: qcsrc/common/notifications/all.inc:736 +#: qcsrc/common/notifications/all.inc:737 msgid "^K1In^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:737 +#: qcsrc/common/notifications/all.inc:738 msgid "^F3Out^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:738 +#: qcsrc/common/notifications/all.inc:739 msgid "^F1Portal creation failed" msgstr "" -#: qcsrc/common/notifications/all.inc:740 +#: qcsrc/common/notifications/all.inc:741 msgid "^F2Strength infuses your weapons with devastating power" msgstr "" -#: qcsrc/common/notifications/all.inc:741 +#: qcsrc/common/notifications/all.inc:742 msgid "^F2Strength has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:743 +#: qcsrc/common/notifications/all.inc:744 msgid "^F2Shield surrounds you" msgstr "" -#: qcsrc/common/notifications/all.inc:744 +#: qcsrc/common/notifications/all.inc:745 msgid "^F2Shield has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:746 +#: qcsrc/common/notifications/all.inc:747 msgid "^F2You are on speed" msgstr "" -#: qcsrc/common/notifications/all.inc:747 +#: qcsrc/common/notifications/all.inc:748 msgid "^F2Speed has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:749 +#: qcsrc/common/notifications/all.inc:750 msgid "^F2You are invisible" msgstr "" -#: qcsrc/common/notifications/all.inc:750 +#: qcsrc/common/notifications/all.inc:751 msgid "^F2Invisibility has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:752 +#: qcsrc/common/notifications/all.inc:753 msgid "^F2The race is over, finish your lap!" msgstr "" -#: qcsrc/common/notifications/all.inc:754 +#: qcsrc/common/notifications/all.inc:755 msgid "^BGSequence completed!" msgstr "" -#: qcsrc/common/notifications/all.inc:755 +#: qcsrc/common/notifications/all.inc:756 msgid "^BGThere are more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:756 +#: qcsrc/common/notifications/all.inc:757 #, c-format msgid "^BGOnly %s^BG more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:758 +#: qcsrc/common/notifications/all.inc:759 msgid "^F2Superweapons have broken down" msgstr "" -#: qcsrc/common/notifications/all.inc:759 +#: qcsrc/common/notifications/all.inc:760 msgid "^F2Superweapons have been lost" msgstr "" -#: qcsrc/common/notifications/all.inc:760 +#: qcsrc/common/notifications/all.inc:761 msgid "^F2You now have a superweapon" msgstr "" -#: qcsrc/common/notifications/all.inc:762 +#: qcsrc/common/notifications/all.inc:763 msgid "^K1Changing to ^TC^TT^K1 in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:763 +#: qcsrc/common/notifications/all.inc:764 msgid "^K1Changing team in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:764 +#: qcsrc/common/notifications/all.inc:765 msgid "^K1Spectating in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:765 +#: qcsrc/common/notifications/all.inc:766 msgid "^K1Suicide in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:767 +#: qcsrc/common/notifications/all.inc:768 msgid "^F4Timeout begins in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:768 +#: qcsrc/common/notifications/all.inc:769 msgid "^F4Timeout ends in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:770 +#: qcsrc/common/notifications/all.inc:771 msgid "^K1Cannot join given minigame session!" msgstr "" -#: qcsrc/common/notifications/all.inc:772 +#: qcsrc/common/notifications/all.inc:773 #, c-format msgid "^BGPress ^F2%s^BG to enter/exit the vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:773 +#: qcsrc/common/notifications/all.inc:774 #, c-format msgid "^BGPress ^F2%s^BG to enter the vehicle gunner" msgstr "" -#: qcsrc/common/notifications/all.inc:774 +#: qcsrc/common/notifications/all.inc:775 #, c-format msgid "^BGPress ^F2%s^BG to steal this vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:775 +#: qcsrc/common/notifications/all.inc:776 msgid "" "^F2The enemy is stealing one of your vehicles!\n" "^F4Stop them!" msgstr "" -#: qcsrc/common/notifications/all.inc:776 +#: qcsrc/common/notifications/all.inc:777 msgid "^F2Intruder detected, disabling shields!" msgstr "" diff --git a/common.he.po b/common.he.po index 4ae9162c5a..8e8021e300 100644 --- a/common.he.po +++ b/common.he.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: Xonotic\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-06 07:22+0100\n" -"PO-Revision-Date: 2022-03-06 06:22+0000\n" -"Last-Translator: divVerent \n" +"POT-Creation-Date: 2022-03-27 07:22+0200\n" +"PO-Revision-Date: 2013-09-12 16:53+0000\n" +"Last-Translator: Tal Leibman , 2019\n" "Language-Team: Hebrew (http://www.transifex.com/team-xonotic/xonotic/" "language/he/)\n" "Language: he\n" @@ -222,270 +222,270 @@ msgstr "" msgid "Player %d" msgstr "שחקן %d" -#: qcsrc/client/hud/panel/quickmenu.qc:617 -#: qcsrc/client/hud/panel/quickmenu.qc:619 +#: qcsrc/client/hud/panel/quickmenu.qc:608 +#: qcsrc/client/hud/panel/quickmenu.qc:610 #, c-format msgid "Submenu%d" msgstr "תת-תפריט%d" -#: qcsrc/client/hud/panel/quickmenu.qc:624 +#: qcsrc/client/hud/panel/quickmenu.qc:615 #, c-format msgid "Command%d" msgstr "פקודה%d" -#: qcsrc/client/hud/panel/quickmenu.qc:650 +#: qcsrc/client/hud/panel/quickmenu.qc:641 msgid "Continue..." msgstr "המשך..." -#: qcsrc/client/hud/panel/quickmenu.qc:807 -#: qcsrc/client/hud/panel/quickmenu.qc:814 +#: qcsrc/client/hud/panel/quickmenu.qc:798 +#: qcsrc/client/hud/panel/quickmenu.qc:805 msgid "Chat" msgstr "צ׳אט" -#: qcsrc/client/hud/panel/quickmenu.qc:808 +#: qcsrc/client/hud/panel/quickmenu.qc:799 msgid "QMCMD^Send public message to" msgstr "QMCMD^שליחת הודעה פומבית אל" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^:-) / nice one" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^nice one" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:810 +#: qcsrc/client/hud/panel/quickmenu.qc:801 msgid "QMCMD^good game" msgstr "QMCMD^משחק טוב" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck" msgstr "QMCMD^אהלן / בהצלחה" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck and have fun" msgstr "QMCMD^אהלן / בהצלחה ושיהיה כיף" -#: qcsrc/client/hud/panel/quickmenu.qc:813 +#: qcsrc/client/hud/panel/quickmenu.qc:804 msgid "QMCMD^Send in English" msgstr "QMCMD^לשלוח באנגלית" -#: qcsrc/client/hud/panel/quickmenu.qc:818 -#: qcsrc/client/hud/panel/quickmenu.qc:834 +#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:825 msgid "QMCMD^Team chat" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:819 +#: qcsrc/client/hud/panel/quickmenu.qc:810 msgid "QMCMD^strength soon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item %x^7 (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:822 +#: qcsrc/client/hud/panel/quickmenu.qc:813 msgid "QMCMD^negative" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:823 +#: qcsrc/client/hud/panel/quickmenu.qc:814 msgid "QMCMD^positive" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 #, c-format msgid "QMCMD^dropped flag (l:%d^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 msgid "QMCMD^dropped flag, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^drop weapon, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^dropped weapon %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^drop flag/key, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^dropped flag/key %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:837 +#: qcsrc/client/hud/panel/quickmenu.qc:828 msgid "QMCMD^Send private message to" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:839 -#: qcsrc/client/hud/panel/quickmenu.qc:869 +#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:860 msgid "QMCMD^Settings" msgstr "QMCMD^הגדרות" -#: qcsrc/client/hud/panel/quickmenu.qc:840 -#: qcsrc/client/hud/panel/quickmenu.qc:847 +#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:838 msgid "QMCMD^View/HUD settings" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:841 +#: qcsrc/client/hud/panel/quickmenu.qc:832 msgid "QMCMD^3rd person view" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:842 +#: qcsrc/client/hud/panel/quickmenu.qc:833 msgid "QMCMD^Player models like mine" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:843 +#: qcsrc/client/hud/panel/quickmenu.qc:834 msgid "QMCMD^Names above players" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:844 +#: qcsrc/client/hud/panel/quickmenu.qc:835 msgid "QMCMD^Crosshair per weapon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:845 +#: qcsrc/client/hud/panel/quickmenu.qc:836 msgid "QMCMD^FPS" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:846 +#: qcsrc/client/hud/panel/quickmenu.qc:837 msgid "QMCMD^Net graph" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:849 -#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:840 +#: qcsrc/client/hud/panel/quickmenu.qc:843 msgid "QMCMD^Sound settings" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:850 +#: qcsrc/client/hud/panel/quickmenu.qc:841 msgid "QMCMD^Hit sound" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:851 +#: qcsrc/client/hud/panel/quickmenu.qc:842 msgid "QMCMD^Chat sound" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:856 +#: qcsrc/client/hud/panel/quickmenu.qc:847 msgid "QMCMD^Change spectator camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:861 -#: qcsrc/client/hud/panel/quickmenu.qc:865 +#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:856 msgid "QMCMD^Observer camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:853 msgid "QMCMD^Increase speed" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:863 +#: qcsrc/client/hud/panel/quickmenu.qc:854 msgid "QMCMD^Decrease speed" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:864 +#: qcsrc/client/hud/panel/quickmenu.qc:855 msgid "QMCMD^Wall collision" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:868 +#: qcsrc/client/hud/panel/quickmenu.qc:859 msgid "QMCMD^Fullscreen" msgstr "QMCMD^מסך מלא" -#: qcsrc/client/hud/panel/quickmenu.qc:871 -#: qcsrc/client/hud/panel/quickmenu.qc:881 +#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:872 msgid "QMCMD^Call a vote" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:872 +#: qcsrc/client/hud/panel/quickmenu.qc:863 msgid "QMCMD^Restart the map" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:873 +#: qcsrc/client/hud/panel/quickmenu.qc:864 msgid "QMCMD^End match" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:876 +#: qcsrc/client/hud/panel/quickmenu.qc:867 msgid "QMCMD^Reduce match time" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:877 +#: qcsrc/client/hud/panel/quickmenu.qc:868 msgid "QMCMD^Extend match time" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:880 +#: qcsrc/client/hud/panel/quickmenu.qc:871 msgid "QMCMD^Shuffle teams" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:885 +#: qcsrc/client/hud/panel/quickmenu.qc:876 msgid "QMCMD^Spectate a player" msgstr "" @@ -1234,14 +1234,14 @@ msgstr "" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 #: qcsrc/menu/xonotic/dialog_multiplayer_create.qc:105 msgid "Frag limit:" msgstr "" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 msgid "The amount of frags needed before the match will end" msgstr "" @@ -3272,7 +3272,7 @@ msgid "^BG%s%s^K1 was riddled full of holes by ^BG%s^K1's Machine Gun%s%s" msgstr "" #: qcsrc/common/notifications/all.inc:472 -#: qcsrc/common/notifications/all.inc:778 +#: qcsrc/common/notifications/all.inc:779 #, c-format msgid "^BGYou cannot place more than ^F2%s^BG mines at a time" msgstr "" @@ -4050,122 +4050,128 @@ msgstr "" msgid "^BGYou have no lives left, you must wait until the next match" msgstr "" -#: qcsrc/common/notifications/all.inc:707 +#: qcsrc/common/notifications/all.inc:706 +msgid "" +"^F4WARNING:^BG you can't rejoin this match after spectating.\n" +"Use the same command again to spectate anyway." +msgstr "" + +#: qcsrc/common/notifications/all.inc:708 #, c-format msgid "" "^BGWaiting for players to join...\n" "Need active players for: %s" msgstr "" -#: qcsrc/common/notifications/all.inc:708 +#: qcsrc/common/notifications/all.inc:709 #, c-format msgid "^BGWaiting for %s player(s) to join..." msgstr "" -#: qcsrc/common/notifications/all.inc:710 +#: qcsrc/common/notifications/all.inc:711 msgid "^BGYour weapon has been downgraded until you find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:711 +#: qcsrc/common/notifications/all.inc:712 msgid "^F4^COUNT^BG left to find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo or you'll be dead in ^F4^COUNT^BG!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo! ^F4^COUNT^BG left!" msgstr "" -#: qcsrc/common/notifications/all.inc:713 +#: qcsrc/common/notifications/all.inc:714 #, c-format msgid "^F2Extra lives remaining: ^K1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:715 qcsrc/menu/xonotic/campaign.qc:244 +#: qcsrc/common/notifications/all.inc:716 qcsrc/menu/xonotic/campaign.qc:244 #, c-format msgid "Level %s: " msgstr "" -#: qcsrc/common/notifications/all.inc:715 +#: qcsrc/common/notifications/all.inc:716 #, c-format msgid "^BGPress ^F2%s^BG to enter the game" msgstr "" -#: qcsrc/common/notifications/all.inc:718 +#: qcsrc/common/notifications/all.inc:719 #, c-format msgid "" "^F2^COUNT^BG until weapon change...\n" "Next weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:719 +#: qcsrc/common/notifications/all.inc:720 #, c-format msgid "^F2Active weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:721 +#: qcsrc/common/notifications/all.inc:722 #, c-format msgid "^BGYou captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:722 +#: qcsrc/common/notifications/all.inc:723 msgid "^BGYou captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:723 +#: qcsrc/common/notifications/all.inc:724 #, c-format msgid "^TC^TT^BG team captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:724 +#: qcsrc/common/notifications/all.inc:725 msgid "^TC^TT^BG team captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:725 +#: qcsrc/common/notifications/all.inc:726 msgid "^BGThis control point currently cannot be captured" msgstr "" -#: qcsrc/common/notifications/all.inc:726 +#: qcsrc/common/notifications/all.inc:727 msgid "" "^BGThe enemy generator cannot be destroyed yet\n" "^F2Capture some control points to unshield it" msgstr "" -#: qcsrc/common/notifications/all.inc:727 +#: qcsrc/common/notifications/all.inc:728 msgid "^BGThe ^TCenemy^BG generator is no longer shielded!" msgstr "" -#: qcsrc/common/notifications/all.inc:728 +#: qcsrc/common/notifications/all.inc:729 msgid "" "^K1Your generator is NOT shielded!\n" "^BGRe-capture control points to shield it!" msgstr "" -#: qcsrc/common/notifications/all.inc:729 +#: qcsrc/common/notifications/all.inc:730 #, c-format msgid "^BGPress ^F2%s^BG to teleport" msgstr "" -#: qcsrc/common/notifications/all.inc:730 +#: qcsrc/common/notifications/all.inc:731 #, c-format msgid "^BGTeleporting disabled for %s" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep fragging until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep scoring until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:733 +#: qcsrc/common/notifications/all.inc:734 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "\n" @@ -4174,136 +4180,136 @@ msgid "" "the faster the enemy generator decays" msgstr "" -#: qcsrc/common/notifications/all.inc:734 +#: qcsrc/common/notifications/all.inc:735 #, c-format msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "^BGAdded ^F4%s^BG to the game!" msgstr "" -#: qcsrc/common/notifications/all.inc:736 +#: qcsrc/common/notifications/all.inc:737 msgid "^K1In^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:737 +#: qcsrc/common/notifications/all.inc:738 msgid "^F3Out^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:738 +#: qcsrc/common/notifications/all.inc:739 msgid "^F1Portal creation failed" msgstr "" -#: qcsrc/common/notifications/all.inc:740 +#: qcsrc/common/notifications/all.inc:741 msgid "^F2Strength infuses your weapons with devastating power" msgstr "" -#: qcsrc/common/notifications/all.inc:741 +#: qcsrc/common/notifications/all.inc:742 msgid "^F2Strength has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:743 +#: qcsrc/common/notifications/all.inc:744 msgid "^F2Shield surrounds you" msgstr "" -#: qcsrc/common/notifications/all.inc:744 +#: qcsrc/common/notifications/all.inc:745 msgid "^F2Shield has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:746 +#: qcsrc/common/notifications/all.inc:747 msgid "^F2You are on speed" msgstr "" -#: qcsrc/common/notifications/all.inc:747 +#: qcsrc/common/notifications/all.inc:748 msgid "^F2Speed has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:749 +#: qcsrc/common/notifications/all.inc:750 msgid "^F2You are invisible" msgstr "" -#: qcsrc/common/notifications/all.inc:750 +#: qcsrc/common/notifications/all.inc:751 msgid "^F2Invisibility has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:752 +#: qcsrc/common/notifications/all.inc:753 msgid "^F2The race is over, finish your lap!" msgstr "" -#: qcsrc/common/notifications/all.inc:754 +#: qcsrc/common/notifications/all.inc:755 msgid "^BGSequence completed!" msgstr "" -#: qcsrc/common/notifications/all.inc:755 +#: qcsrc/common/notifications/all.inc:756 msgid "^BGThere are more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:756 +#: qcsrc/common/notifications/all.inc:757 #, c-format msgid "^BGOnly %s^BG more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:758 +#: qcsrc/common/notifications/all.inc:759 msgid "^F2Superweapons have broken down" msgstr "" -#: qcsrc/common/notifications/all.inc:759 +#: qcsrc/common/notifications/all.inc:760 msgid "^F2Superweapons have been lost" msgstr "" -#: qcsrc/common/notifications/all.inc:760 +#: qcsrc/common/notifications/all.inc:761 msgid "^F2You now have a superweapon" msgstr "" -#: qcsrc/common/notifications/all.inc:762 +#: qcsrc/common/notifications/all.inc:763 msgid "^K1Changing to ^TC^TT^K1 in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:763 +#: qcsrc/common/notifications/all.inc:764 msgid "^K1Changing team in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:764 +#: qcsrc/common/notifications/all.inc:765 msgid "^K1Spectating in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:765 +#: qcsrc/common/notifications/all.inc:766 msgid "^K1Suicide in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:767 +#: qcsrc/common/notifications/all.inc:768 msgid "^F4Timeout begins in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:768 +#: qcsrc/common/notifications/all.inc:769 msgid "^F4Timeout ends in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:770 +#: qcsrc/common/notifications/all.inc:771 msgid "^K1Cannot join given minigame session!" msgstr "" -#: qcsrc/common/notifications/all.inc:772 +#: qcsrc/common/notifications/all.inc:773 #, c-format msgid "^BGPress ^F2%s^BG to enter/exit the vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:773 +#: qcsrc/common/notifications/all.inc:774 #, c-format msgid "^BGPress ^F2%s^BG to enter the vehicle gunner" msgstr "" -#: qcsrc/common/notifications/all.inc:774 +#: qcsrc/common/notifications/all.inc:775 #, c-format msgid "^BGPress ^F2%s^BG to steal this vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:775 +#: qcsrc/common/notifications/all.inc:776 msgid "" "^F2The enemy is stealing one of your vehicles!\n" "^F4Stop them!" msgstr "" -#: qcsrc/common/notifications/all.inc:776 +#: qcsrc/common/notifications/all.inc:777 msgid "^F2Intruder detected, disabling shields!" msgstr "" diff --git a/common.hu.po b/common.hu.po index 726240969b..a360eab710 100644 --- a/common.hu.po +++ b/common.hu.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: Xonotic\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-06 07:22+0100\n" -"PO-Revision-Date: 2022-03-06 06:22+0000\n" -"Last-Translator: divVerent \n" +"POT-Creation-Date: 2022-03-27 07:22+0200\n" +"PO-Revision-Date: 2013-09-12 16:53+0000\n" +"Last-Translator: MmAaXx500 , 2018\n" "Language-Team: Hungarian (http://www.transifex.com/team-xonotic/xonotic/" "language/hu/)\n" "Language: hu\n" @@ -224,270 +224,270 @@ msgstr "az ^3ALT^7 + ^3NYÍLGOMBOK^7-kal finoman mozgathatsz!" msgid "Player %d" msgstr "Játékos %d" -#: qcsrc/client/hud/panel/quickmenu.qc:617 -#: qcsrc/client/hud/panel/quickmenu.qc:619 +#: qcsrc/client/hud/panel/quickmenu.qc:608 +#: qcsrc/client/hud/panel/quickmenu.qc:610 #, c-format msgid "Submenu%d" msgstr "Almenü%d" -#: qcsrc/client/hud/panel/quickmenu.qc:624 +#: qcsrc/client/hud/panel/quickmenu.qc:615 #, c-format msgid "Command%d" msgstr "Parancs%d" -#: qcsrc/client/hud/panel/quickmenu.qc:650 +#: qcsrc/client/hud/panel/quickmenu.qc:641 msgid "Continue..." msgstr "Folytatás..." -#: qcsrc/client/hud/panel/quickmenu.qc:807 -#: qcsrc/client/hud/panel/quickmenu.qc:814 +#: qcsrc/client/hud/panel/quickmenu.qc:798 +#: qcsrc/client/hud/panel/quickmenu.qc:805 msgid "Chat" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:808 +#: qcsrc/client/hud/panel/quickmenu.qc:799 msgid "QMCMD^Send public message to" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^:-) / nice one" msgstr "QMCMD^:-) / szép volt" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^nice one" msgstr "QMCMD^szép volt" -#: qcsrc/client/hud/panel/quickmenu.qc:810 +#: qcsrc/client/hud/panel/quickmenu.qc:801 msgid "QMCMD^good game" msgstr "QMCMD^jó a meccs" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck" msgstr "QMCMD^helló / sok szerencsét" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck and have fun" msgstr "QMCMD^helló / sok szerencsét és jó szórakozást" -#: qcsrc/client/hud/panel/quickmenu.qc:813 +#: qcsrc/client/hud/panel/quickmenu.qc:804 msgid "QMCMD^Send in English" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:818 -#: qcsrc/client/hud/panel/quickmenu.qc:834 +#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:825 msgid "QMCMD^Team chat" msgstr "QMCMD^Csapat beszélgetés" -#: qcsrc/client/hud/panel/quickmenu.qc:819 +#: qcsrc/client/hud/panel/quickmenu.qc:810 msgid "QMCMD^strength soon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item %x^7 (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:822 +#: qcsrc/client/hud/panel/quickmenu.qc:813 msgid "QMCMD^negative" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:823 +#: qcsrc/client/hud/panel/quickmenu.qc:814 msgid "QMCMD^positive" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 #, c-format msgid "QMCMD^dropped flag (l:%d^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 msgid "QMCMD^dropped flag, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^drop weapon, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^dropped weapon %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^drop flag/key, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^dropped flag/key %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:837 +#: qcsrc/client/hud/panel/quickmenu.qc:828 msgid "QMCMD^Send private message to" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:839 -#: qcsrc/client/hud/panel/quickmenu.qc:869 +#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:860 msgid "QMCMD^Settings" msgstr "QMCMD^Beállítások" -#: qcsrc/client/hud/panel/quickmenu.qc:840 -#: qcsrc/client/hud/panel/quickmenu.qc:847 +#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:838 msgid "QMCMD^View/HUD settings" msgstr "QMCMD^Nézet/HUD beállítások" -#: qcsrc/client/hud/panel/quickmenu.qc:841 +#: qcsrc/client/hud/panel/quickmenu.qc:832 msgid "QMCMD^3rd person view" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:842 +#: qcsrc/client/hud/panel/quickmenu.qc:833 msgid "QMCMD^Player models like mine" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:843 +#: qcsrc/client/hud/panel/quickmenu.qc:834 msgid "QMCMD^Names above players" msgstr "QMCMD^Nevek a játékosok fölött" -#: qcsrc/client/hud/panel/quickmenu.qc:844 +#: qcsrc/client/hud/panel/quickmenu.qc:835 msgid "QMCMD^Crosshair per weapon" msgstr "QMCMD^Célkereszt fegyverenként" -#: qcsrc/client/hud/panel/quickmenu.qc:845 +#: qcsrc/client/hud/panel/quickmenu.qc:836 msgid "QMCMD^FPS" msgstr "QMCMD^FPS" -#: qcsrc/client/hud/panel/quickmenu.qc:846 +#: qcsrc/client/hud/panel/quickmenu.qc:837 msgid "QMCMD^Net graph" msgstr "QMCMD^Hálózati grafikon" -#: qcsrc/client/hud/panel/quickmenu.qc:849 -#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:840 +#: qcsrc/client/hud/panel/quickmenu.qc:843 msgid "QMCMD^Sound settings" msgstr "Hang beállítások" -#: qcsrc/client/hud/panel/quickmenu.qc:850 +#: qcsrc/client/hud/panel/quickmenu.qc:841 msgid "QMCMD^Hit sound" msgstr "QMCMD^Találat hang" -#: qcsrc/client/hud/panel/quickmenu.qc:851 +#: qcsrc/client/hud/panel/quickmenu.qc:842 msgid "QMCMD^Chat sound" msgstr "QMCMD^Chat hang" -#: qcsrc/client/hud/panel/quickmenu.qc:856 +#: qcsrc/client/hud/panel/quickmenu.qc:847 msgid "QMCMD^Change spectator camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:861 -#: qcsrc/client/hud/panel/quickmenu.qc:865 +#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:856 msgid "QMCMD^Observer camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:853 msgid "QMCMD^Increase speed" msgstr "QMCMD^Sebesség növelése" -#: qcsrc/client/hud/panel/quickmenu.qc:863 +#: qcsrc/client/hud/panel/quickmenu.qc:854 msgid "QMCMD^Decrease speed" msgstr "QMCMD^Sebesség csökkentése" -#: qcsrc/client/hud/panel/quickmenu.qc:864 +#: qcsrc/client/hud/panel/quickmenu.qc:855 msgid "QMCMD^Wall collision" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:868 +#: qcsrc/client/hud/panel/quickmenu.qc:859 msgid "QMCMD^Fullscreen" msgstr "QMCMD^Teljes képernyő" -#: qcsrc/client/hud/panel/quickmenu.qc:871 -#: qcsrc/client/hud/panel/quickmenu.qc:881 +#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:872 msgid "QMCMD^Call a vote" msgstr "QMCMD^Szavazás indítása" -#: qcsrc/client/hud/panel/quickmenu.qc:872 +#: qcsrc/client/hud/panel/quickmenu.qc:863 msgid "QMCMD^Restart the map" msgstr "QMCMD^Játék újraindítása" -#: qcsrc/client/hud/panel/quickmenu.qc:873 +#: qcsrc/client/hud/panel/quickmenu.qc:864 msgid "QMCMD^End match" msgstr "QMCMD^Játék vége" -#: qcsrc/client/hud/panel/quickmenu.qc:876 +#: qcsrc/client/hud/panel/quickmenu.qc:867 msgid "QMCMD^Reduce match time" msgstr "QMCMD^Játékidő csökkentése" -#: qcsrc/client/hud/panel/quickmenu.qc:877 +#: qcsrc/client/hud/panel/quickmenu.qc:868 msgid "QMCMD^Extend match time" msgstr "QMCMD^Játékidő csökkentése" -#: qcsrc/client/hud/panel/quickmenu.qc:880 +#: qcsrc/client/hud/panel/quickmenu.qc:871 msgid "QMCMD^Shuffle teams" msgstr "QMCMD^Csapatok összekeverése" -#: qcsrc/client/hud/panel/quickmenu.qc:885 +#: qcsrc/client/hud/panel/quickmenu.qc:876 msgid "QMCMD^Spectate a player" msgstr "" @@ -1236,14 +1236,14 @@ msgstr "" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 #: qcsrc/menu/xonotic/dialog_multiplayer_create.qc:105 msgid "Frag limit:" msgstr "Gyilok határérték:" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 msgid "The amount of frags needed before the match will end" msgstr "Gyilokok száma, amit a meccs vége előtt el kell érni" @@ -3276,7 +3276,7 @@ msgid "^BG%s%s^K1 was riddled full of holes by ^BG%s^K1's Machine Gun%s%s" msgstr "" #: qcsrc/common/notifications/all.inc:472 -#: qcsrc/common/notifications/all.inc:778 +#: qcsrc/common/notifications/all.inc:779 #, c-format msgid "^BGYou cannot place more than ^F2%s^BG mines at a time" msgstr "" @@ -4054,122 +4054,128 @@ msgstr "" msgid "^BGYou have no lives left, you must wait until the next match" msgstr "" -#: qcsrc/common/notifications/all.inc:707 +#: qcsrc/common/notifications/all.inc:706 +msgid "" +"^F4WARNING:^BG you can't rejoin this match after spectating.\n" +"Use the same command again to spectate anyway." +msgstr "" + +#: qcsrc/common/notifications/all.inc:708 #, c-format msgid "" "^BGWaiting for players to join...\n" "Need active players for: %s" msgstr "" -#: qcsrc/common/notifications/all.inc:708 +#: qcsrc/common/notifications/all.inc:709 #, c-format msgid "^BGWaiting for %s player(s) to join..." msgstr "" -#: qcsrc/common/notifications/all.inc:710 +#: qcsrc/common/notifications/all.inc:711 msgid "^BGYour weapon has been downgraded until you find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:711 +#: qcsrc/common/notifications/all.inc:712 msgid "^F4^COUNT^BG left to find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo or you'll be dead in ^F4^COUNT^BG!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo! ^F4^COUNT^BG left!" msgstr "" -#: qcsrc/common/notifications/all.inc:713 +#: qcsrc/common/notifications/all.inc:714 #, c-format msgid "^F2Extra lives remaining: ^K1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:715 qcsrc/menu/xonotic/campaign.qc:244 +#: qcsrc/common/notifications/all.inc:716 qcsrc/menu/xonotic/campaign.qc:244 #, c-format msgid "Level %s: " msgstr "" -#: qcsrc/common/notifications/all.inc:715 +#: qcsrc/common/notifications/all.inc:716 #, c-format msgid "^BGPress ^F2%s^BG to enter the game" msgstr "" -#: qcsrc/common/notifications/all.inc:718 +#: qcsrc/common/notifications/all.inc:719 #, c-format msgid "" "^F2^COUNT^BG until weapon change...\n" "Next weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:719 +#: qcsrc/common/notifications/all.inc:720 #, c-format msgid "^F2Active weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:721 +#: qcsrc/common/notifications/all.inc:722 #, c-format msgid "^BGYou captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:722 +#: qcsrc/common/notifications/all.inc:723 msgid "^BGYou captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:723 +#: qcsrc/common/notifications/all.inc:724 #, c-format msgid "^TC^TT^BG team captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:724 +#: qcsrc/common/notifications/all.inc:725 msgid "^TC^TT^BG team captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:725 +#: qcsrc/common/notifications/all.inc:726 msgid "^BGThis control point currently cannot be captured" msgstr "" -#: qcsrc/common/notifications/all.inc:726 +#: qcsrc/common/notifications/all.inc:727 msgid "" "^BGThe enemy generator cannot be destroyed yet\n" "^F2Capture some control points to unshield it" msgstr "" -#: qcsrc/common/notifications/all.inc:727 +#: qcsrc/common/notifications/all.inc:728 msgid "^BGThe ^TCenemy^BG generator is no longer shielded!" msgstr "" -#: qcsrc/common/notifications/all.inc:728 +#: qcsrc/common/notifications/all.inc:729 msgid "" "^K1Your generator is NOT shielded!\n" "^BGRe-capture control points to shield it!" msgstr "" -#: qcsrc/common/notifications/all.inc:729 +#: qcsrc/common/notifications/all.inc:730 #, c-format msgid "^BGPress ^F2%s^BG to teleport" msgstr "" -#: qcsrc/common/notifications/all.inc:730 +#: qcsrc/common/notifications/all.inc:731 #, c-format msgid "^BGTeleporting disabled for %s" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep fragging until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep scoring until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:733 +#: qcsrc/common/notifications/all.inc:734 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "\n" @@ -4178,136 +4184,136 @@ msgid "" "the faster the enemy generator decays" msgstr "" -#: qcsrc/common/notifications/all.inc:734 +#: qcsrc/common/notifications/all.inc:735 #, c-format msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "^BGAdded ^F4%s^BG to the game!" msgstr "" -#: qcsrc/common/notifications/all.inc:736 +#: qcsrc/common/notifications/all.inc:737 msgid "^K1In^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:737 +#: qcsrc/common/notifications/all.inc:738 msgid "^F3Out^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:738 +#: qcsrc/common/notifications/all.inc:739 msgid "^F1Portal creation failed" msgstr "" -#: qcsrc/common/notifications/all.inc:740 +#: qcsrc/common/notifications/all.inc:741 msgid "^F2Strength infuses your weapons with devastating power" msgstr "" -#: qcsrc/common/notifications/all.inc:741 +#: qcsrc/common/notifications/all.inc:742 msgid "^F2Strength has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:743 +#: qcsrc/common/notifications/all.inc:744 msgid "^F2Shield surrounds you" msgstr "" -#: qcsrc/common/notifications/all.inc:744 +#: qcsrc/common/notifications/all.inc:745 msgid "^F2Shield has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:746 +#: qcsrc/common/notifications/all.inc:747 msgid "^F2You are on speed" msgstr "" -#: qcsrc/common/notifications/all.inc:747 +#: qcsrc/common/notifications/all.inc:748 msgid "^F2Speed has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:749 +#: qcsrc/common/notifications/all.inc:750 msgid "^F2You are invisible" msgstr "" -#: qcsrc/common/notifications/all.inc:750 +#: qcsrc/common/notifications/all.inc:751 msgid "^F2Invisibility has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:752 +#: qcsrc/common/notifications/all.inc:753 msgid "^F2The race is over, finish your lap!" msgstr "" -#: qcsrc/common/notifications/all.inc:754 +#: qcsrc/common/notifications/all.inc:755 msgid "^BGSequence completed!" msgstr "" -#: qcsrc/common/notifications/all.inc:755 +#: qcsrc/common/notifications/all.inc:756 msgid "^BGThere are more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:756 +#: qcsrc/common/notifications/all.inc:757 #, c-format msgid "^BGOnly %s^BG more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:758 +#: qcsrc/common/notifications/all.inc:759 msgid "^F2Superweapons have broken down" msgstr "" -#: qcsrc/common/notifications/all.inc:759 +#: qcsrc/common/notifications/all.inc:760 msgid "^F2Superweapons have been lost" msgstr "" -#: qcsrc/common/notifications/all.inc:760 +#: qcsrc/common/notifications/all.inc:761 msgid "^F2You now have a superweapon" msgstr "" -#: qcsrc/common/notifications/all.inc:762 +#: qcsrc/common/notifications/all.inc:763 msgid "^K1Changing to ^TC^TT^K1 in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:763 +#: qcsrc/common/notifications/all.inc:764 msgid "^K1Changing team in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:764 +#: qcsrc/common/notifications/all.inc:765 msgid "^K1Spectating in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:765 +#: qcsrc/common/notifications/all.inc:766 msgid "^K1Suicide in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:767 +#: qcsrc/common/notifications/all.inc:768 msgid "^F4Timeout begins in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:768 +#: qcsrc/common/notifications/all.inc:769 msgid "^F4Timeout ends in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:770 +#: qcsrc/common/notifications/all.inc:771 msgid "^K1Cannot join given minigame session!" msgstr "" -#: qcsrc/common/notifications/all.inc:772 +#: qcsrc/common/notifications/all.inc:773 #, c-format msgid "^BGPress ^F2%s^BG to enter/exit the vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:773 +#: qcsrc/common/notifications/all.inc:774 #, c-format msgid "^BGPress ^F2%s^BG to enter the vehicle gunner" msgstr "" -#: qcsrc/common/notifications/all.inc:774 +#: qcsrc/common/notifications/all.inc:775 #, c-format msgid "^BGPress ^F2%s^BG to steal this vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:775 +#: qcsrc/common/notifications/all.inc:776 msgid "" "^F2The enemy is stealing one of your vehicles!\n" "^F4Stop them!" msgstr "" -#: qcsrc/common/notifications/all.inc:776 +#: qcsrc/common/notifications/all.inc:777 msgid "^F2Intruder detected, disabling shields!" msgstr "" diff --git a/common.it.po b/common.it.po index ca005c1c11..ae58e86137 100644 --- a/common.it.po +++ b/common.it.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: Xonotic\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-06 07:22+0100\n" -"PO-Revision-Date: 2022-03-06 11:16+0000\n" -"Last-Translator: Antonio \n" +"POT-Creation-Date: 2022-03-27 07:22+0200\n" +"PO-Revision-Date: 2013-09-12 16:53+0000\n" +"Last-Translator: Antonio , 2013-2022\n" "Language-Team: Italian (http://www.transifex.com/team-xonotic/xonotic/" "language/it/)\n" "Language: it\n" @@ -224,270 +224,270 @@ msgstr "^3ALT ^7+ ^3ARROW KEYS ^7per fini aggiustamenti." msgid "Player %d" msgstr "Giocatore %d" -#: qcsrc/client/hud/panel/quickmenu.qc:617 -#: qcsrc/client/hud/panel/quickmenu.qc:619 +#: qcsrc/client/hud/panel/quickmenu.qc:608 +#: qcsrc/client/hud/panel/quickmenu.qc:610 #, c-format msgid "Submenu%d" msgstr "Sottomenu%d" -#: qcsrc/client/hud/panel/quickmenu.qc:624 +#: qcsrc/client/hud/panel/quickmenu.qc:615 #, c-format msgid "Command%d" msgstr "Comando%d" -#: qcsrc/client/hud/panel/quickmenu.qc:650 +#: qcsrc/client/hud/panel/quickmenu.qc:641 msgid "Continue..." msgstr "Continua..." -#: qcsrc/client/hud/panel/quickmenu.qc:807 -#: qcsrc/client/hud/panel/quickmenu.qc:814 +#: qcsrc/client/hud/panel/quickmenu.qc:798 +#: qcsrc/client/hud/panel/quickmenu.qc:805 msgid "Chat" msgstr "Chat" -#: qcsrc/client/hud/panel/quickmenu.qc:808 +#: qcsrc/client/hud/panel/quickmenu.qc:799 msgid "QMCMD^Send public message to" msgstr "Manda un messaggio pubblico a" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^:-) / nice one" msgstr ":-) / bella" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^nice one" msgstr "bella" -#: qcsrc/client/hud/panel/quickmenu.qc:810 +#: qcsrc/client/hud/panel/quickmenu.qc:801 msgid "QMCMD^good game" msgstr "bella partita" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck" msgstr "ciao / buona fortuna" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck and have fun" msgstr "ciao / buona fortuna e divertiti" -#: qcsrc/client/hud/panel/quickmenu.qc:813 +#: qcsrc/client/hud/panel/quickmenu.qc:804 msgid "QMCMD^Send in English" msgstr "Invia in inglese" -#: qcsrc/client/hud/panel/quickmenu.qc:818 -#: qcsrc/client/hud/panel/quickmenu.qc:834 +#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:825 msgid "QMCMD^Team chat" msgstr "Chat di squadra" -#: qcsrc/client/hud/panel/quickmenu.qc:819 +#: qcsrc/client/hud/panel/quickmenu.qc:810 msgid "QMCMD^strength soon" msgstr "la forza, presto" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item %x^7 (l:%y^7)" msgstr "oggetto disponibile %x^7 (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item, icon" msgstr "oggetto disponibile, icona" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item (l:%l^7)" msgstr "preso oggetto (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item, icon" msgstr "preso oggetto, icona" -#: qcsrc/client/hud/panel/quickmenu.qc:822 +#: qcsrc/client/hud/panel/quickmenu.qc:813 msgid "QMCMD^negative" msgstr "negativo" -#: qcsrc/client/hud/panel/quickmenu.qc:823 +#: qcsrc/client/hud/panel/quickmenu.qc:814 msgid "QMCMD^positive" msgstr "positivo" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "aiuto (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help, icon" msgstr "aiuto, icona" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen (l:%y^7)" msgstr "avvistato nemico (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen, icon" msgstr "avvistato nemico, icona" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen (l:%y^7)" msgstr "avvistata bandiera (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen, icon" msgstr "avvistata bandiera, icona" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "difendendo (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending, icon" msgstr "difendendo, icona" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "vagando (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming, icon" msgstr "vagando, icona" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "attaccando (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking, icon" msgstr "attaccando, icona" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier (l:%y^7)" msgstr "ucciso portabandiera (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier, icon" msgstr "ucciso portabandiera, icona" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 #, c-format msgid "QMCMD^dropped flag (l:%d^7)" msgstr "lasciata bandiera (l:%d^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 msgid "QMCMD^dropped flag, icon" msgstr "lasciata bandiera, icona" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^drop weapon, icon" msgstr "lascia arma, icona" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^dropped weapon %w^7 (l:%l^7)" msgstr "lasciata arma %w^7 (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^drop flag/key, icon" msgstr "lascia bandiera/chiave, icona" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^dropped flag/key %w^7 (l:%l^7)" msgstr "lasciata bandiera/chiave %w^7 (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:837 +#: qcsrc/client/hud/panel/quickmenu.qc:828 msgid "QMCMD^Send private message to" msgstr "Invia messaggio privato a" -#: qcsrc/client/hud/panel/quickmenu.qc:839 -#: qcsrc/client/hud/panel/quickmenu.qc:869 +#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:860 msgid "QMCMD^Settings" msgstr "Impostazioni" -#: qcsrc/client/hud/panel/quickmenu.qc:840 -#: qcsrc/client/hud/panel/quickmenu.qc:847 +#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:838 msgid "QMCMD^View/HUD settings" msgstr "Impostazioni vista/HUD" -#: qcsrc/client/hud/panel/quickmenu.qc:841 +#: qcsrc/client/hud/panel/quickmenu.qc:832 msgid "QMCMD^3rd person view" msgstr "visuale in 3ª persona" -#: qcsrc/client/hud/panel/quickmenu.qc:842 +#: qcsrc/client/hud/panel/quickmenu.qc:833 msgid "QMCMD^Player models like mine" msgstr "Modelli giocatore come il mio" -#: qcsrc/client/hud/panel/quickmenu.qc:843 +#: qcsrc/client/hud/panel/quickmenu.qc:834 msgid "QMCMD^Names above players" msgstr "Nomi sopra i giocatori" -#: qcsrc/client/hud/panel/quickmenu.qc:844 +#: qcsrc/client/hud/panel/quickmenu.qc:835 msgid "QMCMD^Crosshair per weapon" msgstr "Mirino specifico per arma" -#: qcsrc/client/hud/panel/quickmenu.qc:845 +#: qcsrc/client/hud/panel/quickmenu.qc:836 msgid "QMCMD^FPS" msgstr "FPS" -#: qcsrc/client/hud/panel/quickmenu.qc:846 +#: qcsrc/client/hud/panel/quickmenu.qc:837 msgid "QMCMD^Net graph" msgstr "Grafico rete" -#: qcsrc/client/hud/panel/quickmenu.qc:849 -#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:840 +#: qcsrc/client/hud/panel/quickmenu.qc:843 msgid "QMCMD^Sound settings" msgstr "Impostazioni suono" -#: qcsrc/client/hud/panel/quickmenu.qc:850 +#: qcsrc/client/hud/panel/quickmenu.qc:841 msgid "QMCMD^Hit sound" msgstr "Suono quando colpisci" -#: qcsrc/client/hud/panel/quickmenu.qc:851 +#: qcsrc/client/hud/panel/quickmenu.qc:842 msgid "QMCMD^Chat sound" msgstr "Suono chat" -#: qcsrc/client/hud/panel/quickmenu.qc:856 +#: qcsrc/client/hud/panel/quickmenu.qc:847 msgid "QMCMD^Change spectator camera" msgstr "Cambia camera spettatore" -#: qcsrc/client/hud/panel/quickmenu.qc:861 -#: qcsrc/client/hud/panel/quickmenu.qc:865 +#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:856 msgid "QMCMD^Observer camera" msgstr "Telecamera osservatore" -#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:853 msgid "QMCMD^Increase speed" msgstr "Aumenta velocità" -#: qcsrc/client/hud/panel/quickmenu.qc:863 +#: qcsrc/client/hud/panel/quickmenu.qc:854 msgid "QMCMD^Decrease speed" msgstr "Diminuisci velocità" -#: qcsrc/client/hud/panel/quickmenu.qc:864 +#: qcsrc/client/hud/panel/quickmenu.qc:855 msgid "QMCMD^Wall collision" msgstr "Collisione con i muri" -#: qcsrc/client/hud/panel/quickmenu.qc:868 +#: qcsrc/client/hud/panel/quickmenu.qc:859 msgid "QMCMD^Fullscreen" msgstr "Schermo pieno" -#: qcsrc/client/hud/panel/quickmenu.qc:871 -#: qcsrc/client/hud/panel/quickmenu.qc:881 +#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:872 msgid "QMCMD^Call a vote" msgstr "Chiama una votazione" -#: qcsrc/client/hud/panel/quickmenu.qc:872 +#: qcsrc/client/hud/panel/quickmenu.qc:863 msgid "QMCMD^Restart the map" msgstr "Riavvia la mappa" -#: qcsrc/client/hud/panel/quickmenu.qc:873 +#: qcsrc/client/hud/panel/quickmenu.qc:864 msgid "QMCMD^End match" msgstr "Fine partita" -#: qcsrc/client/hud/panel/quickmenu.qc:876 +#: qcsrc/client/hud/panel/quickmenu.qc:867 msgid "QMCMD^Reduce match time" msgstr "Riduci tempo partita" -#: qcsrc/client/hud/panel/quickmenu.qc:877 +#: qcsrc/client/hud/panel/quickmenu.qc:868 msgid "QMCMD^Extend match time" msgstr "Estendi tempo partita" -#: qcsrc/client/hud/panel/quickmenu.qc:880 +#: qcsrc/client/hud/panel/quickmenu.qc:871 msgid "QMCMD^Shuffle teams" msgstr "Mischia le squadre" -#: qcsrc/client/hud/panel/quickmenu.qc:885 +#: qcsrc/client/hud/panel/quickmenu.qc:876 msgid "QMCMD^Spectate a player" msgstr "Guarda un giocatore" @@ -1265,14 +1265,14 @@ msgstr "Uccidi tutti i nemici della tua squadra per vincere il round" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 #: qcsrc/menu/xonotic/dialog_multiplayer_create.qc:105 msgid "Frag limit:" msgstr "Limite di frag:" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 msgid "The amount of frags needed before the match will end" msgstr "Il numero di frag necessari prima che la partita finisca" @@ -3400,7 +3400,7 @@ msgid "^BG%s%s^K1 was riddled full of holes by ^BG%s^K1's Machine Gun%s%s" msgstr "^BG%s%s^K1 è stato crivellato dalla Machine gun di ^BG%s^K1%s%s" #: qcsrc/common/notifications/all.inc:472 -#: qcsrc/common/notifications/all.inc:778 +#: qcsrc/common/notifications/all.inc:779 #, c-format msgid "^BGYou cannot place more than ^F2%s^BG mines at a time" msgstr "^BGNon puoi piazzare più di ^F2%s^BG mine alla volta" @@ -4224,7 +4224,13 @@ msgstr "^BGStai iniziando con la Chiave ^TC^TT" msgid "^BGYou have no lives left, you must wait until the next match" msgstr "^BGNon ti sono rimaste vite, devi aspettare fino alla prossima partita" -#: qcsrc/common/notifications/all.inc:707 +#: qcsrc/common/notifications/all.inc:706 +msgid "" +"^F4WARNING:^BG you can't rejoin this match after spectating.\n" +"Use the same command again to spectate anyway." +msgstr "" + +#: qcsrc/common/notifications/all.inc:708 #, c-format msgid "" "^BGWaiting for players to join...\n" @@ -4233,43 +4239,43 @@ msgstr "" "^BGIn attesa che i giocatori entrino...\n" "Servono giocatori per: %s" -#: qcsrc/common/notifications/all.inc:708 +#: qcsrc/common/notifications/all.inc:709 #, c-format msgid "^BGWaiting for %s player(s) to join..." msgstr "^BGIn attesa che %s giocatore/i entrino..." -#: qcsrc/common/notifications/all.inc:710 +#: qcsrc/common/notifications/all.inc:711 msgid "^BGYour weapon has been downgraded until you find some ammo!" msgstr "^BGLa tua arma è stata degradata finché non trovi qualche munizione!" -#: qcsrc/common/notifications/all.inc:711 +#: qcsrc/common/notifications/all.inc:712 msgid "^F4^COUNT^BG left to find some ammo!" msgstr "^F4^COUNT^BG rimanenti per trovare delle munizioni!" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo or you'll be dead in ^F4^COUNT^BG!" msgstr "^BGRaccogli delle munizioni o morirai in ^F4^COUNT^BG!" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo! ^F4^COUNT^BG left!" msgstr "^BGRaccogli delle munizioni! ^F4^COUNT^BG rimanenti!" -#: qcsrc/common/notifications/all.inc:713 +#: qcsrc/common/notifications/all.inc:714 #, c-format msgid "^F2Extra lives remaining: ^K1%s" msgstr "^F2Vite extra rimanenti: ^K1%s" -#: qcsrc/common/notifications/all.inc:715 qcsrc/menu/xonotic/campaign.qc:244 +#: qcsrc/common/notifications/all.inc:716 qcsrc/menu/xonotic/campaign.qc:244 #, c-format msgid "Level %s: " msgstr "Livello %s: " -#: qcsrc/common/notifications/all.inc:715 +#: qcsrc/common/notifications/all.inc:716 #, c-format msgid "^BGPress ^F2%s^BG to enter the game" msgstr "^BGPremi ^F2%s^BG per entrare nella partita" -#: qcsrc/common/notifications/all.inc:718 +#: qcsrc/common/notifications/all.inc:719 #, c-format msgid "" "^F2^COUNT^BG until weapon change...\n" @@ -4278,34 +4284,34 @@ msgstr "" "^F2^COUNT^BG al cambio d'arma...\n" "Prossima arma: ^F1%s" -#: qcsrc/common/notifications/all.inc:719 +#: qcsrc/common/notifications/all.inc:720 #, c-format msgid "^F2Active weapon: ^F1%s" msgstr "^F2Arma attiva: ^F1%s" -#: qcsrc/common/notifications/all.inc:721 +#: qcsrc/common/notifications/all.inc:722 #, c-format msgid "^BGYou captured %s^BG control point" msgstr "^BGHai catturato il punto di controllo %s" -#: qcsrc/common/notifications/all.inc:722 +#: qcsrc/common/notifications/all.inc:723 msgid "^BGYou captured a control point" msgstr "^BGHai catturato un punto di controllo" -#: qcsrc/common/notifications/all.inc:723 +#: qcsrc/common/notifications/all.inc:724 #, c-format msgid "^TC^TT^BG team captured %s^BG control point" msgstr "^BGLa squadra ^TC^TT^BG ha catturato il punto di controllo %s" -#: qcsrc/common/notifications/all.inc:724 +#: qcsrc/common/notifications/all.inc:725 msgid "^TC^TT^BG team captured a control point" msgstr "^BG La squadra ^TC^TT^BG ha catturato un punto di controllo" -#: qcsrc/common/notifications/all.inc:725 +#: qcsrc/common/notifications/all.inc:726 msgid "^BGThis control point currently cannot be captured" msgstr "^BGQuesto punto di controllo adesso non può essere catturato" -#: qcsrc/common/notifications/all.inc:726 +#: qcsrc/common/notifications/all.inc:727 msgid "" "^BGThe enemy generator cannot be destroyed yet\n" "^F2Capture some control points to unshield it" @@ -4313,11 +4319,11 @@ msgstr "" "^BGIl generatore nemico non può essere ancora distrutto\n" "^F2Cattura alcuni punti di controllo per togliergli lo scudo" -#: qcsrc/common/notifications/all.inc:727 +#: qcsrc/common/notifications/all.inc:728 msgid "^BGThe ^TCenemy^BG generator is no longer shielded!" msgstr "^BGIl generatore nemico non è più scudato!" -#: qcsrc/common/notifications/all.inc:728 +#: qcsrc/common/notifications/all.inc:729 msgid "" "^K1Your generator is NOT shielded!\n" "^BGRe-capture control points to shield it!" @@ -4325,17 +4331,17 @@ msgstr "" "^K1Il tuo generatore NON è scudato!^BGRicattura punti di controllo per " "scudarlo!" -#: qcsrc/common/notifications/all.inc:729 +#: qcsrc/common/notifications/all.inc:730 #, c-format msgid "^BGPress ^F2%s^BG to teleport" msgstr "^BGPremi ^F2%s^BG per teletrasportarti" -#: qcsrc/common/notifications/all.inc:730 +#: qcsrc/common/notifications/all.inc:731 #, c-format msgid "^BGTeleporting disabled for %s" msgstr "^BGTeletrasporto disabilitato per %s" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep fragging until we have a winner!" @@ -4343,7 +4349,7 @@ msgstr "" "^F2Si giocano i ^F4SUPPLEMENTARI^F2!\n" "Continua a fraggare finché non c'è un vincitore!" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep scoring until we have a winner!" @@ -4351,7 +4357,7 @@ msgstr "" "^F2Si giocano i ^F4SUPPLEMENTARI^F2!\n" "Continua a segnare finché non c'è un vincitore!" -#: qcsrc/common/notifications/all.inc:733 +#: qcsrc/common/notifications/all.inc:734 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "\n" @@ -4365,7 +4371,7 @@ msgstr "" "Più punti di controllo la tua squadra possiede,\n" "più in fretta il generatore nemico decade" -#: qcsrc/common/notifications/all.inc:734 +#: qcsrc/common/notifications/all.inc:735 #, c-format msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" @@ -4374,129 +4380,129 @@ msgstr "" "^F2Si giocano i ^F4SUPPLEMENTARI^F2!\n" "^BGAggiunti ^F4%s^BG alla partita!" -#: qcsrc/common/notifications/all.inc:736 +#: qcsrc/common/notifications/all.inc:737 msgid "^K1In^BG-portal created" msgstr "^BGPortale di ^K1ingresso ^BGcreato" -#: qcsrc/common/notifications/all.inc:737 +#: qcsrc/common/notifications/all.inc:738 msgid "^F3Out^BG-portal created" msgstr "^BGPortale di ^F3Uscita ^BGcreato" -#: qcsrc/common/notifications/all.inc:738 +#: qcsrc/common/notifications/all.inc:739 msgid "^F1Portal creation failed" msgstr "^F1Creazione del portale fallita" -#: qcsrc/common/notifications/all.inc:740 +#: qcsrc/common/notifications/all.inc:741 msgid "^F2Strength infuses your weapons with devastating power" msgstr "^F2La Forza infonde alle tue armi un potere devastante" -#: qcsrc/common/notifications/all.inc:741 +#: qcsrc/common/notifications/all.inc:742 msgid "^F2Strength has worn off" msgstr "^F2La Forza è scaduta" -#: qcsrc/common/notifications/all.inc:743 +#: qcsrc/common/notifications/all.inc:744 msgid "^F2Shield surrounds you" msgstr "^F2Lo scudo ti circonda" -#: qcsrc/common/notifications/all.inc:744 +#: qcsrc/common/notifications/all.inc:745 msgid "^F2Shield has worn off" msgstr "^F2L'invisibilità è scaduta" -#: qcsrc/common/notifications/all.inc:746 +#: qcsrc/common/notifications/all.inc:747 msgid "^F2You are on speed" msgstr "^F2Sei veloce" -#: qcsrc/common/notifications/all.inc:747 +#: qcsrc/common/notifications/all.inc:748 msgid "^F2Speed has worn off" msgstr "^F2La Velocità è scaduta" -#: qcsrc/common/notifications/all.inc:749 +#: qcsrc/common/notifications/all.inc:750 msgid "^F2You are invisible" msgstr "^F2Sei invisibile" -#: qcsrc/common/notifications/all.inc:750 +#: qcsrc/common/notifications/all.inc:751 msgid "^F2Invisibility has worn off" msgstr "^F2L'invisibilità è scaduta" -#: qcsrc/common/notifications/all.inc:752 +#: qcsrc/common/notifications/all.inc:753 msgid "^F2The race is over, finish your lap!" msgstr "^F2La gara è finita, completa il tuo giro!" -#: qcsrc/common/notifications/all.inc:754 +#: qcsrc/common/notifications/all.inc:755 msgid "^BGSequence completed!" msgstr "^BGSequenza completata!" -#: qcsrc/common/notifications/all.inc:755 +#: qcsrc/common/notifications/all.inc:756 msgid "^BGThere are more to go..." msgstr "^BGTi aspettano altre sequenze..." -#: qcsrc/common/notifications/all.inc:756 +#: qcsrc/common/notifications/all.inc:757 #, c-format msgid "^BGOnly %s^BG more to go..." msgstr "^BGAltre %s^BG sequenze ti aspettano..." -#: qcsrc/common/notifications/all.inc:758 +#: qcsrc/common/notifications/all.inc:759 msgid "^F2Superweapons have broken down" msgstr "^F2Le Superarmi si sono spaccate" -#: qcsrc/common/notifications/all.inc:759 +#: qcsrc/common/notifications/all.inc:760 msgid "^F2Superweapons have been lost" msgstr "^F2Le Superarmi sono state perse" -#: qcsrc/common/notifications/all.inc:760 +#: qcsrc/common/notifications/all.inc:761 msgid "^F2You now have a superweapon" msgstr "^F2Ora hai una superarma" -#: qcsrc/common/notifications/all.inc:762 +#: qcsrc/common/notifications/all.inc:763 msgid "^K1Changing to ^TC^TT^K1 in ^COUNT" msgstr "^K1Cambiando alla ^TC^TT^K1 in ^COUNT" -#: qcsrc/common/notifications/all.inc:763 +#: qcsrc/common/notifications/all.inc:764 msgid "^K1Changing team in ^COUNT" msgstr "^K1Cambiando squadra in ^COUNT" -#: qcsrc/common/notifications/all.inc:764 +#: qcsrc/common/notifications/all.inc:765 msgid "^K1Spectating in ^COUNT" msgstr "^K1Spettatore in ^COUNT" -#: qcsrc/common/notifications/all.inc:765 +#: qcsrc/common/notifications/all.inc:766 msgid "^K1Suicide in ^COUNT" msgstr "^K1Suicidio in ^COUNT" -#: qcsrc/common/notifications/all.inc:767 +#: qcsrc/common/notifications/all.inc:768 msgid "^F4Timeout begins in ^COUNT" msgstr "^F4Il timeout comincia in ^COUNT" -#: qcsrc/common/notifications/all.inc:768 +#: qcsrc/common/notifications/all.inc:769 msgid "^F4Timeout ends in ^COUNT" msgstr "^F4Il timeout finisce in ^COUNT" -#: qcsrc/common/notifications/all.inc:770 +#: qcsrc/common/notifications/all.inc:771 msgid "^K1Cannot join given minigame session!" msgstr "^K1Non puoi partecipare alla data sessione di minigame!" -#: qcsrc/common/notifications/all.inc:772 +#: qcsrc/common/notifications/all.inc:773 #, c-format msgid "^BGPress ^F2%s^BG to enter/exit the vehicle" msgstr "^BGPremi ^F2%s^BG per entrare/uscire dal veicolo" -#: qcsrc/common/notifications/all.inc:773 +#: qcsrc/common/notifications/all.inc:774 #, c-format msgid "^BGPress ^F2%s^BG to enter the vehicle gunner" msgstr "^BGPremi ^F2%s^BG per entrare nel veicolo tiratore" -#: qcsrc/common/notifications/all.inc:774 +#: qcsrc/common/notifications/all.inc:775 #, c-format msgid "^BGPress ^F2%s^BG to steal this vehicle" msgstr "^BGPremi ^F2%s^BG per rubare questo veicolo" -#: qcsrc/common/notifications/all.inc:775 +#: qcsrc/common/notifications/all.inc:776 msgid "" "^F2The enemy is stealing one of your vehicles!\n" "^F4Stop them!" msgstr "^F2Il nemico sta rubando uno dei tuoi veicoli! ^F4Fermalo!" -#: qcsrc/common/notifications/all.inc:776 +#: qcsrc/common/notifications/all.inc:777 msgid "^F2Intruder detected, disabling shields!" msgstr "^F2Rilevato intruso, scudi disabilitati!" diff --git a/common.ja_JP.po b/common.ja_JP.po index 69a3678a99..6ad97013ac 100644 --- a/common.ja_JP.po +++ b/common.ja_JP.po @@ -6,7 +6,7 @@ # 8fb942b4466cdbffede843a6379dce7e_4dc4284 , 2021 # Antoni Das , 2017 # LegendGuard, 2020 -# LegendGuard, 2020-2021 +# LegendGuard, 2020-2022 # Lento , 2015 # RYU N. , 2021 # z 411 , 2021 @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: Xonotic\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-06 07:22+0100\n" -"PO-Revision-Date: 2022-03-06 06:22+0000\n" -"Last-Translator: divVerent \n" +"POT-Creation-Date: 2022-03-27 07:22+0200\n" +"PO-Revision-Date: 2013-09-12 16:53+0000\n" +"Last-Translator: z 411 , 2021\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/team-xonotic/" "xonotic/language/ja_JP/)\n" "Language: ja_JP\n" @@ -224,270 +224,270 @@ msgstr "^3ALT ^7+ ^3ARROW KEYS ^7で微調整する。" msgid "Player %d" msgstr "プレイヤー %d" -#: qcsrc/client/hud/panel/quickmenu.qc:617 -#: qcsrc/client/hud/panel/quickmenu.qc:619 +#: qcsrc/client/hud/panel/quickmenu.qc:608 +#: qcsrc/client/hud/panel/quickmenu.qc:610 #, c-format msgid "Submenu%d" msgstr "サブメニュー%d" -#: qcsrc/client/hud/panel/quickmenu.qc:624 +#: qcsrc/client/hud/panel/quickmenu.qc:615 #, c-format msgid "Command%d" msgstr "コマンド%d" -#: qcsrc/client/hud/panel/quickmenu.qc:650 +#: qcsrc/client/hud/panel/quickmenu.qc:641 msgid "Continue..." msgstr "続ける..." -#: qcsrc/client/hud/panel/quickmenu.qc:807 -#: qcsrc/client/hud/panel/quickmenu.qc:814 +#: qcsrc/client/hud/panel/quickmenu.qc:798 +#: qcsrc/client/hud/panel/quickmenu.qc:805 msgid "Chat" msgstr "チャット" -#: qcsrc/client/hud/panel/quickmenu.qc:808 +#: qcsrc/client/hud/panel/quickmenu.qc:799 msgid "QMCMD^Send public message to" msgstr "QMCMD^公開メッセージを送信する:" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^:-) / nice one" msgstr "QMCMD^ (^_^) / ナイス" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^nice one" msgstr "QMCMD^ナイス" -#: qcsrc/client/hud/panel/quickmenu.qc:810 +#: qcsrc/client/hud/panel/quickmenu.qc:801 msgid "QMCMD^good game" msgstr "よくやった" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck" msgstr "QMCMD^やあ / グッドラック" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck and have fun" msgstr "QMCMD^やあ / グッドラック、楽しんでね" -#: qcsrc/client/hud/panel/quickmenu.qc:813 +#: qcsrc/client/hud/panel/quickmenu.qc:804 msgid "QMCMD^Send in English" msgstr "QMCMD^英語で送る" -#: qcsrc/client/hud/panel/quickmenu.qc:818 -#: qcsrc/client/hud/panel/quickmenu.qc:834 +#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:825 msgid "QMCMD^Team chat" msgstr "QMCD^チームチャット" -#: qcsrc/client/hud/panel/quickmenu.qc:819 +#: qcsrc/client/hud/panel/quickmenu.qc:810 msgid "QMCMD^strength soon" msgstr "QMCMD^間もなく力" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item %x^7 (l:%y^7)" msgstr "QMCMD^無料アイテム %x^7 (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item, icon" msgstr "QMCMD^無料アイテム、アイコン" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item (l:%l^7)" msgstr "QMCMD^アイテムを取った (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item, icon" msgstr "QMCMD^アイテムを取った、アイコン" -#: qcsrc/client/hud/panel/quickmenu.qc:822 +#: qcsrc/client/hud/panel/quickmenu.qc:813 msgid "QMCMD^negative" msgstr "QMCMD^陰性" -#: qcsrc/client/hud/panel/quickmenu.qc:823 +#: qcsrc/client/hud/panel/quickmenu.qc:814 msgid "QMCMD^positive" msgstr "QMCMD^陽性" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^助けが必要 (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help, icon" msgstr "QMCMD^助けが必要、アイコン" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen (l:%y^7)" msgstr "QMCMD^敵が見えました (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen, icon" msgstr "QMCMD^敵が見えました、アイコン" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen (l:%y^7)" msgstr "QMCMD^旗が見えました (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen, icon" msgstr "QMCMD^旗が見えました、アイコン" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^守り中 (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending, icon" msgstr "QMCMD^守り中、アイコン" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^動き中 (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming, icon" msgstr "QMCMD^動き中、アイコン" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^攻撃中 (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking, icon" msgstr "QMCMD^攻撃中、アイコン" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier (l:%y^7)" msgstr "QMCMD^殺された旗持ち (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier, icon" msgstr "QMCMD^殺された旗持ち、アイコン" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 #, c-format msgid "QMCMD^dropped flag (l:%d^7)" msgstr "QMCMD^旗を落とした (l:%d^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 msgid "QMCMD^dropped flag, icon" msgstr "QMCMD^旗を落とした、アイコン" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^drop weapon, icon" msgstr "QMCMD^武器を落とす、アイコン" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^dropped weapon %w^7 (l:%l^7)" msgstr "QMCMD^武器を落とした、アイコン" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^drop flag/key, icon" msgstr "QMCMD^旗/鍵を落とす、アイコン" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^dropped flag/key %w^7 (l:%l^7)" msgstr "QMCMD^旗/鍵を落とした %w^7 (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:837 +#: qcsrc/client/hud/panel/quickmenu.qc:828 msgid "QMCMD^Send private message to" msgstr "QMCMD^非公開のメッセージを送信する" -#: qcsrc/client/hud/panel/quickmenu.qc:839 -#: qcsrc/client/hud/panel/quickmenu.qc:869 +#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:860 msgid "QMCMD^Settings" msgstr "QMCMD^設定" -#: qcsrc/client/hud/panel/quickmenu.qc:840 -#: qcsrc/client/hud/panel/quickmenu.qc:847 +#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:838 msgid "QMCMD^View/HUD settings" msgstr "QMCMD^ビュー / HUD設定" -#: qcsrc/client/hud/panel/quickmenu.qc:841 +#: qcsrc/client/hud/panel/quickmenu.qc:832 msgid "QMCMD^3rd person view" msgstr "QMCMD^三人称視点" -#: qcsrc/client/hud/panel/quickmenu.qc:842 +#: qcsrc/client/hud/panel/quickmenu.qc:833 msgid "QMCMD^Player models like mine" msgstr "QMCMD^私のような選手モデルを表示する" -#: qcsrc/client/hud/panel/quickmenu.qc:843 +#: qcsrc/client/hud/panel/quickmenu.qc:834 msgid "QMCMD^Names above players" msgstr "QMCMD^上に選手の名前" -#: qcsrc/client/hud/panel/quickmenu.qc:844 +#: qcsrc/client/hud/panel/quickmenu.qc:835 msgid "QMCMD^Crosshair per weapon" msgstr "QMCMD^武器ごとの十字線" -#: qcsrc/client/hud/panel/quickmenu.qc:845 +#: qcsrc/client/hud/panel/quickmenu.qc:836 msgid "QMCMD^FPS" msgstr "QMCMD^FPS" -#: qcsrc/client/hud/panel/quickmenu.qc:846 +#: qcsrc/client/hud/panel/quickmenu.qc:837 msgid "QMCMD^Net graph" msgstr "QMCMD^ネットグラフ" -#: qcsrc/client/hud/panel/quickmenu.qc:849 -#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:840 +#: qcsrc/client/hud/panel/quickmenu.qc:843 msgid "QMCMD^Sound settings" msgstr "QMCMD^サウンド設定" -#: qcsrc/client/hud/panel/quickmenu.qc:850 +#: qcsrc/client/hud/panel/quickmenu.qc:841 msgid "QMCMD^Hit sound" msgstr "QMCMD^衝撃のサウンド" -#: qcsrc/client/hud/panel/quickmenu.qc:851 +#: qcsrc/client/hud/panel/quickmenu.qc:842 msgid "QMCMD^Chat sound" msgstr "QMCMD^チャットのサウンド" -#: qcsrc/client/hud/panel/quickmenu.qc:856 +#: qcsrc/client/hud/panel/quickmenu.qc:847 msgid "QMCMD^Change spectator camera" msgstr "QMCMD^観客のカメラを変更する" -#: qcsrc/client/hud/panel/quickmenu.qc:861 -#: qcsrc/client/hud/panel/quickmenu.qc:865 +#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:856 msgid "QMCMD^Observer camera" msgstr "QMCMD^観客のカメラ" -#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:853 msgid "QMCMD^Increase speed" msgstr "QMCMD^速度を上げる" -#: qcsrc/client/hud/panel/quickmenu.qc:863 +#: qcsrc/client/hud/panel/quickmenu.qc:854 msgid "QMCMD^Decrease speed" msgstr "QMCMD^速度を下げる" -#: qcsrc/client/hud/panel/quickmenu.qc:864 +#: qcsrc/client/hud/panel/quickmenu.qc:855 msgid "QMCMD^Wall collision" msgstr "QMCMD^壁衝突" -#: qcsrc/client/hud/panel/quickmenu.qc:868 +#: qcsrc/client/hud/panel/quickmenu.qc:859 msgid "QMCMD^Fullscreen" msgstr "QMCMD^全画面" -#: qcsrc/client/hud/panel/quickmenu.qc:871 -#: qcsrc/client/hud/panel/quickmenu.qc:881 +#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:872 msgid "QMCMD^Call a vote" msgstr "QMCMD^投票を呼び出す" -#: qcsrc/client/hud/panel/quickmenu.qc:872 +#: qcsrc/client/hud/panel/quickmenu.qc:863 msgid "QMCMD^Restart the map" msgstr "QMCMD^マップを再起動する" -#: qcsrc/client/hud/panel/quickmenu.qc:873 +#: qcsrc/client/hud/panel/quickmenu.qc:864 msgid "QMCMD^End match" msgstr "QMCMD^試合終了" -#: qcsrc/client/hud/panel/quickmenu.qc:876 +#: qcsrc/client/hud/panel/quickmenu.qc:867 msgid "QMCMD^Reduce match time" msgstr "QMCMD^試合時刻を下げる" -#: qcsrc/client/hud/panel/quickmenu.qc:877 +#: qcsrc/client/hud/panel/quickmenu.qc:868 msgid "QMCMD^Extend match time" msgstr "QMCMD^試合時刻を拡張する" -#: qcsrc/client/hud/panel/quickmenu.qc:880 +#: qcsrc/client/hud/panel/quickmenu.qc:871 msgid "QMCMD^Shuffle teams" msgstr "QMCMD^チームをシャッフルする" -#: qcsrc/client/hud/panel/quickmenu.qc:885 +#: qcsrc/client/hud/panel/quickmenu.qc:876 msgid "QMCMD^Spectate a player" msgstr "QMCMD^選手を観戦する" @@ -1062,24 +1062,24 @@ msgstr "nmi" #: qcsrc/client/hud/panel/timer.qc:132 msgid "Warmup" -msgstr "" +msgstr "ウォームアップ" #: qcsrc/client/hud/panel/timer.qc:134 msgid "Timeout" -msgstr "" +msgstr "タイムアウト" #: qcsrc/client/hud/panel/timer.qc:136 msgid "Sudden Death" -msgstr "" +msgstr "突然死" #: qcsrc/client/hud/panel/timer.qc:138 msgid "Overtime" -msgstr "" +msgstr "残業" #: qcsrc/client/hud/panel/timer.qc:140 #, c-format msgid "Overtime #%d" -msgstr "" +msgstr "残業 #%d" #: qcsrc/client/hud/panel/vote.qc:30 msgid "^1You must answer before entering hud configure mode" @@ -1253,14 +1253,14 @@ msgstr "ラウンドに勝つために全ての敵チームメイトを殺して #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 #: qcsrc/menu/xonotic/dialog_multiplayer_create.qc:105 msgid "Frag limit:" msgstr "削除制限:" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 msgid "The amount of frags needed before the match will end" msgstr "試合が終了する前に必要な削除の量" @@ -3320,7 +3320,7 @@ msgid "^BG%s%s^K1 was riddled full of holes by ^BG%s^K1's Machine Gun%s%s" msgstr "^BG%s%s^K1 は ^BG%s^K1 の機関銃%s%sによって穴だらけになられた" #: qcsrc/common/notifications/all.inc:472 -#: qcsrc/common/notifications/all.inc:778 +#: qcsrc/common/notifications/all.inc:779 #, c-format msgid "^BGYou cannot place more than ^F2%s^BG mines at a time" msgstr "^BG一度に ^F2%s^BG 以上の鉱山を置けません" @@ -4128,7 +4128,13 @@ msgstr "^BG ^TC^TT 鍵で開始ている" msgid "^BGYou have no lives left, you must wait until the next match" msgstr "^BGあなたには残りの命がない、あなたは次の試合まで待つ必要がない" -#: qcsrc/common/notifications/all.inc:707 +#: qcsrc/common/notifications/all.inc:706 +msgid "" +"^F4WARNING:^BG you can't rejoin this match after spectating.\n" +"Use the same command again to spectate anyway." +msgstr "" + +#: qcsrc/common/notifications/all.inc:708 #, c-format msgid "" "^BGWaiting for players to join...\n" @@ -4137,43 +4143,43 @@ msgstr "" "^BG選手の参加を待ち中...\n" "必要活発な選手: %s" -#: qcsrc/common/notifications/all.inc:708 +#: qcsrc/common/notifications/all.inc:709 #, c-format msgid "^BGWaiting for %s player(s) to join..." msgstr "^BG%s 選手の参加を待ち中..." -#: qcsrc/common/notifications/all.inc:710 +#: qcsrc/common/notifications/all.inc:711 msgid "^BGYour weapon has been downgraded until you find some ammo!" msgstr "^BG弾薬がいくつか見つかるまで、あなたの武器が格下げされた!" -#: qcsrc/common/notifications/all.inc:711 +#: qcsrc/common/notifications/all.inc:712 msgid "^F4^COUNT^BG left to find some ammo!" msgstr "^F4残り ^COUNT^BG で弾薬が見つかる!" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo or you'll be dead in ^F4^COUNT^BG!" msgstr "^BG弾薬を入手しないと ^F4^COUNT^BG で死んでしまいる!" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo! ^F4^COUNT^BG left!" msgstr "^BG弾薬を入手しろ! ^F4残り ^COUNT^BG !" -#: qcsrc/common/notifications/all.inc:713 +#: qcsrc/common/notifications/all.inc:714 #, c-format msgid "^F2Extra lives remaining: ^K1%s" msgstr "^F2残りの余分な命: ^K1%s" -#: qcsrc/common/notifications/all.inc:715 qcsrc/menu/xonotic/campaign.qc:244 +#: qcsrc/common/notifications/all.inc:716 qcsrc/menu/xonotic/campaign.qc:244 #, c-format msgid "Level %s: " msgstr "レベル %s: " -#: qcsrc/common/notifications/all.inc:715 +#: qcsrc/common/notifications/all.inc:716 #, c-format msgid "^BGPress ^F2%s^BG to enter the game" msgstr "^BG ^F2%s^BG を押してゲームに入る" -#: qcsrc/common/notifications/all.inc:718 +#: qcsrc/common/notifications/all.inc:719 #, c-format msgid "" "^F2^COUNT^BG until weapon change...\n" @@ -4182,34 +4188,34 @@ msgstr "" "^F2^COUNT^BG 、武器が変更されるまで...\n" "次の武器: ^F1%s" -#: qcsrc/common/notifications/all.inc:719 +#: qcsrc/common/notifications/all.inc:720 #, c-format msgid "^F2Active weapon: ^F1%s" msgstr "^F2活発な武器: ^F1%s" -#: qcsrc/common/notifications/all.inc:721 +#: qcsrc/common/notifications/all.inc:722 #, c-format msgid "^BGYou captured %s^BG control point" msgstr "^BG %s^BG コントロールポイントを取れた" -#: qcsrc/common/notifications/all.inc:722 +#: qcsrc/common/notifications/all.inc:723 msgid "^BGYou captured a control point" msgstr "^BGコントロールポイントを取れた" -#: qcsrc/common/notifications/all.inc:723 +#: qcsrc/common/notifications/all.inc:724 #, c-format msgid "^TC^TT^BG team captured %s^BG control point" msgstr "^TC^TT^BG チームは %s^BG コントロールポイントを取れた" -#: qcsrc/common/notifications/all.inc:724 +#: qcsrc/common/notifications/all.inc:725 msgid "^TC^TT^BG team captured a control point" msgstr "^TC^TT^BG チームはコントロールポイントを取れた" -#: qcsrc/common/notifications/all.inc:725 +#: qcsrc/common/notifications/all.inc:726 msgid "^BGThis control point currently cannot be captured" msgstr "^BGこのコントロールポイントは現在取られない" -#: qcsrc/common/notifications/all.inc:726 +#: qcsrc/common/notifications/all.inc:727 msgid "" "^BGThe enemy generator cannot be destroyed yet\n" "^F2Capture some control points to unshield it" @@ -4217,11 +4223,11 @@ msgstr "" "^BG敵の発生器はまだ破壊できない\n" "^F2いくつかのコントロールポイントを取れて、非シールドする" -#: qcsrc/common/notifications/all.inc:727 +#: qcsrc/common/notifications/all.inc:728 msgid "^BGThe ^TCenemy^BG generator is no longer shielded!" msgstr "^BG ^TC 敵^BGの発生器はシールドされなくなった!" -#: qcsrc/common/notifications/all.inc:728 +#: qcsrc/common/notifications/all.inc:729 msgid "" "^K1Your generator is NOT shielded!\n" "^BGRe-capture control points to shield it!" @@ -4229,33 +4235,33 @@ msgstr "" "^K1あなたの発生器はシールドされていない!\n" "^BGコントロールポイントを再取れてシールドして!" -#: qcsrc/common/notifications/all.inc:729 +#: qcsrc/common/notifications/all.inc:730 #, c-format msgid "^BGPress ^F2%s^BG to teleport" msgstr "^BG ^F2%s^BG を押してテレポートする" -#: qcsrc/common/notifications/all.inc:730 +#: qcsrc/common/notifications/all.inc:731 #, c-format msgid "^BGTeleporting disabled for %s" msgstr "^BGテレポートは %s 間無効" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep fragging until we have a winner!" msgstr "" -"^F2残業中!\n" -"勝者が出るまで削除を立て続けて!" +"^F4残業中^F2!\n" +"^F2勝者が出るまで削除を立て続けて!" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep scoring until we have a winner!" msgstr "" -"^F2残業中!\n" -"勝者が出るまで得点を立て続けて!" +"^F4残業中^F2!\n" +"^F2勝者が出るまで得点を立て続けて!" -#: qcsrc/common/notifications/all.inc:733 +#: qcsrc/common/notifications/all.inc:734 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "\n" @@ -4269,7 +4275,7 @@ msgstr "" "チームが保持するコントロールポイントが多いほど、\n" "敵の発生器の減衰が速くなる" -#: qcsrc/common/notifications/all.inc:734 +#: qcsrc/common/notifications/all.inc:735 #, c-format msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" @@ -4278,123 +4284,123 @@ msgstr "" "^F2残業中!\n" "^BG F4%s^BG がゲームに追加された!" -#: qcsrc/common/notifications/all.inc:736 +#: qcsrc/common/notifications/all.inc:737 msgid "^K1In^BG-portal created" msgstr "^BGポータル^K1内^BGが作成された" -#: qcsrc/common/notifications/all.inc:737 +#: qcsrc/common/notifications/all.inc:738 msgid "^F3Out^BG-portal created" msgstr "^BGポータル^F3外^BGが作成された" -#: qcsrc/common/notifications/all.inc:738 +#: qcsrc/common/notifications/all.inc:739 msgid "^F1Portal creation failed" msgstr "^F1ポータルの作成に失敗した" -#: qcsrc/common/notifications/all.inc:740 +#: qcsrc/common/notifications/all.inc:741 msgid "^F2Strength infuses your weapons with devastating power" msgstr "^F2「力」はあなたの武器に壊滅的な力を吹き込みる" -#: qcsrc/common/notifications/all.inc:741 +#: qcsrc/common/notifications/all.inc:742 msgid "^F2Strength has worn off" msgstr "^F2「力」がすり減った" -#: qcsrc/common/notifications/all.inc:743 +#: qcsrc/common/notifications/all.inc:744 msgid "^F2Shield surrounds you" msgstr "^F2「寿」があなたを囲んでいる" -#: qcsrc/common/notifications/all.inc:744 +#: qcsrc/common/notifications/all.inc:745 msgid "^F2Shield has worn off" msgstr "^F2「寿」がすり減った" -#: qcsrc/common/notifications/all.inc:746 +#: qcsrc/common/notifications/all.inc:747 msgid "^F2You are on speed" msgstr "^F2「速度」に乗っている" -#: qcsrc/common/notifications/all.inc:747 +#: qcsrc/common/notifications/all.inc:748 msgid "^F2Speed has worn off" msgstr "^F2「速度」がすり減った" -#: qcsrc/common/notifications/all.inc:749 +#: qcsrc/common/notifications/all.inc:750 msgid "^F2You are invisible" msgstr "^F2あなたには「不可視」がある" -#: qcsrc/common/notifications/all.inc:750 +#: qcsrc/common/notifications/all.inc:751 msgid "^F2Invisibility has worn off" msgstr "^F2「不可視」がすり減った" -#: qcsrc/common/notifications/all.inc:752 +#: qcsrc/common/notifications/all.inc:753 msgid "^F2The race is over, finish your lap!" msgstr "^F2レースが終わった、ラップを終了して!" -#: qcsrc/common/notifications/all.inc:754 +#: qcsrc/common/notifications/all.inc:755 msgid "^BGSequence completed!" msgstr "^BG順序完了!" -#: qcsrc/common/notifications/all.inc:755 +#: qcsrc/common/notifications/all.inc:756 msgid "^BGThere are more to go..." msgstr "^BG続行するにはさらに必要がある..." -#: qcsrc/common/notifications/all.inc:756 +#: qcsrc/common/notifications/all.inc:757 #, c-format msgid "^BGOnly %s^BG more to go..." msgstr "^BG後 ^BG%s だけ..." -#: qcsrc/common/notifications/all.inc:758 +#: qcsrc/common/notifications/all.inc:759 msgid "^F2Superweapons have broken down" msgstr "^F2スーパー武器が壊れられた" -#: qcsrc/common/notifications/all.inc:759 +#: qcsrc/common/notifications/all.inc:760 msgid "^F2Superweapons have been lost" msgstr "^F2スーパー武器は失われた" -#: qcsrc/common/notifications/all.inc:760 +#: qcsrc/common/notifications/all.inc:761 msgid "^F2You now have a superweapon" msgstr "^F2今、あなたはスーパー武器がある" -#: qcsrc/common/notifications/all.inc:762 +#: qcsrc/common/notifications/all.inc:763 msgid "^K1Changing to ^TC^TT^K1 in ^COUNT" msgstr "^K1 ^COUNT に ^TC^TT^K1 に変更中" -#: qcsrc/common/notifications/all.inc:763 +#: qcsrc/common/notifications/all.inc:764 msgid "^K1Changing team in ^COUNT" msgstr "^K1 ^COUNT にチームに変更中" -#: qcsrc/common/notifications/all.inc:764 +#: qcsrc/common/notifications/all.inc:765 msgid "^K1Spectating in ^COUNT" msgstr "^K1 ^COUNT に観戦中" -#: qcsrc/common/notifications/all.inc:765 +#: qcsrc/common/notifications/all.inc:766 msgid "^K1Suicide in ^COUNT" msgstr "^K1 ^COUNT に自殺中" -#: qcsrc/common/notifications/all.inc:767 +#: qcsrc/common/notifications/all.inc:768 msgid "^F4Timeout begins in ^COUNT" msgstr "^F4タイムアウトは ^COUNT から開始します" -#: qcsrc/common/notifications/all.inc:768 +#: qcsrc/common/notifications/all.inc:769 msgid "^F4Timeout ends in ^COUNT" msgstr "^F4タイムアウトは ^COUNT で終了します" -#: qcsrc/common/notifications/all.inc:770 +#: qcsrc/common/notifications/all.inc:771 msgid "^K1Cannot join given minigame session!" msgstr "^K1特定のミニゲームセッションに参加できない!" -#: qcsrc/common/notifications/all.inc:772 +#: qcsrc/common/notifications/all.inc:773 #, c-format msgid "^BGPress ^F2%s^BG to enter/exit the vehicle" msgstr "^BG乗り物に出入りするために ^F2%s^BG を押して" -#: qcsrc/common/notifications/all.inc:773 +#: qcsrc/common/notifications/all.inc:774 #, c-format msgid "^BGPress ^F2%s^BG to enter the vehicle gunner" msgstr "^BG乗り物の砲手に入るために ^F2%s^BG を押して" -#: qcsrc/common/notifications/all.inc:774 +#: qcsrc/common/notifications/all.inc:775 #, c-format msgid "^BGPress ^F2%s^BG to steal this vehicle" msgstr "^BGこの乗り物を盗むために ^F2%s^BG を押して" -#: qcsrc/common/notifications/all.inc:775 +#: qcsrc/common/notifications/all.inc:776 msgid "" "^F2The enemy is stealing one of your vehicles!\n" "^F4Stop them!" @@ -4402,7 +4408,7 @@ msgstr "" "^F2敵はあなたの乗り物を盗んでいる!\n" "^F4彼らを止めて!" -#: qcsrc/common/notifications/all.inc:776 +#: qcsrc/common/notifications/all.inc:777 msgid "^F2Intruder detected, disabling shields!" msgstr "^F2侵入者を検出した、シールドを無効中!" @@ -6372,11 +6378,11 @@ msgstr "経過時間を表示する:" #: qcsrc/menu/xonotic/dialog_hudpanel_timer.qc:23 msgid "Secondary timer:" -msgstr "" +msgstr "二次タイマー:" #: qcsrc/menu/xonotic/dialog_hudpanel_timer.qc:27 msgid "Swapped" -msgstr "" +msgstr "交換された" #: qcsrc/menu/xonotic/dialog_hudpanel_timer.qh:6 msgid "Timer Panel" @@ -7207,7 +7213,7 @@ msgstr "参加!" #: qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfo.qc:93 #: qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfo.qc:105 msgid "No Terms of Service specified" -msgstr "" +msgstr "利用規約は指定されていません" #: qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfo.qc:144 #: qcsrc/menu/xonotic/serverlist.qc:1052 @@ -7270,7 +7276,7 @@ msgstr "設定を変更するには `crypto_aeslevel` cvarを使用します" #: qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfo.qc:203 #: qcsrc/menu/xonotic/serverlist.qc:1056 msgid "custom stats server" -msgstr "" +msgstr "カスタムサーバー状態" #: qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfo.qc:203 #: qcsrc/menu/xonotic/serverlist.qc:1056 @@ -7284,17 +7290,17 @@ msgstr "有効な状態" #: qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfo.qc:213 msgid "Status" -msgstr "" +msgstr "ステータス" #: qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfo.qc:214 #: qcsrc/menu/xonotic/dialog_multiplayer_join_termsofservice.qh:7 #: qcsrc/menu/xonotic/dialog_termsofservice.qh:11 msgid "Terms of Service" -msgstr "" +msgstr "利用規約" #: qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfo.qh:7 msgid "Server Info" -msgstr "" +msgstr "サーバー情報" #: qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfotab.qc:24 msgid "Hostname:" @@ -7347,7 +7353,7 @@ msgstr "キー:" #: qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfotab.qc:96 msgid "Stats:" -msgstr "" +msgstr "状態:" #: qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfotab.qh:6 msgid "Server Information" @@ -9674,19 +9680,19 @@ msgstr "チームの選択" #: qcsrc/menu/xonotic/dialog_termsofservice.qc:78 msgid "Terms of Service have been updated. Please read them before continuing:" -msgstr "" +msgstr "利用規約を更新されました。続行する前にそれらをお読みください:" #: qcsrc/menu/xonotic/dialog_termsofservice.qc:80 msgid "Welcome to Xonotic! Please read the following Terms of Service:" -msgstr "" +msgstr "XONOTICへようこそ! 利用規約をお読みください:" #: qcsrc/menu/xonotic/dialog_termsofservice.qc:93 msgid "Accept" -msgstr "" +msgstr "同意する" #: qcsrc/menu/xonotic/dialog_termsofservice.qc:97 msgid "Don't accept (quit the game)" -msgstr "" +msgstr "同意しない(ゲームを終了する)" #: qcsrc/menu/xonotic/dialog_uid2name.qc:10 msgid "Allow player statistics to use your nickname?" diff --git a/common.jbo.po b/common.jbo.po index b8e3f2c41d..c0cf2cbf95 100644 --- a/common.jbo.po +++ b/common.jbo.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: Xonotic\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-06 07:22+0100\n" -"PO-Revision-Date: 2022-03-06 06:22+0000\n" -"Last-Translator: divVerent \n" +"POT-Creation-Date: 2022-03-27 07:22+0200\n" +"PO-Revision-Date: 2013-09-12 16:53+0000\n" +"Last-Translator: FULL NAME \n" "Language-Team: Lojban (http://www.transifex.com/team-xonotic/xonotic/" "language/jbo/)\n" "Language: jbo\n" @@ -215,270 +215,270 @@ msgstr "" msgid "Player %d" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:617 -#: qcsrc/client/hud/panel/quickmenu.qc:619 +#: qcsrc/client/hud/panel/quickmenu.qc:608 +#: qcsrc/client/hud/panel/quickmenu.qc:610 #, c-format msgid "Submenu%d" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:624 +#: qcsrc/client/hud/panel/quickmenu.qc:615 #, c-format msgid "Command%d" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:650 +#: qcsrc/client/hud/panel/quickmenu.qc:641 msgid "Continue..." msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:807 -#: qcsrc/client/hud/panel/quickmenu.qc:814 +#: qcsrc/client/hud/panel/quickmenu.qc:798 +#: qcsrc/client/hud/panel/quickmenu.qc:805 msgid "Chat" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:808 +#: qcsrc/client/hud/panel/quickmenu.qc:799 msgid "QMCMD^Send public message to" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^:-) / nice one" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^nice one" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:810 +#: qcsrc/client/hud/panel/quickmenu.qc:801 msgid "QMCMD^good game" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck and have fun" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:813 +#: qcsrc/client/hud/panel/quickmenu.qc:804 msgid "QMCMD^Send in English" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:818 -#: qcsrc/client/hud/panel/quickmenu.qc:834 +#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:825 msgid "QMCMD^Team chat" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:819 +#: qcsrc/client/hud/panel/quickmenu.qc:810 msgid "QMCMD^strength soon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item %x^7 (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:822 +#: qcsrc/client/hud/panel/quickmenu.qc:813 msgid "QMCMD^negative" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:823 +#: qcsrc/client/hud/panel/quickmenu.qc:814 msgid "QMCMD^positive" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 #, c-format msgid "QMCMD^dropped flag (l:%d^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 msgid "QMCMD^dropped flag, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^drop weapon, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^dropped weapon %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^drop flag/key, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^dropped flag/key %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:837 +#: qcsrc/client/hud/panel/quickmenu.qc:828 msgid "QMCMD^Send private message to" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:839 -#: qcsrc/client/hud/panel/quickmenu.qc:869 +#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:860 msgid "QMCMD^Settings" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:840 -#: qcsrc/client/hud/panel/quickmenu.qc:847 +#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:838 msgid "QMCMD^View/HUD settings" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:841 +#: qcsrc/client/hud/panel/quickmenu.qc:832 msgid "QMCMD^3rd person view" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:842 +#: qcsrc/client/hud/panel/quickmenu.qc:833 msgid "QMCMD^Player models like mine" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:843 +#: qcsrc/client/hud/panel/quickmenu.qc:834 msgid "QMCMD^Names above players" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:844 +#: qcsrc/client/hud/panel/quickmenu.qc:835 msgid "QMCMD^Crosshair per weapon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:845 +#: qcsrc/client/hud/panel/quickmenu.qc:836 msgid "QMCMD^FPS" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:846 +#: qcsrc/client/hud/panel/quickmenu.qc:837 msgid "QMCMD^Net graph" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:849 -#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:840 +#: qcsrc/client/hud/panel/quickmenu.qc:843 msgid "QMCMD^Sound settings" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:850 +#: qcsrc/client/hud/panel/quickmenu.qc:841 msgid "QMCMD^Hit sound" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:851 +#: qcsrc/client/hud/panel/quickmenu.qc:842 msgid "QMCMD^Chat sound" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:856 +#: qcsrc/client/hud/panel/quickmenu.qc:847 msgid "QMCMD^Change spectator camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:861 -#: qcsrc/client/hud/panel/quickmenu.qc:865 +#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:856 msgid "QMCMD^Observer camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:853 msgid "QMCMD^Increase speed" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:863 +#: qcsrc/client/hud/panel/quickmenu.qc:854 msgid "QMCMD^Decrease speed" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:864 +#: qcsrc/client/hud/panel/quickmenu.qc:855 msgid "QMCMD^Wall collision" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:868 +#: qcsrc/client/hud/panel/quickmenu.qc:859 msgid "QMCMD^Fullscreen" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:871 -#: qcsrc/client/hud/panel/quickmenu.qc:881 +#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:872 msgid "QMCMD^Call a vote" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:872 +#: qcsrc/client/hud/panel/quickmenu.qc:863 msgid "QMCMD^Restart the map" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:873 +#: qcsrc/client/hud/panel/quickmenu.qc:864 msgid "QMCMD^End match" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:876 +#: qcsrc/client/hud/panel/quickmenu.qc:867 msgid "QMCMD^Reduce match time" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:877 +#: qcsrc/client/hud/panel/quickmenu.qc:868 msgid "QMCMD^Extend match time" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:880 +#: qcsrc/client/hud/panel/quickmenu.qc:871 msgid "QMCMD^Shuffle teams" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:885 +#: qcsrc/client/hud/panel/quickmenu.qc:876 msgid "QMCMD^Spectate a player" msgstr "" @@ -1227,14 +1227,14 @@ msgstr "" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 #: qcsrc/menu/xonotic/dialog_multiplayer_create.qc:105 msgid "Frag limit:" msgstr "" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 msgid "The amount of frags needed before the match will end" msgstr "" @@ -3265,7 +3265,7 @@ msgid "^BG%s%s^K1 was riddled full of holes by ^BG%s^K1's Machine Gun%s%s" msgstr "" #: qcsrc/common/notifications/all.inc:472 -#: qcsrc/common/notifications/all.inc:778 +#: qcsrc/common/notifications/all.inc:779 #, c-format msgid "^BGYou cannot place more than ^F2%s^BG mines at a time" msgstr "" @@ -4043,122 +4043,128 @@ msgstr "" msgid "^BGYou have no lives left, you must wait until the next match" msgstr "" -#: qcsrc/common/notifications/all.inc:707 +#: qcsrc/common/notifications/all.inc:706 +msgid "" +"^F4WARNING:^BG you can't rejoin this match after spectating.\n" +"Use the same command again to spectate anyway." +msgstr "" + +#: qcsrc/common/notifications/all.inc:708 #, c-format msgid "" "^BGWaiting for players to join...\n" "Need active players for: %s" msgstr "" -#: qcsrc/common/notifications/all.inc:708 +#: qcsrc/common/notifications/all.inc:709 #, c-format msgid "^BGWaiting for %s player(s) to join..." msgstr "" -#: qcsrc/common/notifications/all.inc:710 +#: qcsrc/common/notifications/all.inc:711 msgid "^BGYour weapon has been downgraded until you find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:711 +#: qcsrc/common/notifications/all.inc:712 msgid "^F4^COUNT^BG left to find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo or you'll be dead in ^F4^COUNT^BG!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo! ^F4^COUNT^BG left!" msgstr "" -#: qcsrc/common/notifications/all.inc:713 +#: qcsrc/common/notifications/all.inc:714 #, c-format msgid "^F2Extra lives remaining: ^K1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:715 qcsrc/menu/xonotic/campaign.qc:244 +#: qcsrc/common/notifications/all.inc:716 qcsrc/menu/xonotic/campaign.qc:244 #, c-format msgid "Level %s: " msgstr "" -#: qcsrc/common/notifications/all.inc:715 +#: qcsrc/common/notifications/all.inc:716 #, c-format msgid "^BGPress ^F2%s^BG to enter the game" msgstr "" -#: qcsrc/common/notifications/all.inc:718 +#: qcsrc/common/notifications/all.inc:719 #, c-format msgid "" "^F2^COUNT^BG until weapon change...\n" "Next weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:719 +#: qcsrc/common/notifications/all.inc:720 #, c-format msgid "^F2Active weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:721 +#: qcsrc/common/notifications/all.inc:722 #, c-format msgid "^BGYou captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:722 +#: qcsrc/common/notifications/all.inc:723 msgid "^BGYou captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:723 +#: qcsrc/common/notifications/all.inc:724 #, c-format msgid "^TC^TT^BG team captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:724 +#: qcsrc/common/notifications/all.inc:725 msgid "^TC^TT^BG team captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:725 +#: qcsrc/common/notifications/all.inc:726 msgid "^BGThis control point currently cannot be captured" msgstr "" -#: qcsrc/common/notifications/all.inc:726 +#: qcsrc/common/notifications/all.inc:727 msgid "" "^BGThe enemy generator cannot be destroyed yet\n" "^F2Capture some control points to unshield it" msgstr "" -#: qcsrc/common/notifications/all.inc:727 +#: qcsrc/common/notifications/all.inc:728 msgid "^BGThe ^TCenemy^BG generator is no longer shielded!" msgstr "" -#: qcsrc/common/notifications/all.inc:728 +#: qcsrc/common/notifications/all.inc:729 msgid "" "^K1Your generator is NOT shielded!\n" "^BGRe-capture control points to shield it!" msgstr "" -#: qcsrc/common/notifications/all.inc:729 +#: qcsrc/common/notifications/all.inc:730 #, c-format msgid "^BGPress ^F2%s^BG to teleport" msgstr "" -#: qcsrc/common/notifications/all.inc:730 +#: qcsrc/common/notifications/all.inc:731 #, c-format msgid "^BGTeleporting disabled for %s" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep fragging until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep scoring until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:733 +#: qcsrc/common/notifications/all.inc:734 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "\n" @@ -4167,136 +4173,136 @@ msgid "" "the faster the enemy generator decays" msgstr "" -#: qcsrc/common/notifications/all.inc:734 +#: qcsrc/common/notifications/all.inc:735 #, c-format msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "^BGAdded ^F4%s^BG to the game!" msgstr "" -#: qcsrc/common/notifications/all.inc:736 +#: qcsrc/common/notifications/all.inc:737 msgid "^K1In^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:737 +#: qcsrc/common/notifications/all.inc:738 msgid "^F3Out^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:738 +#: qcsrc/common/notifications/all.inc:739 msgid "^F1Portal creation failed" msgstr "" -#: qcsrc/common/notifications/all.inc:740 +#: qcsrc/common/notifications/all.inc:741 msgid "^F2Strength infuses your weapons with devastating power" msgstr "" -#: qcsrc/common/notifications/all.inc:741 +#: qcsrc/common/notifications/all.inc:742 msgid "^F2Strength has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:743 +#: qcsrc/common/notifications/all.inc:744 msgid "^F2Shield surrounds you" msgstr "" -#: qcsrc/common/notifications/all.inc:744 +#: qcsrc/common/notifications/all.inc:745 msgid "^F2Shield has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:746 +#: qcsrc/common/notifications/all.inc:747 msgid "^F2You are on speed" msgstr "" -#: qcsrc/common/notifications/all.inc:747 +#: qcsrc/common/notifications/all.inc:748 msgid "^F2Speed has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:749 +#: qcsrc/common/notifications/all.inc:750 msgid "^F2You are invisible" msgstr "" -#: qcsrc/common/notifications/all.inc:750 +#: qcsrc/common/notifications/all.inc:751 msgid "^F2Invisibility has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:752 +#: qcsrc/common/notifications/all.inc:753 msgid "^F2The race is over, finish your lap!" msgstr "" -#: qcsrc/common/notifications/all.inc:754 +#: qcsrc/common/notifications/all.inc:755 msgid "^BGSequence completed!" msgstr "" -#: qcsrc/common/notifications/all.inc:755 +#: qcsrc/common/notifications/all.inc:756 msgid "^BGThere are more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:756 +#: qcsrc/common/notifications/all.inc:757 #, c-format msgid "^BGOnly %s^BG more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:758 +#: qcsrc/common/notifications/all.inc:759 msgid "^F2Superweapons have broken down" msgstr "" -#: qcsrc/common/notifications/all.inc:759 +#: qcsrc/common/notifications/all.inc:760 msgid "^F2Superweapons have been lost" msgstr "" -#: qcsrc/common/notifications/all.inc:760 +#: qcsrc/common/notifications/all.inc:761 msgid "^F2You now have a superweapon" msgstr "" -#: qcsrc/common/notifications/all.inc:762 +#: qcsrc/common/notifications/all.inc:763 msgid "^K1Changing to ^TC^TT^K1 in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:763 +#: qcsrc/common/notifications/all.inc:764 msgid "^K1Changing team in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:764 +#: qcsrc/common/notifications/all.inc:765 msgid "^K1Spectating in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:765 +#: qcsrc/common/notifications/all.inc:766 msgid "^K1Suicide in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:767 +#: qcsrc/common/notifications/all.inc:768 msgid "^F4Timeout begins in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:768 +#: qcsrc/common/notifications/all.inc:769 msgid "^F4Timeout ends in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:770 +#: qcsrc/common/notifications/all.inc:771 msgid "^K1Cannot join given minigame session!" msgstr "" -#: qcsrc/common/notifications/all.inc:772 +#: qcsrc/common/notifications/all.inc:773 #, c-format msgid "^BGPress ^F2%s^BG to enter/exit the vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:773 +#: qcsrc/common/notifications/all.inc:774 #, c-format msgid "^BGPress ^F2%s^BG to enter the vehicle gunner" msgstr "" -#: qcsrc/common/notifications/all.inc:774 +#: qcsrc/common/notifications/all.inc:775 #, c-format msgid "^BGPress ^F2%s^BG to steal this vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:775 +#: qcsrc/common/notifications/all.inc:776 msgid "" "^F2The enemy is stealing one of your vehicles!\n" "^F4Stop them!" msgstr "" -#: qcsrc/common/notifications/all.inc:776 +#: qcsrc/common/notifications/all.inc:777 msgid "^F2Intruder detected, disabling shields!" msgstr "" diff --git a/common.kk@Cyrl.po b/common.kk@Cyrl.po index 6587f852f0..10184d19c6 100644 --- a/common.kk@Cyrl.po +++ b/common.kk@Cyrl.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: Xonotic\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-06 07:22+0100\n" -"PO-Revision-Date: 2022-03-06 06:22+0000\n" -"Last-Translator: divVerent \n" +"POT-Creation-Date: 2022-03-27 07:22+0200\n" +"PO-Revision-Date: 2013-09-12 16:53+0000\n" +"Last-Translator: Артем Быстров, 2015-2016\n" "Language-Team: Kazakh (Cyrillic) (http://www.transifex.com/team-xonotic/" "xonotic/language/kk@Cyrl/)\n" "Language: kk@Cyrl\n" @@ -219,270 +219,270 @@ msgstr "" msgid "Player %d" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:617 -#: qcsrc/client/hud/panel/quickmenu.qc:619 +#: qcsrc/client/hud/panel/quickmenu.qc:608 +#: qcsrc/client/hud/panel/quickmenu.qc:610 #, c-format msgid "Submenu%d" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:624 +#: qcsrc/client/hud/panel/quickmenu.qc:615 #, c-format msgid "Command%d" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:650 +#: qcsrc/client/hud/panel/quickmenu.qc:641 msgid "Continue..." msgstr "Жалғау..." -#: qcsrc/client/hud/panel/quickmenu.qc:807 -#: qcsrc/client/hud/panel/quickmenu.qc:814 +#: qcsrc/client/hud/panel/quickmenu.qc:798 +#: qcsrc/client/hud/panel/quickmenu.qc:805 msgid "Chat" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:808 +#: qcsrc/client/hud/panel/quickmenu.qc:799 msgid "QMCMD^Send public message to" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^:-) / nice one" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^nice one" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:810 +#: qcsrc/client/hud/panel/quickmenu.qc:801 msgid "QMCMD^good game" msgstr "QMCMD^жақсы ойыны" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck" msgstr "QMCMD^hi / сәттілік тілеймін!" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck and have fun" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:813 +#: qcsrc/client/hud/panel/quickmenu.qc:804 msgid "QMCMD^Send in English" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:818 -#: qcsrc/client/hud/panel/quickmenu.qc:834 +#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:825 msgid "QMCMD^Team chat" msgstr "QMCMD^ Топтық чат" -#: qcsrc/client/hud/panel/quickmenu.qc:819 +#: qcsrc/client/hud/panel/quickmenu.qc:810 msgid "QMCMD^strength soon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item %x^7 (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:822 +#: qcsrc/client/hud/panel/quickmenu.qc:813 msgid "QMCMD^negative" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:823 +#: qcsrc/client/hud/panel/quickmenu.qc:814 msgid "QMCMD^positive" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^көмек керек (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help, icon" msgstr "QMCMD^көмек керек, icon" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^шабуылы (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 #, c-format msgid "QMCMD^dropped flag (l:%d^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 msgid "QMCMD^dropped flag, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^drop weapon, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^dropped weapon %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^drop flag/key, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^dropped flag/key %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:837 +#: qcsrc/client/hud/panel/quickmenu.qc:828 msgid "QMCMD^Send private message to" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:839 -#: qcsrc/client/hud/panel/quickmenu.qc:869 +#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:860 msgid "QMCMD^Settings" msgstr "QMCMD^Баптаулар" -#: qcsrc/client/hud/panel/quickmenu.qc:840 -#: qcsrc/client/hud/panel/quickmenu.qc:847 +#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:838 msgid "QMCMD^View/HUD settings" msgstr "QMCMD^Түрі/HUD-тың баптаулар" -#: qcsrc/client/hud/panel/quickmenu.qc:841 +#: qcsrc/client/hud/panel/quickmenu.qc:832 msgid "QMCMD^3rd person view" msgstr "QMCMD^3-ші беткен түрі" -#: qcsrc/client/hud/panel/quickmenu.qc:842 +#: qcsrc/client/hud/panel/quickmenu.qc:833 msgid "QMCMD^Player models like mine" msgstr "QMCMD^Менде тартқан модельмен ойыншылар" -#: qcsrc/client/hud/panel/quickmenu.qc:843 +#: qcsrc/client/hud/panel/quickmenu.qc:834 msgid "QMCMD^Names above players" msgstr "QMCMD^Ойыншылар үстінде есімдер" -#: qcsrc/client/hud/panel/quickmenu.qc:844 +#: qcsrc/client/hud/panel/quickmenu.qc:835 msgid "QMCMD^Crosshair per weapon" msgstr "QMCMD^Отқамен алдында көздеуі" -#: qcsrc/client/hud/panel/quickmenu.qc:845 +#: qcsrc/client/hud/panel/quickmenu.qc:836 msgid "QMCMD^FPS" msgstr "QMCMD^FPS" -#: qcsrc/client/hud/panel/quickmenu.qc:846 +#: qcsrc/client/hud/panel/quickmenu.qc:837 msgid "QMCMD^Net graph" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:849 -#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:840 +#: qcsrc/client/hud/panel/quickmenu.qc:843 msgid "QMCMD^Sound settings" msgstr "QMCMD^Дыбыс баптаулар" -#: qcsrc/client/hud/panel/quickmenu.qc:850 +#: qcsrc/client/hud/panel/quickmenu.qc:841 msgid "QMCMD^Hit sound" msgstr "QMCMD^Тиюның дыбысы" -#: qcsrc/client/hud/panel/quickmenu.qc:851 +#: qcsrc/client/hud/panel/quickmenu.qc:842 msgid "QMCMD^Chat sound" msgstr "QMCMD^Чат дыбысы" -#: qcsrc/client/hud/panel/quickmenu.qc:856 +#: qcsrc/client/hud/panel/quickmenu.qc:847 msgid "QMCMD^Change spectator camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:861 -#: qcsrc/client/hud/panel/quickmenu.qc:865 +#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:856 msgid "QMCMD^Observer camera" msgstr "QMCMD^Байқаушының камерасы" -#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:853 msgid "QMCMD^Increase speed" msgstr " QMCMD^Жылдамдықтың артасы" -#: qcsrc/client/hud/panel/quickmenu.qc:863 +#: qcsrc/client/hud/panel/quickmenu.qc:854 msgid "QMCMD^Decrease speed" msgstr "QMCMD^Жылдамдықтың ақырындату" -#: qcsrc/client/hud/panel/quickmenu.qc:864 +#: qcsrc/client/hud/panel/quickmenu.qc:855 msgid "QMCMD^Wall collision" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:868 +#: qcsrc/client/hud/panel/quickmenu.qc:859 msgid "QMCMD^Fullscreen" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:871 -#: qcsrc/client/hud/panel/quickmenu.qc:881 +#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:872 msgid "QMCMD^Call a vote" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:872 +#: qcsrc/client/hud/panel/quickmenu.qc:863 msgid "QMCMD^Restart the map" msgstr "QMCMD^Картаны қайта іске қосу" -#: qcsrc/client/hud/panel/quickmenu.qc:873 +#: qcsrc/client/hud/panel/quickmenu.qc:864 msgid "QMCMD^End match" msgstr "QMCMD^Матч бітіру" -#: qcsrc/client/hud/panel/quickmenu.qc:876 +#: qcsrc/client/hud/panel/quickmenu.qc:867 msgid "QMCMD^Reduce match time" msgstr "QMCMD^Матчтың уақытты қысқарту" -#: qcsrc/client/hud/panel/quickmenu.qc:877 +#: qcsrc/client/hud/panel/quickmenu.qc:868 msgid "QMCMD^Extend match time" msgstr "QMCMD^Матчтың уақытты ұзарту" -#: qcsrc/client/hud/panel/quickmenu.qc:880 +#: qcsrc/client/hud/panel/quickmenu.qc:871 msgid "QMCMD^Shuffle teams" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:885 +#: qcsrc/client/hud/panel/quickmenu.qc:876 msgid "QMCMD^Spectate a player" msgstr "" @@ -1231,14 +1231,14 @@ msgstr "" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 #: qcsrc/menu/xonotic/dialog_multiplayer_create.qc:105 msgid "Frag limit:" msgstr "" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 msgid "The amount of frags needed before the match will end" msgstr "" @@ -3269,7 +3269,7 @@ msgid "^BG%s%s^K1 was riddled full of holes by ^BG%s^K1's Machine Gun%s%s" msgstr "" #: qcsrc/common/notifications/all.inc:472 -#: qcsrc/common/notifications/all.inc:778 +#: qcsrc/common/notifications/all.inc:779 #, c-format msgid "^BGYou cannot place more than ^F2%s^BG mines at a time" msgstr "" @@ -4047,122 +4047,128 @@ msgstr "" msgid "^BGYou have no lives left, you must wait until the next match" msgstr "" -#: qcsrc/common/notifications/all.inc:707 +#: qcsrc/common/notifications/all.inc:706 +msgid "" +"^F4WARNING:^BG you can't rejoin this match after spectating.\n" +"Use the same command again to spectate anyway." +msgstr "" + +#: qcsrc/common/notifications/all.inc:708 #, c-format msgid "" "^BGWaiting for players to join...\n" "Need active players for: %s" msgstr "" -#: qcsrc/common/notifications/all.inc:708 +#: qcsrc/common/notifications/all.inc:709 #, c-format msgid "^BGWaiting for %s player(s) to join..." msgstr "" -#: qcsrc/common/notifications/all.inc:710 +#: qcsrc/common/notifications/all.inc:711 msgid "^BGYour weapon has been downgraded until you find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:711 +#: qcsrc/common/notifications/all.inc:712 msgid "^F4^COUNT^BG left to find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo or you'll be dead in ^F4^COUNT^BG!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo! ^F4^COUNT^BG left!" msgstr "" -#: qcsrc/common/notifications/all.inc:713 +#: qcsrc/common/notifications/all.inc:714 #, c-format msgid "^F2Extra lives remaining: ^K1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:715 qcsrc/menu/xonotic/campaign.qc:244 +#: qcsrc/common/notifications/all.inc:716 qcsrc/menu/xonotic/campaign.qc:244 #, c-format msgid "Level %s: " msgstr "" -#: qcsrc/common/notifications/all.inc:715 +#: qcsrc/common/notifications/all.inc:716 #, c-format msgid "^BGPress ^F2%s^BG to enter the game" msgstr "" -#: qcsrc/common/notifications/all.inc:718 +#: qcsrc/common/notifications/all.inc:719 #, c-format msgid "" "^F2^COUNT^BG until weapon change...\n" "Next weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:719 +#: qcsrc/common/notifications/all.inc:720 #, c-format msgid "^F2Active weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:721 +#: qcsrc/common/notifications/all.inc:722 #, c-format msgid "^BGYou captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:722 +#: qcsrc/common/notifications/all.inc:723 msgid "^BGYou captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:723 +#: qcsrc/common/notifications/all.inc:724 #, c-format msgid "^TC^TT^BG team captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:724 +#: qcsrc/common/notifications/all.inc:725 msgid "^TC^TT^BG team captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:725 +#: qcsrc/common/notifications/all.inc:726 msgid "^BGThis control point currently cannot be captured" msgstr "" -#: qcsrc/common/notifications/all.inc:726 +#: qcsrc/common/notifications/all.inc:727 msgid "" "^BGThe enemy generator cannot be destroyed yet\n" "^F2Capture some control points to unshield it" msgstr "" -#: qcsrc/common/notifications/all.inc:727 +#: qcsrc/common/notifications/all.inc:728 msgid "^BGThe ^TCenemy^BG generator is no longer shielded!" msgstr "" -#: qcsrc/common/notifications/all.inc:728 +#: qcsrc/common/notifications/all.inc:729 msgid "" "^K1Your generator is NOT shielded!\n" "^BGRe-capture control points to shield it!" msgstr "" -#: qcsrc/common/notifications/all.inc:729 +#: qcsrc/common/notifications/all.inc:730 #, c-format msgid "^BGPress ^F2%s^BG to teleport" msgstr "" -#: qcsrc/common/notifications/all.inc:730 +#: qcsrc/common/notifications/all.inc:731 #, c-format msgid "^BGTeleporting disabled for %s" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep fragging until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep scoring until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:733 +#: qcsrc/common/notifications/all.inc:734 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "\n" @@ -4171,136 +4177,136 @@ msgid "" "the faster the enemy generator decays" msgstr "" -#: qcsrc/common/notifications/all.inc:734 +#: qcsrc/common/notifications/all.inc:735 #, c-format msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "^BGAdded ^F4%s^BG to the game!" msgstr "" -#: qcsrc/common/notifications/all.inc:736 +#: qcsrc/common/notifications/all.inc:737 msgid "^K1In^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:737 +#: qcsrc/common/notifications/all.inc:738 msgid "^F3Out^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:738 +#: qcsrc/common/notifications/all.inc:739 msgid "^F1Portal creation failed" msgstr "" -#: qcsrc/common/notifications/all.inc:740 +#: qcsrc/common/notifications/all.inc:741 msgid "^F2Strength infuses your weapons with devastating power" msgstr "" -#: qcsrc/common/notifications/all.inc:741 +#: qcsrc/common/notifications/all.inc:742 msgid "^F2Strength has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:743 +#: qcsrc/common/notifications/all.inc:744 msgid "^F2Shield surrounds you" msgstr "" -#: qcsrc/common/notifications/all.inc:744 +#: qcsrc/common/notifications/all.inc:745 msgid "^F2Shield has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:746 +#: qcsrc/common/notifications/all.inc:747 msgid "^F2You are on speed" msgstr "" -#: qcsrc/common/notifications/all.inc:747 +#: qcsrc/common/notifications/all.inc:748 msgid "^F2Speed has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:749 +#: qcsrc/common/notifications/all.inc:750 msgid "^F2You are invisible" msgstr "" -#: qcsrc/common/notifications/all.inc:750 +#: qcsrc/common/notifications/all.inc:751 msgid "^F2Invisibility has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:752 +#: qcsrc/common/notifications/all.inc:753 msgid "^F2The race is over, finish your lap!" msgstr "" -#: qcsrc/common/notifications/all.inc:754 +#: qcsrc/common/notifications/all.inc:755 msgid "^BGSequence completed!" msgstr "" -#: qcsrc/common/notifications/all.inc:755 +#: qcsrc/common/notifications/all.inc:756 msgid "^BGThere are more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:756 +#: qcsrc/common/notifications/all.inc:757 #, c-format msgid "^BGOnly %s^BG more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:758 +#: qcsrc/common/notifications/all.inc:759 msgid "^F2Superweapons have broken down" msgstr "" -#: qcsrc/common/notifications/all.inc:759 +#: qcsrc/common/notifications/all.inc:760 msgid "^F2Superweapons have been lost" msgstr "" -#: qcsrc/common/notifications/all.inc:760 +#: qcsrc/common/notifications/all.inc:761 msgid "^F2You now have a superweapon" msgstr "" -#: qcsrc/common/notifications/all.inc:762 +#: qcsrc/common/notifications/all.inc:763 msgid "^K1Changing to ^TC^TT^K1 in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:763 +#: qcsrc/common/notifications/all.inc:764 msgid "^K1Changing team in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:764 +#: qcsrc/common/notifications/all.inc:765 msgid "^K1Spectating in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:765 +#: qcsrc/common/notifications/all.inc:766 msgid "^K1Suicide in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:767 +#: qcsrc/common/notifications/all.inc:768 msgid "^F4Timeout begins in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:768 +#: qcsrc/common/notifications/all.inc:769 msgid "^F4Timeout ends in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:770 +#: qcsrc/common/notifications/all.inc:771 msgid "^K1Cannot join given minigame session!" msgstr "" -#: qcsrc/common/notifications/all.inc:772 +#: qcsrc/common/notifications/all.inc:773 #, c-format msgid "^BGPress ^F2%s^BG to enter/exit the vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:773 +#: qcsrc/common/notifications/all.inc:774 #, c-format msgid "^BGPress ^F2%s^BG to enter the vehicle gunner" msgstr "" -#: qcsrc/common/notifications/all.inc:774 +#: qcsrc/common/notifications/all.inc:775 #, c-format msgid "^BGPress ^F2%s^BG to steal this vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:775 +#: qcsrc/common/notifications/all.inc:776 msgid "" "^F2The enemy is stealing one of your vehicles!\n" "^F4Stop them!" msgstr "" -#: qcsrc/common/notifications/all.inc:776 +#: qcsrc/common/notifications/all.inc:777 msgid "^F2Intruder detected, disabling shields!" msgstr "" diff --git a/common.ko.po b/common.ko.po index 3e31e283c1..73e7b41994 100644 --- a/common.ko.po +++ b/common.ko.po @@ -3,6 +3,8 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# BYEONGJIN AN, 2022 +# BYEONGJIN AN, 2022 # Iso Lee, 2016 # Jisoo Lim , 2017 # Iso Lee, 2016 @@ -13,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: Xonotic\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-06 07:22+0100\n" -"PO-Revision-Date: 2022-03-06 06:22+0000\n" -"Last-Translator: divVerent \n" +"POT-Creation-Date: 2022-03-27 07:22+0200\n" +"PO-Revision-Date: 2013-09-12 16:53+0000\n" +"Last-Translator: Iso Lee, 2016\n" "Language-Team: Korean (http://www.transifex.com/team-xonotic/xonotic/" "language/ko/)\n" "Language: ko\n" @@ -27,17 +29,17 @@ msgstr "" #: qcsrc/client/hud/hud_config.qc:80 #, c-format msgid "^2Successfully exported to %s! (Note: It's saved in data/data/)" -msgstr "" +msgstr "^2성공적으로 %s에 내보냈어요! (참고: data/data/에 저장했어요)" #: qcsrc/client/hud/hud_config.qc:84 #, c-format msgid "^1Couldn't write to %s" -msgstr "" +msgstr "^1%s에 저장하지 못했습니다." #: qcsrc/client/hud/panel/centerprint.qc:173 #, c-format msgid "^3Countdown message at time %s, seconds left: ^COUNT" -msgstr "" +msgstr "^3%s 카운트다운 메시지, 남은 시간(초): ^COUNT" #: qcsrc/client/hud/panel/centerprint.qc:175 #, c-format @@ -45,15 +47,17 @@ msgid "" "^1Multiline message at time %s that\n" "^1lasts longer than normal" msgstr "" +"^1보통보다 긴\n" +"^1%s의 여러 줄 메세지" #: qcsrc/client/hud/panel/centerprint.qc:177 #, c-format msgid "Message at time %s" -msgstr "" +msgstr "%s의 메시지" #: qcsrc/client/hud/panel/centerprint.qc:182 msgid "Generic message" -msgstr "" +msgstr "일반 메시지" #: qcsrc/client/hud/panel/chat.qc:165 msgid "^3Player^7: This is the chat area." @@ -221,272 +225,272 @@ msgstr "^3ALT ^7+ ^3방향키 ^7로 미세하게 조정하세요." msgid "Player %d" msgstr "%d 플래이어" -#: qcsrc/client/hud/panel/quickmenu.qc:617 -#: qcsrc/client/hud/panel/quickmenu.qc:619 +#: qcsrc/client/hud/panel/quickmenu.qc:608 +#: qcsrc/client/hud/panel/quickmenu.qc:610 #, c-format msgid "Submenu%d" msgstr "보조메뉴%d" -#: qcsrc/client/hud/panel/quickmenu.qc:624 +#: qcsrc/client/hud/panel/quickmenu.qc:615 #, c-format msgid "Command%d" msgstr "명령%d" -#: qcsrc/client/hud/panel/quickmenu.qc:650 +#: qcsrc/client/hud/panel/quickmenu.qc:641 msgid "Continue..." msgstr "계속..." -#: qcsrc/client/hud/panel/quickmenu.qc:807 -#: qcsrc/client/hud/panel/quickmenu.qc:814 +#: qcsrc/client/hud/panel/quickmenu.qc:798 +#: qcsrc/client/hud/panel/quickmenu.qc:805 msgid "Chat" -msgstr "" +msgstr "채팅" -#: qcsrc/client/hud/panel/quickmenu.qc:808 +#: qcsrc/client/hud/panel/quickmenu.qc:799 msgid "QMCMD^Send public message to" -msgstr "" +msgstr "QMCMD^전체 메세지로 보내요" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^:-) / nice one" -msgstr "QMCMD^ㅇㅅㅇ / 굳잡" +msgstr "QMCMD^:-) / 잘했어" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^nice one" -msgstr "QMCMD^굳잡" +msgstr "QMCMD^잘했어" -#: qcsrc/client/hud/panel/quickmenu.qc:810 +#: qcsrc/client/hud/panel/quickmenu.qc:801 msgid "QMCMD^good game" -msgstr "QMCMD^gg" +msgstr "QMCMD^GG" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck" -msgstr "QMCMD^ㅎㅇ / 칸바레" +msgstr "QMCMD^ / 행운을 빌어요" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck and have fun" -msgstr "QMCMD^ㅎㅇ / 칸바레, 젠카이노 아이마스" +msgstr "QMCMD^ㅎㅇ / 행운을 빌어요 즐겜 하세요" -#: qcsrc/client/hud/panel/quickmenu.qc:813 +#: qcsrc/client/hud/panel/quickmenu.qc:804 msgid "QMCMD^Send in English" -msgstr "" +msgstr "QMCMD^영어로 말해주세요" -#: qcsrc/client/hud/panel/quickmenu.qc:818 -#: qcsrc/client/hud/panel/quickmenu.qc:834 +#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:825 msgid "QMCMD^Team chat" msgstr "QMCMD^팀 채팅" -#: qcsrc/client/hud/panel/quickmenu.qc:819 +#: qcsrc/client/hud/panel/quickmenu.qc:810 msgid "QMCMD^strength soon" -msgstr "" +msgstr "QMCMD^곧 힘이 생성됨" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item %x^7 (l:%y^7)" msgstr "QMCMD^가져갈 수 있는 아이템 %x^7 (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item, icon" msgstr "QMCMD^가져갈 수 있는 아이템, 아이콘" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item (l:%l^7)" msgstr "QMCMD^아이템 가져감 (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item, icon" msgstr "QMCMD^아이템 가져감, 아이콘" -#: qcsrc/client/hud/panel/quickmenu.qc:822 +#: qcsrc/client/hud/panel/quickmenu.qc:813 msgid "QMCMD^negative" msgstr "QMCMD^아님" -#: qcsrc/client/hud/panel/quickmenu.qc:823 +#: qcsrc/client/hud/panel/quickmenu.qc:814 msgid "QMCMD^positive" msgstr "QMCMD^맞음" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^도움 요청 (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help, icon" msgstr "QMCMD^도움 요청, 아이콘" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen (l:%y^7)" msgstr "QMCMD^적이 봄 (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen, icon" msgstr "QMCMD^적이 봄, 아이콘" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen (l:%y^7)" msgstr "QMCMD^깃발 봄 (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen, icon" msgstr "QMCMD^깃발 봄, 아이콘" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^방어 중 (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending, icon" msgstr "QMCMD^방어 중, 아이콘" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^돌아다니는 중 (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming, icon" msgstr "QMCMD^돌아다니는 중, 아이콘" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^공격 중 (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking, icon" msgstr "QMCMD^공격 중, 아이콘" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier (l:%y^7)" msgstr "QMCMD^죽인 깃발 운반자 (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier, icon" msgstr "QMCMD^죽인 깃발 운반자, 아이콘" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 #, c-format msgid "QMCMD^dropped flag (l:%d^7)" msgstr "QMCMD^깃발 떨어뜨림 (l:%d^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 msgid "QMCMD^dropped flag, icon" msgstr "QMCMD^깃발 떨어뜨림, 아이콘" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^drop weapon, icon" msgstr "QMCMD^무기 떨구기, 아이콘" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^dropped weapon %w^7 (l:%l^7)" msgstr "QMCMD^무기 떨어뜨림 %w^7 (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^drop flag/key, icon" msgstr "QMCMD^깃발/열쇠 떨어뜨리기, 아이콘" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^dropped flag/key %w^7 (l:%l^7)" msgstr "QMCMD^깃발/열쇠 떨어뜨림 %w^7 (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:837 +#: qcsrc/client/hud/panel/quickmenu.qc:828 msgid "QMCMD^Send private message to" msgstr "QMCMD^비밀 메세지 받는 사람:" -#: qcsrc/client/hud/panel/quickmenu.qc:839 -#: qcsrc/client/hud/panel/quickmenu.qc:869 +#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:860 msgid "QMCMD^Settings" msgstr "QMCMD^설정" -#: qcsrc/client/hud/panel/quickmenu.qc:840 -#: qcsrc/client/hud/panel/quickmenu.qc:847 +#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:838 msgid "QMCMD^View/HUD settings" msgstr "QMCMD^영상/HUD 설정" -#: qcsrc/client/hud/panel/quickmenu.qc:841 +#: qcsrc/client/hud/panel/quickmenu.qc:832 msgid "QMCMD^3rd person view" msgstr "QMCMD^3인칭 시점" -#: qcsrc/client/hud/panel/quickmenu.qc:842 +#: qcsrc/client/hud/panel/quickmenu.qc:833 msgid "QMCMD^Player models like mine" msgstr "QMCMD^플레이어 모델을 내 것처럼" -#: qcsrc/client/hud/panel/quickmenu.qc:843 +#: qcsrc/client/hud/panel/quickmenu.qc:834 msgid "QMCMD^Names above players" msgstr "QMCMD^플레이어 위에 이름을" -#: qcsrc/client/hud/panel/quickmenu.qc:844 +#: qcsrc/client/hud/panel/quickmenu.qc:835 msgid "QMCMD^Crosshair per weapon" -msgstr "" +msgstr "QMCMD^무기 별 조준점" -#: qcsrc/client/hud/panel/quickmenu.qc:845 +#: qcsrc/client/hud/panel/quickmenu.qc:836 msgid "QMCMD^FPS" msgstr "QMCMD^FPS" -#: qcsrc/client/hud/panel/quickmenu.qc:846 +#: qcsrc/client/hud/panel/quickmenu.qc:837 msgid "QMCMD^Net graph" msgstr "넷차트" -#: qcsrc/client/hud/panel/quickmenu.qc:849 -#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:840 +#: qcsrc/client/hud/panel/quickmenu.qc:843 msgid "QMCMD^Sound settings" msgstr "QMCMD^소리 설정" -#: qcsrc/client/hud/panel/quickmenu.qc:850 +#: qcsrc/client/hud/panel/quickmenu.qc:841 msgid "QMCMD^Hit sound" msgstr "QMCMD^타격음" -#: qcsrc/client/hud/panel/quickmenu.qc:851 +#: qcsrc/client/hud/panel/quickmenu.qc:842 msgid "QMCMD^Chat sound" msgstr "QMCMD^채팅 소리" -#: qcsrc/client/hud/panel/quickmenu.qc:856 +#: qcsrc/client/hud/panel/quickmenu.qc:847 msgid "QMCMD^Change spectator camera" -msgstr "" +msgstr "QMCMD^관전자 카메라 변경" -#: qcsrc/client/hud/panel/quickmenu.qc:861 -#: qcsrc/client/hud/panel/quickmenu.qc:865 +#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:856 msgid "QMCMD^Observer camera" msgstr "QMCMD^관찰자 카메라" -#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:853 msgid "QMCMD^Increase speed" msgstr "QMCMD^속도 늘리기" -#: qcsrc/client/hud/panel/quickmenu.qc:863 +#: qcsrc/client/hud/panel/quickmenu.qc:854 msgid "QMCMD^Decrease speed" msgstr "QMCMD^속도 줄이기" -#: qcsrc/client/hud/panel/quickmenu.qc:864 +#: qcsrc/client/hud/panel/quickmenu.qc:855 msgid "QMCMD^Wall collision" -msgstr "" +msgstr "QMCMD^벽 충돌" -#: qcsrc/client/hud/panel/quickmenu.qc:868 +#: qcsrc/client/hud/panel/quickmenu.qc:859 msgid "QMCMD^Fullscreen" msgstr "QMCMD^전체 화면" -#: qcsrc/client/hud/panel/quickmenu.qc:871 -#: qcsrc/client/hud/panel/quickmenu.qc:881 +#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:872 msgid "QMCMD^Call a vote" msgstr "QMCMD^투표 제안하기" -#: qcsrc/client/hud/panel/quickmenu.qc:872 +#: qcsrc/client/hud/panel/quickmenu.qc:863 msgid "QMCMD^Restart the map" msgstr "QMCMD^맵 다시 시작하기" -#: qcsrc/client/hud/panel/quickmenu.qc:873 +#: qcsrc/client/hud/panel/quickmenu.qc:864 msgid "QMCMD^End match" msgstr "QMCMD^대전 끝내기" -#: qcsrc/client/hud/panel/quickmenu.qc:876 +#: qcsrc/client/hud/panel/quickmenu.qc:867 msgid "QMCMD^Reduce match time" msgstr "QMCMD^대전 시간 줄이기" -#: qcsrc/client/hud/panel/quickmenu.qc:877 +#: qcsrc/client/hud/panel/quickmenu.qc:868 msgid "QMCMD^Extend match time" msgstr "QMCMD^대전 시간 늘리기" -#: qcsrc/client/hud/panel/quickmenu.qc:880 +#: qcsrc/client/hud/panel/quickmenu.qc:871 msgid "QMCMD^Shuffle teams" msgstr "QMCMD^팀 섞기" -#: qcsrc/client/hud/panel/quickmenu.qc:885 +#: qcsrc/client/hud/panel/quickmenu.qc:876 msgid "QMCMD^Spectate a player" -msgstr "" +msgstr "QMCMD^플레이어를 관전" #: qcsrc/client/hud/panel/racetimer.qc:56 #, c-format @@ -518,23 +522,23 @@ msgstr "중급 %d" #: qcsrc/client/hud/panel/racetimer.qc:264 #, c-format msgid "PENALTY: %.1f (%s)" -msgstr "" +msgstr "페널티: %.1f (%s)" #: qcsrc/client/hud/panel/racetimer.qc:156 qcsrc/client/main.qc:1180 msgid "missing a checkpoint" -msgstr "" +msgstr "체크포인트를 놓침" #: qcsrc/client/hud/panel/radar.qc:349 msgid "Click to select teleport destination" -msgstr "" +msgstr "클릭으로 텔레포트 지점을 지정" #: qcsrc/client/hud/panel/radar.qc:353 msgid "Click to select spawn location" -msgstr "" +msgstr "클릭으로 스폰 장소를 지정" #: qcsrc/client/hud/panel/scoreboard.qc:120 msgid "Number of ball carrier kills" -msgstr "" +msgstr "공 가진 사람을 죽인 수" #: qcsrc/client/hud/panel/scoreboard.qc:120 msgid "SCO^bckills" @@ -546,11 +550,11 @@ msgstr "SCO^공 운반 시간" #: qcsrc/client/hud/panel/scoreboard.qc:121 msgid "Total amount of time holding the ball in Keepaway" -msgstr "" +msgstr "Keepaway 에서 공을 가지고 있던 총 시간" #: qcsrc/client/hud/panel/scoreboard.qc:122 msgid "How often a flag (CTF) or a key (KeyHunt) was captured" -msgstr "" +msgstr "깃발(CTF)이나 열쇠(KeyHunt)가 캡쳐된 빈도" #: qcsrc/client/hud/panel/scoreboard.qc:122 msgid "SCO^caps" @@ -562,11 +566,11 @@ msgstr "SCO^점령 시간" #: qcsrc/client/hud/panel/scoreboard.qc:123 msgid "Time of fastest capture (CTF)" -msgstr "" +msgstr "가장 빠르게 캡쳐한 시간(CTF)" #: qcsrc/client/hud/panel/scoreboard.qc:124 msgid "Number of deaths" -msgstr "" +msgstr "죽음 수" #: qcsrc/client/hud/panel/scoreboard.qc:124 msgid "SCO^deaths" @@ -574,7 +578,7 @@ msgstr "SCO^죽음" #: qcsrc/client/hud/panel/scoreboard.qc:125 msgid "Number of keys destroyed by pushing them into void" -msgstr "" +msgstr "장외로 빠져 파괴된 키 수" #: qcsrc/client/hud/panel/scoreboard.qc:125 msgid "SCO^destroyed" @@ -586,7 +590,7 @@ msgstr "SCO^데미지" #: qcsrc/client/hud/panel/scoreboard.qc:126 msgid "The total damage done" -msgstr "" +msgstr "총 가한 데미지" #: qcsrc/client/hud/panel/scoreboard.qc:127 msgid "SCO^dmgtaken" @@ -594,11 +598,11 @@ msgstr "SCO^입은 데미지" #: qcsrc/client/hud/panel/scoreboard.qc:127 msgid "The total damage taken" -msgstr "" +msgstr "총 피해 데미지" #: qcsrc/client/hud/panel/scoreboard.qc:128 msgid "Number of flag drops" -msgstr "" +msgstr "떨어트린 깃발 수" #: qcsrc/client/hud/panel/scoreboard.qc:128 msgid "SCO^drops" @@ -606,23 +610,23 @@ msgstr "SCO^떨어뜨림" #: qcsrc/client/hud/panel/scoreboard.qc:129 msgid "Player ELO" -msgstr "" +msgstr "플레이어 ELO" #: qcsrc/client/hud/panel/scoreboard.qc:129 msgid "SCO^elo" -msgstr "" +msgstr "SCO^elo" #: qcsrc/client/hud/panel/scoreboard.qc:130 msgid "SCO^fastest" -msgstr "" +msgstr "SCO^가장 빠름" #: qcsrc/client/hud/panel/scoreboard.qc:130 msgid "Time of fastest lap (Race/CTS)" -msgstr "" +msgstr "가장 빠르게 돌은 랩 시간 (Race/CTS)" #: qcsrc/client/hud/panel/scoreboard.qc:131 msgid "Number of faults committed" -msgstr "" +msgstr "저지른 자책 수" #: qcsrc/client/hud/panel/scoreboard.qc:131 msgid "SCO^faults" @@ -630,7 +634,7 @@ msgstr "SCO^실수" #: qcsrc/client/hud/panel/scoreboard.qc:132 msgid "Number of flag carrier kills" -msgstr "" +msgstr "깃발 가진 사람 죽인 수" #: qcsrc/client/hud/panel/scoreboard.qc:132 msgid "SCO^fckills" @@ -638,23 +642,23 @@ msgstr "SCO^깃발 운반자 킬" #: qcsrc/client/hud/panel/scoreboard.qc:133 msgid "FPS" -msgstr "" +msgstr "FPS" #: qcsrc/client/hud/panel/scoreboard.qc:133 msgid "SCO^fps" -msgstr "" +msgstr "SCO^fps" #: qcsrc/client/hud/panel/scoreboard.qc:134 msgid "Number of kills minus suicides" -msgstr "" +msgstr "자책 자살 수" #: qcsrc/client/hud/panel/scoreboard.qc:134 msgid "SCO^frags" -msgstr "" +msgstr "SCO^사살" #: qcsrc/client/hud/panel/scoreboard.qc:135 msgid "Number of goals scored" -msgstr "" +msgstr "들어간 골 수" #: qcsrc/client/hud/panel/scoreboard.qc:135 msgid "SCO^goals" @@ -662,7 +666,7 @@ msgstr "SCO^골" #: qcsrc/client/hud/panel/scoreboard.qc:136 msgid "Number of keys carrier kills" -msgstr "" +msgstr "열쇠 가진 사람 죽인 수" #: qcsrc/client/hud/panel/scoreboard.qc:136 msgid "SCO^kckills" @@ -676,7 +680,7 @@ msgstr "SCO^킬/뎃" #: qcsrc/client/hud/panel/scoreboard.qc:138 #: qcsrc/client/hud/panel/scoreboard.qc:139 msgid "The kill-death ratio" -msgstr "" +msgstr "킬-데스 비율" #: qcsrc/client/hud/panel/scoreboard.qc:138 msgid "SCO^kdr" @@ -688,7 +692,7 @@ msgstr "SCO^킬뎃비율" #: qcsrc/client/hud/panel/scoreboard.qc:140 msgid "Number of kills" -msgstr "" +msgstr "죽인 수" #: qcsrc/client/hud/panel/scoreboard.qc:140 msgid "SCO^kills" @@ -696,7 +700,7 @@ msgstr "SCO^죽임" #: qcsrc/client/hud/panel/scoreboard.qc:141 msgid "Number of laps finished (Race/CTS)" -msgstr "" +msgstr "돌은 랩 수 (Race/CTS)" #: qcsrc/client/hud/panel/scoreboard.qc:141 msgid "SCO^laps" @@ -704,7 +708,7 @@ msgstr "SCO^바퀴" #: qcsrc/client/hud/panel/scoreboard.qc:142 msgid "Number of lives (LMS)" -msgstr "" +msgstr "목숨 수 (LMS)" #: qcsrc/client/hud/panel/scoreboard.qc:142 msgid "SCO^lives" @@ -712,7 +716,7 @@ msgstr "SCO^목숨" #: qcsrc/client/hud/panel/scoreboard.qc:143 msgid "Number of times a key was lost" -msgstr "" +msgstr "키가 분실된 횟수" #: qcsrc/client/hud/panel/scoreboard.qc:143 msgid "SCO^losses" @@ -721,7 +725,7 @@ msgstr "SCO^패배" #: qcsrc/client/hud/panel/scoreboard.qc:144 #: qcsrc/client/hud/panel/scoreboard.qc:145 msgid "Player name" -msgstr "" +msgstr "플레이어 이름" #: qcsrc/client/hud/panel/scoreboard.qc:144 msgid "SCO^name" @@ -733,7 +737,7 @@ msgstr "SCO^별칭" #: qcsrc/client/hud/panel/scoreboard.qc:146 msgid "Number of objectives destroyed" -msgstr "" +msgstr "파괴된 오브젝티브 수" #: qcsrc/client/hud/panel/scoreboard.qc:146 msgid "SCO^objectives" @@ -742,7 +746,7 @@ msgstr "SCO^목표" #: qcsrc/client/hud/panel/scoreboard.qc:147 msgid "" "How often a flag (CTF) or a key (KeyHunt) or a ball (Keepaway) was picked up" -msgstr "" +msgstr "깃발(CTF)이나 열쇠(KeyHunt)나 공(Keepaway)이 주워진 빈도" #: qcsrc/client/hud/panel/scoreboard.qc:147 msgid "SCO^pickups" @@ -750,7 +754,7 @@ msgstr "SCO^픽업" #: qcsrc/client/hud/panel/scoreboard.qc:148 msgid "Ping time" -msgstr "" +msgstr "핑 시간" #: qcsrc/client/hud/panel/scoreboard.qc:148 msgid "SCO^ping" @@ -758,7 +762,7 @@ msgstr "SCO^핑" #: qcsrc/client/hud/panel/scoreboard.qc:149 msgid "Packet loss" -msgstr "" +msgstr "패킷 손실" #: qcsrc/client/hud/panel/scoreboard.qc:149 msgid "SCO^pl" @@ -766,7 +770,7 @@ msgstr "SCO^패킷 손실" #: qcsrc/client/hud/panel/scoreboard.qc:150 msgid "Number of players pushed into void" -msgstr "" +msgstr "장외로 떨어진 플레이어 수" #: qcsrc/client/hud/panel/scoreboard.qc:150 msgid "SCO^pushes" @@ -774,7 +778,7 @@ msgstr "SCO^밀어냄" #: qcsrc/client/hud/panel/scoreboard.qc:151 msgid "Player rank" -msgstr "" +msgstr "플레이어 랭크" #: qcsrc/client/hud/panel/scoreboard.qc:151 msgid "SCO^rank" @@ -782,7 +786,7 @@ msgstr "SCO^순위" #: qcsrc/client/hud/panel/scoreboard.qc:152 msgid "Number of flag returns" -msgstr "" +msgstr "회수된 깃발 수" #: qcsrc/client/hud/panel/scoreboard.qc:152 msgid "SCO^returns" @@ -790,7 +794,7 @@ msgstr "SCO^귀환" #: qcsrc/client/hud/panel/scoreboard.qc:153 msgid "Number of revivals" -msgstr "" +msgstr "탈환한 수" #: qcsrc/client/hud/panel/scoreboard.qc:153 msgid "SCO^revivals" @@ -798,7 +802,7 @@ msgstr "SCO^부활" #: qcsrc/client/hud/panel/scoreboard.qc:154 msgid "Number of rounds won" -msgstr "" +msgstr "이긴 라운드 수" #: qcsrc/client/hud/panel/scoreboard.qc:154 msgid "SCO^rounds won" @@ -810,11 +814,11 @@ msgstr "SCO^점수" #: qcsrc/client/hud/panel/scoreboard.qc:155 msgid "Total score" -msgstr "" +msgstr "총 득점" #: qcsrc/client/hud/panel/scoreboard.qc:156 msgid "Number of suicides" -msgstr "" +msgstr "자살 수" #: qcsrc/client/hud/panel/scoreboard.qc:156 msgid "SCO^suicides" @@ -822,7 +826,7 @@ msgstr "SCO^자살" #: qcsrc/client/hud/panel/scoreboard.qc:157 msgid "Number of kills minus deaths" -msgstr "" +msgstr "자책 죽음 수" #: qcsrc/client/hud/panel/scoreboard.qc:157 msgid "SCO^sum" @@ -830,7 +834,7 @@ msgstr "SCO^합" #: qcsrc/client/hud/panel/scoreboard.qc:158 msgid "Number of domination points taken (Domination)" -msgstr "" +msgstr "득점한 점령 점수 (점령전)" #: qcsrc/client/hud/panel/scoreboard.qc:158 msgid "SCO^takes" @@ -838,66 +842,72 @@ msgstr "SCO^가져감" #: qcsrc/client/hud/panel/scoreboard.qc:159 msgid "Number of teamkills" -msgstr "" +msgstr "팀킬 수" #: qcsrc/client/hud/panel/scoreboard.qc:159 msgid "SCO^teamkills" -msgstr "" +msgstr "SCO^팀킬" #: qcsrc/client/hud/panel/scoreboard.qc:160 msgid "Number of ticks (Domination)" -msgstr "" +msgstr "틱 수 (점령전)" #: qcsrc/client/hud/panel/scoreboard.qc:160 msgid "SCO^ticks" -msgstr "" +msgstr "SCO^틱" #: qcsrc/client/hud/panel/scoreboard.qc:161 msgid "SCO^time" -msgstr "" +msgstr "SCO^시간" #: qcsrc/client/hud/panel/scoreboard.qc:161 msgid "Total time raced (Race/CTS)" -msgstr "" +msgstr "총 경주한 시간 (Race/CTS)" #: qcsrc/client/hud/panel/scoreboard.qc:359 msgid "" "You can modify the scoreboard using the ^2scoreboard_columns_set command." -msgstr "" +msgstr "^2scoreboard_columns_set 명령을 사용하여 스코어보드 수정이 가능합니다." #: qcsrc/client/hud/panel/scoreboard.qc:360 msgid "Usage:" -msgstr "" +msgstr "용법:" #: qcsrc/client/hud/panel/scoreboard.qc:362 msgid "^2scoreboard_columns_set ^3field1 field2 ..." -msgstr "" +msgstr "^2scoreboard_columns_set ^3field1 field2 ..." #: qcsrc/client/hud/panel/scoreboard.qc:363 msgid "" "^2scoreboard_columns_set ^7without arguments reads the arguments from the " "cvar scoreboard_columns" msgstr "" +"인수를 주지 않은 ^2scoreboard_columns_set ^7는 인수를 cvar " +"scoreboard_columns 에서 읽어옵니다." #: qcsrc/client/hud/panel/scoreboard.qc:364 msgid "" " ^5Note: ^7scoreboard_columns_set without arguments is executed on every " "map start" msgstr "" +" ^5참고: ^7인수가 없는 scoreboard_columns_set는 맵이 시작 될 때마다 실행됩니" +"다." #: qcsrc/client/hud/panel/scoreboard.qc:365 msgid "" "^2scoreboard_columns_set ^3expand_default ^7loads default layout and expands " "it into the cvar scoreboard_columns so you can edit it" msgstr "" +"^2scoreboard_columns_set 과 ^3expand_default ^7 는 기본 레이아웃을 불러오고 " +"cvar scoreboard_columns 를 확장시켜 수정 할 수 있게 합니다." #: qcsrc/client/hud/panel/scoreboard.qc:366 msgid "You can use a ^3|^7 to start the right-aligned fields." -msgstr "" +msgstr "^3|^7 로 오른쪽 정렬된 필드를 시작할 수 있습니다." #: qcsrc/client/hud/panel/scoreboard.qc:367 msgid "The following field names are recognized (case insensitive):" -msgstr "" +msgstr "다음의 필드 네임이 인식됨(대소문자 구분 안 함)" #: qcsrc/client/hud/panel/scoreboard.qc:373 msgid "" @@ -906,28 +916,39 @@ msgid "" "or in all but these game types. You can also specify 'all' as a\n" "field to show all fields available for the current game mode." msgstr "" +"필드 앞에 + 또는 - 기호를 넣고서, 컴마로 구분된 게임 유형 목록을 넣은 다음\n" +"슬래시를 써서 이 게임 타입들만 필드가 표시되거나\n" +"이 게임 타입들을 제외한 모든 타입에 표시되도록 할 수 있습니다.\n" +"'all'을 필드로 지정하여 현재 게임 모드에서 사용 가능한 모든 필드를 표시할 수" +"도 있습니다. " #: qcsrc/client/hud/panel/scoreboard.qc:379 msgid "" "The special game type names 'teams' and 'noteams' can be used to\n" "include/exclude ALL teams/noteams game modes." msgstr "" +"'teams' 와 'noteams' 라고 하는 특수한 게임 타입은\n" +"모든 teams/noteams 게임 모드를 포함/제외하는 데 사용할 수 있습니다." #: qcsrc/client/hud/panel/scoreboard.qc:383 msgid "Example: scoreboard_columns_set name ping pl | +ctf/field3 -dm/field4" -msgstr "" +msgstr "예시: scoreboard_columns_set name ping pl | +ctf/field3 -dm/field4" #: qcsrc/client/hud/panel/scoreboard.qc:384 msgid "" "will display name, ping and pl aligned to the left, and the fields\n" "right of the vertical bar aligned to the right." msgstr "" +"이는 이름과 왼쪽으로 정렬된 핑 및 pl과\n" +"오른쪽 수직 바에 오른쪽으로 정렬 된 필드를 표시합니다." #: qcsrc/client/hud/panel/scoreboard.qc:386 msgid "" "'field3' will only be shown in CTF, and 'field4' will be shown in all\n" "other gamemodes except DM." msgstr "" +"'field3' 는 CTF 에서만 표시되고, 'field4' 는 DM을 제외한\n" +"모든 다른 게임모드 들에서 표시 됩니다." #: qcsrc/client/hud/panel/scoreboard.qc:665 #: qcsrc/client/hud/panel/scoreboard.qc:672 @@ -948,7 +969,7 @@ msgstr "정확도 통계(평균 %d%%)" #: qcsrc/client/hud/panel/scoreboard.qc:1407 msgid "Item stats" -msgstr "" +msgstr "아이템 상태" #: qcsrc/client/hud/panel/scoreboard.qc:1518 msgid "Map stats:" @@ -970,13 +991,13 @@ msgstr "관전자" #: qcsrc/client/hud/panel/scoreboard.qc:1872 #, c-format msgid "^3%1.0f minutes" -msgstr "" +msgstr "^3%1.0f 분" #: qcsrc/client/hud/panel/scoreboard.qc:1881 #: qcsrc/client/hud/panel/scoreboard.qc:1888 #, c-format msgid "^5%s %s" -msgstr "" +msgstr "^5%s%s" #: qcsrc/client/hud/panel/scoreboard.qc:1882 #: qcsrc/client/hud/panel/scoreboard.qc:1889 @@ -989,22 +1010,22 @@ msgstr "SCO^점" #: qcsrc/client/hud/panel/scoreboard.qc:1914 #, c-format msgid "^2+%s %s" -msgstr "" +msgstr "^2+%s%s" #: qcsrc/client/hud/panel/scoreboard.qc:1925 #, c-format msgid "^7Map: ^2%s" -msgstr "" +msgstr "^7맵: ^2%s" #: qcsrc/client/hud/panel/scoreboard.qc:2079 #, c-format msgid "Speed award: %d%s ^7(%s^7)" -msgstr "" +msgstr "스피드 어워드: %d%s ^7(%s^7)" #: qcsrc/client/hud/panel/scoreboard.qc:2083 #, c-format msgid "All-time fastest: %d%s ^7(%s^7)" -msgstr "" +msgstr "역대 가장 빠름: %d%s ^7(%s^7)" #: qcsrc/client/hud/panel/scoreboard.qc:2119 #, c-format @@ -1023,48 +1044,48 @@ msgstr "당신은 죽었어요, ^2%s^7를 눌러 부활하세요" #: qcsrc/client/hud/panel/strafehud.qc:879 msgid "qu" -msgstr "" +msgstr "qu" #: qcsrc/client/hud/panel/strafehud.qc:880 msgid "m" -msgstr "" +msgstr "m" #: qcsrc/client/hud/panel/strafehud.qc:881 msgid "km" -msgstr "" +msgstr "km" #: qcsrc/client/hud/panel/strafehud.qc:882 msgid "mi" -msgstr "" +msgstr "mi" #: qcsrc/client/hud/panel/strafehud.qc:883 msgid "nmi" -msgstr "" +msgstr "nmi" #: qcsrc/client/hud/panel/timer.qc:132 msgid "Warmup" -msgstr "" +msgstr "워밍업" #: qcsrc/client/hud/panel/timer.qc:134 msgid "Timeout" -msgstr "" +msgstr "타임아웃" #: qcsrc/client/hud/panel/timer.qc:136 msgid "Sudden Death" -msgstr "" +msgstr "서든 데스" #: qcsrc/client/hud/panel/timer.qc:138 msgid "Overtime" -msgstr "" +msgstr "초과시간" #: qcsrc/client/hud/panel/timer.qc:140 #, c-format msgid "Overtime #%d" -msgstr "" +msgstr "초과시간 #%d" #: qcsrc/client/hud/panel/vote.qc:30 msgid "^1You must answer before entering hud configure mode" -msgstr "" +msgstr "^1HUD 조작 모드에 진입하기 전에 반드시 답해야 해요" #: qcsrc/client/hud/panel/vote.qc:33 msgid "^2Name ^7instead of \"^1Anonymous player^7\" in stats" @@ -1093,7 +1114,7 @@ msgstr "^1 HUD를 설정하세요" #: qcsrc/menu/xonotic/dialog_settings_misc_reset.qc:16 #: qcsrc/menu/xonotic/dialog_uid2name.qc:15 msgid "Yes" -msgstr "" +msgstr "네" #: qcsrc/client/hud/panel/vote.qc:131 #: qcsrc/menu/xonotic/dialog_disconnect.qc:22 @@ -1106,7 +1127,7 @@ msgstr "" #: qcsrc/menu/xonotic/dialog_settings_misc_reset.qc:17 #: qcsrc/menu/xonotic/dialog_uid2name.qc:17 msgid "No" -msgstr "" +msgstr "아니오" #: qcsrc/client/hud/panel/weapons.qc:631 msgid "Out of ammo" @@ -1126,23 +1147,23 @@ msgstr "팀 목록에 없는 팀을 지우려고 하는 중이에요!" #: qcsrc/client/main.qc:1082 qcsrc/menu/xonotic/dialog_hudpanel_physics.qc:51 msgid "qu/s" -msgstr "" +msgstr "qu/s" #: qcsrc/client/main.qc:1083 qcsrc/menu/xonotic/dialog_hudpanel_physics.qc:52 msgid "m/s" -msgstr "" +msgstr "m/s" #: qcsrc/client/main.qc:1084 qcsrc/menu/xonotic/dialog_hudpanel_physics.qc:53 msgid "km/h" -msgstr "" +msgstr "km/h" #: qcsrc/client/main.qc:1085 qcsrc/menu/xonotic/dialog_hudpanel_physics.qc:54 msgid "mph" -msgstr "" +msgstr "mph" #: qcsrc/client/main.qc:1086 qcsrc/menu/xonotic/dialog_hudpanel_physics.qc:55 msgid "knots" -msgstr "" +msgstr "노트" #: qcsrc/client/main.qc:1331 #, c-format @@ -1177,15 +1198,15 @@ msgstr "%d 초 남음" #: qcsrc/client/mapvoting.qc:513 msgid "mv_mapdownload: ^3You're not supposed to use this command on your own!" -msgstr "" +msgstr "mv_mapdownload: ^3이 명령을 직접 사용하지 마세요!" #: qcsrc/client/mapvoting.qc:523 msgid "^1Error:^7 Couldn't find pak index." -msgstr "" +msgstr "^1오류:^7 pak 인덱스를 찾지 못함" #: qcsrc/client/mapvoting.qc:532 msgid "Requesting preview..." -msgstr "" +msgstr "프리뷰 요청..." #: qcsrc/client/view.qc:891 msgid "Nade timer" @@ -1193,7 +1214,7 @@ msgstr "수류탄 시간 기록기" #: qcsrc/client/view.qc:896 msgid "Capture progress" -msgstr "" +msgstr "캡처 진행" #: qcsrc/client/view.qc:901 msgid "Revival progress" @@ -1201,7 +1222,7 @@ msgstr "부활 진행 상황" #: qcsrc/common/command/generic.qc:156 msgid "error creating curl handle" -msgstr "" +msgstr "curl 핸들 생성 오류" #: qcsrc/common/gamemodes/gamemode/assault/assault.qh:8 msgid "Assault" @@ -1221,7 +1242,7 @@ msgstr "시간이 되기 전에 적 파워 코어를 찾아 파괴하기 위해 #: qcsrc/common/gamemodes/gamemode/onslaught/onslaught.qh:18 #: qcsrc/common/gamemodes/gamemode/tdm/tdm.qh:47 msgid "Point limit:" -msgstr "" +msgstr "점수 한도:" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:12 msgid "Clan Arena" @@ -1233,20 +1254,20 @@ msgstr "이번 판을 이기기 위해선 모든 적 팀을 섬멸하세요" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 #: qcsrc/menu/xonotic/dialog_multiplayer_create.qc:105 msgid "Frag limit:" -msgstr "" +msgstr "사살 한도:" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 msgid "The amount of frags needed before the match will end" -msgstr "" +msgstr "매치가 끝나기 전에 필요한 사살 양" #: qcsrc/common/gamemodes/gamemode/ctf/cl_ctf.qc:202 msgid "Capture time rankings" -msgstr "" +msgstr "캡처 시간 순위:" #: qcsrc/common/gamemodes/gamemode/ctf/ctf.qh:12 msgid "Capture the Flag" @@ -1262,11 +1283,11 @@ msgstr "" #: qcsrc/common/gamemodes/gamemode/ctf/ctf.qh:30 msgid "Capture limit:" -msgstr "" +msgstr "캡처 한도:" #: qcsrc/common/gamemodes/gamemode/ctf/ctf.qh:30 msgid "The amount of captures needed before the match will end" -msgstr "" +msgstr "매치가 끝나기 전에 필요한 캡처 양" #: qcsrc/common/gamemodes/gamemode/cts/cl_cts.qc:41 #: qcsrc/common/gamemodes/gamemode/race/cl_race.qc:178 @@ -1301,11 +1322,11 @@ msgstr "점령" #: qcsrc/common/gamemodes/gamemode/keyhunt/keyhunt.qh:39 #: qcsrc/common/gamemodes/gamemode/tdm/tdm.qh:47 msgid "The amount of points needed before the match will end" -msgstr "" +msgstr "매치가 끝나기 전에 필요한 점수" #: qcsrc/common/gamemodes/gamemode/duel/duel.qh:9 msgid "Duel" -msgstr "" +msgstr "결투" #: qcsrc/common/gamemodes/gamemode/duel/duel.qh:9 msgid "Fight in a one versus one arena battle to decide the winner" @@ -2990,7 +3011,7 @@ msgstr "" #: qcsrc/common/notifications/all.inc:408 #, c-format msgid "^BG%s^K1 picked up Strength" -msgstr "" +msgstr "^BG%s^K1 이 힘을 먹음" #: qcsrc/common/notifications/all.inc:410 #, c-format @@ -3282,7 +3303,7 @@ msgid "^BG%s%s^K1 was riddled full of holes by ^BG%s^K1's Machine Gun%s%s" msgstr "" #: qcsrc/common/notifications/all.inc:472 -#: qcsrc/common/notifications/all.inc:778 +#: qcsrc/common/notifications/all.inc:779 #, c-format msgid "^BGYou cannot place more than ^F2%s^BG mines at a time" msgstr "" @@ -4066,122 +4087,128 @@ msgstr "" msgid "^BGYou have no lives left, you must wait until the next match" msgstr "^BG더 이상 남은 목숨이 없어서, 다음 경기까지 기다려야 해요" -#: qcsrc/common/notifications/all.inc:707 +#: qcsrc/common/notifications/all.inc:706 +msgid "" +"^F4WARNING:^BG you can't rejoin this match after spectating.\n" +"Use the same command again to spectate anyway." +msgstr "" + +#: qcsrc/common/notifications/all.inc:708 #, c-format msgid "" "^BGWaiting for players to join...\n" "Need active players for: %s" msgstr "" -#: qcsrc/common/notifications/all.inc:708 +#: qcsrc/common/notifications/all.inc:709 #, c-format msgid "^BGWaiting for %s player(s) to join..." msgstr "" -#: qcsrc/common/notifications/all.inc:710 +#: qcsrc/common/notifications/all.inc:711 msgid "^BGYour weapon has been downgraded until you find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:711 +#: qcsrc/common/notifications/all.inc:712 msgid "^F4^COUNT^BG left to find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo or you'll be dead in ^F4^COUNT^BG!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo! ^F4^COUNT^BG left!" msgstr "" -#: qcsrc/common/notifications/all.inc:713 +#: qcsrc/common/notifications/all.inc:714 #, c-format msgid "^F2Extra lives remaining: ^K1%s" msgstr "^F2남은 추가 목숨: ^K1%s" -#: qcsrc/common/notifications/all.inc:715 qcsrc/menu/xonotic/campaign.qc:244 +#: qcsrc/common/notifications/all.inc:716 qcsrc/menu/xonotic/campaign.qc:244 #, c-format msgid "Level %s: " msgstr "" -#: qcsrc/common/notifications/all.inc:715 +#: qcsrc/common/notifications/all.inc:716 #, c-format msgid "^BGPress ^F2%s^BG to enter the game" msgstr "" -#: qcsrc/common/notifications/all.inc:718 +#: qcsrc/common/notifications/all.inc:719 #, c-format msgid "" "^F2^COUNT^BG until weapon change...\n" "Next weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:719 +#: qcsrc/common/notifications/all.inc:720 #, c-format msgid "^F2Active weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:721 +#: qcsrc/common/notifications/all.inc:722 #, c-format msgid "^BGYou captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:722 +#: qcsrc/common/notifications/all.inc:723 msgid "^BGYou captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:723 +#: qcsrc/common/notifications/all.inc:724 #, c-format msgid "^TC^TT^BG team captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:724 +#: qcsrc/common/notifications/all.inc:725 msgid "^TC^TT^BG team captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:725 +#: qcsrc/common/notifications/all.inc:726 msgid "^BGThis control point currently cannot be captured" msgstr "" -#: qcsrc/common/notifications/all.inc:726 +#: qcsrc/common/notifications/all.inc:727 msgid "" "^BGThe enemy generator cannot be destroyed yet\n" "^F2Capture some control points to unshield it" msgstr "" -#: qcsrc/common/notifications/all.inc:727 +#: qcsrc/common/notifications/all.inc:728 msgid "^BGThe ^TCenemy^BG generator is no longer shielded!" msgstr "" -#: qcsrc/common/notifications/all.inc:728 +#: qcsrc/common/notifications/all.inc:729 msgid "" "^K1Your generator is NOT shielded!\n" "^BGRe-capture control points to shield it!" msgstr "" -#: qcsrc/common/notifications/all.inc:729 +#: qcsrc/common/notifications/all.inc:730 #, c-format msgid "^BGPress ^F2%s^BG to teleport" msgstr "" -#: qcsrc/common/notifications/all.inc:730 +#: qcsrc/common/notifications/all.inc:731 #, c-format msgid "^BGTeleporting disabled for %s" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep fragging until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep scoring until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:733 +#: qcsrc/common/notifications/all.inc:734 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "\n" @@ -4190,136 +4217,136 @@ msgid "" "the faster the enemy generator decays" msgstr "" -#: qcsrc/common/notifications/all.inc:734 +#: qcsrc/common/notifications/all.inc:735 #, c-format msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "^BGAdded ^F4%s^BG to the game!" msgstr "" -#: qcsrc/common/notifications/all.inc:736 +#: qcsrc/common/notifications/all.inc:737 msgid "^K1In^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:737 +#: qcsrc/common/notifications/all.inc:738 msgid "^F3Out^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:738 +#: qcsrc/common/notifications/all.inc:739 msgid "^F1Portal creation failed" msgstr "" -#: qcsrc/common/notifications/all.inc:740 +#: qcsrc/common/notifications/all.inc:741 msgid "^F2Strength infuses your weapons with devastating power" -msgstr "" +msgstr "^F2힘이 폭발적인 능력을 무기에 일으킵니다" -#: qcsrc/common/notifications/all.inc:741 +#: qcsrc/common/notifications/all.inc:742 msgid "^F2Strength has worn off" -msgstr "" +msgstr "^F2힘이 해제 됨" -#: qcsrc/common/notifications/all.inc:743 +#: qcsrc/common/notifications/all.inc:744 msgid "^F2Shield surrounds you" msgstr "" -#: qcsrc/common/notifications/all.inc:744 +#: qcsrc/common/notifications/all.inc:745 msgid "^F2Shield has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:746 +#: qcsrc/common/notifications/all.inc:747 msgid "^F2You are on speed" msgstr "" -#: qcsrc/common/notifications/all.inc:747 +#: qcsrc/common/notifications/all.inc:748 msgid "^F2Speed has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:749 +#: qcsrc/common/notifications/all.inc:750 msgid "^F2You are invisible" msgstr "" -#: qcsrc/common/notifications/all.inc:750 +#: qcsrc/common/notifications/all.inc:751 msgid "^F2Invisibility has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:752 +#: qcsrc/common/notifications/all.inc:753 msgid "^F2The race is over, finish your lap!" msgstr "" -#: qcsrc/common/notifications/all.inc:754 +#: qcsrc/common/notifications/all.inc:755 msgid "^BGSequence completed!" msgstr "" -#: qcsrc/common/notifications/all.inc:755 +#: qcsrc/common/notifications/all.inc:756 msgid "^BGThere are more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:756 +#: qcsrc/common/notifications/all.inc:757 #, c-format msgid "^BGOnly %s^BG more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:758 +#: qcsrc/common/notifications/all.inc:759 msgid "^F2Superweapons have broken down" msgstr "" -#: qcsrc/common/notifications/all.inc:759 +#: qcsrc/common/notifications/all.inc:760 msgid "^F2Superweapons have been lost" msgstr "" -#: qcsrc/common/notifications/all.inc:760 +#: qcsrc/common/notifications/all.inc:761 msgid "^F2You now have a superweapon" msgstr "" -#: qcsrc/common/notifications/all.inc:762 +#: qcsrc/common/notifications/all.inc:763 msgid "^K1Changing to ^TC^TT^K1 in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:763 +#: qcsrc/common/notifications/all.inc:764 msgid "^K1Changing team in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:764 +#: qcsrc/common/notifications/all.inc:765 msgid "^K1Spectating in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:765 +#: qcsrc/common/notifications/all.inc:766 msgid "^K1Suicide in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:767 +#: qcsrc/common/notifications/all.inc:768 msgid "^F4Timeout begins in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:768 +#: qcsrc/common/notifications/all.inc:769 msgid "^F4Timeout ends in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:770 +#: qcsrc/common/notifications/all.inc:771 msgid "^K1Cannot join given minigame session!" msgstr "" -#: qcsrc/common/notifications/all.inc:772 +#: qcsrc/common/notifications/all.inc:773 #, c-format msgid "^BGPress ^F2%s^BG to enter/exit the vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:773 +#: qcsrc/common/notifications/all.inc:774 #, c-format msgid "^BGPress ^F2%s^BG to enter the vehicle gunner" msgstr "" -#: qcsrc/common/notifications/all.inc:774 +#: qcsrc/common/notifications/all.inc:775 #, c-format msgid "^BGPress ^F2%s^BG to steal this vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:775 +#: qcsrc/common/notifications/all.inc:776 msgid "" "^F2The enemy is stealing one of your vehicles!\n" "^F4Stop them!" msgstr "" -#: qcsrc/common/notifications/all.inc:776 +#: qcsrc/common/notifications/all.inc:777 msgid "^F2Intruder detected, disabling shields!" msgstr "" @@ -6526,46 +6553,48 @@ msgstr "" #: qcsrc/menu/xonotic/dialog_monstertools.qc:31 msgid "Colors:" -msgstr "" +msgstr "색상:" #: qcsrc/menu/xonotic/dialog_monstertools.qc:33 #: qcsrc/menu/xonotic/dialog_sandboxtools.qc:39 msgid "Set skin:" -msgstr "" +msgstr "스킨 설정:" #: qcsrc/menu/xonotic/dialog_monstertools.qh:6 msgid "Monster Tools" -msgstr "" +msgstr "몬스터 툴" #: qcsrc/menu/xonotic/dialog_multiplayer.qc:14 msgid "Servers" -msgstr "" +msgstr "서버" #: qcsrc/menu/xonotic/dialog_multiplayer.qc:15 msgid "Find servers to play on" -msgstr "" +msgstr "플레이 할 서버를 찾으세요" #: qcsrc/menu/xonotic/dialog_multiplayer.qc:17 msgid "Host your own game" -msgstr "" +msgstr "직접 게임을 호스트 하세요" #: qcsrc/menu/xonotic/dialog_multiplayer.qc:18 msgid "Media" -msgstr "" +msgstr "미디어" #: qcsrc/menu/xonotic/dialog_multiplayer.qc:19 msgid "Profile" -msgstr "" +msgstr "프로필" #: qcsrc/menu/xonotic/dialog_multiplayer.qh:6 msgid "Multiplayer" -msgstr "" +msgstr "멀티플레이어" #: qcsrc/menu/xonotic/dialog_multiplayer.qh:7 msgid "" "Play online, against your friends in LAN, view demos or change player " "settings" msgstr "" +"온라인으로 플레이 하거나, LAN으로 친구들과 겨루거나, 데모를 보거나, 플레이어 " +"설정을 변경합니다" #: qcsrc/menu/xonotic/dialog_multiplayer_create.qc:38 #: qcsrc/menu/xonotic/dialog_multiplayer_create.qc:111 @@ -8174,7 +8203,7 @@ msgstr "" #: qcsrc/menu/xonotic/dialog_settings_effects.qc:233 msgid "Motion blur strength - 0.4 recommended" -msgstr "" +msgstr "모션 블러 강도 - 0.4 추천" #: qcsrc/menu/xonotic/dialog_settings_effects.qc:234 msgid "Motion blur:" @@ -8743,11 +8772,11 @@ msgstr "" #: qcsrc/menu/xonotic/dialog_settings_game_weapons.qc:39 msgid "Up" -msgstr "" +msgstr "위" #: qcsrc/menu/xonotic/dialog_settings_game_weapons.qc:43 msgid "Down" -msgstr "" +msgstr "아래" #: qcsrc/menu/xonotic/dialog_settings_game_weapons.qc:49 msgid "Use priority list for weapon cycling" @@ -9078,36 +9107,36 @@ msgstr "" #: qcsrc/menu/xonotic/dialog_settings_misc.qc:133 msgid "Show current date and time" -msgstr "" +msgstr "현재 날짜 및 시간 보이기" #: qcsrc/menu/xonotic/dialog_settings_misc.qc:134 msgid "Show current date and time of day, useful on screenshots" -msgstr "" +msgstr "현재 날짜 및 시간 보이기, 스크린샷에 유용" #: qcsrc/menu/xonotic/dialog_settings_misc.qc:137 msgid "Enable developer mode" -msgstr "" +msgstr "개발자 모드 활성" #: qcsrc/menu/xonotic/dialog_settings_misc.qc:141 msgid "Advanced settings..." -msgstr "" +msgstr "고급 설정..." #: qcsrc/menu/xonotic/dialog_settings_misc.qc:142 msgid "Advanced settings where you can tweak every single variable of the game" -msgstr "" +msgstr "게임의 모든 변수를 트윅할 수 있는 고급 설정" #: qcsrc/menu/xonotic/dialog_settings_misc.qc:147 #: qcsrc/menu/xonotic/dialog_settings_misc_reset.qh:6 msgid "Factory reset" -msgstr "" +msgstr "공장 초기화" #: qcsrc/menu/xonotic/dialog_settings_misc_cvars.qc:31 msgid "Cvar filter:" -msgstr "" +msgstr "Cvar 필터:" #: qcsrc/menu/xonotic/dialog_settings_misc_cvars.qc:38 msgid "Modified cvars only" -msgstr "" +msgstr "수정된 cvar만 사용" #: qcsrc/menu/xonotic/dialog_settings_misc_cvars.qc:45 msgid "Setting:" @@ -9115,31 +9144,31 @@ msgstr "설정:" #: qcsrc/menu/xonotic/dialog_settings_misc_cvars.qc:49 msgid "Type:" -msgstr "" +msgstr "종류:" #: qcsrc/menu/xonotic/dialog_settings_misc_cvars.qc:53 msgid "Value:" -msgstr "" +msgstr "값:" #: qcsrc/menu/xonotic/dialog_settings_misc_cvars.qc:70 msgid "Description:" -msgstr "" +msgstr "설명:" #: qcsrc/menu/xonotic/dialog_settings_misc_cvars.qh:7 msgid "Advanced settings" -msgstr "" +msgstr "고급 설정" #: qcsrc/menu/xonotic/dialog_settings_misc_reset.qc:11 msgid "Are you sure you want to reset all settings?" -msgstr "" +msgstr "정말 모든 설정을 재설정 하시겠습니까?" #: qcsrc/menu/xonotic/dialog_settings_misc_reset.qc:13 msgid "This will create a backup config in your data directory" -msgstr "" +msgstr "이 작업은 데이터 디렉토리에 백업 설정파일을 생성합니다" #: qcsrc/menu/xonotic/dialog_settings_user.qc:23 msgid "Menu Skins" -msgstr "" +msgstr "메뉴 스킨" #: qcsrc/menu/xonotic/dialog_settings_user.qc:62 msgid "Text Language" @@ -9151,19 +9180,19 @@ msgstr "확인" #: qcsrc/menu/xonotic/dialog_settings_user.qc:72 msgid "Disable gore effects and harsh language" -msgstr "" +msgstr "고어 효과와 폭력적인 언어 비활성화" #: qcsrc/menu/xonotic/dialog_settings_user.qc:73 msgid "Replace blood and gibs with content that does not have any gore effects" -msgstr "" +msgstr "아무 고어 효과가 포함하지 않게 피와 살이 변경됨" #: qcsrc/menu/xonotic/dialog_settings_user_languagewarning.qc:10 msgid "While connected language changes will be applied only to the menu," -msgstr "" +msgstr "접속해 있을 때는 언어 변경은 메뉴에서만 적용됨" #: qcsrc/menu/xonotic/dialog_settings_user_languagewarning.qc:12 msgid "full language changes will take effect starting from the next game" -msgstr "" +msgstr "모든 언어 변경은 다음 게임에서 부터 적용됨" #: qcsrc/menu/xonotic/dialog_settings_user_languagewarning.qc:16 msgid "Disconnect now" @@ -9171,63 +9200,63 @@ msgstr "지금 연결 종료하기" #: qcsrc/menu/xonotic/dialog_settings_user_languagewarning.qc:17 msgid "Switch language" -msgstr "" +msgstr "언어 선택" #: qcsrc/menu/xonotic/dialog_settings_user_languagewarning.qh:6 msgid "Warning" -msgstr "" +msgstr "주의" #: qcsrc/menu/xonotic/dialog_settings_video.qc:33 msgid "Resolution:" -msgstr "" +msgstr "해상도:" #: qcsrc/menu/xonotic/dialog_settings_video.qc:37 msgid "Font/UI size:" -msgstr "" +msgstr "글꼴/UI 크기:" #: qcsrc/menu/xonotic/dialog_settings_video.qc:39 msgid "SZ^Unreadable" -msgstr "" +msgstr "SZ^못 읽겠을 정도" #: qcsrc/menu/xonotic/dialog_settings_video.qc:40 msgid "SZ^Tiny" -msgstr "" +msgstr "SZ^아주 조그맣게" #: qcsrc/menu/xonotic/dialog_settings_video.qc:41 msgid "SZ^Little" -msgstr "" +msgstr "SZ^조그맣게" #: qcsrc/menu/xonotic/dialog_settings_video.qc:42 msgid "SZ^Small" -msgstr "" +msgstr "SZ^작게" #: qcsrc/menu/xonotic/dialog_settings_video.qc:43 msgid "SZ^Medium" -msgstr "" +msgstr "SZ^중간" #: qcsrc/menu/xonotic/dialog_settings_video.qc:44 msgid "SZ^Large" -msgstr "" +msgstr "SZ^크게" #: qcsrc/menu/xonotic/dialog_settings_video.qc:45 msgid "SZ^Huge" -msgstr "" +msgstr "SZ^커다랗게" #: qcsrc/menu/xonotic/dialog_settings_video.qc:46 msgid "SZ^Gigantic" -msgstr "" +msgstr "SZ^거대하게" #: qcsrc/menu/xonotic/dialog_settings_video.qc:47 msgid "SZ^Colossal" -msgstr "" +msgstr "SZ^아주 거대하게" #: qcsrc/menu/xonotic/dialog_settings_video.qc:51 msgid "Color depth:" -msgstr "" +msgstr "색 깊이" #: qcsrc/menu/xonotic/dialog_settings_video.qc:53 msgid "How many bits per pixel (BPP) to render at, 32 is recommended" -msgstr "" +msgstr "렌더링 하는 데에 얼마나 많은 픽셀 당 비트(BPP)가 있는가, 32 권장" #: qcsrc/menu/xonotic/dialog_settings_video.qc:54 msgid "16bit" @@ -9239,37 +9268,39 @@ msgstr "32빗" #: qcsrc/menu/xonotic/dialog_settings_video.qc:59 msgid "Full screen" -msgstr "" +msgstr "전체 화면" #: qcsrc/menu/xonotic/dialog_settings_video.qc:61 msgid "Vertical Synchronization" -msgstr "" +msgstr "수직 동기화" #: qcsrc/menu/xonotic/dialog_settings_video.qc:62 msgid "" "Enable vertical synchronization to prevent tearing, will cap your fps to the " "screen refresh rate" msgstr "" +"화면 찢어짐 방지를 위한 수직 동기화(V-Sync)를 작동, 화면 재생률 제한 될 수 있" +"음" #: qcsrc/menu/xonotic/dialog_settings_video.qc:67 msgid "Flip view horizontally" -msgstr "" +msgstr "마우스 반전(수평 플립 뷰)" #: qcsrc/menu/xonotic/dialog_settings_video.qc:68 msgid "Poor man's left handed mode" -msgstr "" +msgstr "간이적인 왼손잡이 모드" #: qcsrc/menu/xonotic/dialog_settings_video.qc:71 msgid "Anisotropy:" -msgstr "" +msgstr "비등방성:" #: qcsrc/menu/xonotic/dialog_settings_video.qc:73 msgid "Anisotropic filtering quality" -msgstr "" +msgstr "비등방적인 필터링 퀄리티" #: qcsrc/menu/xonotic/dialog_settings_video.qc:74 msgid "ANISO^Disabled" -msgstr "" +msgstr "ANISO^비활성화 됨" #: qcsrc/menu/xonotic/dialog_settings_video.qc:75 #: qcsrc/menu/xonotic/dialog_settings_video.qc:86 @@ -9298,44 +9329,48 @@ msgid "" "Enable antialiasing, which smooths the edges of 3D geometry. Note that it " "might decrease performance by quite a lot" msgstr "" +"3D 모형의 외곽선을 부드럽게 하는 안티앨리어싱 활성. 상당한 수준으로 퍼포먼스" +"를 감소시킬 수 있음을 참고" #: qcsrc/menu/xonotic/dialog_settings_video.qc:85 msgid "AA^Disabled" -msgstr "" +msgstr "AA^비활성화 됨" #: qcsrc/menu/xonotic/dialog_settings_video.qc:92 msgid "High-quality frame buffer" -msgstr "" +msgstr "고품질 프레임 버퍼" #: qcsrc/menu/xonotic/dialog_settings_video.qc:97 msgid "Depth first:" -msgstr "" +msgstr "깊이 우선:" #: qcsrc/menu/xonotic/dialog_settings_video.qc:99 msgid "" "Eliminate overdraw by rendering a depth-only version of the scene before the " "normal rendering starts" msgstr "" +"일반 렌더링을 시작하기 전에 depth-only 버전의 신을 렌더링해서 오버드로우를 없" +"앰" #: qcsrc/menu/xonotic/dialog_settings_video.qc:100 msgid "DF^Disabled" -msgstr "" +msgstr "DF^비활성화 됨" #: qcsrc/menu/xonotic/dialog_settings_video.qc:101 msgid "DF^World" -msgstr "" +msgstr "DF^월드" #: qcsrc/menu/xonotic/dialog_settings_video.qc:102 msgid "DF^All" -msgstr "" +msgstr "DF^모두" #: qcsrc/menu/xonotic/dialog_settings_video.qc:107 msgid "Vertex Buffer Objects (VBOs)" -msgstr "" +msgstr "Vertex Buffer Objects (VBO)" #: qcsrc/menu/xonotic/dialog_settings_video.qc:110 msgid "VBO^Off" -msgstr "" +msgstr "VBO^끔" #: qcsrc/menu/xonotic/dialog_settings_video.qc:111 msgid "Vertices, some Tris (compatible)" @@ -9348,58 +9383,61 @@ msgid "" "Make use of Vertex Buffer Objects to store static geometry in video memory " "for faster rendering" msgstr "" +"빠른 렌더링을 위한 비디오 메모리의 정적 지오메트리를 저장할 수 있게 Vertex " +"Buffer Objects를 사용하세요" #: qcsrc/menu/xonotic/dialog_settings_video.qc:115 msgid "Vertices" -msgstr "" +msgstr "정점" #: qcsrc/menu/xonotic/dialog_settings_video.qc:117 msgid "Vertices and Triangles" -msgstr "" +msgstr "정점과 삼각형" #: qcsrc/menu/xonotic/dialog_settings_video.qc:122 msgid "Brightness:" -msgstr "" +msgstr "밝기:" #: qcsrc/menu/xonotic/dialog_settings_video.qc:124 msgid "Brightness of black" -msgstr "" +msgstr "흑색 밝기" #: qcsrc/menu/xonotic/dialog_settings_video.qc:126 msgid "Contrast:" -msgstr "" +msgstr "대비:" #: qcsrc/menu/xonotic/dialog_settings_video.qc:128 msgid "Brightness of white" -msgstr "" +msgstr "백색 밝기" #: qcsrc/menu/xonotic/dialog_settings_video.qc:130 msgid "Gamma:" -msgstr "" +msgstr "감마:" #: qcsrc/menu/xonotic/dialog_settings_video.qc:133 msgid "" "Inverse gamma correction value, a brightness effect that does not affect " "white or black" -msgstr "" +msgstr "감마 보정 반전, 흑백에 영향이 없는 밝기 효과" #: qcsrc/menu/xonotic/dialog_settings_video.qc:136 msgid "Contrast boost:" -msgstr "" +msgstr "대비 증폭:" #: qcsrc/menu/xonotic/dialog_settings_video.qc:139 msgid "By how much to multiply the contrast in dark areas" -msgstr "" +msgstr "어두운 공간에서 얼마나 대비가 증가했는가에 따라" #: qcsrc/menu/xonotic/dialog_settings_video.qc:142 msgid "Saturation:" -msgstr "" +msgstr "채도:" #: qcsrc/menu/xonotic/dialog_settings_video.qc:145 msgid "" "Saturation adjustment (0 = grayscale, 1 = normal, 2 = oversaturated), " "requires GLSL color control" msgstr "" +"채도 조정 (0 = 그레이스케일, 1 = 보통, 2 = 과포화), GLSL 색상 제어 요구" #: qcsrc/menu/xonotic/dialog_settings_video.qc:149 msgid "LIT^Ambient:" diff --git a/common.kw.po b/common.kw.po index 588da8b060..4d70dd5f97 100644 --- a/common.kw.po +++ b/common.kw.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: Xonotic\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-06 07:22+0100\n" -"PO-Revision-Date: 2022-03-06 06:22+0000\n" -"Last-Translator: divVerent \n" +"POT-Creation-Date: 2022-03-27 07:22+0200\n" +"PO-Revision-Date: 2013-09-12 16:53+0000\n" +"Last-Translator: Nicky Rowe , 2016,2018\n" "Language-Team: Cornish (http://www.transifex.com/team-xonotic/xonotic/" "language/kw/)\n" "Language: kw\n" @@ -218,270 +218,270 @@ msgstr "^3ALT ^7+ ^3ARROW KEYS ^7rag desedhansow fin." msgid "Player %d" msgstr "Gwarier %d" -#: qcsrc/client/hud/panel/quickmenu.qc:617 -#: qcsrc/client/hud/panel/quickmenu.qc:619 +#: qcsrc/client/hud/panel/quickmenu.qc:608 +#: qcsrc/client/hud/panel/quickmenu.qc:610 #, c-format msgid "Submenu%d" msgstr "Is-rol%d" -#: qcsrc/client/hud/panel/quickmenu.qc:624 +#: qcsrc/client/hud/panel/quickmenu.qc:615 #, c-format msgid "Command%d" msgstr "Arghadow%d" -#: qcsrc/client/hud/panel/quickmenu.qc:650 +#: qcsrc/client/hud/panel/quickmenu.qc:641 msgid "Continue..." msgstr "Pesya..." -#: qcsrc/client/hud/panel/quickmenu.qc:807 -#: qcsrc/client/hud/panel/quickmenu.qc:814 +#: qcsrc/client/hud/panel/quickmenu.qc:798 +#: qcsrc/client/hud/panel/quickmenu.qc:805 msgid "Chat" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:808 +#: qcsrc/client/hud/panel/quickmenu.qc:799 msgid "QMCMD^Send public message to" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^:-) / nice one" msgstr "QMCMD^:-) / splann" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^nice one" msgstr "QMCMD^splann" -#: qcsrc/client/hud/panel/quickmenu.qc:810 +#: qcsrc/client/hud/panel/quickmenu.qc:801 msgid "QMCMD^good game" msgstr "QMCMD^gwari da" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck" msgstr "QMCMD^you / chons da" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck and have fun" msgstr "QMCMD^you / chons da ha gwari teg" -#: qcsrc/client/hud/panel/quickmenu.qc:813 +#: qcsrc/client/hud/panel/quickmenu.qc:804 msgid "QMCMD^Send in English" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:818 -#: qcsrc/client/hud/panel/quickmenu.qc:834 +#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:825 msgid "QMCMD^Team chat" msgstr "QMCMD^Keskows para" -#: qcsrc/client/hud/panel/quickmenu.qc:819 +#: qcsrc/client/hud/panel/quickmenu.qc:810 msgid "QMCMD^strength soon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item %x^7 (l:%y^7)" msgstr "QMCMD^tra kavadow %x^7 (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item, icon" msgstr "QMCMD^tra kavadow, arwodhik" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item (l:%l^7)" msgstr "QMCMD^tra kemerys (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item, icon" msgstr "QMCMD^tra kemerys, arwodhik" -#: qcsrc/client/hud/panel/quickmenu.qc:822 +#: qcsrc/client/hud/panel/quickmenu.qc:813 msgid "QMCMD^negative" msgstr "QMCMD^negedhek" -#: qcsrc/client/hud/panel/quickmenu.qc:823 +#: qcsrc/client/hud/panel/quickmenu.qc:814 msgid "QMCMD^positive" msgstr "QMCMD^posedhek" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^edhom a weres (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help, icon" msgstr "QMCMD^edhom a weres, arwodhik" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen (l:%y^7)" msgstr "QMCMD^eskar gwelys (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen, icon" msgstr "QMCMD^eskar gwelys, arwodhik" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen (l:%y^7)" msgstr "QMCMD^baner gwelys (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen, icon" msgstr "QMCMD^baner gwelys, arwodhik" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^ow tefendya (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending, icon" msgstr "QMCMD^ow tefendya, arwodhik" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^ow kwandra (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming, icon" msgstr "QMCMD^ow kwandra, arwodhik" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^owth omsettya (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking, icon" msgstr "QMCMD^owth omsettya, arwodhik" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier (l:%y^7)" msgstr "QMCMD^doger an baner ledhys (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier, icon" msgstr "QMCMD^a ladhas doger an baner, arwodhik" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 #, c-format msgid "QMCMD^dropped flag (l:%d^7)" msgstr "QMCMD^baner droppyes (l:%d^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 msgid "QMCMD^dropped flag, icon" msgstr "QMCMD^baner droppyes, arwodhik" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^drop weapon, icon" msgstr "QMCMD^droppya an arv, arwodhik" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^dropped weapon %w^7 (l:%l^7)" msgstr "QMCMD^a dhroppyas an arv %w^7 (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^drop flag/key, icon" msgstr "QMCMD^baner/alhwedh droppyes, arwodhik" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^dropped flag/key %w^7 (l:%l^7)" msgstr "QMCMD^baner/alhwedh droppyes %w^7 (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:837 +#: qcsrc/client/hud/panel/quickmenu.qc:828 msgid "QMCMD^Send private message to" msgstr "QMCMD^Danvon messach privedh dhe" -#: qcsrc/client/hud/panel/quickmenu.qc:839 -#: qcsrc/client/hud/panel/quickmenu.qc:869 +#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:860 msgid "QMCMD^Settings" msgstr "QMCMD^Settyansow" -#: qcsrc/client/hud/panel/quickmenu.qc:840 -#: qcsrc/client/hud/panel/quickmenu.qc:847 +#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:838 msgid "QMCMD^View/HUD settings" msgstr "QMCMD^Settyansow gwel/HUD" -#: qcsrc/client/hud/panel/quickmenu.qc:841 +#: qcsrc/client/hud/panel/quickmenu.qc:832 msgid "QMCMD^3rd person view" msgstr "QMCMD^Gwel 3a person" -#: qcsrc/client/hud/panel/quickmenu.qc:842 +#: qcsrc/client/hud/panel/quickmenu.qc:833 msgid "QMCMD^Player models like mine" msgstr "QMCMD^Patronyow gwarier haval dhe'm re vy" -#: qcsrc/client/hud/panel/quickmenu.qc:843 +#: qcsrc/client/hud/panel/quickmenu.qc:834 msgid "QMCMD^Names above players" msgstr "QMCMD^Henwyn a-ugh gwarioryon" -#: qcsrc/client/hud/panel/quickmenu.qc:844 +#: qcsrc/client/hud/panel/quickmenu.qc:835 msgid "QMCMD^Crosshair per weapon" msgstr "QMCMD^Krowsik herwydh an arv" -#: qcsrc/client/hud/panel/quickmenu.qc:845 +#: qcsrc/client/hud/panel/quickmenu.qc:836 msgid "QMCMD^FPS" msgstr "QMCMD^FPS" -#: qcsrc/client/hud/panel/quickmenu.qc:846 +#: qcsrc/client/hud/panel/quickmenu.qc:837 msgid "QMCMD^Net graph" msgstr "QMCMD^Trecen rosweyth" -#: qcsrc/client/hud/panel/quickmenu.qc:849 -#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:840 +#: qcsrc/client/hud/panel/quickmenu.qc:843 msgid "QMCMD^Sound settings" msgstr "QMCMD^Settyansow son" -#: qcsrc/client/hud/panel/quickmenu.qc:850 +#: qcsrc/client/hud/panel/quickmenu.qc:841 msgid "QMCMD^Hit sound" msgstr "QMCMD^Son gwask sewen" -#: qcsrc/client/hud/panel/quickmenu.qc:851 +#: qcsrc/client/hud/panel/quickmenu.qc:842 msgid "QMCMD^Chat sound" msgstr "QMCMD^Son keskows" -#: qcsrc/client/hud/panel/quickmenu.qc:856 +#: qcsrc/client/hud/panel/quickmenu.qc:847 msgid "QMCMD^Change spectator camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:861 -#: qcsrc/client/hud/panel/quickmenu.qc:865 +#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:856 msgid "QMCMD^Observer camera" msgstr "QMCMD^Kamera aspiyer" -#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:853 msgid "QMCMD^Increase speed" msgstr "QMCMD^Uskishe" -#: qcsrc/client/hud/panel/quickmenu.qc:863 +#: qcsrc/client/hud/panel/quickmenu.qc:854 msgid "QMCMD^Decrease speed" msgstr "QMCMD^Lenthe" -#: qcsrc/client/hud/panel/quickmenu.qc:864 +#: qcsrc/client/hud/panel/quickmenu.qc:855 msgid "QMCMD^Wall collision" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:868 +#: qcsrc/client/hud/panel/quickmenu.qc:859 msgid "QMCMD^Fullscreen" msgstr "QMCMD^Skrin leun" -#: qcsrc/client/hud/panel/quickmenu.qc:871 -#: qcsrc/client/hud/panel/quickmenu.qc:881 +#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:872 msgid "QMCMD^Call a vote" msgstr "QMCMD^Gelwel raglev" -#: qcsrc/client/hud/panel/quickmenu.qc:872 +#: qcsrc/client/hud/panel/quickmenu.qc:863 msgid "QMCMD^Restart the map" msgstr "QMCMD^Dastalleth an mappa" -#: qcsrc/client/hud/panel/quickmenu.qc:873 +#: qcsrc/client/hud/panel/quickmenu.qc:864 msgid "QMCMD^End match" msgstr "QMCMD^Diwedha an fytt" -#: qcsrc/client/hud/panel/quickmenu.qc:876 +#: qcsrc/client/hud/panel/quickmenu.qc:867 msgid "QMCMD^Reduce match time" msgstr "QMCMD^Lehe termyn an fytt" -#: qcsrc/client/hud/panel/quickmenu.qc:877 +#: qcsrc/client/hud/panel/quickmenu.qc:868 msgid "QMCMD^Extend match time" msgstr "QMCMD^Ystynna termyn an fytt" -#: qcsrc/client/hud/panel/quickmenu.qc:880 +#: qcsrc/client/hud/panel/quickmenu.qc:871 msgid "QMCMD^Shuffle teams" msgstr "QMCMD^Kemyska an parys" -#: qcsrc/client/hud/panel/quickmenu.qc:885 +#: qcsrc/client/hud/panel/quickmenu.qc:876 msgid "QMCMD^Spectate a player" msgstr "" @@ -1232,14 +1232,14 @@ msgstr "Ledhewgh pub esel a'n para eskar rag gwaynya an tro" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 #: qcsrc/menu/xonotic/dialog_multiplayer_create.qc:105 msgid "Frag limit:" msgstr "" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 msgid "The amount of frags needed before the match will end" msgstr "" @@ -3279,7 +3279,7 @@ msgid "^BG%s%s^K1 was riddled full of holes by ^BG%s^K1's Machine Gun%s%s" msgstr "" #: qcsrc/common/notifications/all.inc:472 -#: qcsrc/common/notifications/all.inc:778 +#: qcsrc/common/notifications/all.inc:779 #, c-format msgid "^BGYou cannot place more than ^F2%s^BG mines at a time" msgstr "" @@ -4057,122 +4057,128 @@ msgstr "" msgid "^BGYou have no lives left, you must wait until the next match" msgstr "" -#: qcsrc/common/notifications/all.inc:707 +#: qcsrc/common/notifications/all.inc:706 +msgid "" +"^F4WARNING:^BG you can't rejoin this match after spectating.\n" +"Use the same command again to spectate anyway." +msgstr "" + +#: qcsrc/common/notifications/all.inc:708 #, c-format msgid "" "^BGWaiting for players to join...\n" "Need active players for: %s" msgstr "" -#: qcsrc/common/notifications/all.inc:708 +#: qcsrc/common/notifications/all.inc:709 #, c-format msgid "^BGWaiting for %s player(s) to join..." msgstr "" -#: qcsrc/common/notifications/all.inc:710 +#: qcsrc/common/notifications/all.inc:711 msgid "^BGYour weapon has been downgraded until you find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:711 +#: qcsrc/common/notifications/all.inc:712 msgid "^F4^COUNT^BG left to find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo or you'll be dead in ^F4^COUNT^BG!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo! ^F4^COUNT^BG left!" msgstr "" -#: qcsrc/common/notifications/all.inc:713 +#: qcsrc/common/notifications/all.inc:714 #, c-format msgid "^F2Extra lives remaining: ^K1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:715 qcsrc/menu/xonotic/campaign.qc:244 +#: qcsrc/common/notifications/all.inc:716 qcsrc/menu/xonotic/campaign.qc:244 #, c-format msgid "Level %s: " msgstr "" -#: qcsrc/common/notifications/all.inc:715 +#: qcsrc/common/notifications/all.inc:716 #, c-format msgid "^BGPress ^F2%s^BG to enter the game" msgstr "" -#: qcsrc/common/notifications/all.inc:718 +#: qcsrc/common/notifications/all.inc:719 #, c-format msgid "" "^F2^COUNT^BG until weapon change...\n" "Next weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:719 +#: qcsrc/common/notifications/all.inc:720 #, c-format msgid "^F2Active weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:721 +#: qcsrc/common/notifications/all.inc:722 #, c-format msgid "^BGYou captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:722 +#: qcsrc/common/notifications/all.inc:723 msgid "^BGYou captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:723 +#: qcsrc/common/notifications/all.inc:724 #, c-format msgid "^TC^TT^BG team captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:724 +#: qcsrc/common/notifications/all.inc:725 msgid "^TC^TT^BG team captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:725 +#: qcsrc/common/notifications/all.inc:726 msgid "^BGThis control point currently cannot be captured" msgstr "" -#: qcsrc/common/notifications/all.inc:726 +#: qcsrc/common/notifications/all.inc:727 msgid "" "^BGThe enemy generator cannot be destroyed yet\n" "^F2Capture some control points to unshield it" msgstr "" -#: qcsrc/common/notifications/all.inc:727 +#: qcsrc/common/notifications/all.inc:728 msgid "^BGThe ^TCenemy^BG generator is no longer shielded!" msgstr "" -#: qcsrc/common/notifications/all.inc:728 +#: qcsrc/common/notifications/all.inc:729 msgid "" "^K1Your generator is NOT shielded!\n" "^BGRe-capture control points to shield it!" msgstr "" -#: qcsrc/common/notifications/all.inc:729 +#: qcsrc/common/notifications/all.inc:730 #, c-format msgid "^BGPress ^F2%s^BG to teleport" msgstr "" -#: qcsrc/common/notifications/all.inc:730 +#: qcsrc/common/notifications/all.inc:731 #, c-format msgid "^BGTeleporting disabled for %s" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep fragging until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep scoring until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:733 +#: qcsrc/common/notifications/all.inc:734 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "\n" @@ -4181,136 +4187,136 @@ msgid "" "the faster the enemy generator decays" msgstr "" -#: qcsrc/common/notifications/all.inc:734 +#: qcsrc/common/notifications/all.inc:735 #, c-format msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "^BGAdded ^F4%s^BG to the game!" msgstr "" -#: qcsrc/common/notifications/all.inc:736 +#: qcsrc/common/notifications/all.inc:737 msgid "^K1In^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:737 +#: qcsrc/common/notifications/all.inc:738 msgid "^F3Out^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:738 +#: qcsrc/common/notifications/all.inc:739 msgid "^F1Portal creation failed" msgstr "" -#: qcsrc/common/notifications/all.inc:740 +#: qcsrc/common/notifications/all.inc:741 msgid "^F2Strength infuses your weapons with devastating power" msgstr "" -#: qcsrc/common/notifications/all.inc:741 +#: qcsrc/common/notifications/all.inc:742 msgid "^F2Strength has worn off" msgstr "^F2Gallas krevder" -#: qcsrc/common/notifications/all.inc:743 +#: qcsrc/common/notifications/all.inc:744 msgid "^F2Shield surrounds you" msgstr "" -#: qcsrc/common/notifications/all.inc:744 +#: qcsrc/common/notifications/all.inc:745 msgid "^F2Shield has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:746 +#: qcsrc/common/notifications/all.inc:747 msgid "^F2You are on speed" msgstr "" -#: qcsrc/common/notifications/all.inc:747 +#: qcsrc/common/notifications/all.inc:748 msgid "^F2Speed has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:749 +#: qcsrc/common/notifications/all.inc:750 msgid "^F2You are invisible" msgstr "^F2Anweladow owgh hwi" -#: qcsrc/common/notifications/all.inc:750 +#: qcsrc/common/notifications/all.inc:751 msgid "^F2Invisibility has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:752 +#: qcsrc/common/notifications/all.inc:753 msgid "^F2The race is over, finish your lap!" msgstr "" -#: qcsrc/common/notifications/all.inc:754 +#: qcsrc/common/notifications/all.inc:755 msgid "^BGSequence completed!" msgstr "" -#: qcsrc/common/notifications/all.inc:755 +#: qcsrc/common/notifications/all.inc:756 msgid "^BGThere are more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:756 +#: qcsrc/common/notifications/all.inc:757 #, c-format msgid "^BGOnly %s^BG more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:758 +#: qcsrc/common/notifications/all.inc:759 msgid "^F2Superweapons have broken down" msgstr "" -#: qcsrc/common/notifications/all.inc:759 +#: qcsrc/common/notifications/all.inc:760 msgid "^F2Superweapons have been lost" msgstr "" -#: qcsrc/common/notifications/all.inc:760 +#: qcsrc/common/notifications/all.inc:761 msgid "^F2You now have a superweapon" msgstr "" -#: qcsrc/common/notifications/all.inc:762 +#: qcsrc/common/notifications/all.inc:763 msgid "^K1Changing to ^TC^TT^K1 in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:763 +#: qcsrc/common/notifications/all.inc:764 msgid "^K1Changing team in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:764 +#: qcsrc/common/notifications/all.inc:765 msgid "^K1Spectating in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:765 +#: qcsrc/common/notifications/all.inc:766 msgid "^K1Suicide in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:767 +#: qcsrc/common/notifications/all.inc:768 msgid "^F4Timeout begins in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:768 +#: qcsrc/common/notifications/all.inc:769 msgid "^F4Timeout ends in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:770 +#: qcsrc/common/notifications/all.inc:771 msgid "^K1Cannot join given minigame session!" msgstr "" -#: qcsrc/common/notifications/all.inc:772 +#: qcsrc/common/notifications/all.inc:773 #, c-format msgid "^BGPress ^F2%s^BG to enter/exit the vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:773 +#: qcsrc/common/notifications/all.inc:774 #, c-format msgid "^BGPress ^F2%s^BG to enter the vehicle gunner" msgstr "" -#: qcsrc/common/notifications/all.inc:774 +#: qcsrc/common/notifications/all.inc:775 #, c-format msgid "^BGPress ^F2%s^BG to steal this vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:775 +#: qcsrc/common/notifications/all.inc:776 msgid "" "^F2The enemy is stealing one of your vehicles!\n" "^F4Stop them!" msgstr "" -#: qcsrc/common/notifications/all.inc:776 +#: qcsrc/common/notifications/all.inc:777 msgid "^F2Intruder detected, disabling shields!" msgstr "" diff --git a/common.mk.po b/common.mk.po index 87c5e2b41f..7d6750a23c 100644 --- a/common.mk.po +++ b/common.mk.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: Xonotic\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-06 07:22+0100\n" -"PO-Revision-Date: 2022-03-06 06:22+0000\n" -"Last-Translator: divVerent \n" +"POT-Creation-Date: 2022-03-27 07:22+0200\n" +"PO-Revision-Date: 2013-09-12 16:53+0000\n" +"Last-Translator: FULL NAME \n" "Language-Team: Macedonian (http://www.transifex.com/team-xonotic/xonotic/" "language/mk/)\n" "Language: mk\n" @@ -215,270 +215,270 @@ msgstr "" msgid "Player %d" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:617 -#: qcsrc/client/hud/panel/quickmenu.qc:619 +#: qcsrc/client/hud/panel/quickmenu.qc:608 +#: qcsrc/client/hud/panel/quickmenu.qc:610 #, c-format msgid "Submenu%d" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:624 +#: qcsrc/client/hud/panel/quickmenu.qc:615 #, c-format msgid "Command%d" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:650 +#: qcsrc/client/hud/panel/quickmenu.qc:641 msgid "Continue..." msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:807 -#: qcsrc/client/hud/panel/quickmenu.qc:814 +#: qcsrc/client/hud/panel/quickmenu.qc:798 +#: qcsrc/client/hud/panel/quickmenu.qc:805 msgid "Chat" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:808 +#: qcsrc/client/hud/panel/quickmenu.qc:799 msgid "QMCMD^Send public message to" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^:-) / nice one" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^nice one" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:810 +#: qcsrc/client/hud/panel/quickmenu.qc:801 msgid "QMCMD^good game" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck and have fun" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:813 +#: qcsrc/client/hud/panel/quickmenu.qc:804 msgid "QMCMD^Send in English" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:818 -#: qcsrc/client/hud/panel/quickmenu.qc:834 +#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:825 msgid "QMCMD^Team chat" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:819 +#: qcsrc/client/hud/panel/quickmenu.qc:810 msgid "QMCMD^strength soon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item %x^7 (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:822 +#: qcsrc/client/hud/panel/quickmenu.qc:813 msgid "QMCMD^negative" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:823 +#: qcsrc/client/hud/panel/quickmenu.qc:814 msgid "QMCMD^positive" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 #, c-format msgid "QMCMD^dropped flag (l:%d^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 msgid "QMCMD^dropped flag, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^drop weapon, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^dropped weapon %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^drop flag/key, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^dropped flag/key %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:837 +#: qcsrc/client/hud/panel/quickmenu.qc:828 msgid "QMCMD^Send private message to" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:839 -#: qcsrc/client/hud/panel/quickmenu.qc:869 +#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:860 msgid "QMCMD^Settings" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:840 -#: qcsrc/client/hud/panel/quickmenu.qc:847 +#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:838 msgid "QMCMD^View/HUD settings" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:841 +#: qcsrc/client/hud/panel/quickmenu.qc:832 msgid "QMCMD^3rd person view" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:842 +#: qcsrc/client/hud/panel/quickmenu.qc:833 msgid "QMCMD^Player models like mine" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:843 +#: qcsrc/client/hud/panel/quickmenu.qc:834 msgid "QMCMD^Names above players" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:844 +#: qcsrc/client/hud/panel/quickmenu.qc:835 msgid "QMCMD^Crosshair per weapon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:845 +#: qcsrc/client/hud/panel/quickmenu.qc:836 msgid "QMCMD^FPS" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:846 +#: qcsrc/client/hud/panel/quickmenu.qc:837 msgid "QMCMD^Net graph" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:849 -#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:840 +#: qcsrc/client/hud/panel/quickmenu.qc:843 msgid "QMCMD^Sound settings" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:850 +#: qcsrc/client/hud/panel/quickmenu.qc:841 msgid "QMCMD^Hit sound" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:851 +#: qcsrc/client/hud/panel/quickmenu.qc:842 msgid "QMCMD^Chat sound" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:856 +#: qcsrc/client/hud/panel/quickmenu.qc:847 msgid "QMCMD^Change spectator camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:861 -#: qcsrc/client/hud/panel/quickmenu.qc:865 +#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:856 msgid "QMCMD^Observer camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:853 msgid "QMCMD^Increase speed" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:863 +#: qcsrc/client/hud/panel/quickmenu.qc:854 msgid "QMCMD^Decrease speed" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:864 +#: qcsrc/client/hud/panel/quickmenu.qc:855 msgid "QMCMD^Wall collision" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:868 +#: qcsrc/client/hud/panel/quickmenu.qc:859 msgid "QMCMD^Fullscreen" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:871 -#: qcsrc/client/hud/panel/quickmenu.qc:881 +#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:872 msgid "QMCMD^Call a vote" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:872 +#: qcsrc/client/hud/panel/quickmenu.qc:863 msgid "QMCMD^Restart the map" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:873 +#: qcsrc/client/hud/panel/quickmenu.qc:864 msgid "QMCMD^End match" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:876 +#: qcsrc/client/hud/panel/quickmenu.qc:867 msgid "QMCMD^Reduce match time" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:877 +#: qcsrc/client/hud/panel/quickmenu.qc:868 msgid "QMCMD^Extend match time" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:880 +#: qcsrc/client/hud/panel/quickmenu.qc:871 msgid "QMCMD^Shuffle teams" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:885 +#: qcsrc/client/hud/panel/quickmenu.qc:876 msgid "QMCMD^Spectate a player" msgstr "" @@ -1227,14 +1227,14 @@ msgstr "" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 #: qcsrc/menu/xonotic/dialog_multiplayer_create.qc:105 msgid "Frag limit:" msgstr "" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 msgid "The amount of frags needed before the match will end" msgstr "" @@ -3265,7 +3265,7 @@ msgid "^BG%s%s^K1 was riddled full of holes by ^BG%s^K1's Machine Gun%s%s" msgstr "" #: qcsrc/common/notifications/all.inc:472 -#: qcsrc/common/notifications/all.inc:778 +#: qcsrc/common/notifications/all.inc:779 #, c-format msgid "^BGYou cannot place more than ^F2%s^BG mines at a time" msgstr "" @@ -4043,122 +4043,128 @@ msgstr "" msgid "^BGYou have no lives left, you must wait until the next match" msgstr "" -#: qcsrc/common/notifications/all.inc:707 +#: qcsrc/common/notifications/all.inc:706 +msgid "" +"^F4WARNING:^BG you can't rejoin this match after spectating.\n" +"Use the same command again to spectate anyway." +msgstr "" + +#: qcsrc/common/notifications/all.inc:708 #, c-format msgid "" "^BGWaiting for players to join...\n" "Need active players for: %s" msgstr "" -#: qcsrc/common/notifications/all.inc:708 +#: qcsrc/common/notifications/all.inc:709 #, c-format msgid "^BGWaiting for %s player(s) to join..." msgstr "" -#: qcsrc/common/notifications/all.inc:710 +#: qcsrc/common/notifications/all.inc:711 msgid "^BGYour weapon has been downgraded until you find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:711 +#: qcsrc/common/notifications/all.inc:712 msgid "^F4^COUNT^BG left to find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo or you'll be dead in ^F4^COUNT^BG!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo! ^F4^COUNT^BG left!" msgstr "" -#: qcsrc/common/notifications/all.inc:713 +#: qcsrc/common/notifications/all.inc:714 #, c-format msgid "^F2Extra lives remaining: ^K1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:715 qcsrc/menu/xonotic/campaign.qc:244 +#: qcsrc/common/notifications/all.inc:716 qcsrc/menu/xonotic/campaign.qc:244 #, c-format msgid "Level %s: " msgstr "" -#: qcsrc/common/notifications/all.inc:715 +#: qcsrc/common/notifications/all.inc:716 #, c-format msgid "^BGPress ^F2%s^BG to enter the game" msgstr "" -#: qcsrc/common/notifications/all.inc:718 +#: qcsrc/common/notifications/all.inc:719 #, c-format msgid "" "^F2^COUNT^BG until weapon change...\n" "Next weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:719 +#: qcsrc/common/notifications/all.inc:720 #, c-format msgid "^F2Active weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:721 +#: qcsrc/common/notifications/all.inc:722 #, c-format msgid "^BGYou captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:722 +#: qcsrc/common/notifications/all.inc:723 msgid "^BGYou captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:723 +#: qcsrc/common/notifications/all.inc:724 #, c-format msgid "^TC^TT^BG team captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:724 +#: qcsrc/common/notifications/all.inc:725 msgid "^TC^TT^BG team captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:725 +#: qcsrc/common/notifications/all.inc:726 msgid "^BGThis control point currently cannot be captured" msgstr "" -#: qcsrc/common/notifications/all.inc:726 +#: qcsrc/common/notifications/all.inc:727 msgid "" "^BGThe enemy generator cannot be destroyed yet\n" "^F2Capture some control points to unshield it" msgstr "" -#: qcsrc/common/notifications/all.inc:727 +#: qcsrc/common/notifications/all.inc:728 msgid "^BGThe ^TCenemy^BG generator is no longer shielded!" msgstr "" -#: qcsrc/common/notifications/all.inc:728 +#: qcsrc/common/notifications/all.inc:729 msgid "" "^K1Your generator is NOT shielded!\n" "^BGRe-capture control points to shield it!" msgstr "" -#: qcsrc/common/notifications/all.inc:729 +#: qcsrc/common/notifications/all.inc:730 #, c-format msgid "^BGPress ^F2%s^BG to teleport" msgstr "" -#: qcsrc/common/notifications/all.inc:730 +#: qcsrc/common/notifications/all.inc:731 #, c-format msgid "^BGTeleporting disabled for %s" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep fragging until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep scoring until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:733 +#: qcsrc/common/notifications/all.inc:734 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "\n" @@ -4167,136 +4173,136 @@ msgid "" "the faster the enemy generator decays" msgstr "" -#: qcsrc/common/notifications/all.inc:734 +#: qcsrc/common/notifications/all.inc:735 #, c-format msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "^BGAdded ^F4%s^BG to the game!" msgstr "" -#: qcsrc/common/notifications/all.inc:736 +#: qcsrc/common/notifications/all.inc:737 msgid "^K1In^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:737 +#: qcsrc/common/notifications/all.inc:738 msgid "^F3Out^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:738 +#: qcsrc/common/notifications/all.inc:739 msgid "^F1Portal creation failed" msgstr "" -#: qcsrc/common/notifications/all.inc:740 +#: qcsrc/common/notifications/all.inc:741 msgid "^F2Strength infuses your weapons with devastating power" msgstr "" -#: qcsrc/common/notifications/all.inc:741 +#: qcsrc/common/notifications/all.inc:742 msgid "^F2Strength has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:743 +#: qcsrc/common/notifications/all.inc:744 msgid "^F2Shield surrounds you" msgstr "" -#: qcsrc/common/notifications/all.inc:744 +#: qcsrc/common/notifications/all.inc:745 msgid "^F2Shield has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:746 +#: qcsrc/common/notifications/all.inc:747 msgid "^F2You are on speed" msgstr "" -#: qcsrc/common/notifications/all.inc:747 +#: qcsrc/common/notifications/all.inc:748 msgid "^F2Speed has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:749 +#: qcsrc/common/notifications/all.inc:750 msgid "^F2You are invisible" msgstr "" -#: qcsrc/common/notifications/all.inc:750 +#: qcsrc/common/notifications/all.inc:751 msgid "^F2Invisibility has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:752 +#: qcsrc/common/notifications/all.inc:753 msgid "^F2The race is over, finish your lap!" msgstr "" -#: qcsrc/common/notifications/all.inc:754 +#: qcsrc/common/notifications/all.inc:755 msgid "^BGSequence completed!" msgstr "" -#: qcsrc/common/notifications/all.inc:755 +#: qcsrc/common/notifications/all.inc:756 msgid "^BGThere are more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:756 +#: qcsrc/common/notifications/all.inc:757 #, c-format msgid "^BGOnly %s^BG more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:758 +#: qcsrc/common/notifications/all.inc:759 msgid "^F2Superweapons have broken down" msgstr "" -#: qcsrc/common/notifications/all.inc:759 +#: qcsrc/common/notifications/all.inc:760 msgid "^F2Superweapons have been lost" msgstr "" -#: qcsrc/common/notifications/all.inc:760 +#: qcsrc/common/notifications/all.inc:761 msgid "^F2You now have a superweapon" msgstr "" -#: qcsrc/common/notifications/all.inc:762 +#: qcsrc/common/notifications/all.inc:763 msgid "^K1Changing to ^TC^TT^K1 in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:763 +#: qcsrc/common/notifications/all.inc:764 msgid "^K1Changing team in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:764 +#: qcsrc/common/notifications/all.inc:765 msgid "^K1Spectating in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:765 +#: qcsrc/common/notifications/all.inc:766 msgid "^K1Suicide in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:767 +#: qcsrc/common/notifications/all.inc:768 msgid "^F4Timeout begins in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:768 +#: qcsrc/common/notifications/all.inc:769 msgid "^F4Timeout ends in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:770 +#: qcsrc/common/notifications/all.inc:771 msgid "^K1Cannot join given minigame session!" msgstr "" -#: qcsrc/common/notifications/all.inc:772 +#: qcsrc/common/notifications/all.inc:773 #, c-format msgid "^BGPress ^F2%s^BG to enter/exit the vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:773 +#: qcsrc/common/notifications/all.inc:774 #, c-format msgid "^BGPress ^F2%s^BG to enter the vehicle gunner" msgstr "" -#: qcsrc/common/notifications/all.inc:774 +#: qcsrc/common/notifications/all.inc:775 #, c-format msgid "^BGPress ^F2%s^BG to steal this vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:775 +#: qcsrc/common/notifications/all.inc:776 msgid "" "^F2The enemy is stealing one of your vehicles!\n" "^F4Stop them!" msgstr "" -#: qcsrc/common/notifications/all.inc:776 +#: qcsrc/common/notifications/all.inc:777 msgid "^F2Intruder detected, disabling shields!" msgstr "" diff --git a/common.ms.po b/common.ms.po index c12149e4a8..ad832f37d0 100644 --- a/common.ms.po +++ b/common.ms.po @@ -9,9 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: Xonotic\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-06 07:22+0100\n" -"PO-Revision-Date: 2022-03-06 06:22+0000\n" -"Last-Translator: divVerent \n" +"POT-Creation-Date: 2022-03-27 07:22+0200\n" +"PO-Revision-Date: 2013-09-12 16:53+0000\n" +"Last-Translator: 4b0721bd8a44304c1fd21d8581e7aba4_e088d28 " +"<64a9a0c5da22e761316957ae436b6281_676465>, 2018\n" "Language-Team: Malay (http://www.transifex.com/team-xonotic/xonotic/language/" "ms/)\n" "Language: ms\n" @@ -218,270 +219,270 @@ msgstr "^3ALT ^7+ ^3KEKUNCI ANAK PANAH ^7untuk pelarasan halus." msgid "Player %d" msgstr "Pemain %d" -#: qcsrc/client/hud/panel/quickmenu.qc:617 -#: qcsrc/client/hud/panel/quickmenu.qc:619 +#: qcsrc/client/hud/panel/quickmenu.qc:608 +#: qcsrc/client/hud/panel/quickmenu.qc:610 #, c-format msgid "Submenu%d" msgstr "Submenu%d" -#: qcsrc/client/hud/panel/quickmenu.qc:624 +#: qcsrc/client/hud/panel/quickmenu.qc:615 #, c-format msgid "Command%d" msgstr "Perintah%d" -#: qcsrc/client/hud/panel/quickmenu.qc:650 +#: qcsrc/client/hud/panel/quickmenu.qc:641 msgid "Continue..." msgstr "Teruskan..." -#: qcsrc/client/hud/panel/quickmenu.qc:807 -#: qcsrc/client/hud/panel/quickmenu.qc:814 +#: qcsrc/client/hud/panel/quickmenu.qc:798 +#: qcsrc/client/hud/panel/quickmenu.qc:805 msgid "Chat" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:808 +#: qcsrc/client/hud/panel/quickmenu.qc:799 msgid "QMCMD^Send public message to" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^:-) / nice one" msgstr "QMCMD^:-) / hebat" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^nice one" msgstr "QMCMD^hebat" -#: qcsrc/client/hud/panel/quickmenu.qc:810 +#: qcsrc/client/hud/panel/quickmenu.qc:801 msgid "QMCMD^good game" msgstr "QMCMD^terbaiklah" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck" msgstr "QMCMD^hai / semoga berjaya" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck and have fun" msgstr "QMCMD^hai / semoga berjaya dan bergembiralah" -#: qcsrc/client/hud/panel/quickmenu.qc:813 +#: qcsrc/client/hud/panel/quickmenu.qc:804 msgid "QMCMD^Send in English" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:818 -#: qcsrc/client/hud/panel/quickmenu.qc:834 +#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:825 msgid "QMCMD^Team chat" msgstr "QMCMD^Sembang pasukan" -#: qcsrc/client/hud/panel/quickmenu.qc:819 +#: qcsrc/client/hud/panel/quickmenu.qc:810 msgid "QMCMD^strength soon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item %x^7 (l:%y^7)" msgstr "QMCMD^item percuma %x^7 (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item, icon" msgstr "QMCMD^item percuma, ikon" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item (l:%l^7)" msgstr "QMCMD^mengambil item (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item, icon" msgstr "QMCMD^mengambil item, ikon" -#: qcsrc/client/hud/panel/quickmenu.qc:822 +#: qcsrc/client/hud/panel/quickmenu.qc:813 msgid "QMCMD^negative" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:823 +#: qcsrc/client/hud/panel/quickmenu.qc:814 msgid "QMCMD^positive" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 #, c-format msgid "QMCMD^dropped flag (l:%d^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 msgid "QMCMD^dropped flag, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^drop weapon, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^dropped weapon %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^drop flag/key, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^dropped flag/key %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:837 +#: qcsrc/client/hud/panel/quickmenu.qc:828 msgid "QMCMD^Send private message to" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:839 -#: qcsrc/client/hud/panel/quickmenu.qc:869 +#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:860 msgid "QMCMD^Settings" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:840 -#: qcsrc/client/hud/panel/quickmenu.qc:847 +#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:838 msgid "QMCMD^View/HUD settings" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:841 +#: qcsrc/client/hud/panel/quickmenu.qc:832 msgid "QMCMD^3rd person view" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:842 +#: qcsrc/client/hud/panel/quickmenu.qc:833 msgid "QMCMD^Player models like mine" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:843 +#: qcsrc/client/hud/panel/quickmenu.qc:834 msgid "QMCMD^Names above players" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:844 +#: qcsrc/client/hud/panel/quickmenu.qc:835 msgid "QMCMD^Crosshair per weapon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:845 +#: qcsrc/client/hud/panel/quickmenu.qc:836 msgid "QMCMD^FPS" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:846 +#: qcsrc/client/hud/panel/quickmenu.qc:837 msgid "QMCMD^Net graph" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:849 -#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:840 +#: qcsrc/client/hud/panel/quickmenu.qc:843 msgid "QMCMD^Sound settings" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:850 +#: qcsrc/client/hud/panel/quickmenu.qc:841 msgid "QMCMD^Hit sound" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:851 +#: qcsrc/client/hud/panel/quickmenu.qc:842 msgid "QMCMD^Chat sound" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:856 +#: qcsrc/client/hud/panel/quickmenu.qc:847 msgid "QMCMD^Change spectator camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:861 -#: qcsrc/client/hud/panel/quickmenu.qc:865 +#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:856 msgid "QMCMD^Observer camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:853 msgid "QMCMD^Increase speed" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:863 +#: qcsrc/client/hud/panel/quickmenu.qc:854 msgid "QMCMD^Decrease speed" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:864 +#: qcsrc/client/hud/panel/quickmenu.qc:855 msgid "QMCMD^Wall collision" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:868 +#: qcsrc/client/hud/panel/quickmenu.qc:859 msgid "QMCMD^Fullscreen" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:871 -#: qcsrc/client/hud/panel/quickmenu.qc:881 +#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:872 msgid "QMCMD^Call a vote" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:872 +#: qcsrc/client/hud/panel/quickmenu.qc:863 msgid "QMCMD^Restart the map" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:873 +#: qcsrc/client/hud/panel/quickmenu.qc:864 msgid "QMCMD^End match" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:876 +#: qcsrc/client/hud/panel/quickmenu.qc:867 msgid "QMCMD^Reduce match time" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:877 +#: qcsrc/client/hud/panel/quickmenu.qc:868 msgid "QMCMD^Extend match time" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:880 +#: qcsrc/client/hud/panel/quickmenu.qc:871 msgid "QMCMD^Shuffle teams" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:885 +#: qcsrc/client/hud/panel/quickmenu.qc:876 msgid "QMCMD^Spectate a player" msgstr "" @@ -1232,14 +1233,14 @@ msgstr "Bunuh semua ahli pasukan musuh untuk memenangi pusingan tersebut" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 #: qcsrc/menu/xonotic/dialog_multiplayer_create.qc:105 msgid "Frag limit:" msgstr "" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 msgid "The amount of frags needed before the match will end" msgstr "" @@ -3277,7 +3278,7 @@ msgid "^BG%s%s^K1 was riddled full of holes by ^BG%s^K1's Machine Gun%s%s" msgstr "" #: qcsrc/common/notifications/all.inc:472 -#: qcsrc/common/notifications/all.inc:778 +#: qcsrc/common/notifications/all.inc:779 #, c-format msgid "^BGYou cannot place more than ^F2%s^BG mines at a time" msgstr "" @@ -4055,122 +4056,128 @@ msgstr "" msgid "^BGYou have no lives left, you must wait until the next match" msgstr "" -#: qcsrc/common/notifications/all.inc:707 +#: qcsrc/common/notifications/all.inc:706 +msgid "" +"^F4WARNING:^BG you can't rejoin this match after spectating.\n" +"Use the same command again to spectate anyway." +msgstr "" + +#: qcsrc/common/notifications/all.inc:708 #, c-format msgid "" "^BGWaiting for players to join...\n" "Need active players for: %s" msgstr "" -#: qcsrc/common/notifications/all.inc:708 +#: qcsrc/common/notifications/all.inc:709 #, c-format msgid "^BGWaiting for %s player(s) to join..." msgstr "" -#: qcsrc/common/notifications/all.inc:710 +#: qcsrc/common/notifications/all.inc:711 msgid "^BGYour weapon has been downgraded until you find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:711 +#: qcsrc/common/notifications/all.inc:712 msgid "^F4^COUNT^BG left to find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo or you'll be dead in ^F4^COUNT^BG!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo! ^F4^COUNT^BG left!" msgstr "" -#: qcsrc/common/notifications/all.inc:713 +#: qcsrc/common/notifications/all.inc:714 #, c-format msgid "^F2Extra lives remaining: ^K1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:715 qcsrc/menu/xonotic/campaign.qc:244 +#: qcsrc/common/notifications/all.inc:716 qcsrc/menu/xonotic/campaign.qc:244 #, c-format msgid "Level %s: " msgstr "" -#: qcsrc/common/notifications/all.inc:715 +#: qcsrc/common/notifications/all.inc:716 #, c-format msgid "^BGPress ^F2%s^BG to enter the game" msgstr "" -#: qcsrc/common/notifications/all.inc:718 +#: qcsrc/common/notifications/all.inc:719 #, c-format msgid "" "^F2^COUNT^BG until weapon change...\n" "Next weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:719 +#: qcsrc/common/notifications/all.inc:720 #, c-format msgid "^F2Active weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:721 +#: qcsrc/common/notifications/all.inc:722 #, c-format msgid "^BGYou captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:722 +#: qcsrc/common/notifications/all.inc:723 msgid "^BGYou captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:723 +#: qcsrc/common/notifications/all.inc:724 #, c-format msgid "^TC^TT^BG team captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:724 +#: qcsrc/common/notifications/all.inc:725 msgid "^TC^TT^BG team captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:725 +#: qcsrc/common/notifications/all.inc:726 msgid "^BGThis control point currently cannot be captured" msgstr "" -#: qcsrc/common/notifications/all.inc:726 +#: qcsrc/common/notifications/all.inc:727 msgid "" "^BGThe enemy generator cannot be destroyed yet\n" "^F2Capture some control points to unshield it" msgstr "" -#: qcsrc/common/notifications/all.inc:727 +#: qcsrc/common/notifications/all.inc:728 msgid "^BGThe ^TCenemy^BG generator is no longer shielded!" msgstr "" -#: qcsrc/common/notifications/all.inc:728 +#: qcsrc/common/notifications/all.inc:729 msgid "" "^K1Your generator is NOT shielded!\n" "^BGRe-capture control points to shield it!" msgstr "" -#: qcsrc/common/notifications/all.inc:729 +#: qcsrc/common/notifications/all.inc:730 #, c-format msgid "^BGPress ^F2%s^BG to teleport" msgstr "" -#: qcsrc/common/notifications/all.inc:730 +#: qcsrc/common/notifications/all.inc:731 #, c-format msgid "^BGTeleporting disabled for %s" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep fragging until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep scoring until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:733 +#: qcsrc/common/notifications/all.inc:734 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "\n" @@ -4179,136 +4186,136 @@ msgid "" "the faster the enemy generator decays" msgstr "" -#: qcsrc/common/notifications/all.inc:734 +#: qcsrc/common/notifications/all.inc:735 #, c-format msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "^BGAdded ^F4%s^BG to the game!" msgstr "" -#: qcsrc/common/notifications/all.inc:736 +#: qcsrc/common/notifications/all.inc:737 msgid "^K1In^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:737 +#: qcsrc/common/notifications/all.inc:738 msgid "^F3Out^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:738 +#: qcsrc/common/notifications/all.inc:739 msgid "^F1Portal creation failed" msgstr "" -#: qcsrc/common/notifications/all.inc:740 +#: qcsrc/common/notifications/all.inc:741 msgid "^F2Strength infuses your weapons with devastating power" msgstr "" -#: qcsrc/common/notifications/all.inc:741 +#: qcsrc/common/notifications/all.inc:742 msgid "^F2Strength has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:743 +#: qcsrc/common/notifications/all.inc:744 msgid "^F2Shield surrounds you" msgstr "" -#: qcsrc/common/notifications/all.inc:744 +#: qcsrc/common/notifications/all.inc:745 msgid "^F2Shield has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:746 +#: qcsrc/common/notifications/all.inc:747 msgid "^F2You are on speed" msgstr "" -#: qcsrc/common/notifications/all.inc:747 +#: qcsrc/common/notifications/all.inc:748 msgid "^F2Speed has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:749 +#: qcsrc/common/notifications/all.inc:750 msgid "^F2You are invisible" msgstr "" -#: qcsrc/common/notifications/all.inc:750 +#: qcsrc/common/notifications/all.inc:751 msgid "^F2Invisibility has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:752 +#: qcsrc/common/notifications/all.inc:753 msgid "^F2The race is over, finish your lap!" msgstr "" -#: qcsrc/common/notifications/all.inc:754 +#: qcsrc/common/notifications/all.inc:755 msgid "^BGSequence completed!" msgstr "" -#: qcsrc/common/notifications/all.inc:755 +#: qcsrc/common/notifications/all.inc:756 msgid "^BGThere are more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:756 +#: qcsrc/common/notifications/all.inc:757 #, c-format msgid "^BGOnly %s^BG more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:758 +#: qcsrc/common/notifications/all.inc:759 msgid "^F2Superweapons have broken down" msgstr "" -#: qcsrc/common/notifications/all.inc:759 +#: qcsrc/common/notifications/all.inc:760 msgid "^F2Superweapons have been lost" msgstr "" -#: qcsrc/common/notifications/all.inc:760 +#: qcsrc/common/notifications/all.inc:761 msgid "^F2You now have a superweapon" msgstr "" -#: qcsrc/common/notifications/all.inc:762 +#: qcsrc/common/notifications/all.inc:763 msgid "^K1Changing to ^TC^TT^K1 in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:763 +#: qcsrc/common/notifications/all.inc:764 msgid "^K1Changing team in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:764 +#: qcsrc/common/notifications/all.inc:765 msgid "^K1Spectating in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:765 +#: qcsrc/common/notifications/all.inc:766 msgid "^K1Suicide in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:767 +#: qcsrc/common/notifications/all.inc:768 msgid "^F4Timeout begins in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:768 +#: qcsrc/common/notifications/all.inc:769 msgid "^F4Timeout ends in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:770 +#: qcsrc/common/notifications/all.inc:771 msgid "^K1Cannot join given minigame session!" msgstr "" -#: qcsrc/common/notifications/all.inc:772 +#: qcsrc/common/notifications/all.inc:773 #, c-format msgid "^BGPress ^F2%s^BG to enter/exit the vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:773 +#: qcsrc/common/notifications/all.inc:774 #, c-format msgid "^BGPress ^F2%s^BG to enter the vehicle gunner" msgstr "" -#: qcsrc/common/notifications/all.inc:774 +#: qcsrc/common/notifications/all.inc:775 #, c-format msgid "^BGPress ^F2%s^BG to steal this vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:775 +#: qcsrc/common/notifications/all.inc:776 msgid "" "^F2The enemy is stealing one of your vehicles!\n" "^F4Stop them!" msgstr "" -#: qcsrc/common/notifications/all.inc:776 +#: qcsrc/common/notifications/all.inc:777 msgid "^F2Intruder detected, disabling shields!" msgstr "" diff --git a/common.nl.po b/common.nl.po index 7d744d3e2e..02fedcb61a 100644 --- a/common.nl.po +++ b/common.nl.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: Xonotic\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-06 07:22+0100\n" -"PO-Revision-Date: 2022-03-06 06:22+0000\n" -"Last-Translator: divVerent \n" +"POT-Creation-Date: 2022-03-27 07:22+0200\n" +"PO-Revision-Date: 2013-09-12 16:53+0000\n" +"Last-Translator: Jonathan van der Steege , 2016\n" "Language-Team: Dutch (http://www.transifex.com/team-xonotic/xonotic/language/" "nl/)\n" "Language: nl\n" @@ -221,270 +221,270 @@ msgstr "^3ALT ^7+ ^3ARROW KEYS ^7voor fijnafstellingen." msgid "Player %d" msgstr "Speler %d" -#: qcsrc/client/hud/panel/quickmenu.qc:617 -#: qcsrc/client/hud/panel/quickmenu.qc:619 +#: qcsrc/client/hud/panel/quickmenu.qc:608 +#: qcsrc/client/hud/panel/quickmenu.qc:610 #, c-format msgid "Submenu%d" msgstr "Submenu%d" -#: qcsrc/client/hud/panel/quickmenu.qc:624 +#: qcsrc/client/hud/panel/quickmenu.qc:615 #, c-format msgid "Command%d" msgstr "Commando%d" -#: qcsrc/client/hud/panel/quickmenu.qc:650 +#: qcsrc/client/hud/panel/quickmenu.qc:641 msgid "Continue..." msgstr "Ga door..." -#: qcsrc/client/hud/panel/quickmenu.qc:807 -#: qcsrc/client/hud/panel/quickmenu.qc:814 +#: qcsrc/client/hud/panel/quickmenu.qc:798 +#: qcsrc/client/hud/panel/quickmenu.qc:805 msgid "Chat" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:808 +#: qcsrc/client/hud/panel/quickmenu.qc:799 msgid "QMCMD^Send public message to" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^:-) / nice one" msgstr "QMCMD^:-) / goed gedaan" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^nice one" msgstr "QMCMD^goed gedaan" -#: qcsrc/client/hud/panel/quickmenu.qc:810 +#: qcsrc/client/hud/panel/quickmenu.qc:801 msgid "QMCMD^good game" msgstr "QMCMD^goede wedstrijd" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck" msgstr "QMCMD^hoi / succes" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck and have fun" msgstr "QMCMD^hoi / succes en veel plezier" -#: qcsrc/client/hud/panel/quickmenu.qc:813 +#: qcsrc/client/hud/panel/quickmenu.qc:804 msgid "QMCMD^Send in English" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:818 -#: qcsrc/client/hud/panel/quickmenu.qc:834 +#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:825 msgid "QMCMD^Team chat" msgstr "QMCMD^Teamchat" -#: qcsrc/client/hud/panel/quickmenu.qc:819 +#: qcsrc/client/hud/panel/quickmenu.qc:810 msgid "QMCMD^strength soon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item %x^7 (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:822 +#: qcsrc/client/hud/panel/quickmenu.qc:813 msgid "QMCMD^negative" msgstr "QMCMD^negatief" -#: qcsrc/client/hud/panel/quickmenu.qc:823 +#: qcsrc/client/hud/panel/quickmenu.qc:814 msgid "QMCMD^positive" msgstr "QMCMD^positief" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help, icon" msgstr "QMCMD^hulp nodig, icoon" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen (l:%y^7)" msgstr "QMCMD^vijand gezien (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen, icon" msgstr "QMCMD^vijand gezien, icoon" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen (l:%y^7)" msgstr "QMCMD^vlag gezien (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen, icon" msgstr "QMCMD^vlag gezien, icoon" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^verdedigen (I:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending, icon" msgstr "QMCMD^verdedigen, icoon" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 #, c-format msgid "QMCMD^dropped flag (l:%d^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 msgid "QMCMD^dropped flag, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^drop weapon, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^dropped weapon %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^drop flag/key, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^dropped flag/key %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:837 +#: qcsrc/client/hud/panel/quickmenu.qc:828 msgid "QMCMD^Send private message to" msgstr "QMCMD^Stuur privébericht aan" -#: qcsrc/client/hud/panel/quickmenu.qc:839 -#: qcsrc/client/hud/panel/quickmenu.qc:869 +#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:860 msgid "QMCMD^Settings" msgstr "QMCMD^Instellingen" -#: qcsrc/client/hud/panel/quickmenu.qc:840 -#: qcsrc/client/hud/panel/quickmenu.qc:847 +#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:838 msgid "QMCMD^View/HUD settings" msgstr "QMCMD^Beeld/HUD-instellingen" -#: qcsrc/client/hud/panel/quickmenu.qc:841 +#: qcsrc/client/hud/panel/quickmenu.qc:832 msgid "QMCMD^3rd person view" msgstr "QMCMD^3epersoonsgezichtsveld" -#: qcsrc/client/hud/panel/quickmenu.qc:842 +#: qcsrc/client/hud/panel/quickmenu.qc:833 msgid "QMCMD^Player models like mine" msgstr "QMCMD^Spelermodellen zoals de mijne" -#: qcsrc/client/hud/panel/quickmenu.qc:843 +#: qcsrc/client/hud/panel/quickmenu.qc:834 msgid "QMCMD^Names above players" msgstr "QMCMD^Namen boven spelers" -#: qcsrc/client/hud/panel/quickmenu.qc:844 +#: qcsrc/client/hud/panel/quickmenu.qc:835 msgid "QMCMD^Crosshair per weapon" msgstr "QMCMD^Draadkruis per wapen" -#: qcsrc/client/hud/panel/quickmenu.qc:845 +#: qcsrc/client/hud/panel/quickmenu.qc:836 msgid "QMCMD^FPS" msgstr "QMCMD^FPS" -#: qcsrc/client/hud/panel/quickmenu.qc:846 +#: qcsrc/client/hud/panel/quickmenu.qc:837 msgid "QMCMD^Net graph" msgstr "QMCMD^Netwerkgrafiek" -#: qcsrc/client/hud/panel/quickmenu.qc:849 -#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:840 +#: qcsrc/client/hud/panel/quickmenu.qc:843 msgid "QMCMD^Sound settings" msgstr "QMCMD^Geluidsinstellingen" -#: qcsrc/client/hud/panel/quickmenu.qc:850 +#: qcsrc/client/hud/panel/quickmenu.qc:841 msgid "QMCMD^Hit sound" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:851 +#: qcsrc/client/hud/panel/quickmenu.qc:842 msgid "QMCMD^Chat sound" msgstr "QMCMD^Chatgeluid" -#: qcsrc/client/hud/panel/quickmenu.qc:856 +#: qcsrc/client/hud/panel/quickmenu.qc:847 msgid "QMCMD^Change spectator camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:861 -#: qcsrc/client/hud/panel/quickmenu.qc:865 +#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:856 msgid "QMCMD^Observer camera" msgstr "QMCMD^Observatorscamera" -#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:853 msgid "QMCMD^Increase speed" msgstr "QMCMD^Verhoog snelheid" -#: qcsrc/client/hud/panel/quickmenu.qc:863 +#: qcsrc/client/hud/panel/quickmenu.qc:854 msgid "QMCMD^Decrease speed" msgstr "QMCMD^Verlaag snelheid" -#: qcsrc/client/hud/panel/quickmenu.qc:864 +#: qcsrc/client/hud/panel/quickmenu.qc:855 msgid "QMCMD^Wall collision" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:868 +#: qcsrc/client/hud/panel/quickmenu.qc:859 msgid "QMCMD^Fullscreen" msgstr "QMCMD^Volledig scherm" -#: qcsrc/client/hud/panel/quickmenu.qc:871 -#: qcsrc/client/hud/panel/quickmenu.qc:881 +#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:872 msgid "QMCMD^Call a vote" msgstr "QMCMD^Roep een stemronde uit" -#: qcsrc/client/hud/panel/quickmenu.qc:872 +#: qcsrc/client/hud/panel/quickmenu.qc:863 msgid "QMCMD^Restart the map" msgstr "QMCMD^Herstart de kaart" -#: qcsrc/client/hud/panel/quickmenu.qc:873 +#: qcsrc/client/hud/panel/quickmenu.qc:864 msgid "QMCMD^End match" msgstr "QMCMD^Beëindig wedstrijd" -#: qcsrc/client/hud/panel/quickmenu.qc:876 +#: qcsrc/client/hud/panel/quickmenu.qc:867 msgid "QMCMD^Reduce match time" msgstr "QMCMD^Verminder wedstrijdtijd" -#: qcsrc/client/hud/panel/quickmenu.qc:877 +#: qcsrc/client/hud/panel/quickmenu.qc:868 msgid "QMCMD^Extend match time" msgstr "QMCMD^Verleng wedstrijdtijd" -#: qcsrc/client/hud/panel/quickmenu.qc:880 +#: qcsrc/client/hud/panel/quickmenu.qc:871 msgid "QMCMD^Shuffle teams" msgstr "QMCMD^Meng teams" -#: qcsrc/client/hud/panel/quickmenu.qc:885 +#: qcsrc/client/hud/panel/quickmenu.qc:876 msgid "QMCMD^Spectate a player" msgstr "" @@ -1235,14 +1235,14 @@ msgstr "Vermoord alle vijandelijke teamleden om de ronde te winnen" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 #: qcsrc/menu/xonotic/dialog_multiplayer_create.qc:105 msgid "Frag limit:" msgstr "Frag limiet:" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 msgid "The amount of frags needed before the match will end" msgstr "Het aantal benodigde frags voordat de wedstrijd stopt" @@ -3283,7 +3283,7 @@ msgid "^BG%s%s^K1 was riddled full of holes by ^BG%s^K1's Machine Gun%s%s" msgstr "" #: qcsrc/common/notifications/all.inc:472 -#: qcsrc/common/notifications/all.inc:778 +#: qcsrc/common/notifications/all.inc:779 #, c-format msgid "^BGYou cannot place more than ^F2%s^BG mines at a time" msgstr "" @@ -4080,7 +4080,13 @@ msgstr "^BGJe begint met de ^TC^TT sleutel" msgid "^BGYou have no lives left, you must wait until the next match" msgstr "" -#: qcsrc/common/notifications/all.inc:707 +#: qcsrc/common/notifications/all.inc:706 +msgid "" +"^F4WARNING:^BG you can't rejoin this match after spectating.\n" +"Use the same command again to spectate anyway." +msgstr "" + +#: qcsrc/common/notifications/all.inc:708 #, c-format msgid "" "^BGWaiting for players to join...\n" @@ -4089,43 +4095,43 @@ msgstr "" "^BGAan het wachten voor spelers...\n" "Actieve spelers nodig voor: %s" -#: qcsrc/common/notifications/all.inc:708 +#: qcsrc/common/notifications/all.inc:709 #, c-format msgid "^BGWaiting for %s player(s) to join..." msgstr "^BGAan het wachten op %s speler(s) om mee te doen..." -#: qcsrc/common/notifications/all.inc:710 +#: qcsrc/common/notifications/all.inc:711 msgid "^BGYour weapon has been downgraded until you find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:711 +#: qcsrc/common/notifications/all.inc:712 msgid "^F4^COUNT^BG left to find some ammo!" msgstr "^F4^COUNT^BG over om wat ammo te vinden!" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo or you'll be dead in ^F4^COUNT^BG!" msgstr "^BGPak wat munitie, of je bent dood in ^F4^COUNT^BG!" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo! ^F4^COUNT^BG left!" msgstr "^BGPak wat munitie op! ^F4^COUNT^BG over!" -#: qcsrc/common/notifications/all.inc:713 +#: qcsrc/common/notifications/all.inc:714 #, c-format msgid "^F2Extra lives remaining: ^K1%s" msgstr "^F2Resterende extra levens: ^K1%s" -#: qcsrc/common/notifications/all.inc:715 qcsrc/menu/xonotic/campaign.qc:244 +#: qcsrc/common/notifications/all.inc:716 qcsrc/menu/xonotic/campaign.qc:244 #, c-format msgid "Level %s: " msgstr "" -#: qcsrc/common/notifications/all.inc:715 +#: qcsrc/common/notifications/all.inc:716 #, c-format msgid "^BGPress ^F2%s^BG to enter the game" msgstr "" -#: qcsrc/common/notifications/all.inc:718 +#: qcsrc/common/notifications/all.inc:719 #, c-format msgid "" "^F2^COUNT^BG until weapon change...\n" @@ -4134,60 +4140,60 @@ msgstr "" "^F2^COUNT^BG tot de wapens veranderen...\n" "Volgend wapen: ^F1%s" -#: qcsrc/common/notifications/all.inc:719 +#: qcsrc/common/notifications/all.inc:720 #, c-format msgid "^F2Active weapon: ^F1%s" msgstr "^F2Actief wapen: ^F1%s" -#: qcsrc/common/notifications/all.inc:721 +#: qcsrc/common/notifications/all.inc:722 #, c-format msgid "^BGYou captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:722 +#: qcsrc/common/notifications/all.inc:723 msgid "^BGYou captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:723 +#: qcsrc/common/notifications/all.inc:724 #, c-format msgid "^TC^TT^BG team captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:724 +#: qcsrc/common/notifications/all.inc:725 msgid "^TC^TT^BG team captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:725 +#: qcsrc/common/notifications/all.inc:726 msgid "^BGThis control point currently cannot be captured" msgstr "" -#: qcsrc/common/notifications/all.inc:726 +#: qcsrc/common/notifications/all.inc:727 msgid "" "^BGThe enemy generator cannot be destroyed yet\n" "^F2Capture some control points to unshield it" msgstr "" -#: qcsrc/common/notifications/all.inc:727 +#: qcsrc/common/notifications/all.inc:728 msgid "^BGThe ^TCenemy^BG generator is no longer shielded!" msgstr "" -#: qcsrc/common/notifications/all.inc:728 +#: qcsrc/common/notifications/all.inc:729 msgid "" "^K1Your generator is NOT shielded!\n" "^BGRe-capture control points to shield it!" msgstr "" -#: qcsrc/common/notifications/all.inc:729 +#: qcsrc/common/notifications/all.inc:730 #, c-format msgid "^BGPress ^F2%s^BG to teleport" msgstr "" -#: qcsrc/common/notifications/all.inc:730 +#: qcsrc/common/notifications/all.inc:731 #, c-format msgid "^BGTeleporting disabled for %s" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep fragging until we have a winner!" @@ -4195,7 +4201,7 @@ msgstr "" "^F4VERLENGING!^F2\n" "Blijf spelen tot we een winnaar hebben!" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep scoring until we have a winner!" @@ -4203,7 +4209,7 @@ msgstr "" "^F4VERLENING^F2!\n" "Blijf scoren tot we een winnaar hebben!" -#: qcsrc/common/notifications/all.inc:733 +#: qcsrc/common/notifications/all.inc:734 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "\n" @@ -4212,7 +4218,7 @@ msgid "" "the faster the enemy generator decays" msgstr "" -#: qcsrc/common/notifications/all.inc:734 +#: qcsrc/common/notifications/all.inc:735 #, c-format msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" @@ -4221,129 +4227,129 @@ msgstr "" "^F4VERLENGING^F2!\n" "^BG^F4%s^BG toegevoegd aan het spel!" -#: qcsrc/common/notifications/all.inc:736 +#: qcsrc/common/notifications/all.inc:737 msgid "^K1In^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:737 +#: qcsrc/common/notifications/all.inc:738 msgid "^F3Out^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:738 +#: qcsrc/common/notifications/all.inc:739 msgid "^F1Portal creation failed" msgstr "" -#: qcsrc/common/notifications/all.inc:740 +#: qcsrc/common/notifications/all.inc:741 msgid "^F2Strength infuses your weapons with devastating power" msgstr "^F2Kracht doordringt je wapens met verwoestende kracht" -#: qcsrc/common/notifications/all.inc:741 +#: qcsrc/common/notifications/all.inc:742 msgid "^F2Strength has worn off" msgstr "^F2Kracht is uitgewerkt" -#: qcsrc/common/notifications/all.inc:743 +#: qcsrc/common/notifications/all.inc:744 msgid "^F2Shield surrounds you" msgstr "^F2Een schild omringt je" -#: qcsrc/common/notifications/all.inc:744 +#: qcsrc/common/notifications/all.inc:745 msgid "^F2Shield has worn off" msgstr "^F2Schild is uitgewerkt" -#: qcsrc/common/notifications/all.inc:746 +#: qcsrc/common/notifications/all.inc:747 msgid "^F2You are on speed" msgstr "^F2Je bent op snelheid" -#: qcsrc/common/notifications/all.inc:747 +#: qcsrc/common/notifications/all.inc:748 msgid "^F2Speed has worn off" msgstr "^F2Snelheid is uitgewerkt" -#: qcsrc/common/notifications/all.inc:749 +#: qcsrc/common/notifications/all.inc:750 msgid "^F2You are invisible" msgstr "^F2Je bent onzichtbaar" -#: qcsrc/common/notifications/all.inc:750 +#: qcsrc/common/notifications/all.inc:751 msgid "^F2Invisibility has worn off" msgstr "^F2Onzichtbaarheid is uitgewerkt" -#: qcsrc/common/notifications/all.inc:752 +#: qcsrc/common/notifications/all.inc:753 msgid "^F2The race is over, finish your lap!" msgstr "^F2De race is voorbij, maak je ronde af!" -#: qcsrc/common/notifications/all.inc:754 +#: qcsrc/common/notifications/all.inc:755 msgid "^BGSequence completed!" msgstr "" -#: qcsrc/common/notifications/all.inc:755 +#: qcsrc/common/notifications/all.inc:756 msgid "^BGThere are more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:756 +#: qcsrc/common/notifications/all.inc:757 #, c-format msgid "^BGOnly %s^BG more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:758 +#: qcsrc/common/notifications/all.inc:759 msgid "^F2Superweapons have broken down" msgstr "^F2Superwapens zijn afgebroken" -#: qcsrc/common/notifications/all.inc:759 +#: qcsrc/common/notifications/all.inc:760 msgid "^F2Superweapons have been lost" msgstr "^F2De superwapens zijn kwijtgeraakt" -#: qcsrc/common/notifications/all.inc:760 +#: qcsrc/common/notifications/all.inc:761 msgid "^F2You now have a superweapon" msgstr "^F2Je hebt nu een superwapen" -#: qcsrc/common/notifications/all.inc:762 +#: qcsrc/common/notifications/all.inc:763 msgid "^K1Changing to ^TC^TT^K1 in ^COUNT" msgstr "^K1Verandering naar ^TC^TT^K1 in ^COUNT" -#: qcsrc/common/notifications/all.inc:763 +#: qcsrc/common/notifications/all.inc:764 msgid "^K1Changing team in ^COUNT" msgstr "^K1Verandering van team in ^COUNT" -#: qcsrc/common/notifications/all.inc:764 +#: qcsrc/common/notifications/all.inc:765 msgid "^K1Spectating in ^COUNT" msgstr "^K1Toeschouwen in ^COUNT" -#: qcsrc/common/notifications/all.inc:765 +#: qcsrc/common/notifications/all.inc:766 msgid "^K1Suicide in ^COUNT" msgstr "^K1Zelfmoord in ^COUNT" -#: qcsrc/common/notifications/all.inc:767 +#: qcsrc/common/notifications/all.inc:768 msgid "^F4Timeout begins in ^COUNT" msgstr "^F4Timeout begint in ^COUNT" -#: qcsrc/common/notifications/all.inc:768 +#: qcsrc/common/notifications/all.inc:769 msgid "^F4Timeout ends in ^COUNT" msgstr "^F4Timeout eindigt in ^COUNT" -#: qcsrc/common/notifications/all.inc:770 +#: qcsrc/common/notifications/all.inc:771 msgid "^K1Cannot join given minigame session!" msgstr "" -#: qcsrc/common/notifications/all.inc:772 +#: qcsrc/common/notifications/all.inc:773 #, c-format msgid "^BGPress ^F2%s^BG to enter/exit the vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:773 +#: qcsrc/common/notifications/all.inc:774 #, c-format msgid "^BGPress ^F2%s^BG to enter the vehicle gunner" msgstr "" -#: qcsrc/common/notifications/all.inc:774 +#: qcsrc/common/notifications/all.inc:775 #, c-format msgid "^BGPress ^F2%s^BG to steal this vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:775 +#: qcsrc/common/notifications/all.inc:776 msgid "" "^F2The enemy is stealing one of your vehicles!\n" "^F4Stop them!" msgstr "" -#: qcsrc/common/notifications/all.inc:776 +#: qcsrc/common/notifications/all.inc:777 msgid "^F2Intruder detected, disabling shields!" msgstr "" diff --git a/common.no.po b/common.no.po index d60e700267..5993472d8f 100644 --- a/common.no.po +++ b/common.no.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: Xonotic\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-06 07:22+0100\n" -"PO-Revision-Date: 2022-03-06 06:22+0000\n" -"Last-Translator: divVerent \n" +"POT-Creation-Date: 2022-03-27 07:22+0200\n" +"PO-Revision-Date: 2013-09-12 16:53+0000\n" +"Last-Translator: FULL NAME \n" "Language-Team: Norwegian (http://www.transifex.com/team-xonotic/xonotic/" "language/no/)\n" "Language: no\n" @@ -215,270 +215,270 @@ msgstr "" msgid "Player %d" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:617 -#: qcsrc/client/hud/panel/quickmenu.qc:619 +#: qcsrc/client/hud/panel/quickmenu.qc:608 +#: qcsrc/client/hud/panel/quickmenu.qc:610 #, c-format msgid "Submenu%d" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:624 +#: qcsrc/client/hud/panel/quickmenu.qc:615 #, c-format msgid "Command%d" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:650 +#: qcsrc/client/hud/panel/quickmenu.qc:641 msgid "Continue..." msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:807 -#: qcsrc/client/hud/panel/quickmenu.qc:814 +#: qcsrc/client/hud/panel/quickmenu.qc:798 +#: qcsrc/client/hud/panel/quickmenu.qc:805 msgid "Chat" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:808 +#: qcsrc/client/hud/panel/quickmenu.qc:799 msgid "QMCMD^Send public message to" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^:-) / nice one" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^nice one" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:810 +#: qcsrc/client/hud/panel/quickmenu.qc:801 msgid "QMCMD^good game" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck and have fun" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:813 +#: qcsrc/client/hud/panel/quickmenu.qc:804 msgid "QMCMD^Send in English" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:818 -#: qcsrc/client/hud/panel/quickmenu.qc:834 +#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:825 msgid "QMCMD^Team chat" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:819 +#: qcsrc/client/hud/panel/quickmenu.qc:810 msgid "QMCMD^strength soon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item %x^7 (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:822 +#: qcsrc/client/hud/panel/quickmenu.qc:813 msgid "QMCMD^negative" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:823 +#: qcsrc/client/hud/panel/quickmenu.qc:814 msgid "QMCMD^positive" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 #, c-format msgid "QMCMD^dropped flag (l:%d^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 msgid "QMCMD^dropped flag, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^drop weapon, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^dropped weapon %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^drop flag/key, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^dropped flag/key %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:837 +#: qcsrc/client/hud/panel/quickmenu.qc:828 msgid "QMCMD^Send private message to" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:839 -#: qcsrc/client/hud/panel/quickmenu.qc:869 +#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:860 msgid "QMCMD^Settings" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:840 -#: qcsrc/client/hud/panel/quickmenu.qc:847 +#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:838 msgid "QMCMD^View/HUD settings" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:841 +#: qcsrc/client/hud/panel/quickmenu.qc:832 msgid "QMCMD^3rd person view" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:842 +#: qcsrc/client/hud/panel/quickmenu.qc:833 msgid "QMCMD^Player models like mine" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:843 +#: qcsrc/client/hud/panel/quickmenu.qc:834 msgid "QMCMD^Names above players" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:844 +#: qcsrc/client/hud/panel/quickmenu.qc:835 msgid "QMCMD^Crosshair per weapon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:845 +#: qcsrc/client/hud/panel/quickmenu.qc:836 msgid "QMCMD^FPS" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:846 +#: qcsrc/client/hud/panel/quickmenu.qc:837 msgid "QMCMD^Net graph" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:849 -#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:840 +#: qcsrc/client/hud/panel/quickmenu.qc:843 msgid "QMCMD^Sound settings" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:850 +#: qcsrc/client/hud/panel/quickmenu.qc:841 msgid "QMCMD^Hit sound" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:851 +#: qcsrc/client/hud/panel/quickmenu.qc:842 msgid "QMCMD^Chat sound" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:856 +#: qcsrc/client/hud/panel/quickmenu.qc:847 msgid "QMCMD^Change spectator camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:861 -#: qcsrc/client/hud/panel/quickmenu.qc:865 +#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:856 msgid "QMCMD^Observer camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:853 msgid "QMCMD^Increase speed" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:863 +#: qcsrc/client/hud/panel/quickmenu.qc:854 msgid "QMCMD^Decrease speed" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:864 +#: qcsrc/client/hud/panel/quickmenu.qc:855 msgid "QMCMD^Wall collision" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:868 +#: qcsrc/client/hud/panel/quickmenu.qc:859 msgid "QMCMD^Fullscreen" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:871 -#: qcsrc/client/hud/panel/quickmenu.qc:881 +#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:872 msgid "QMCMD^Call a vote" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:872 +#: qcsrc/client/hud/panel/quickmenu.qc:863 msgid "QMCMD^Restart the map" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:873 +#: qcsrc/client/hud/panel/quickmenu.qc:864 msgid "QMCMD^End match" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:876 +#: qcsrc/client/hud/panel/quickmenu.qc:867 msgid "QMCMD^Reduce match time" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:877 +#: qcsrc/client/hud/panel/quickmenu.qc:868 msgid "QMCMD^Extend match time" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:880 +#: qcsrc/client/hud/panel/quickmenu.qc:871 msgid "QMCMD^Shuffle teams" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:885 +#: qcsrc/client/hud/panel/quickmenu.qc:876 msgid "QMCMD^Spectate a player" msgstr "" @@ -1227,14 +1227,14 @@ msgstr "" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 #: qcsrc/menu/xonotic/dialog_multiplayer_create.qc:105 msgid "Frag limit:" msgstr "" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 msgid "The amount of frags needed before the match will end" msgstr "" @@ -3265,7 +3265,7 @@ msgid "^BG%s%s^K1 was riddled full of holes by ^BG%s^K1's Machine Gun%s%s" msgstr "" #: qcsrc/common/notifications/all.inc:472 -#: qcsrc/common/notifications/all.inc:778 +#: qcsrc/common/notifications/all.inc:779 #, c-format msgid "^BGYou cannot place more than ^F2%s^BG mines at a time" msgstr "" @@ -4043,122 +4043,128 @@ msgstr "" msgid "^BGYou have no lives left, you must wait until the next match" msgstr "" -#: qcsrc/common/notifications/all.inc:707 +#: qcsrc/common/notifications/all.inc:706 +msgid "" +"^F4WARNING:^BG you can't rejoin this match after spectating.\n" +"Use the same command again to spectate anyway." +msgstr "" + +#: qcsrc/common/notifications/all.inc:708 #, c-format msgid "" "^BGWaiting for players to join...\n" "Need active players for: %s" msgstr "" -#: qcsrc/common/notifications/all.inc:708 +#: qcsrc/common/notifications/all.inc:709 #, c-format msgid "^BGWaiting for %s player(s) to join..." msgstr "" -#: qcsrc/common/notifications/all.inc:710 +#: qcsrc/common/notifications/all.inc:711 msgid "^BGYour weapon has been downgraded until you find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:711 +#: qcsrc/common/notifications/all.inc:712 msgid "^F4^COUNT^BG left to find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo or you'll be dead in ^F4^COUNT^BG!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo! ^F4^COUNT^BG left!" msgstr "" -#: qcsrc/common/notifications/all.inc:713 +#: qcsrc/common/notifications/all.inc:714 #, c-format msgid "^F2Extra lives remaining: ^K1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:715 qcsrc/menu/xonotic/campaign.qc:244 +#: qcsrc/common/notifications/all.inc:716 qcsrc/menu/xonotic/campaign.qc:244 #, c-format msgid "Level %s: " msgstr "" -#: qcsrc/common/notifications/all.inc:715 +#: qcsrc/common/notifications/all.inc:716 #, c-format msgid "^BGPress ^F2%s^BG to enter the game" msgstr "" -#: qcsrc/common/notifications/all.inc:718 +#: qcsrc/common/notifications/all.inc:719 #, c-format msgid "" "^F2^COUNT^BG until weapon change...\n" "Next weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:719 +#: qcsrc/common/notifications/all.inc:720 #, c-format msgid "^F2Active weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:721 +#: qcsrc/common/notifications/all.inc:722 #, c-format msgid "^BGYou captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:722 +#: qcsrc/common/notifications/all.inc:723 msgid "^BGYou captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:723 +#: qcsrc/common/notifications/all.inc:724 #, c-format msgid "^TC^TT^BG team captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:724 +#: qcsrc/common/notifications/all.inc:725 msgid "^TC^TT^BG team captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:725 +#: qcsrc/common/notifications/all.inc:726 msgid "^BGThis control point currently cannot be captured" msgstr "" -#: qcsrc/common/notifications/all.inc:726 +#: qcsrc/common/notifications/all.inc:727 msgid "" "^BGThe enemy generator cannot be destroyed yet\n" "^F2Capture some control points to unshield it" msgstr "" -#: qcsrc/common/notifications/all.inc:727 +#: qcsrc/common/notifications/all.inc:728 msgid "^BGThe ^TCenemy^BG generator is no longer shielded!" msgstr "" -#: qcsrc/common/notifications/all.inc:728 +#: qcsrc/common/notifications/all.inc:729 msgid "" "^K1Your generator is NOT shielded!\n" "^BGRe-capture control points to shield it!" msgstr "" -#: qcsrc/common/notifications/all.inc:729 +#: qcsrc/common/notifications/all.inc:730 #, c-format msgid "^BGPress ^F2%s^BG to teleport" msgstr "" -#: qcsrc/common/notifications/all.inc:730 +#: qcsrc/common/notifications/all.inc:731 #, c-format msgid "^BGTeleporting disabled for %s" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep fragging until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep scoring until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:733 +#: qcsrc/common/notifications/all.inc:734 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "\n" @@ -4167,136 +4173,136 @@ msgid "" "the faster the enemy generator decays" msgstr "" -#: qcsrc/common/notifications/all.inc:734 +#: qcsrc/common/notifications/all.inc:735 #, c-format msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "^BGAdded ^F4%s^BG to the game!" msgstr "" -#: qcsrc/common/notifications/all.inc:736 +#: qcsrc/common/notifications/all.inc:737 msgid "^K1In^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:737 +#: qcsrc/common/notifications/all.inc:738 msgid "^F3Out^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:738 +#: qcsrc/common/notifications/all.inc:739 msgid "^F1Portal creation failed" msgstr "" -#: qcsrc/common/notifications/all.inc:740 +#: qcsrc/common/notifications/all.inc:741 msgid "^F2Strength infuses your weapons with devastating power" msgstr "" -#: qcsrc/common/notifications/all.inc:741 +#: qcsrc/common/notifications/all.inc:742 msgid "^F2Strength has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:743 +#: qcsrc/common/notifications/all.inc:744 msgid "^F2Shield surrounds you" msgstr "" -#: qcsrc/common/notifications/all.inc:744 +#: qcsrc/common/notifications/all.inc:745 msgid "^F2Shield has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:746 +#: qcsrc/common/notifications/all.inc:747 msgid "^F2You are on speed" msgstr "" -#: qcsrc/common/notifications/all.inc:747 +#: qcsrc/common/notifications/all.inc:748 msgid "^F2Speed has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:749 +#: qcsrc/common/notifications/all.inc:750 msgid "^F2You are invisible" msgstr "" -#: qcsrc/common/notifications/all.inc:750 +#: qcsrc/common/notifications/all.inc:751 msgid "^F2Invisibility has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:752 +#: qcsrc/common/notifications/all.inc:753 msgid "^F2The race is over, finish your lap!" msgstr "" -#: qcsrc/common/notifications/all.inc:754 +#: qcsrc/common/notifications/all.inc:755 msgid "^BGSequence completed!" msgstr "" -#: qcsrc/common/notifications/all.inc:755 +#: qcsrc/common/notifications/all.inc:756 msgid "^BGThere are more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:756 +#: qcsrc/common/notifications/all.inc:757 #, c-format msgid "^BGOnly %s^BG more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:758 +#: qcsrc/common/notifications/all.inc:759 msgid "^F2Superweapons have broken down" msgstr "" -#: qcsrc/common/notifications/all.inc:759 +#: qcsrc/common/notifications/all.inc:760 msgid "^F2Superweapons have been lost" msgstr "" -#: qcsrc/common/notifications/all.inc:760 +#: qcsrc/common/notifications/all.inc:761 msgid "^F2You now have a superweapon" msgstr "" -#: qcsrc/common/notifications/all.inc:762 +#: qcsrc/common/notifications/all.inc:763 msgid "^K1Changing to ^TC^TT^K1 in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:763 +#: qcsrc/common/notifications/all.inc:764 msgid "^K1Changing team in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:764 +#: qcsrc/common/notifications/all.inc:765 msgid "^K1Spectating in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:765 +#: qcsrc/common/notifications/all.inc:766 msgid "^K1Suicide in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:767 +#: qcsrc/common/notifications/all.inc:768 msgid "^F4Timeout begins in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:768 +#: qcsrc/common/notifications/all.inc:769 msgid "^F4Timeout ends in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:770 +#: qcsrc/common/notifications/all.inc:771 msgid "^K1Cannot join given minigame session!" msgstr "" -#: qcsrc/common/notifications/all.inc:772 +#: qcsrc/common/notifications/all.inc:773 #, c-format msgid "^BGPress ^F2%s^BG to enter/exit the vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:773 +#: qcsrc/common/notifications/all.inc:774 #, c-format msgid "^BGPress ^F2%s^BG to enter the vehicle gunner" msgstr "" -#: qcsrc/common/notifications/all.inc:774 +#: qcsrc/common/notifications/all.inc:775 #, c-format msgid "^BGPress ^F2%s^BG to steal this vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:775 +#: qcsrc/common/notifications/all.inc:776 msgid "" "^F2The enemy is stealing one of your vehicles!\n" "^F4Stop them!" msgstr "" -#: qcsrc/common/notifications/all.inc:776 +#: qcsrc/common/notifications/all.inc:777 msgid "^F2Intruder detected, disabling shields!" msgstr "" diff --git a/common.pl.po b/common.pl.po index a421c02366..c89dee34ed 100644 --- a/common.pl.po +++ b/common.pl.po @@ -31,9 +31,9 @@ msgid "" msgstr "" "Project-Id-Version: Xonotic\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-06 07:22+0100\n" -"PO-Revision-Date: 2022-03-06 09:54+0000\n" -"Last-Translator: SFS Atlas\n" +"POT-Creation-Date: 2022-03-27 07:22+0200\n" +"PO-Revision-Date: 2013-09-12 16:53+0000\n" +"Last-Translator: SFS Atlas, 2022\n" "Language-Team: Polish (http://www.transifex.com/team-xonotic/xonotic/" "language/pl/)\n" "Language: pl\n" @@ -242,270 +242,270 @@ msgstr "^3ALT ^7+ ^3ARROW KEYS ^7do małych korekty." msgid "Player %d" msgstr "Gracz %d" -#: qcsrc/client/hud/panel/quickmenu.qc:617 -#: qcsrc/client/hud/panel/quickmenu.qc:619 +#: qcsrc/client/hud/panel/quickmenu.qc:608 +#: qcsrc/client/hud/panel/quickmenu.qc:610 #, c-format msgid "Submenu%d" msgstr "Podmenu%d" -#: qcsrc/client/hud/panel/quickmenu.qc:624 +#: qcsrc/client/hud/panel/quickmenu.qc:615 #, c-format msgid "Command%d" msgstr "Komenda%d" -#: qcsrc/client/hud/panel/quickmenu.qc:650 +#: qcsrc/client/hud/panel/quickmenu.qc:641 msgid "Continue..." msgstr "Kontynuuj..." -#: qcsrc/client/hud/panel/quickmenu.qc:807 -#: qcsrc/client/hud/panel/quickmenu.qc:814 +#: qcsrc/client/hud/panel/quickmenu.qc:798 +#: qcsrc/client/hud/panel/quickmenu.qc:805 msgid "Chat" msgstr "Czat" -#: qcsrc/client/hud/panel/quickmenu.qc:808 +#: qcsrc/client/hud/panel/quickmenu.qc:799 msgid "QMCMD^Send public message to" msgstr "QMCMD^Wyślij publiczną wiadomość do" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^:-) / nice one" msgstr ":-) / nieźle" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^nice one" msgstr "nieźle" -#: qcsrc/client/hud/panel/quickmenu.qc:810 +#: qcsrc/client/hud/panel/quickmenu.qc:801 msgid "QMCMD^good game" msgstr "dobra gra" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck" msgstr "hej / powodzenia" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck and have fun" msgstr "hej / powodzenia i miłej zabawy" -#: qcsrc/client/hud/panel/quickmenu.qc:813 +#: qcsrc/client/hud/panel/quickmenu.qc:804 msgid "QMCMD^Send in English" msgstr "QMCMD^Wyślij w języku angielskim" -#: qcsrc/client/hud/panel/quickmenu.qc:818 -#: qcsrc/client/hud/panel/quickmenu.qc:834 +#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:825 msgid "QMCMD^Team chat" msgstr "Czat drużynowy" -#: qcsrc/client/hud/panel/quickmenu.qc:819 +#: qcsrc/client/hud/panel/quickmenu.qc:810 msgid "QMCMD^strength soon" msgstr "niedługo siła" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item %x^7 (l:%y^7)" msgstr "darmowy przedmiot %x^7 (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item, icon" msgstr "darmowy przedmiot, ikona" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item (l:%l^7)" msgstr "wziąłem przedmiot (l:%I^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item, icon" msgstr "wziąłem przedmiot, ikona" -#: qcsrc/client/hud/panel/quickmenu.qc:822 +#: qcsrc/client/hud/panel/quickmenu.qc:813 msgid "QMCMD^negative" msgstr "zaprzeczam" -#: qcsrc/client/hud/panel/quickmenu.qc:823 +#: qcsrc/client/hud/panel/quickmenu.qc:814 msgid "QMCMD^positive" msgstr "potwierdzam" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "potrzebna pomoc (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help, icon" msgstr "potrzebna pomoc, ikona" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen (l:%y^7)" msgstr "widzę wroga (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen, icon" msgstr "widzę wroga, ikona" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen (l:%y^7)" msgstr "widzę flagę (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen, icon" msgstr "widzę flagę, ikona" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "bronię (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending, icon" msgstr "bronię, ikona" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "krążę (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming, icon" msgstr "krążę, ikona" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "atakuję (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking, icon" msgstr "atakuję, ikona" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier (l:%y^7)" msgstr "zabiłem niosącego flagę (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier, icon" msgstr "QMCMD^zabiłem niosącego flagę, ikona" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 #, c-format msgid "QMCMD^dropped flag (l:%d^7)" msgstr "upuściłem flagę (l:%d^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 msgid "QMCMD^dropped flag, icon" msgstr "upuściłem flagę, ikona" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^drop weapon, icon" msgstr "QMCMD^upuść broń, icon" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^dropped weapon %w^7 (l:%l^7)" msgstr "QMCMD^upuszczono broń %w^7 (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^drop flag/key, icon" msgstr "QMCMD^upuść flagę/klucz, icon" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^dropped flag/key %w^7 (l:%l^7)" msgstr "QMCMD^upuszczono flagę/klucz %w^7 (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:837 +#: qcsrc/client/hud/panel/quickmenu.qc:828 msgid "QMCMD^Send private message to" msgstr "Wyślij prywatną wiadomość do" -#: qcsrc/client/hud/panel/quickmenu.qc:839 -#: qcsrc/client/hud/panel/quickmenu.qc:869 +#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:860 msgid "QMCMD^Settings" msgstr "Ustawienia" -#: qcsrc/client/hud/panel/quickmenu.qc:840 -#: qcsrc/client/hud/panel/quickmenu.qc:847 +#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:838 msgid "QMCMD^View/HUD settings" msgstr "Ustawienia widoku/HUD" -#: qcsrc/client/hud/panel/quickmenu.qc:841 +#: qcsrc/client/hud/panel/quickmenu.qc:832 msgid "QMCMD^3rd person view" msgstr "Widok 3-ciej osoby" -#: qcsrc/client/hud/panel/quickmenu.qc:842 +#: qcsrc/client/hud/panel/quickmenu.qc:833 msgid "QMCMD^Player models like mine" msgstr "Modele graczy jak mój" -#: qcsrc/client/hud/panel/quickmenu.qc:843 +#: qcsrc/client/hud/panel/quickmenu.qc:834 msgid "QMCMD^Names above players" msgstr "Nazwy nad graczami" -#: qcsrc/client/hud/panel/quickmenu.qc:844 +#: qcsrc/client/hud/panel/quickmenu.qc:835 msgid "QMCMD^Crosshair per weapon" msgstr "Celownik broni" -#: qcsrc/client/hud/panel/quickmenu.qc:845 +#: qcsrc/client/hud/panel/quickmenu.qc:836 msgid "QMCMD^FPS" msgstr "QMCMD^FPS" -#: qcsrc/client/hud/panel/quickmenu.qc:846 +#: qcsrc/client/hud/panel/quickmenu.qc:837 msgid "QMCMD^Net graph" msgstr "Net graph" -#: qcsrc/client/hud/panel/quickmenu.qc:849 -#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:840 +#: qcsrc/client/hud/panel/quickmenu.qc:843 msgid "QMCMD^Sound settings" msgstr "Ustawienia dźwięku" -#: qcsrc/client/hud/panel/quickmenu.qc:850 +#: qcsrc/client/hud/panel/quickmenu.qc:841 msgid "QMCMD^Hit sound" msgstr "Dźwięk uderzenia" -#: qcsrc/client/hud/panel/quickmenu.qc:851 +#: qcsrc/client/hud/panel/quickmenu.qc:842 msgid "QMCMD^Chat sound" msgstr "Dźwięk czatu" -#: qcsrc/client/hud/panel/quickmenu.qc:856 +#: qcsrc/client/hud/panel/quickmenu.qc:847 msgid "QMCMD^Change spectator camera" msgstr "QMCMD^Zmień kamerę trybu widza" -#: qcsrc/client/hud/panel/quickmenu.qc:861 -#: qcsrc/client/hud/panel/quickmenu.qc:865 +#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:856 msgid "QMCMD^Observer camera" msgstr "Kamera obserwującego" -#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:853 msgid "QMCMD^Increase speed" msgstr "Zwiększ szybkość" -#: qcsrc/client/hud/panel/quickmenu.qc:863 +#: qcsrc/client/hud/panel/quickmenu.qc:854 msgid "QMCMD^Decrease speed" msgstr "Zmniejsz szybkość" -#: qcsrc/client/hud/panel/quickmenu.qc:864 +#: qcsrc/client/hud/panel/quickmenu.qc:855 msgid "QMCMD^Wall collision" msgstr "QMCMD^Kolizja ze ścianą" -#: qcsrc/client/hud/panel/quickmenu.qc:868 +#: qcsrc/client/hud/panel/quickmenu.qc:859 msgid "QMCMD^Fullscreen" msgstr "Pełny ekran" -#: qcsrc/client/hud/panel/quickmenu.qc:871 -#: qcsrc/client/hud/panel/quickmenu.qc:881 +#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:872 msgid "QMCMD^Call a vote" msgstr "Głosuj" -#: qcsrc/client/hud/panel/quickmenu.qc:872 +#: qcsrc/client/hud/panel/quickmenu.qc:863 msgid "QMCMD^Restart the map" msgstr "Zrestartuj mapę" -#: qcsrc/client/hud/panel/quickmenu.qc:873 +#: qcsrc/client/hud/panel/quickmenu.qc:864 msgid "QMCMD^End match" msgstr "Zakończ rundę" -#: qcsrc/client/hud/panel/quickmenu.qc:876 +#: qcsrc/client/hud/panel/quickmenu.qc:867 msgid "QMCMD^Reduce match time" msgstr "Zmniejsz czas rundy" -#: qcsrc/client/hud/panel/quickmenu.qc:877 +#: qcsrc/client/hud/panel/quickmenu.qc:868 msgid "QMCMD^Extend match time" msgstr "Zwiększ czas rundy" -#: qcsrc/client/hud/panel/quickmenu.qc:880 +#: qcsrc/client/hud/panel/quickmenu.qc:871 msgid "QMCMD^Shuffle teams" msgstr "Wymieszaj drużyny" -#: qcsrc/client/hud/panel/quickmenu.qc:885 +#: qcsrc/client/hud/panel/quickmenu.qc:876 msgid "QMCMD^Spectate a player" msgstr "QMCMD^Obserwuj gracza" @@ -1258,14 +1258,14 @@ msgstr "Zabij wszystkich z wrogiej drużyny by wygrać rundę" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 #: qcsrc/menu/xonotic/dialog_multiplayer_create.qc:105 msgid "Frag limit:" msgstr "Limit zabójstw:" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 msgid "The amount of frags needed before the match will end" msgstr "Ilość zabójstw potrzebnych przed końcem meczu" @@ -3317,7 +3317,7 @@ msgid "^BG%s%s^K1 was riddled full of holes by ^BG%s^K1's Machine Gun%s%s" msgstr "" #: qcsrc/common/notifications/all.inc:472 -#: qcsrc/common/notifications/all.inc:778 +#: qcsrc/common/notifications/all.inc:779 #, c-format msgid "^BGYou cannot place more than ^F2%s^BG mines at a time" msgstr "^BGNie możesz rozstawić więcej niż ^F2%s^BG miny na raz" @@ -4111,7 +4111,13 @@ msgstr "^BGZaczynasz z ^TC^TTM Kluczem" msgid "^BGYou have no lives left, you must wait until the next match" msgstr "^BGBrak żyć, musisz czekać do następnej rozgrywki" -#: qcsrc/common/notifications/all.inc:707 +#: qcsrc/common/notifications/all.inc:706 +msgid "" +"^F4WARNING:^BG you can't rejoin this match after spectating.\n" +"Use the same command again to spectate anyway." +msgstr "" + +#: qcsrc/common/notifications/all.inc:708 #, c-format msgid "" "^BGWaiting for players to join...\n" @@ -4120,43 +4126,43 @@ msgstr "" "^BGOczekiwanie na graczy...\n" "Potrzeba aktywnych graczy do: %s" -#: qcsrc/common/notifications/all.inc:708 +#: qcsrc/common/notifications/all.inc:709 #, c-format msgid "^BGWaiting for %s player(s) to join..." msgstr "^BGOczekiwanie na %s graczy by dołączyli..." -#: qcsrc/common/notifications/all.inc:710 +#: qcsrc/common/notifications/all.inc:711 msgid "^BGYour weapon has been downgraded until you find some ammo!" msgstr "^BGTwoja broń została zmieniona dopóki nie znajdziesz amunicji!" -#: qcsrc/common/notifications/all.inc:711 +#: qcsrc/common/notifications/all.inc:712 msgid "^F4^COUNT^BG left to find some ammo!" msgstr "^F4^COUNT^BG zostało do znalezienia jakiejś amunicji!" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo or you'll be dead in ^F4^COUNT^BG!" msgstr "^BGZnajdż amunicję lub zginiesz za ^F4^COUNT^BG!" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo! ^F4^COUNT^BG left!" msgstr "^BGZnajdź amunicję! Zostało ^F4^COUNT^BG!" -#: qcsrc/common/notifications/all.inc:713 +#: qcsrc/common/notifications/all.inc:714 #, c-format msgid "^F2Extra lives remaining: ^K1%s" msgstr "^F2Dodatkowe życia: ^K1%s" -#: qcsrc/common/notifications/all.inc:715 qcsrc/menu/xonotic/campaign.qc:244 +#: qcsrc/common/notifications/all.inc:716 qcsrc/menu/xonotic/campaign.qc:244 #, c-format msgid "Level %s: " msgstr "" -#: qcsrc/common/notifications/all.inc:715 +#: qcsrc/common/notifications/all.inc:716 #, c-format msgid "^BGPress ^F2%s^BG to enter the game" msgstr "" -#: qcsrc/common/notifications/all.inc:718 +#: qcsrc/common/notifications/all.inc:719 #, c-format msgid "" "^F2^COUNT^BG until weapon change...\n" @@ -4165,60 +4171,60 @@ msgstr "" "^F2^COUNT^BG do zmiany broni...\n" "Następna broń: ^F1%s" -#: qcsrc/common/notifications/all.inc:719 +#: qcsrc/common/notifications/all.inc:720 #, c-format msgid "^F2Active weapon: ^F1%s" msgstr "^F2Aktywna broń: ^F1%s" -#: qcsrc/common/notifications/all.inc:721 +#: qcsrc/common/notifications/all.inc:722 #, c-format msgid "^BGYou captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:722 +#: qcsrc/common/notifications/all.inc:723 msgid "^BGYou captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:723 +#: qcsrc/common/notifications/all.inc:724 #, c-format msgid "^TC^TT^BG team captured %s^BG control point" msgstr "Drużyna ^TC^TT^BG przejęła %s^BG punkt kontrolny" -#: qcsrc/common/notifications/all.inc:724 +#: qcsrc/common/notifications/all.inc:725 msgid "^TC^TT^BG team captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:725 +#: qcsrc/common/notifications/all.inc:726 msgid "^BGThis control point currently cannot be captured" msgstr "^BGTen punkt kontrolny obecnie nie może być przejęty" -#: qcsrc/common/notifications/all.inc:726 +#: qcsrc/common/notifications/all.inc:727 msgid "" "^BGThe enemy generator cannot be destroyed yet\n" "^F2Capture some control points to unshield it" msgstr "" -#: qcsrc/common/notifications/all.inc:727 +#: qcsrc/common/notifications/all.inc:728 msgid "^BGThe ^TCenemy^BG generator is no longer shielded!" msgstr "" -#: qcsrc/common/notifications/all.inc:728 +#: qcsrc/common/notifications/all.inc:729 msgid "" "^K1Your generator is NOT shielded!\n" "^BGRe-capture control points to shield it!" msgstr "" -#: qcsrc/common/notifications/all.inc:729 +#: qcsrc/common/notifications/all.inc:730 #, c-format msgid "^BGPress ^F2%s^BG to teleport" msgstr "^BGWciśnij ^F2%s^BG aby się teleportować" -#: qcsrc/common/notifications/all.inc:730 +#: qcsrc/common/notifications/all.inc:731 #, c-format msgid "^BGTeleporting disabled for %s" msgstr "^BGTeleportacja wyłączona na %s" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep fragging until we have a winner!" @@ -4226,13 +4232,13 @@ msgstr "" "^F2Teraz grasz ^F4DOGRYWKĘ^F2!\n" "Walcz dopóki nie będzie zwycięzcy!" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep scoring until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:733 +#: qcsrc/common/notifications/all.inc:734 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "\n" @@ -4241,136 +4247,136 @@ msgid "" "the faster the enemy generator decays" msgstr "" -#: qcsrc/common/notifications/all.inc:734 +#: qcsrc/common/notifications/all.inc:735 #, c-format msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "^BGAdded ^F4%s^BG to the game!" msgstr "" -#: qcsrc/common/notifications/all.inc:736 +#: qcsrc/common/notifications/all.inc:737 msgid "^K1In^BG-portal created" msgstr "^K1In^BG-portal jest stworzony" -#: qcsrc/common/notifications/all.inc:737 +#: qcsrc/common/notifications/all.inc:738 msgid "^F3Out^BG-portal created" msgstr "^F3Out^BG-portal jest stworzony" -#: qcsrc/common/notifications/all.inc:738 +#: qcsrc/common/notifications/all.inc:739 msgid "^F1Portal creation failed" msgstr "^F1Utworzenie portalu się nie powiodło" -#: qcsrc/common/notifications/all.inc:740 +#: qcsrc/common/notifications/all.inc:741 msgid "^F2Strength infuses your weapons with devastating power" msgstr "^F2Siła napełnia twoją broń dewastującą mocą" -#: qcsrc/common/notifications/all.inc:741 +#: qcsrc/common/notifications/all.inc:742 msgid "^F2Strength has worn off" msgstr "^F2Siła się wyczerpała" -#: qcsrc/common/notifications/all.inc:743 +#: qcsrc/common/notifications/all.inc:744 msgid "^F2Shield surrounds you" msgstr "^F2Otacza cię osłona" -#: qcsrc/common/notifications/all.inc:744 +#: qcsrc/common/notifications/all.inc:745 msgid "^F2Shield has worn off" msgstr "^F2Osłona się wyczerpała" -#: qcsrc/common/notifications/all.inc:746 +#: qcsrc/common/notifications/all.inc:747 msgid "^F2You are on speed" msgstr "^F2Jesteś szybki" -#: qcsrc/common/notifications/all.inc:747 +#: qcsrc/common/notifications/all.inc:748 msgid "^F2Speed has worn off" msgstr "^F2Szybkość się wyczerpała" -#: qcsrc/common/notifications/all.inc:749 +#: qcsrc/common/notifications/all.inc:750 msgid "^F2You are invisible" msgstr "^F2Jesteś niewidzialny" -#: qcsrc/common/notifications/all.inc:750 +#: qcsrc/common/notifications/all.inc:751 msgid "^F2Invisibility has worn off" msgstr "^F2Niewidzialność się wyczerpała" -#: qcsrc/common/notifications/all.inc:752 +#: qcsrc/common/notifications/all.inc:753 msgid "^F2The race is over, finish your lap!" msgstr "^F2Wyścig się skończył, zakończ swoje okrążenie!" -#: qcsrc/common/notifications/all.inc:754 +#: qcsrc/common/notifications/all.inc:755 msgid "^BGSequence completed!" msgstr "" -#: qcsrc/common/notifications/all.inc:755 +#: qcsrc/common/notifications/all.inc:756 msgid "^BGThere are more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:756 +#: qcsrc/common/notifications/all.inc:757 #, c-format msgid "^BGOnly %s^BG more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:758 +#: qcsrc/common/notifications/all.inc:759 msgid "^F2Superweapons have broken down" msgstr "^F2Superbroń się rozpadła" -#: qcsrc/common/notifications/all.inc:759 +#: qcsrc/common/notifications/all.inc:760 msgid "^F2Superweapons have been lost" msgstr "^F2Superbroń została stracona" -#: qcsrc/common/notifications/all.inc:760 +#: qcsrc/common/notifications/all.inc:761 msgid "^F2You now have a superweapon" msgstr "^F2Masz teraz superbroń" -#: qcsrc/common/notifications/all.inc:762 +#: qcsrc/common/notifications/all.inc:763 msgid "^K1Changing to ^TC^TT^K1 in ^COUNT" msgstr "^K1Przejdziesz do ^TC^TT^K1 za ^COUNT" -#: qcsrc/common/notifications/all.inc:763 +#: qcsrc/common/notifications/all.inc:764 msgid "^K1Changing team in ^COUNT" msgstr "^K1Zmiana drużyny za ^COUNT" -#: qcsrc/common/notifications/all.inc:764 +#: qcsrc/common/notifications/all.inc:765 msgid "^K1Spectating in ^COUNT" msgstr "^K1Obserwowanie za ^COUNT" -#: qcsrc/common/notifications/all.inc:765 +#: qcsrc/common/notifications/all.inc:766 msgid "^K1Suicide in ^COUNT" msgstr "^K1Samobójstwo za ^COUNT" -#: qcsrc/common/notifications/all.inc:767 +#: qcsrc/common/notifications/all.inc:768 msgid "^F4Timeout begins in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:768 +#: qcsrc/common/notifications/all.inc:769 msgid "^F4Timeout ends in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:770 +#: qcsrc/common/notifications/all.inc:771 msgid "^K1Cannot join given minigame session!" msgstr "" -#: qcsrc/common/notifications/all.inc:772 +#: qcsrc/common/notifications/all.inc:773 #, c-format msgid "^BGPress ^F2%s^BG to enter/exit the vehicle" msgstr "^BGWciśnij ^F2%s^BG aby wejść/wyjść z pojazdu" -#: qcsrc/common/notifications/all.inc:773 +#: qcsrc/common/notifications/all.inc:774 #, c-format msgid "^BGPress ^F2%s^BG to enter the vehicle gunner" msgstr "" -#: qcsrc/common/notifications/all.inc:774 +#: qcsrc/common/notifications/all.inc:775 #, c-format msgid "^BGPress ^F2%s^BG to steal this vehicle" msgstr "^BGWciśnij ^F2%s^BG aby ukraść pojazd" -#: qcsrc/common/notifications/all.inc:775 +#: qcsrc/common/notifications/all.inc:776 msgid "" "^F2The enemy is stealing one of your vehicles!\n" "^F4Stop them!" msgstr "" -#: qcsrc/common/notifications/all.inc:776 +#: qcsrc/common/notifications/all.inc:777 msgid "^F2Intruder detected, disabling shields!" msgstr "" diff --git a/common.pot b/common.pot index 9ed98ec4ce..de7f944490 100644 --- a/common.pot +++ b/common.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-06 07:22+0100\n" +"POT-Creation-Date: 2022-03-27 07:22+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -214,270 +214,270 @@ msgstr "" msgid "Player %d" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:617 -#: qcsrc/client/hud/panel/quickmenu.qc:619 +#: qcsrc/client/hud/panel/quickmenu.qc:608 +#: qcsrc/client/hud/panel/quickmenu.qc:610 #, c-format msgid "Submenu%d" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:624 +#: qcsrc/client/hud/panel/quickmenu.qc:615 #, c-format msgid "Command%d" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:650 +#: qcsrc/client/hud/panel/quickmenu.qc:641 msgid "Continue..." msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:807 -#: qcsrc/client/hud/panel/quickmenu.qc:814 +#: qcsrc/client/hud/panel/quickmenu.qc:798 +#: qcsrc/client/hud/panel/quickmenu.qc:805 msgid "Chat" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:808 +#: qcsrc/client/hud/panel/quickmenu.qc:799 msgid "QMCMD^Send public message to" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^:-) / nice one" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^nice one" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:810 +#: qcsrc/client/hud/panel/quickmenu.qc:801 msgid "QMCMD^good game" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck and have fun" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:813 +#: qcsrc/client/hud/panel/quickmenu.qc:804 msgid "QMCMD^Send in English" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:818 -#: qcsrc/client/hud/panel/quickmenu.qc:834 +#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:825 msgid "QMCMD^Team chat" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:819 +#: qcsrc/client/hud/panel/quickmenu.qc:810 msgid "QMCMD^strength soon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item %x^7 (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:822 +#: qcsrc/client/hud/panel/quickmenu.qc:813 msgid "QMCMD^negative" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:823 +#: qcsrc/client/hud/panel/quickmenu.qc:814 msgid "QMCMD^positive" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 #, c-format msgid "QMCMD^dropped flag (l:%d^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 msgid "QMCMD^dropped flag, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^drop weapon, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^dropped weapon %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^drop flag/key, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^dropped flag/key %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:837 +#: qcsrc/client/hud/panel/quickmenu.qc:828 msgid "QMCMD^Send private message to" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:839 -#: qcsrc/client/hud/panel/quickmenu.qc:869 +#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:860 msgid "QMCMD^Settings" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:840 -#: qcsrc/client/hud/panel/quickmenu.qc:847 +#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:838 msgid "QMCMD^View/HUD settings" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:841 +#: qcsrc/client/hud/panel/quickmenu.qc:832 msgid "QMCMD^3rd person view" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:842 +#: qcsrc/client/hud/panel/quickmenu.qc:833 msgid "QMCMD^Player models like mine" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:843 +#: qcsrc/client/hud/panel/quickmenu.qc:834 msgid "QMCMD^Names above players" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:844 +#: qcsrc/client/hud/panel/quickmenu.qc:835 msgid "QMCMD^Crosshair per weapon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:845 +#: qcsrc/client/hud/panel/quickmenu.qc:836 msgid "QMCMD^FPS" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:846 +#: qcsrc/client/hud/panel/quickmenu.qc:837 msgid "QMCMD^Net graph" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:849 -#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:840 +#: qcsrc/client/hud/panel/quickmenu.qc:843 msgid "QMCMD^Sound settings" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:850 +#: qcsrc/client/hud/panel/quickmenu.qc:841 msgid "QMCMD^Hit sound" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:851 +#: qcsrc/client/hud/panel/quickmenu.qc:842 msgid "QMCMD^Chat sound" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:856 +#: qcsrc/client/hud/panel/quickmenu.qc:847 msgid "QMCMD^Change spectator camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:861 -#: qcsrc/client/hud/panel/quickmenu.qc:865 +#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:856 msgid "QMCMD^Observer camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:853 msgid "QMCMD^Increase speed" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:863 +#: qcsrc/client/hud/panel/quickmenu.qc:854 msgid "QMCMD^Decrease speed" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:864 +#: qcsrc/client/hud/panel/quickmenu.qc:855 msgid "QMCMD^Wall collision" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:868 +#: qcsrc/client/hud/panel/quickmenu.qc:859 msgid "QMCMD^Fullscreen" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:871 -#: qcsrc/client/hud/panel/quickmenu.qc:881 +#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:872 msgid "QMCMD^Call a vote" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:872 +#: qcsrc/client/hud/panel/quickmenu.qc:863 msgid "QMCMD^Restart the map" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:873 +#: qcsrc/client/hud/panel/quickmenu.qc:864 msgid "QMCMD^End match" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:876 +#: qcsrc/client/hud/panel/quickmenu.qc:867 msgid "QMCMD^Reduce match time" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:877 +#: qcsrc/client/hud/panel/quickmenu.qc:868 msgid "QMCMD^Extend match time" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:880 +#: qcsrc/client/hud/panel/quickmenu.qc:871 msgid "QMCMD^Shuffle teams" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:885 +#: qcsrc/client/hud/panel/quickmenu.qc:876 msgid "QMCMD^Spectate a player" msgstr "" @@ -1226,14 +1226,14 @@ msgstr "" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 #: qcsrc/menu/xonotic/dialog_multiplayer_create.qc:105 msgid "Frag limit:" msgstr "" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 msgid "The amount of frags needed before the match will end" msgstr "" @@ -3264,7 +3264,7 @@ msgid "^BG%s%s^K1 was riddled full of holes by ^BG%s^K1's Machine Gun%s%s" msgstr "" #: qcsrc/common/notifications/all.inc:472 -#: qcsrc/common/notifications/all.inc:778 +#: qcsrc/common/notifications/all.inc:779 #, c-format msgid "^BGYou cannot place more than ^F2%s^BG mines at a time" msgstr "" @@ -4042,122 +4042,128 @@ msgstr "" msgid "^BGYou have no lives left, you must wait until the next match" msgstr "" -#: qcsrc/common/notifications/all.inc:707 +#: qcsrc/common/notifications/all.inc:706 +msgid "" +"^F4WARNING:^BG you can't rejoin this match after spectating.\n" +"Use the same command again to spectate anyway." +msgstr "" + +#: qcsrc/common/notifications/all.inc:708 #, c-format msgid "" "^BGWaiting for players to join...\n" "Need active players for: %s" msgstr "" -#: qcsrc/common/notifications/all.inc:708 +#: qcsrc/common/notifications/all.inc:709 #, c-format msgid "^BGWaiting for %s player(s) to join..." msgstr "" -#: qcsrc/common/notifications/all.inc:710 +#: qcsrc/common/notifications/all.inc:711 msgid "^BGYour weapon has been downgraded until you find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:711 +#: qcsrc/common/notifications/all.inc:712 msgid "^F4^COUNT^BG left to find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo or you'll be dead in ^F4^COUNT^BG!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo! ^F4^COUNT^BG left!" msgstr "" -#: qcsrc/common/notifications/all.inc:713 +#: qcsrc/common/notifications/all.inc:714 #, c-format msgid "^F2Extra lives remaining: ^K1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:715 qcsrc/menu/xonotic/campaign.qc:244 +#: qcsrc/common/notifications/all.inc:716 qcsrc/menu/xonotic/campaign.qc:244 #, c-format msgid "Level %s: " msgstr "" -#: qcsrc/common/notifications/all.inc:715 +#: qcsrc/common/notifications/all.inc:716 #, c-format msgid "^BGPress ^F2%s^BG to enter the game" msgstr "" -#: qcsrc/common/notifications/all.inc:718 +#: qcsrc/common/notifications/all.inc:719 #, c-format msgid "" "^F2^COUNT^BG until weapon change...\n" "Next weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:719 +#: qcsrc/common/notifications/all.inc:720 #, c-format msgid "^F2Active weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:721 +#: qcsrc/common/notifications/all.inc:722 #, c-format msgid "^BGYou captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:722 +#: qcsrc/common/notifications/all.inc:723 msgid "^BGYou captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:723 +#: qcsrc/common/notifications/all.inc:724 #, c-format msgid "^TC^TT^BG team captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:724 +#: qcsrc/common/notifications/all.inc:725 msgid "^TC^TT^BG team captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:725 +#: qcsrc/common/notifications/all.inc:726 msgid "^BGThis control point currently cannot be captured" msgstr "" -#: qcsrc/common/notifications/all.inc:726 +#: qcsrc/common/notifications/all.inc:727 msgid "" "^BGThe enemy generator cannot be destroyed yet\n" "^F2Capture some control points to unshield it" msgstr "" -#: qcsrc/common/notifications/all.inc:727 +#: qcsrc/common/notifications/all.inc:728 msgid "^BGThe ^TCenemy^BG generator is no longer shielded!" msgstr "" -#: qcsrc/common/notifications/all.inc:728 +#: qcsrc/common/notifications/all.inc:729 msgid "" "^K1Your generator is NOT shielded!\n" "^BGRe-capture control points to shield it!" msgstr "" -#: qcsrc/common/notifications/all.inc:729 +#: qcsrc/common/notifications/all.inc:730 #, c-format msgid "^BGPress ^F2%s^BG to teleport" msgstr "" -#: qcsrc/common/notifications/all.inc:730 +#: qcsrc/common/notifications/all.inc:731 #, c-format msgid "^BGTeleporting disabled for %s" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep fragging until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep scoring until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:733 +#: qcsrc/common/notifications/all.inc:734 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "\n" @@ -4166,136 +4172,136 @@ msgid "" "the faster the enemy generator decays" msgstr "" -#: qcsrc/common/notifications/all.inc:734 +#: qcsrc/common/notifications/all.inc:735 #, c-format msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "^BGAdded ^F4%s^BG to the game!" msgstr "" -#: qcsrc/common/notifications/all.inc:736 +#: qcsrc/common/notifications/all.inc:737 msgid "^K1In^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:737 +#: qcsrc/common/notifications/all.inc:738 msgid "^F3Out^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:738 +#: qcsrc/common/notifications/all.inc:739 msgid "^F1Portal creation failed" msgstr "" -#: qcsrc/common/notifications/all.inc:740 +#: qcsrc/common/notifications/all.inc:741 msgid "^F2Strength infuses your weapons with devastating power" msgstr "" -#: qcsrc/common/notifications/all.inc:741 +#: qcsrc/common/notifications/all.inc:742 msgid "^F2Strength has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:743 +#: qcsrc/common/notifications/all.inc:744 msgid "^F2Shield surrounds you" msgstr "" -#: qcsrc/common/notifications/all.inc:744 +#: qcsrc/common/notifications/all.inc:745 msgid "^F2Shield has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:746 +#: qcsrc/common/notifications/all.inc:747 msgid "^F2You are on speed" msgstr "" -#: qcsrc/common/notifications/all.inc:747 +#: qcsrc/common/notifications/all.inc:748 msgid "^F2Speed has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:749 +#: qcsrc/common/notifications/all.inc:750 msgid "^F2You are invisible" msgstr "" -#: qcsrc/common/notifications/all.inc:750 +#: qcsrc/common/notifications/all.inc:751 msgid "^F2Invisibility has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:752 +#: qcsrc/common/notifications/all.inc:753 msgid "^F2The race is over, finish your lap!" msgstr "" -#: qcsrc/common/notifications/all.inc:754 +#: qcsrc/common/notifications/all.inc:755 msgid "^BGSequence completed!" msgstr "" -#: qcsrc/common/notifications/all.inc:755 +#: qcsrc/common/notifications/all.inc:756 msgid "^BGThere are more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:756 +#: qcsrc/common/notifications/all.inc:757 #, c-format msgid "^BGOnly %s^BG more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:758 +#: qcsrc/common/notifications/all.inc:759 msgid "^F2Superweapons have broken down" msgstr "" -#: qcsrc/common/notifications/all.inc:759 +#: qcsrc/common/notifications/all.inc:760 msgid "^F2Superweapons have been lost" msgstr "" -#: qcsrc/common/notifications/all.inc:760 +#: qcsrc/common/notifications/all.inc:761 msgid "^F2You now have a superweapon" msgstr "" -#: qcsrc/common/notifications/all.inc:762 +#: qcsrc/common/notifications/all.inc:763 msgid "^K1Changing to ^TC^TT^K1 in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:763 +#: qcsrc/common/notifications/all.inc:764 msgid "^K1Changing team in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:764 +#: qcsrc/common/notifications/all.inc:765 msgid "^K1Spectating in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:765 +#: qcsrc/common/notifications/all.inc:766 msgid "^K1Suicide in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:767 +#: qcsrc/common/notifications/all.inc:768 msgid "^F4Timeout begins in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:768 +#: qcsrc/common/notifications/all.inc:769 msgid "^F4Timeout ends in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:770 +#: qcsrc/common/notifications/all.inc:771 msgid "^K1Cannot join given minigame session!" msgstr "" -#: qcsrc/common/notifications/all.inc:772 +#: qcsrc/common/notifications/all.inc:773 #, c-format msgid "^BGPress ^F2%s^BG to enter/exit the vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:773 +#: qcsrc/common/notifications/all.inc:774 #, c-format msgid "^BGPress ^F2%s^BG to enter the vehicle gunner" msgstr "" -#: qcsrc/common/notifications/all.inc:774 +#: qcsrc/common/notifications/all.inc:775 #, c-format msgid "^BGPress ^F2%s^BG to steal this vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:775 +#: qcsrc/common/notifications/all.inc:776 msgid "" "^F2The enemy is stealing one of your vehicles!\n" "^F4Stop them!" msgstr "" -#: qcsrc/common/notifications/all.inc:776 +#: qcsrc/common/notifications/all.inc:777 msgid "^F2Intruder detected, disabling shields!" msgstr "" diff --git a/common.pt.po b/common.pt.po index 78fdab7edf..47059012ee 100644 --- a/common.pt.po +++ b/common.pt.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: Xonotic\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-06 07:22+0100\n" -"PO-Revision-Date: 2022-03-06 06:22+0000\n" -"Last-Translator: divVerent \n" +"POT-Creation-Date: 2022-03-27 07:22+0200\n" +"PO-Revision-Date: 2013-09-12 16:53+0000\n" +"Last-Translator: Rui , 2018\n" "Language-Team: Portuguese (http://www.transifex.com/team-xonotic/xonotic/" "language/pt/)\n" "Language: pt\n" @@ -227,270 +227,270 @@ msgstr "^3ALT ^7+ ^3TECLAS DIRECIONAIS ^7para pequenos ajustes." msgid "Player %d" msgstr "Jogador %d" -#: qcsrc/client/hud/panel/quickmenu.qc:617 -#: qcsrc/client/hud/panel/quickmenu.qc:619 +#: qcsrc/client/hud/panel/quickmenu.qc:608 +#: qcsrc/client/hud/panel/quickmenu.qc:610 #, c-format msgid "Submenu%d" msgstr "Sub-menu%d" -#: qcsrc/client/hud/panel/quickmenu.qc:624 +#: qcsrc/client/hud/panel/quickmenu.qc:615 #, c-format msgid "Command%d" msgstr "Comando%d" -#: qcsrc/client/hud/panel/quickmenu.qc:650 +#: qcsrc/client/hud/panel/quickmenu.qc:641 msgid "Continue..." msgstr "Continuar..." -#: qcsrc/client/hud/panel/quickmenu.qc:807 -#: qcsrc/client/hud/panel/quickmenu.qc:814 +#: qcsrc/client/hud/panel/quickmenu.qc:798 +#: qcsrc/client/hud/panel/quickmenu.qc:805 msgid "Chat" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:808 +#: qcsrc/client/hud/panel/quickmenu.qc:799 msgid "QMCMD^Send public message to" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^:-) / nice one" msgstr ":-) / Boa jogada" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^nice one" msgstr "Boa jogada" -#: qcsrc/client/hud/panel/quickmenu.qc:810 +#: qcsrc/client/hud/panel/quickmenu.qc:801 msgid "QMCMD^good game" msgstr "Bom jogo" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck" msgstr "Olá / Boa sorte" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck and have fun" msgstr "Olá / Boa sorte e diverte-te" -#: qcsrc/client/hud/panel/quickmenu.qc:813 +#: qcsrc/client/hud/panel/quickmenu.qc:804 msgid "QMCMD^Send in English" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:818 -#: qcsrc/client/hud/panel/quickmenu.qc:834 +#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:825 msgid "QMCMD^Team chat" msgstr "Conversação da equipa" -#: qcsrc/client/hud/panel/quickmenu.qc:819 +#: qcsrc/client/hud/panel/quickmenu.qc:810 msgid "QMCMD^strength soon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item %x^7 (l:%y^7)" msgstr "Item grátis %x^7 (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item, icon" msgstr "Item grátis, ícone" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item (l:%l^7)" msgstr "Pegou no item (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item, icon" msgstr "Pegou no item, ícone" -#: qcsrc/client/hud/panel/quickmenu.qc:822 +#: qcsrc/client/hud/panel/quickmenu.qc:813 msgid "QMCMD^negative" msgstr "Negativo" -#: qcsrc/client/hud/panel/quickmenu.qc:823 +#: qcsrc/client/hud/panel/quickmenu.qc:814 msgid "QMCMD^positive" msgstr "Positivo" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "Preciso de ajuda (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help, icon" msgstr "Preciso de ajuda, ícone" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen (l:%y^7)" msgstr "Inimigo avistado (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen, icon" msgstr "Inimigo avistado, ícone" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen (l:%y^7)" msgstr "Bandeira avistada (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen, icon" msgstr "Bandeira avistada, ícone" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "A defender (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending, icon" msgstr "A defender, ícone" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "A patrulhar (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming, icon" msgstr "A patrulhar, ícone" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "A atacar (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking, icon" msgstr "A atacar, ícone" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier (l:%y^7)" msgstr "Portador da bandeira aniquilado (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier, icon" msgstr "Portador da bandeira aniquilado, ícone" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 #, c-format msgid "QMCMD^dropped flag (l:%d^7)" msgstr "Bandeira largada (l:%d^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 msgid "QMCMD^dropped flag, icon" msgstr "Bandeira largada, ícone" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^drop weapon, icon" msgstr "Largar arma, ícone" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^dropped weapon %w^7 (l:%l^7)" msgstr "Arma largada %w^7 (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^drop flag/key, icon" msgstr "Largar bandeira/chave, ícone" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^dropped flag/key %w^7 (l:%l^7)" msgstr "Bandeira/Chave largada %w^7 (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:837 +#: qcsrc/client/hud/panel/quickmenu.qc:828 msgid "QMCMD^Send private message to" msgstr "Mandar mensagem privada para" -#: qcsrc/client/hud/panel/quickmenu.qc:839 -#: qcsrc/client/hud/panel/quickmenu.qc:869 +#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:860 msgid "QMCMD^Settings" msgstr "Configurações" -#: qcsrc/client/hud/panel/quickmenu.qc:840 -#: qcsrc/client/hud/panel/quickmenu.qc:847 +#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:838 msgid "QMCMD^View/HUD settings" msgstr "Configurações de Visualização/Interface" -#: qcsrc/client/hud/panel/quickmenu.qc:841 +#: qcsrc/client/hud/panel/quickmenu.qc:832 msgid "QMCMD^3rd person view" msgstr "Visão na 3ª pessoa" -#: qcsrc/client/hud/panel/quickmenu.qc:842 +#: qcsrc/client/hud/panel/quickmenu.qc:833 msgid "QMCMD^Player models like mine" msgstr "Modelos de jogadores como o meu" -#: qcsrc/client/hud/panel/quickmenu.qc:843 +#: qcsrc/client/hud/panel/quickmenu.qc:834 msgid "QMCMD^Names above players" msgstr "Nomes por cima dos jogadores" -#: qcsrc/client/hud/panel/quickmenu.qc:844 +#: qcsrc/client/hud/panel/quickmenu.qc:835 msgid "QMCMD^Crosshair per weapon" msgstr "Mira por arma" -#: qcsrc/client/hud/panel/quickmenu.qc:845 +#: qcsrc/client/hud/panel/quickmenu.qc:836 msgid "QMCMD^FPS" msgstr "FPS" -#: qcsrc/client/hud/panel/quickmenu.qc:846 +#: qcsrc/client/hud/panel/quickmenu.qc:837 msgid "QMCMD^Net graph" msgstr "Gráfico da rede" -#: qcsrc/client/hud/panel/quickmenu.qc:849 -#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:840 +#: qcsrc/client/hud/panel/quickmenu.qc:843 msgid "QMCMD^Sound settings" msgstr "Configurações de som" -#: qcsrc/client/hud/panel/quickmenu.qc:850 +#: qcsrc/client/hud/panel/quickmenu.qc:841 msgid "QMCMD^Hit sound" msgstr "Som de acertar" -#: qcsrc/client/hud/panel/quickmenu.qc:851 +#: qcsrc/client/hud/panel/quickmenu.qc:842 msgid "QMCMD^Chat sound" msgstr "Som da conversação" -#: qcsrc/client/hud/panel/quickmenu.qc:856 +#: qcsrc/client/hud/panel/quickmenu.qc:847 msgid "QMCMD^Change spectator camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:861 -#: qcsrc/client/hud/panel/quickmenu.qc:865 +#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:856 msgid "QMCMD^Observer camera" msgstr "Câmara de observador" -#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:853 msgid "QMCMD^Increase speed" msgstr "Aumentar velocidade" -#: qcsrc/client/hud/panel/quickmenu.qc:863 +#: qcsrc/client/hud/panel/quickmenu.qc:854 msgid "QMCMD^Decrease speed" msgstr "Diminuir velocidade" -#: qcsrc/client/hud/panel/quickmenu.qc:864 +#: qcsrc/client/hud/panel/quickmenu.qc:855 msgid "QMCMD^Wall collision" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:868 +#: qcsrc/client/hud/panel/quickmenu.qc:859 msgid "QMCMD^Fullscreen" msgstr "Ecrã inteiro" -#: qcsrc/client/hud/panel/quickmenu.qc:871 -#: qcsrc/client/hud/panel/quickmenu.qc:881 +#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:872 msgid "QMCMD^Call a vote" msgstr "Iniciar uma votação" -#: qcsrc/client/hud/panel/quickmenu.qc:872 +#: qcsrc/client/hud/panel/quickmenu.qc:863 msgid "QMCMD^Restart the map" msgstr "Reiniciar o mapa" -#: qcsrc/client/hud/panel/quickmenu.qc:873 +#: qcsrc/client/hud/panel/quickmenu.qc:864 msgid "QMCMD^End match" msgstr "Terminar a partida" -#: qcsrc/client/hud/panel/quickmenu.qc:876 +#: qcsrc/client/hud/panel/quickmenu.qc:867 msgid "QMCMD^Reduce match time" msgstr "Reduzir tempo de partida" -#: qcsrc/client/hud/panel/quickmenu.qc:877 +#: qcsrc/client/hud/panel/quickmenu.qc:868 msgid "QMCMD^Extend match time" msgstr "Aumentar tempo de partida" -#: qcsrc/client/hud/panel/quickmenu.qc:880 +#: qcsrc/client/hud/panel/quickmenu.qc:871 msgid "QMCMD^Shuffle teams" msgstr "Misturar as equipas" -#: qcsrc/client/hud/panel/quickmenu.qc:885 +#: qcsrc/client/hud/panel/quickmenu.qc:876 msgid "QMCMD^Spectate a player" msgstr "" @@ -1241,14 +1241,14 @@ msgstr "Mata todos os inimigos para vencer a rodada" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 #: qcsrc/menu/xonotic/dialog_multiplayer_create.qc:105 msgid "Frag limit:" msgstr "Limite de execuções:" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 msgid "The amount of frags needed before the match will end" msgstr "A quantidade de execuções necessária para acabar a partida" @@ -3343,7 +3343,7 @@ msgstr "" "^BG%s%s^K1 ficou cheio de buracos por causa da Metralhadora de ^BG%s^K1%s%s" #: qcsrc/common/notifications/all.inc:472 -#: qcsrc/common/notifications/all.inc:778 +#: qcsrc/common/notifications/all.inc:779 #, c-format msgid "^BGYou cannot place more than ^F2%s^BG mines at a time" msgstr "^BGNão podes colocar mais do que ^F2%s^BG minas de uma vez" @@ -4151,7 +4151,13 @@ msgstr "^BGEstás a começar com a Chave ^TC^TT" msgid "^BGYou have no lives left, you must wait until the next match" msgstr "^BGNão tens mais vidas, terás que esperar até à próxima partida" -#: qcsrc/common/notifications/all.inc:707 +#: qcsrc/common/notifications/all.inc:706 +msgid "" +"^F4WARNING:^BG you can't rejoin this match after spectating.\n" +"Use the same command again to spectate anyway." +msgstr "" + +#: qcsrc/common/notifications/all.inc:708 #, c-format msgid "" "^BGWaiting for players to join...\n" @@ -4160,43 +4166,43 @@ msgstr "" "^BGà espera que os outros jogadores entrem...\n" "Precisa-se de jogadores ativos para: %s" -#: qcsrc/common/notifications/all.inc:708 +#: qcsrc/common/notifications/all.inc:709 #, c-format msgid "^BGWaiting for %s player(s) to join..." msgstr "^BGÀ espera de %s jogador(es) para entrar(em)..." -#: qcsrc/common/notifications/all.inc:710 +#: qcsrc/common/notifications/all.inc:711 msgid "^BGYour weapon has been downgraded until you find some ammo!" msgstr "^BGA tua arma foi rebaixada até que encontres munições!" -#: qcsrc/common/notifications/all.inc:711 +#: qcsrc/common/notifications/all.inc:712 msgid "^F4^COUNT^BG left to find some ammo!" msgstr "^F4^COUNT^BG restante(s) para encontrares algumas munições!" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo or you'll be dead in ^F4^COUNT^BG!" msgstr "^BGEncontra algumas munições ou morrerás em ^F4^COUNT^BG!" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo! ^F4^COUNT^BG left!" msgstr "^BGEncontra algumas munições! Falta ^F4^COUNT^BG!" -#: qcsrc/common/notifications/all.inc:713 +#: qcsrc/common/notifications/all.inc:714 #, c-format msgid "^F2Extra lives remaining: ^K1%s" msgstr "^F2Vidas extras restantes: ^K1%s" -#: qcsrc/common/notifications/all.inc:715 qcsrc/menu/xonotic/campaign.qc:244 +#: qcsrc/common/notifications/all.inc:716 qcsrc/menu/xonotic/campaign.qc:244 #, c-format msgid "Level %s: " msgstr "" -#: qcsrc/common/notifications/all.inc:715 +#: qcsrc/common/notifications/all.inc:716 #, c-format msgid "^BGPress ^F2%s^BG to enter the game" msgstr "" -#: qcsrc/common/notifications/all.inc:718 +#: qcsrc/common/notifications/all.inc:719 #, c-format msgid "" "^F2^COUNT^BG until weapon change...\n" @@ -4205,34 +4211,34 @@ msgstr "" "^F2^CONTAGEM^BG até à mudança de arma...\n" "Próxima arma: ^F1%s" -#: qcsrc/common/notifications/all.inc:719 +#: qcsrc/common/notifications/all.inc:720 #, c-format msgid "^F2Active weapon: ^F1%s" msgstr "^F2Arma ativa: ^F1%s" -#: qcsrc/common/notifications/all.inc:721 +#: qcsrc/common/notifications/all.inc:722 #, c-format msgid "^BGYou captured %s^BG control point" msgstr "^BGCapturaste o ponto de controlo %s^BG" -#: qcsrc/common/notifications/all.inc:722 +#: qcsrc/common/notifications/all.inc:723 msgid "^BGYou captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:723 +#: qcsrc/common/notifications/all.inc:724 #, c-format msgid "^TC^TT^BG team captured %s^BG control point" msgstr "A equipa ^TC^TT^BG capturou o ponto de controlo %s^BG" -#: qcsrc/common/notifications/all.inc:724 +#: qcsrc/common/notifications/all.inc:725 msgid "^TC^TT^BG team captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:725 +#: qcsrc/common/notifications/all.inc:726 msgid "^BGThis control point currently cannot be captured" msgstr "^BGEste ponto de controlo não pode ser capturado neste momento" -#: qcsrc/common/notifications/all.inc:726 +#: qcsrc/common/notifications/all.inc:727 msgid "" "^BGThe enemy generator cannot be destroyed yet\n" "^F2Capture some control points to unshield it" @@ -4240,11 +4246,11 @@ msgstr "" "^BGO gerador inimigo ainda não pode ser destruído\n" "^F2Captura alguns pontos de controlo para desprotegê-lo" -#: qcsrc/common/notifications/all.inc:727 +#: qcsrc/common/notifications/all.inc:728 msgid "^BGThe ^TCenemy^BG generator is no longer shielded!" msgstr "^BGO gerador ^TCinimigo^BG não está mais protegido!" -#: qcsrc/common/notifications/all.inc:728 +#: qcsrc/common/notifications/all.inc:729 msgid "" "^K1Your generator is NOT shielded!\n" "^BGRe-capture control points to shield it!" @@ -4252,17 +4258,17 @@ msgstr "" "^K1O teu gerador NÃO está blindado!\n" "^BGRecaptura pontos de controlo para blindá-lo!" -#: qcsrc/common/notifications/all.inc:729 +#: qcsrc/common/notifications/all.inc:730 #, c-format msgid "^BGPress ^F2%s^BG to teleport" msgstr "^BGPressiona ^F2%s^BG para te teletransportares" -#: qcsrc/common/notifications/all.inc:730 +#: qcsrc/common/notifications/all.inc:731 #, c-format msgid "^BGTeleporting disabled for %s" msgstr "^BGTeletransporte desativado para %s" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep fragging until we have a winner!" @@ -4270,7 +4276,7 @@ msgstr "" "^F2A jogar agora nos ^F4ACRÉSCIMOS^F2!\n" "Continua a executar até que tenhamos um vencedor!" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep scoring until we have a winner!" @@ -4278,7 +4284,7 @@ msgstr "" "^A jogar agora nos ^F4ACRÉSCIMOS^F2!\n" "Continua a pontuar até que tenhamos um vencedor!" -#: qcsrc/common/notifications/all.inc:733 +#: qcsrc/common/notifications/all.inc:734 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "\n" @@ -4292,7 +4298,7 @@ msgstr "" "Quanto mais pontos de controlo a sua equipa tiver,\n" "mais rápido o gerador inimigo enfraquecerá" -#: qcsrc/common/notifications/all.inc:734 +#: qcsrc/common/notifications/all.inc:735 #, c-format msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" @@ -4301,123 +4307,123 @@ msgstr "" "^F2A jogar agora nos ^F4ACRÉSCIMOS^F2!\n" "^BGFoi adicionado ^F4%s^BG ao jogo!" -#: qcsrc/common/notifications/all.inc:736 +#: qcsrc/common/notifications/all.inc:737 msgid "^K1In^BG-portal created" msgstr "^K1^BGCriado portal de entrada" -#: qcsrc/common/notifications/all.inc:737 +#: qcsrc/common/notifications/all.inc:738 msgid "^F3Out^BG-portal created" msgstr "^F3^BGCriado portal de saída" -#: qcsrc/common/notifications/all.inc:738 +#: qcsrc/common/notifications/all.inc:739 msgid "^F1Portal creation failed" msgstr "^F1Falha ao criar o portal" -#: qcsrc/common/notifications/all.inc:740 +#: qcsrc/common/notifications/all.inc:741 msgid "^F2Strength infuses your weapons with devastating power" msgstr "^F2A Força deixou as tuas armas com um poder devastador" -#: qcsrc/common/notifications/all.inc:741 +#: qcsrc/common/notifications/all.inc:742 msgid "^F2Strength has worn off" msgstr "^F2A Força esgotou-se" -#: qcsrc/common/notifications/all.inc:743 +#: qcsrc/common/notifications/all.inc:744 msgid "^F2Shield surrounds you" msgstr "^F2O Escudo envolve-te" -#: qcsrc/common/notifications/all.inc:744 +#: qcsrc/common/notifications/all.inc:745 msgid "^F2Shield has worn off" msgstr "^F2O Escudo esgotou-se" -#: qcsrc/common/notifications/all.inc:746 +#: qcsrc/common/notifications/all.inc:747 msgid "^F2You are on speed" msgstr "^F2Tens a velocidade" -#: qcsrc/common/notifications/all.inc:747 +#: qcsrc/common/notifications/all.inc:748 msgid "^F2Speed has worn off" msgstr "^F2A Velocidade esgotou-se" -#: qcsrc/common/notifications/all.inc:749 +#: qcsrc/common/notifications/all.inc:750 msgid "^F2You are invisible" msgstr "^F2Estás invisível" -#: qcsrc/common/notifications/all.inc:750 +#: qcsrc/common/notifications/all.inc:751 msgid "^F2Invisibility has worn off" msgstr "^F2A Invisibilidade esgotou-se" -#: qcsrc/common/notifications/all.inc:752 +#: qcsrc/common/notifications/all.inc:753 msgid "^F2The race is over, finish your lap!" msgstr "^F2A corrida acabou, termina a tua volta!" -#: qcsrc/common/notifications/all.inc:754 +#: qcsrc/common/notifications/all.inc:755 msgid "^BGSequence completed!" msgstr "^BGSequência completa!" -#: qcsrc/common/notifications/all.inc:755 +#: qcsrc/common/notifications/all.inc:756 msgid "^BGThere are more to go..." msgstr "^BGAinda há mais..." -#: qcsrc/common/notifications/all.inc:756 +#: qcsrc/common/notifications/all.inc:757 #, c-format msgid "^BGOnly %s^BG more to go..." msgstr "^BGSó falta(m) %s^BG..." -#: qcsrc/common/notifications/all.inc:758 +#: qcsrc/common/notifications/all.inc:759 msgid "^F2Superweapons have broken down" msgstr "^F2As Superarmas estão partidas" -#: qcsrc/common/notifications/all.inc:759 +#: qcsrc/common/notifications/all.inc:760 msgid "^F2Superweapons have been lost" msgstr "^F2As Superarmas foram perdidas" -#: qcsrc/common/notifications/all.inc:760 +#: qcsrc/common/notifications/all.inc:761 msgid "^F2You now have a superweapon" msgstr "^F2Agora tens uma Superarma" -#: qcsrc/common/notifications/all.inc:762 +#: qcsrc/common/notifications/all.inc:763 msgid "^K1Changing to ^TC^TT^K1 in ^COUNT" msgstr "^K1A trocar para ^TC^TT^K1 em ^COUNT" -#: qcsrc/common/notifications/all.inc:763 +#: qcsrc/common/notifications/all.inc:764 msgid "^K1Changing team in ^COUNT" msgstr "^K1A trocar de equipa em ^COUNT" -#: qcsrc/common/notifications/all.inc:764 +#: qcsrc/common/notifications/all.inc:765 msgid "^K1Spectating in ^COUNT" msgstr "^K1A trocar para espetador em ^COUNT" -#: qcsrc/common/notifications/all.inc:765 +#: qcsrc/common/notifications/all.inc:766 msgid "^K1Suicide in ^COUNT" msgstr "^K1A cometer suicídio em ^COUNT" -#: qcsrc/common/notifications/all.inc:767 +#: qcsrc/common/notifications/all.inc:768 msgid "^F4Timeout begins in ^COUNT" msgstr "^F4A pausa começa em ^COUNT" -#: qcsrc/common/notifications/all.inc:768 +#: qcsrc/common/notifications/all.inc:769 msgid "^F4Timeout ends in ^COUNT" msgstr "^F4A pausa termina em ^COUNT" -#: qcsrc/common/notifications/all.inc:770 +#: qcsrc/common/notifications/all.inc:771 msgid "^K1Cannot join given minigame session!" msgstr "^K1Não foi possível entrar na sessão de mini-jogo!" -#: qcsrc/common/notifications/all.inc:772 +#: qcsrc/common/notifications/all.inc:773 #, c-format msgid "^BGPress ^F2%s^BG to enter/exit the vehicle" msgstr "^BGPressiona ^F2%s^BG para entrar/sair do veículo" -#: qcsrc/common/notifications/all.inc:773 +#: qcsrc/common/notifications/all.inc:774 #, c-format msgid "^BGPress ^F2%s^BG to enter the vehicle gunner" msgstr "^BGPressiona ^F2%s^BG para usar a arma do veículo" -#: qcsrc/common/notifications/all.inc:774 +#: qcsrc/common/notifications/all.inc:775 #, c-format msgid "^BGPress ^F2%s^BG to steal this vehicle" msgstr "^BGPressiona ^F2%s^BG para roubar este veículo" -#: qcsrc/common/notifications/all.inc:775 +#: qcsrc/common/notifications/all.inc:776 msgid "" "^F2The enemy is stealing one of your vehicles!\n" "^F4Stop them!" @@ -4425,7 +4431,7 @@ msgstr "" "^F2O inimigo está a roubar um dos teus veículos!\n" "^F4Impede-os!" -#: qcsrc/common/notifications/all.inc:776 +#: qcsrc/common/notifications/all.inc:777 msgid "^F2Intruder detected, disabling shields!" msgstr "^F2Intruso detetado, a desativar escudos!" diff --git a/common.pt_BR.po b/common.pt_BR.po index ca2f42d5a6..1c65020b00 100644 --- a/common.pt_BR.po +++ b/common.pt_BR.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: Xonotic\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-06 07:22+0100\n" -"PO-Revision-Date: 2022-03-06 12:15+0000\n" -"Last-Translator: yy0zz\n" +"POT-Creation-Date: 2022-03-27 07:22+0200\n" +"PO-Revision-Date: 2013-09-12 16:53+0000\n" +"Last-Translator: yy0zz, 2021-2022\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/team-xonotic/" "xonotic/language/pt_BR/)\n" "Language: pt_BR\n" @@ -229,270 +229,270 @@ msgstr "^3ALT ^7+ ^3TECLAS DIRECIONAIS ^7para pequenos ajustes." msgid "Player %d" msgstr "Jogador %d" -#: qcsrc/client/hud/panel/quickmenu.qc:617 -#: qcsrc/client/hud/panel/quickmenu.qc:619 +#: qcsrc/client/hud/panel/quickmenu.qc:608 +#: qcsrc/client/hud/panel/quickmenu.qc:610 #, c-format msgid "Submenu%d" msgstr "Submenu%d" -#: qcsrc/client/hud/panel/quickmenu.qc:624 +#: qcsrc/client/hud/panel/quickmenu.qc:615 #, c-format msgid "Command%d" msgstr "Comando%d" -#: qcsrc/client/hud/panel/quickmenu.qc:650 +#: qcsrc/client/hud/panel/quickmenu.qc:641 msgid "Continue..." msgstr "Continuar..." -#: qcsrc/client/hud/panel/quickmenu.qc:807 -#: qcsrc/client/hud/panel/quickmenu.qc:814 +#: qcsrc/client/hud/panel/quickmenu.qc:798 +#: qcsrc/client/hud/panel/quickmenu.qc:805 msgid "Chat" msgstr "Bate-papo" -#: qcsrc/client/hud/panel/quickmenu.qc:808 +#: qcsrc/client/hud/panel/quickmenu.qc:799 msgid "QMCMD^Send public message to" msgstr "Enviar mensagem pública para" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^:-) / nice one" msgstr ":-) / Boa jogada" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^nice one" msgstr "Boa jogada" -#: qcsrc/client/hud/panel/quickmenu.qc:810 +#: qcsrc/client/hud/panel/quickmenu.qc:801 msgid "QMCMD^good game" msgstr "Bom jogo" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck" msgstr "Olá / Boa sorte" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck and have fun" msgstr "Olá / Boa sorte e divirta-se" -#: qcsrc/client/hud/panel/quickmenu.qc:813 +#: qcsrc/client/hud/panel/quickmenu.qc:804 msgid "QMCMD^Send in English" msgstr "Enviar em inglês" -#: qcsrc/client/hud/panel/quickmenu.qc:818 -#: qcsrc/client/hud/panel/quickmenu.qc:834 +#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:825 msgid "QMCMD^Team chat" msgstr "Bate-papo de equipe" -#: qcsrc/client/hud/panel/quickmenu.qc:819 +#: qcsrc/client/hud/panel/quickmenu.qc:810 msgid "QMCMD^strength soon" msgstr "Força em breve" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item %x^7 (l:%y^7)" msgstr "Item livre %x^7 (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item, icon" msgstr "Item livre, ícone" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item (l:%l^7)" msgstr "Item pego (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item, icon" msgstr "Item pego, ícone" -#: qcsrc/client/hud/panel/quickmenu.qc:822 +#: qcsrc/client/hud/panel/quickmenu.qc:813 msgid "QMCMD^negative" msgstr "Negativo" -#: qcsrc/client/hud/panel/quickmenu.qc:823 +#: qcsrc/client/hud/panel/quickmenu.qc:814 msgid "QMCMD^positive" msgstr "Positivo" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "Preciso de ajuda (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help, icon" msgstr "Preciso de ajuda, ícone" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen (l:%y^7)" msgstr "Inimigo avistado (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen, icon" msgstr "Inimigo avistado, ícone" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen (l:%y^7)" msgstr "Bandeira avistada (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen, icon" msgstr "Bandeira avistada, ícone" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "Defendendo (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending, icon" msgstr "Defendendo, ícone" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "Patrulhando (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming, icon" msgstr "Patrulhando, ícone" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "Atacando (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking, icon" msgstr "Atacando, ícone" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier (l:%y^7)" msgstr "Portador de bandeira aniquilado (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier, icon" msgstr "Portador de bandeira aniquilado, ícone" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 #, c-format msgid "QMCMD^dropped flag (l:%d^7)" msgstr "Bandeira largada (l:%d^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 msgid "QMCMD^dropped flag, icon" msgstr "Bandeira largada, ícone" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^drop weapon, icon" msgstr "Largar arma, ícone" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^dropped weapon %w^7 (l:%l^7)" msgstr "Arma largada %w^7 (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^drop flag/key, icon" msgstr "Largar bandeira/chave, ícone" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^dropped flag/key %w^7 (l:%l^7)" msgstr "Bandeira/Chave largada %w^7 (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:837 +#: qcsrc/client/hud/panel/quickmenu.qc:828 msgid "QMCMD^Send private message to" msgstr "Enviar mensagem privada para" -#: qcsrc/client/hud/panel/quickmenu.qc:839 -#: qcsrc/client/hud/panel/quickmenu.qc:869 +#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:860 msgid "QMCMD^Settings" msgstr "Configurações" -#: qcsrc/client/hud/panel/quickmenu.qc:840 -#: qcsrc/client/hud/panel/quickmenu.qc:847 +#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:838 msgid "QMCMD^View/HUD settings" msgstr "Configurações de exibição/interface" -#: qcsrc/client/hud/panel/quickmenu.qc:841 +#: qcsrc/client/hud/panel/quickmenu.qc:832 msgid "QMCMD^3rd person view" msgstr "Visão em 3ª pessoa" -#: qcsrc/client/hud/panel/quickmenu.qc:842 +#: qcsrc/client/hud/panel/quickmenu.qc:833 msgid "QMCMD^Player models like mine" msgstr "Modelos de jogadores como o meu" -#: qcsrc/client/hud/panel/quickmenu.qc:843 +#: qcsrc/client/hud/panel/quickmenu.qc:834 msgid "QMCMD^Names above players" msgstr "Nomes sobre jogadores" -#: qcsrc/client/hud/panel/quickmenu.qc:844 +#: qcsrc/client/hud/panel/quickmenu.qc:835 msgid "QMCMD^Crosshair per weapon" msgstr "Retículo por arma" -#: qcsrc/client/hud/panel/quickmenu.qc:845 +#: qcsrc/client/hud/panel/quickmenu.qc:836 msgid "QMCMD^FPS" msgstr "FPS" -#: qcsrc/client/hud/panel/quickmenu.qc:846 +#: qcsrc/client/hud/panel/quickmenu.qc:837 msgid "QMCMD^Net graph" msgstr "Gráfico da rede" -#: qcsrc/client/hud/panel/quickmenu.qc:849 -#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:840 +#: qcsrc/client/hud/panel/quickmenu.qc:843 msgid "QMCMD^Sound settings" msgstr "Configurações de som" -#: qcsrc/client/hud/panel/quickmenu.qc:850 +#: qcsrc/client/hud/panel/quickmenu.qc:841 msgid "QMCMD^Hit sound" msgstr "Som de acerto" -#: qcsrc/client/hud/panel/quickmenu.qc:851 +#: qcsrc/client/hud/panel/quickmenu.qc:842 msgid "QMCMD^Chat sound" msgstr "Som do bate-papo" -#: qcsrc/client/hud/panel/quickmenu.qc:856 +#: qcsrc/client/hud/panel/quickmenu.qc:847 msgid "QMCMD^Change spectator camera" msgstr "Alterar câmera de espectador" -#: qcsrc/client/hud/panel/quickmenu.qc:861 -#: qcsrc/client/hud/panel/quickmenu.qc:865 +#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:856 msgid "QMCMD^Observer camera" msgstr "Câmera de observador" -#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:853 msgid "QMCMD^Increase speed" msgstr "Aumentar velocidade" -#: qcsrc/client/hud/panel/quickmenu.qc:863 +#: qcsrc/client/hud/panel/quickmenu.qc:854 msgid "QMCMD^Decrease speed" msgstr "Reduzir velocidade" -#: qcsrc/client/hud/panel/quickmenu.qc:864 +#: qcsrc/client/hud/panel/quickmenu.qc:855 msgid "QMCMD^Wall collision" msgstr "Colisão de parede" -#: qcsrc/client/hud/panel/quickmenu.qc:868 +#: qcsrc/client/hud/panel/quickmenu.qc:859 msgid "QMCMD^Fullscreen" msgstr "Tela cheia" -#: qcsrc/client/hud/panel/quickmenu.qc:871 -#: qcsrc/client/hud/panel/quickmenu.qc:881 +#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:872 msgid "QMCMD^Call a vote" msgstr "Iniciar uma votação" -#: qcsrc/client/hud/panel/quickmenu.qc:872 +#: qcsrc/client/hud/panel/quickmenu.qc:863 msgid "QMCMD^Restart the map" msgstr "Reiniciar o mapa" -#: qcsrc/client/hud/panel/quickmenu.qc:873 +#: qcsrc/client/hud/panel/quickmenu.qc:864 msgid "QMCMD^End match" msgstr "Terminar a partida" -#: qcsrc/client/hud/panel/quickmenu.qc:876 +#: qcsrc/client/hud/panel/quickmenu.qc:867 msgid "QMCMD^Reduce match time" msgstr "Reduzir tempo de partida" -#: qcsrc/client/hud/panel/quickmenu.qc:877 +#: qcsrc/client/hud/panel/quickmenu.qc:868 msgid "QMCMD^Extend match time" msgstr "Estender tempo de partida" -#: qcsrc/client/hud/panel/quickmenu.qc:880 +#: qcsrc/client/hud/panel/quickmenu.qc:871 msgid "QMCMD^Shuffle teams" msgstr "Misturar as equipes" -#: qcsrc/client/hud/panel/quickmenu.qc:885 +#: qcsrc/client/hud/panel/quickmenu.qc:876 msgid "QMCMD^Spectate a player" msgstr "Assistir a um jogador" @@ -1269,14 +1269,14 @@ msgstr "Mate todos os inimigos para vencer a rodada" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 #: qcsrc/menu/xonotic/dialog_multiplayer_create.qc:105 msgid "Frag limit:" msgstr "Limite de execuções:" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 msgid "The amount of frags needed before the match will end" msgstr "A quantidade de execuções necessária para acabar a partida" @@ -3373,7 +3373,7 @@ msgstr "" "^BG%s%s^K1 ficou cheio de buracos por causa da Metralhadora de ^BG%s^K1%s%s" #: qcsrc/common/notifications/all.inc:472 -#: qcsrc/common/notifications/all.inc:778 +#: qcsrc/common/notifications/all.inc:779 #, c-format msgid "^BGYou cannot place more than ^F2%s^BG mines at a time" msgstr "^BGVocê não pode pôr mais do que ^F2%s^BG minas por vez" @@ -4187,7 +4187,15 @@ msgstr "" "^BGVocê não tem vidas sobrando, por isso terá que aguardar até a próxima " "partida" -#: qcsrc/common/notifications/all.inc:707 +#: qcsrc/common/notifications/all.inc:706 +msgid "" +"^F4WARNING:^BG you can't rejoin this match after spectating.\n" +"Use the same command again to spectate anyway." +msgstr "" +"^F4AVISO:^BG não voltará a esta partida se sair aos espectadores.\n" +"Repita o comando para sair mesmo assim." + +#: qcsrc/common/notifications/all.inc:708 #, c-format msgid "" "^BGWaiting for players to join...\n" @@ -4196,43 +4204,43 @@ msgstr "" "^BGEsperando jogadores entrarem...\n" "Precisa-se de jogadores ativos para: %s" -#: qcsrc/common/notifications/all.inc:708 +#: qcsrc/common/notifications/all.inc:709 #, c-format msgid "^BGWaiting for %s player(s) to join..." msgstr "^BGEsperando %s jogador(es) entrar(em)..." -#: qcsrc/common/notifications/all.inc:710 +#: qcsrc/common/notifications/all.inc:711 msgid "^BGYour weapon has been downgraded until you find some ammo!" msgstr "^BGA sua arma foi rebaixada até que você encontre alguma munição!" -#: qcsrc/common/notifications/all.inc:711 +#: qcsrc/common/notifications/all.inc:712 msgid "^F4^COUNT^BG left to find some ammo!" msgstr "^F4^COUNT^BG restante(s) para encontrar alguma munição!" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo or you'll be dead in ^F4^COUNT^BG!" msgstr "^BGEncontre alguma munição ou você morrerá em ^F4^COUNT^BG!" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo! ^F4^COUNT^BG left!" msgstr "^BGEncontre alguma munição! Falta ^F4^COUNT^BG!" -#: qcsrc/common/notifications/all.inc:713 +#: qcsrc/common/notifications/all.inc:714 #, c-format msgid "^F2Extra lives remaining: ^K1%s" msgstr "^F2Vidas extras restantes: ^K1%s" -#: qcsrc/common/notifications/all.inc:715 qcsrc/menu/xonotic/campaign.qc:244 +#: qcsrc/common/notifications/all.inc:716 qcsrc/menu/xonotic/campaign.qc:244 #, c-format msgid "Level %s: " msgstr "Nível %s: " -#: qcsrc/common/notifications/all.inc:715 +#: qcsrc/common/notifications/all.inc:716 #, c-format msgid "^BGPress ^F2%s^BG to enter the game" msgstr "^BGAperte ^F2%s^BG para entrar no jogo" -#: qcsrc/common/notifications/all.inc:718 +#: qcsrc/common/notifications/all.inc:719 #, c-format msgid "" "^F2^COUNT^BG until weapon change...\n" @@ -4241,34 +4249,34 @@ msgstr "" "^F2^CONTAGEM^BG até a mudança de arma...\n" "Próxima arma: ^F1%s" -#: qcsrc/common/notifications/all.inc:719 +#: qcsrc/common/notifications/all.inc:720 #, c-format msgid "^F2Active weapon: ^F1%s" msgstr "^F2Arma ativa: ^F1%s" -#: qcsrc/common/notifications/all.inc:721 +#: qcsrc/common/notifications/all.inc:722 #, c-format msgid "^BGYou captured %s^BG control point" msgstr "^BGVocê capturou o ponto de controle %s^BG" -#: qcsrc/common/notifications/all.inc:722 +#: qcsrc/common/notifications/all.inc:723 msgid "^BGYou captured a control point" msgstr "^BGVocê capturou um ponto de controle" -#: qcsrc/common/notifications/all.inc:723 +#: qcsrc/common/notifications/all.inc:724 #, c-format msgid "^TC^TT^BG team captured %s^BG control point" msgstr "A equipe ^TC^TT^BG capturou o ponto de controle %s^BG" -#: qcsrc/common/notifications/all.inc:724 +#: qcsrc/common/notifications/all.inc:725 msgid "^TC^TT^BG team captured a control point" msgstr "A equipe ^TC^TT^BG capturou um ponto de controle" -#: qcsrc/common/notifications/all.inc:725 +#: qcsrc/common/notifications/all.inc:726 msgid "^BGThis control point currently cannot be captured" msgstr "^BGEste ponto de controle atualmente não pode ser capturado" -#: qcsrc/common/notifications/all.inc:726 +#: qcsrc/common/notifications/all.inc:727 msgid "" "^BGThe enemy generator cannot be destroyed yet\n" "^F2Capture some control points to unshield it" @@ -4276,11 +4284,11 @@ msgstr "" "^BGO gerador inimigo ainda não pode ser destruído\n" "^F2Capture alguns pontos de controle para desprotegê-lo" -#: qcsrc/common/notifications/all.inc:727 +#: qcsrc/common/notifications/all.inc:728 msgid "^BGThe ^TCenemy^BG generator is no longer shielded!" msgstr "^BGO gerador ^TCinimigo^BG não está mais protegido!" -#: qcsrc/common/notifications/all.inc:728 +#: qcsrc/common/notifications/all.inc:729 msgid "" "^K1Your generator is NOT shielded!\n" "^BGRe-capture control points to shield it!" @@ -4288,17 +4296,17 @@ msgstr "" "^K1O seu gerador NÃO está blindado!\n" "^BGRecapture pontos de controle para blindá-lo!" -#: qcsrc/common/notifications/all.inc:729 +#: qcsrc/common/notifications/all.inc:730 #, c-format msgid "^BGPress ^F2%s^BG to teleport" msgstr "^BGAperte ^F2%s^BG para se teletransportar" -#: qcsrc/common/notifications/all.inc:730 +#: qcsrc/common/notifications/all.inc:731 #, c-format msgid "^BGTeleporting disabled for %s" msgstr "^BGTeletransporte desabilitado para %s" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep fragging until we have a winner!" @@ -4306,7 +4314,7 @@ msgstr "" "^F2Jogando agora nos ^F4ACRÉSCIMOS^F2!\n" "Continue executando até que tenhamos um vencedor!" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep scoring until we have a winner!" @@ -4314,7 +4322,7 @@ msgstr "" "^F2Jogando agora nos ^F4ACRÉSCIMOS^F2!\n" "Continue pontuando até que tenhamos um vencedor!" -#: qcsrc/common/notifications/all.inc:733 +#: qcsrc/common/notifications/all.inc:734 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "\n" @@ -4328,7 +4336,7 @@ msgstr "" "Quanto mais pontos de controle a sua equipe tiver,\n" "mais rápido o gerador inimigo enfraquecerá" -#: qcsrc/common/notifications/all.inc:734 +#: qcsrc/common/notifications/all.inc:735 #, c-format msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" @@ -4337,123 +4345,123 @@ msgstr "" "^F2Jogando agora nos ^F4ACRÉSCIMOS^F2!\n" "^BGAdicionado ^F4%s^BG à partida!" -#: qcsrc/common/notifications/all.inc:736 +#: qcsrc/common/notifications/all.inc:737 msgid "^K1In^BG-portal created" msgstr "^K1^BGPortal de entrada criado" -#: qcsrc/common/notifications/all.inc:737 +#: qcsrc/common/notifications/all.inc:738 msgid "^F3Out^BG-portal created" msgstr "^F3^BGPortal de saída criado" -#: qcsrc/common/notifications/all.inc:738 +#: qcsrc/common/notifications/all.inc:739 msgid "^F1Portal creation failed" msgstr "^F1Falha ao criar portal" -#: qcsrc/common/notifications/all.inc:740 +#: qcsrc/common/notifications/all.inc:741 msgid "^F2Strength infuses your weapons with devastating power" msgstr "^F2A Força deixou suas armas com um poder devastador" -#: qcsrc/common/notifications/all.inc:741 +#: qcsrc/common/notifications/all.inc:742 msgid "^F2Strength has worn off" msgstr "^F2A Força se esgotou" -#: qcsrc/common/notifications/all.inc:743 +#: qcsrc/common/notifications/all.inc:744 msgid "^F2Shield surrounds you" msgstr "^F2O Escudo te cerca" -#: qcsrc/common/notifications/all.inc:744 +#: qcsrc/common/notifications/all.inc:745 msgid "^F2Shield has worn off" msgstr "^F2O Escudo se esgotou" -#: qcsrc/common/notifications/all.inc:746 +#: qcsrc/common/notifications/all.inc:747 msgid "^F2You are on speed" msgstr "^F2Você tem a velocidade" -#: qcsrc/common/notifications/all.inc:747 +#: qcsrc/common/notifications/all.inc:748 msgid "^F2Speed has worn off" msgstr "^F2A Velocidade se esgotou" -#: qcsrc/common/notifications/all.inc:749 +#: qcsrc/common/notifications/all.inc:750 msgid "^F2You are invisible" msgstr "^F2Você está invisível" -#: qcsrc/common/notifications/all.inc:750 +#: qcsrc/common/notifications/all.inc:751 msgid "^F2Invisibility has worn off" msgstr "^F2A Invisibilidade se esgotou" -#: qcsrc/common/notifications/all.inc:752 +#: qcsrc/common/notifications/all.inc:753 msgid "^F2The race is over, finish your lap!" msgstr "^F2A corrida acabou, termine sua volta!" -#: qcsrc/common/notifications/all.inc:754 +#: qcsrc/common/notifications/all.inc:755 msgid "^BGSequence completed!" msgstr "^BGSequência completada!" -#: qcsrc/common/notifications/all.inc:755 +#: qcsrc/common/notifications/all.inc:756 msgid "^BGThere are more to go..." msgstr "^BGAinda tem mais..." -#: qcsrc/common/notifications/all.inc:756 +#: qcsrc/common/notifications/all.inc:757 #, c-format msgid "^BGOnly %s^BG more to go..." msgstr "^BGSó falta(m) %s^BG..." -#: qcsrc/common/notifications/all.inc:758 +#: qcsrc/common/notifications/all.inc:759 msgid "^F2Superweapons have broken down" msgstr "^F2As Superarmas quebraram" -#: qcsrc/common/notifications/all.inc:759 +#: qcsrc/common/notifications/all.inc:760 msgid "^F2Superweapons have been lost" msgstr "^F2As Superarmas foram perdidas" -#: qcsrc/common/notifications/all.inc:760 +#: qcsrc/common/notifications/all.inc:761 msgid "^F2You now have a superweapon" msgstr "^F2Agora você tem uma Superarma" -#: qcsrc/common/notifications/all.inc:762 +#: qcsrc/common/notifications/all.inc:763 msgid "^K1Changing to ^TC^TT^K1 in ^COUNT" msgstr "^K1Trocando para ^TC^TT^K1 em ^COUNT" -#: qcsrc/common/notifications/all.inc:763 +#: qcsrc/common/notifications/all.inc:764 msgid "^K1Changing team in ^COUNT" msgstr "^K1Trocando de equipe em ^COUNT" -#: qcsrc/common/notifications/all.inc:764 +#: qcsrc/common/notifications/all.inc:765 msgid "^K1Spectating in ^COUNT" msgstr "^K1Trocando para espectador em ^COUNT" -#: qcsrc/common/notifications/all.inc:765 +#: qcsrc/common/notifications/all.inc:766 msgid "^K1Suicide in ^COUNT" msgstr "^K1Cometendo suicídio em ^COUNT" -#: qcsrc/common/notifications/all.inc:767 +#: qcsrc/common/notifications/all.inc:768 msgid "^F4Timeout begins in ^COUNT" msgstr "^F4Pausa iniciará em ^COUNT" -#: qcsrc/common/notifications/all.inc:768 +#: qcsrc/common/notifications/all.inc:769 msgid "^F4Timeout ends in ^COUNT" msgstr "^F4Pausa acabará em ^COUNT" -#: qcsrc/common/notifications/all.inc:770 +#: qcsrc/common/notifications/all.inc:771 msgid "^K1Cannot join given minigame session!" msgstr "^K1Não foi possível entrar nesta sessão de minijogo!" -#: qcsrc/common/notifications/all.inc:772 +#: qcsrc/common/notifications/all.inc:773 #, c-format msgid "^BGPress ^F2%s^BG to enter/exit the vehicle" msgstr "^BGAperte ^F2%s^BG para entrar/sair do veículo" -#: qcsrc/common/notifications/all.inc:773 +#: qcsrc/common/notifications/all.inc:774 #, c-format msgid "^BGPress ^F2%s^BG to enter the vehicle gunner" msgstr "^BGAperte ^F2%s^BG para usar a arma do veículo" -#: qcsrc/common/notifications/all.inc:774 +#: qcsrc/common/notifications/all.inc:775 #, c-format msgid "^BGPress ^F2%s^BG to steal this vehicle" msgstr "^BGAperte ^F2%s^BG para roubar este veículo" -#: qcsrc/common/notifications/all.inc:775 +#: qcsrc/common/notifications/all.inc:776 msgid "" "^F2The enemy is stealing one of your vehicles!\n" "^F4Stop them!" @@ -4461,7 +4469,7 @@ msgstr "" "^F2O inimigo está roubando um de seus veículos!\n" "^F4Impeça-os!" -#: qcsrc/common/notifications/all.inc:776 +#: qcsrc/common/notifications/all.inc:777 msgid "^F2Intruder detected, disabling shields!" msgstr "^F2Intruso detectado, desativando escudos!" diff --git a/common.ro.po b/common.ro.po index ab44e9ed61..5e459c313c 100644 --- a/common.ro.po +++ b/common.ro.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: Xonotic\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-06 07:22+0100\n" -"PO-Revision-Date: 2022-03-06 06:22+0000\n" -"Last-Translator: divVerent \n" +"POT-Creation-Date: 2022-03-27 07:22+0200\n" +"PO-Revision-Date: 2013-09-12 16:53+0000\n" +"Last-Translator: Tudor Ionel , 2015\n" "Language-Team: Romanian (http://www.transifex.com/team-xonotic/xonotic/" "language/ro/)\n" "Language: ro\n" @@ -232,270 +232,270 @@ msgstr "^3ALT ^7+ ^3SĂGEȚI ^7pentru ajustări fine." msgid "Player %d" msgstr "Jucător: %d" -#: qcsrc/client/hud/panel/quickmenu.qc:617 -#: qcsrc/client/hud/panel/quickmenu.qc:619 +#: qcsrc/client/hud/panel/quickmenu.qc:608 +#: qcsrc/client/hud/panel/quickmenu.qc:610 #, c-format msgid "Submenu%d" msgstr "Submeniu%d" -#: qcsrc/client/hud/panel/quickmenu.qc:624 +#: qcsrc/client/hud/panel/quickmenu.qc:615 #, c-format msgid "Command%d" msgstr "Comandă%d" -#: qcsrc/client/hud/panel/quickmenu.qc:650 +#: qcsrc/client/hud/panel/quickmenu.qc:641 msgid "Continue..." msgstr "Continuă..." -#: qcsrc/client/hud/panel/quickmenu.qc:807 -#: qcsrc/client/hud/panel/quickmenu.qc:814 +#: qcsrc/client/hud/panel/quickmenu.qc:798 +#: qcsrc/client/hud/panel/quickmenu.qc:805 msgid "Chat" msgstr "Convorbire" -#: qcsrc/client/hud/panel/quickmenu.qc:808 +#: qcsrc/client/hud/panel/quickmenu.qc:799 msgid "QMCMD^Send public message to" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^:-) / nice one" msgstr "QMCMD^:) / frumos" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^nice one" msgstr "QMCMD^frumos" -#: qcsrc/client/hud/panel/quickmenu.qc:810 +#: qcsrc/client/hud/panel/quickmenu.qc:801 msgid "QMCMD^good game" msgstr "QMCMD^GG" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck" msgstr "QMCMD^salut / baftă" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck and have fun" msgstr "QMCMD^salut / baftă și distracție plăcută" -#: qcsrc/client/hud/panel/quickmenu.qc:813 +#: qcsrc/client/hud/panel/quickmenu.qc:804 msgid "QMCMD^Send in English" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:818 -#: qcsrc/client/hud/panel/quickmenu.qc:834 +#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:825 msgid "QMCMD^Team chat" msgstr "QMCMD^Conversație echipă" -#: qcsrc/client/hud/panel/quickmenu.qc:819 +#: qcsrc/client/hud/panel/quickmenu.qc:810 msgid "QMCMD^strength soon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item %x^7 (l:%y^7)" msgstr "QMCMD^obiect liber %x^7 (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item, icon" msgstr "QMCMD^obiect liber, pictogramă" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item (l:%l^7)" msgstr "QMCMD^a luat obiectul (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item, icon" msgstr "QMCMD^a luat obiectul, pictogramă" -#: qcsrc/client/hud/panel/quickmenu.qc:822 +#: qcsrc/client/hud/panel/quickmenu.qc:813 msgid "QMCMD^negative" msgstr "QMCMD^negativ" -#: qcsrc/client/hud/panel/quickmenu.qc:823 +#: qcsrc/client/hud/panel/quickmenu.qc:814 msgid "QMCMD^positive" msgstr "QMCMD^pozitiv" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^necesit ajutor (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help, icon" msgstr "QMCMD^necesit ajutor, pictogramă" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen (l:%y^7)" msgstr "QMCMD^inamic observat (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen, icon" msgstr "QMCMD^inamic observat, pictogramă" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen (l:%y^7)" msgstr "QMCMD^steag observat (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen, icon" msgstr "QMCMD^steag observat, pictogramă" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^în apărare (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending, icon" msgstr "QMCMD^în apărare, pictogramă" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^roaming (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming, icon" msgstr "QMCMD^roaming, pictogramă" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^în atac (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking, icon" msgstr "QMCMD^în atac, pictogramă" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier (l:%y^7)" msgstr "QMCMD^posesorul de steag omorât (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 #, c-format msgid "QMCMD^dropped flag (l:%d^7)" msgstr "QMCMD^steag scăpat (l:%d^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 msgid "QMCMD^dropped flag, icon" msgstr "QMCMD^steag scăpat, pictogramă" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^drop weapon, icon" msgstr "QMCMD^scapă arma, pictogramă" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^dropped weapon %w^7 (l:%l^7)" msgstr "QMCMD^armă scăpată %w^7 (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^drop flag/key, icon" msgstr "QMCMD^scapă steag/cheie, pictogramă" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^dropped flag/key %w^7 (l:%l^7)" msgstr "QMCMD^steag/cheie scăpate %w^7 (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:837 +#: qcsrc/client/hud/panel/quickmenu.qc:828 msgid "QMCMD^Send private message to" msgstr "QMCMD^Trimite mesaj privat către" -#: qcsrc/client/hud/panel/quickmenu.qc:839 -#: qcsrc/client/hud/panel/quickmenu.qc:869 +#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:860 msgid "QMCMD^Settings" msgstr "QMCMD^Setări" -#: qcsrc/client/hud/panel/quickmenu.qc:840 -#: qcsrc/client/hud/panel/quickmenu.qc:847 +#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:838 msgid "QMCMD^View/HUD settings" msgstr "QMCMD^Setări de Vizualizare/HUD" -#: qcsrc/client/hud/panel/quickmenu.qc:841 +#: qcsrc/client/hud/panel/quickmenu.qc:832 msgid "QMCMD^3rd person view" msgstr "QMCMD^Perspectivă la persoana a 3-a" -#: qcsrc/client/hud/panel/quickmenu.qc:842 +#: qcsrc/client/hud/panel/quickmenu.qc:833 msgid "QMCMD^Player models like mine" msgstr "QMCMD^Modele de jucători ca al meu" -#: qcsrc/client/hud/panel/quickmenu.qc:843 +#: qcsrc/client/hud/panel/quickmenu.qc:834 msgid "QMCMD^Names above players" msgstr "QMCMD^Nume deasupra jucătorilor" -#: qcsrc/client/hud/panel/quickmenu.qc:844 +#: qcsrc/client/hud/panel/quickmenu.qc:835 msgid "QMCMD^Crosshair per weapon" msgstr "QMCMD^Reticul pe fiecare armă" -#: qcsrc/client/hud/panel/quickmenu.qc:845 +#: qcsrc/client/hud/panel/quickmenu.qc:836 msgid "QMCMD^FPS" msgstr "QMCMD^FPS" -#: qcsrc/client/hud/panel/quickmenu.qc:846 +#: qcsrc/client/hud/panel/quickmenu.qc:837 msgid "QMCMD^Net graph" msgstr "QMCMD^Grafic de conexiune" -#: qcsrc/client/hud/panel/quickmenu.qc:849 -#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:840 +#: qcsrc/client/hud/panel/quickmenu.qc:843 msgid "QMCMD^Sound settings" msgstr "QMCMD^Setări de sunet" -#: qcsrc/client/hud/panel/quickmenu.qc:850 +#: qcsrc/client/hud/panel/quickmenu.qc:841 msgid "QMCMD^Hit sound" msgstr "QMCMD^Sunet de lovire" -#: qcsrc/client/hud/panel/quickmenu.qc:851 +#: qcsrc/client/hud/panel/quickmenu.qc:842 msgid "QMCMD^Chat sound" msgstr "QMCMD^Sunet conversație" -#: qcsrc/client/hud/panel/quickmenu.qc:856 +#: qcsrc/client/hud/panel/quickmenu.qc:847 msgid "QMCMD^Change spectator camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:861 -#: qcsrc/client/hud/panel/quickmenu.qc:865 +#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:856 msgid "QMCMD^Observer camera" msgstr "QMCMD^Cameră de observator" -#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:853 msgid "QMCMD^Increase speed" msgstr "QMCMD^Crește viteza" -#: qcsrc/client/hud/panel/quickmenu.qc:863 +#: qcsrc/client/hud/panel/quickmenu.qc:854 msgid "QMCMD^Decrease speed" msgstr "QMCMD^Scade viteza" -#: qcsrc/client/hud/panel/quickmenu.qc:864 +#: qcsrc/client/hud/panel/quickmenu.qc:855 msgid "QMCMD^Wall collision" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:868 +#: qcsrc/client/hud/panel/quickmenu.qc:859 msgid "QMCMD^Fullscreen" msgstr "QMCMD^Ecran complet" -#: qcsrc/client/hud/panel/quickmenu.qc:871 -#: qcsrc/client/hud/panel/quickmenu.qc:881 +#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:872 msgid "QMCMD^Call a vote" msgstr "QMCMD^Cheamă vot" -#: qcsrc/client/hud/panel/quickmenu.qc:872 +#: qcsrc/client/hud/panel/quickmenu.qc:863 msgid "QMCMD^Restart the map" msgstr "QMCMD^Repornește harta" -#: qcsrc/client/hud/panel/quickmenu.qc:873 +#: qcsrc/client/hud/panel/quickmenu.qc:864 msgid "QMCMD^End match" msgstr "QMCMD^Încheie meciul" -#: qcsrc/client/hud/panel/quickmenu.qc:876 +#: qcsrc/client/hud/panel/quickmenu.qc:867 msgid "QMCMD^Reduce match time" msgstr "QMCMD^Redu timpul de meci" -#: qcsrc/client/hud/panel/quickmenu.qc:877 +#: qcsrc/client/hud/panel/quickmenu.qc:868 msgid "QMCMD^Extend match time" msgstr "QMCMD^Extinde timpul de meci" -#: qcsrc/client/hud/panel/quickmenu.qc:880 +#: qcsrc/client/hud/panel/quickmenu.qc:871 msgid "QMCMD^Shuffle teams" msgstr "QMCMD^Amestecă echipele" -#: qcsrc/client/hud/panel/quickmenu.qc:885 +#: qcsrc/client/hud/panel/quickmenu.qc:876 msgid "QMCMD^Spectate a player" msgstr "" @@ -1247,14 +1247,14 @@ msgstr "Ucide toți coechipierii inamici pentru a câștiga runda" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 #: qcsrc/menu/xonotic/dialog_multiplayer_create.qc:105 msgid "Frag limit:" msgstr "Limita de omoruri:" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 msgid "The amount of frags needed before the match will end" msgstr "" @@ -3348,7 +3348,7 @@ msgid "^BG%s%s^K1 was riddled full of holes by ^BG%s^K1's Machine Gun%s%s" msgstr "^BG%s%s^K1 a fost ciuruit de Mitraliera%s%s lui ^BG%s^K1" #: qcsrc/common/notifications/all.inc:472 -#: qcsrc/common/notifications/all.inc:778 +#: qcsrc/common/notifications/all.inc:779 #, c-format msgid "^BGYou cannot place more than ^F2%s^BG mines at a time" msgstr "^BGNu poți plasa mai mult de ^F2%s^BG mine în același timp" @@ -4157,7 +4157,13 @@ msgstr "^BGAi început cu cheia ^TC^TT" msgid "^BGYou have no lives left, you must wait until the next match" msgstr "^BGNu mai ai vieți rămase, trebuie să aștepți următorul meci" -#: qcsrc/common/notifications/all.inc:707 +#: qcsrc/common/notifications/all.inc:706 +msgid "" +"^F4WARNING:^BG you can't rejoin this match after spectating.\n" +"Use the same command again to spectate anyway." +msgstr "" + +#: qcsrc/common/notifications/all.inc:708 #, c-format msgid "" "^BGWaiting for players to join...\n" @@ -4166,43 +4172,43 @@ msgstr "" "^BGSe așteaptă jucători să se alăture...\n" "Sunt necesari jucători activi pentru: %s" -#: qcsrc/common/notifications/all.inc:708 +#: qcsrc/common/notifications/all.inc:709 #, c-format msgid "^BGWaiting for %s player(s) to join..." msgstr "^BGSe așteaptă să se alăture %s jucător(i)..." -#: qcsrc/common/notifications/all.inc:710 +#: qcsrc/common/notifications/all.inc:711 msgid "^BGYour weapon has been downgraded until you find some ammo!" msgstr "^BGArma ta a fost retrogradată până când iți găsești niște muniție!" -#: qcsrc/common/notifications/all.inc:711 +#: qcsrc/common/notifications/all.inc:712 msgid "^F4^COUNT^BG left to find some ammo!" msgstr "^F4^COUNT^BG să găsești niște muniție!" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo or you'll be dead in ^F4^COUNT^BG!" msgstr "^BGCaută niște muniție sau vei muri în ^F4^COUNT^BG!" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo! ^F4^COUNT^BG left!" msgstr "^BGIa niște muniție! Mai ai ^F4^COUNT^BG !" -#: qcsrc/common/notifications/all.inc:713 +#: qcsrc/common/notifications/all.inc:714 #, c-format msgid "^F2Extra lives remaining: ^K1%s" msgstr "^F2Extra vieți rămase: ^K1%s" -#: qcsrc/common/notifications/all.inc:715 qcsrc/menu/xonotic/campaign.qc:244 +#: qcsrc/common/notifications/all.inc:716 qcsrc/menu/xonotic/campaign.qc:244 #, c-format msgid "Level %s: " msgstr "" -#: qcsrc/common/notifications/all.inc:715 +#: qcsrc/common/notifications/all.inc:716 #, c-format msgid "^BGPress ^F2%s^BG to enter the game" msgstr "" -#: qcsrc/common/notifications/all.inc:718 +#: qcsrc/common/notifications/all.inc:719 #, c-format msgid "" "^F2^COUNT^BG until weapon change...\n" @@ -4211,34 +4217,34 @@ msgstr "" "^F2^COUNT^BG până se schimbă arma...\n" "Următoarea armă: ^F1%s" -#: qcsrc/common/notifications/all.inc:719 +#: qcsrc/common/notifications/all.inc:720 #, c-format msgid "^F2Active weapon: ^F1%s" msgstr "^F2Armă activă: ^F1%s" -#: qcsrc/common/notifications/all.inc:721 +#: qcsrc/common/notifications/all.inc:722 #, c-format msgid "^BGYou captured %s^BG control point" msgstr "^BGAi capturat punctul de control %s^BG" -#: qcsrc/common/notifications/all.inc:722 +#: qcsrc/common/notifications/all.inc:723 msgid "^BGYou captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:723 +#: qcsrc/common/notifications/all.inc:724 #, c-format msgid "^TC^TT^BG team captured %s^BG control point" msgstr "Echipa ^TC^TT^BG a capturat punctul de control %s^BG" -#: qcsrc/common/notifications/all.inc:724 +#: qcsrc/common/notifications/all.inc:725 msgid "^TC^TT^BG team captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:725 +#: qcsrc/common/notifications/all.inc:726 msgid "^BGThis control point currently cannot be captured" msgstr "^BGAcest punct de control nu poate fi capturat" -#: qcsrc/common/notifications/all.inc:726 +#: qcsrc/common/notifications/all.inc:727 msgid "" "^BGThe enemy generator cannot be destroyed yet\n" "^F2Capture some control points to unshield it" @@ -4246,11 +4252,11 @@ msgstr "" "^BGGeneratorul inamic nu poate fi distrus încă\n" "^F2Capturează câteva puncte de control pentru a-i slăbi rezistența" -#: qcsrc/common/notifications/all.inc:727 +#: qcsrc/common/notifications/all.inc:728 msgid "^BGThe ^TCenemy^BG generator is no longer shielded!" msgstr "^BG Generatorul ^TCinamic ^BGși-a pierdut protecțiile!" -#: qcsrc/common/notifications/all.inc:728 +#: qcsrc/common/notifications/all.inc:729 msgid "" "^K1Your generator is NOT shielded!\n" "^BGRe-capture control points to shield it!" @@ -4258,17 +4264,17 @@ msgstr "" "^K1Generatorul tău NU este protejat!\n" "^BGCapturează punctele de control ca să-i activezi protecția!" -#: qcsrc/common/notifications/all.inc:729 +#: qcsrc/common/notifications/all.inc:730 #, c-format msgid "^BGPress ^F2%s^BG to teleport" msgstr "" -#: qcsrc/common/notifications/all.inc:730 +#: qcsrc/common/notifications/all.inc:731 #, c-format msgid "^BGTeleporting disabled for %s" msgstr "^BGTeleportarea dezactivată pentru %s" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep fragging until we have a winner!" @@ -4276,7 +4282,7 @@ msgstr "" "^F2Acum se joacă ^F4PRELUNGIRE^F2!\n" "Continuați să ucideți până ce avem un învingător!" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep scoring until we have a winner!" @@ -4284,7 +4290,7 @@ msgstr "" "^F2Acum se joacă ^F4PRELUNGIRE^F2!\n" "Continuați să înscrieți până ce avem un învingător!" -#: qcsrc/common/notifications/all.inc:733 +#: qcsrc/common/notifications/all.inc:734 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "\n" @@ -4297,7 +4303,7 @@ msgstr "" "Cu cât mai multe puncte deține echipa ta,\n" "cu atât mai repede va ceda generatorul inamicului" -#: qcsrc/common/notifications/all.inc:734 +#: qcsrc/common/notifications/all.inc:735 #, c-format msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" @@ -4306,123 +4312,123 @@ msgstr "" "^F2Acum se joacă ^F4PRELUNGIRE^F2!\n" "^BGA fost adăugat ^F4%s^BG în joc!" -#: qcsrc/common/notifications/all.inc:736 +#: qcsrc/common/notifications/all.inc:737 msgid "^K1In^BG-portal created" msgstr "^K1Interior^BG-portal creat" -#: qcsrc/common/notifications/all.inc:737 +#: qcsrc/common/notifications/all.inc:738 msgid "^F3Out^BG-portal created" msgstr "^F3Exterior^BG-portal creat" -#: qcsrc/common/notifications/all.inc:738 +#: qcsrc/common/notifications/all.inc:739 msgid "^F1Portal creation failed" msgstr "^F1Crearea portalului eșuată" -#: qcsrc/common/notifications/all.inc:740 +#: qcsrc/common/notifications/all.inc:741 msgid "^F2Strength infuses your weapons with devastating power" msgstr "^F2Forța îți infuzează armele cu putere devastatoare" -#: qcsrc/common/notifications/all.inc:741 +#: qcsrc/common/notifications/all.inc:742 msgid "^F2Strength has worn off" msgstr "^F2Rezistența a expirat" -#: qcsrc/common/notifications/all.inc:743 +#: qcsrc/common/notifications/all.inc:744 msgid "^F2Shield surrounds you" msgstr "^F2Scutul de înconjoară" -#: qcsrc/common/notifications/all.inc:744 +#: qcsrc/common/notifications/all.inc:745 msgid "^F2Shield has worn off" msgstr "^F2Scutul a expirat" -#: qcsrc/common/notifications/all.inc:746 +#: qcsrc/common/notifications/all.inc:747 msgid "^F2You are on speed" msgstr "^F2Ești în viteză" -#: qcsrc/common/notifications/all.inc:747 +#: qcsrc/common/notifications/all.inc:748 msgid "^F2Speed has worn off" msgstr "^F2Rapiditatea a expirat" -#: qcsrc/common/notifications/all.inc:749 +#: qcsrc/common/notifications/all.inc:750 msgid "^F2You are invisible" msgstr "^F2Ești invincibil" -#: qcsrc/common/notifications/all.inc:750 +#: qcsrc/common/notifications/all.inc:751 msgid "^F2Invisibility has worn off" msgstr "^F2Invisibilitatea a expirat" -#: qcsrc/common/notifications/all.inc:752 +#: qcsrc/common/notifications/all.inc:753 msgid "^F2The race is over, finish your lap!" msgstr "^F2Cursa s-a încheiat, termină-ți tura!" -#: qcsrc/common/notifications/all.inc:754 +#: qcsrc/common/notifications/all.inc:755 msgid "^BGSequence completed!" msgstr "^BGSecvență terminată!" -#: qcsrc/common/notifications/all.inc:755 +#: qcsrc/common/notifications/all.inc:756 msgid "^BGThere are more to go..." msgstr "^BGMai sunt multe..." -#: qcsrc/common/notifications/all.inc:756 +#: qcsrc/common/notifications/all.inc:757 #, c-format msgid "^BGOnly %s^BG more to go..." msgstr "Mai sunt ^BGdoar %s^BG..." -#: qcsrc/common/notifications/all.inc:758 +#: qcsrc/common/notifications/all.inc:759 msgid "^F2Superweapons have broken down" msgstr "^F2Super-armele s-au epuizat" -#: qcsrc/common/notifications/all.inc:759 +#: qcsrc/common/notifications/all.inc:760 msgid "^F2Superweapons have been lost" msgstr "^F2Super-armele au fost pierdute" -#: qcsrc/common/notifications/all.inc:760 +#: qcsrc/common/notifications/all.inc:761 msgid "^F2You now have a superweapon" msgstr "^F2Acum ai o super-armă" -#: qcsrc/common/notifications/all.inc:762 +#: qcsrc/common/notifications/all.inc:763 msgid "^K1Changing to ^TC^TT^K1 in ^COUNT" msgstr "^K1Schimbare la ^TC^TT^K1 în ^COUNT" -#: qcsrc/common/notifications/all.inc:763 +#: qcsrc/common/notifications/all.inc:764 msgid "^K1Changing team in ^COUNT" msgstr "^K1Schimbarea echipei în ^COUNT" -#: qcsrc/common/notifications/all.inc:764 +#: qcsrc/common/notifications/all.inc:765 msgid "^K1Spectating in ^COUNT" msgstr "^K1Spectator în ^COUNT" -#: qcsrc/common/notifications/all.inc:765 +#: qcsrc/common/notifications/all.inc:766 msgid "^K1Suicide in ^COUNT" msgstr "^K1Sinucidere în ^COUNT" -#: qcsrc/common/notifications/all.inc:767 +#: qcsrc/common/notifications/all.inc:768 msgid "^F4Timeout begins in ^COUNT" msgstr "^F4Pauza începe în ^COUNT" -#: qcsrc/common/notifications/all.inc:768 +#: qcsrc/common/notifications/all.inc:769 msgid "^F4Timeout ends in ^COUNT" msgstr "^F4Pauza se termină în ^COUNT" -#: qcsrc/common/notifications/all.inc:770 +#: qcsrc/common/notifications/all.inc:771 msgid "^K1Cannot join given minigame session!" msgstr "^K1Nu poți participa la sesiunea de mini-joc selectată!" -#: qcsrc/common/notifications/all.inc:772 +#: qcsrc/common/notifications/all.inc:773 #, c-format msgid "^BGPress ^F2%s^BG to enter/exit the vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:773 +#: qcsrc/common/notifications/all.inc:774 #, c-format msgid "^BGPress ^F2%s^BG to enter the vehicle gunner" msgstr "" -#: qcsrc/common/notifications/all.inc:774 +#: qcsrc/common/notifications/all.inc:775 #, c-format msgid "^BGPress ^F2%s^BG to steal this vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:775 +#: qcsrc/common/notifications/all.inc:776 msgid "" "^F2The enemy is stealing one of your vehicles!\n" "^F4Stop them!" @@ -4430,7 +4436,7 @@ msgstr "" "^F2Inamicul îți ciordește un vehicul!\n" "^F4Oprește-l!" -#: qcsrc/common/notifications/all.inc:776 +#: qcsrc/common/notifications/all.inc:777 msgid "^F2Intruder detected, disabling shields!" msgstr "" diff --git a/common.ru.po b/common.ru.po index bdd5548a55..aa64eff630 100644 --- a/common.ru.po +++ b/common.ru.po @@ -20,9 +20,9 @@ msgid "" msgstr "" "Project-Id-Version: Xonotic\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-06 07:22+0100\n" -"PO-Revision-Date: 2022-03-06 16:35+0000\n" -"Last-Translator: Andrei Stepanov\n" +"POT-Creation-Date: 2022-03-27 07:22+0200\n" +"PO-Revision-Date: 2013-09-12 16:53+0000\n" +"Last-Translator: Andrei Stepanov, 2014-2022\n" "Language-Team: Russian (http://www.transifex.com/team-xonotic/xonotic/" "language/ru/)\n" "Language: ru\n" @@ -232,270 +232,270 @@ msgstr "^3ALT ^7+ ^3СТРЕЛКИ ^7для точной настройки." msgid "Player %d" msgstr "Игрок %d" -#: qcsrc/client/hud/panel/quickmenu.qc:617 -#: qcsrc/client/hud/panel/quickmenu.qc:619 +#: qcsrc/client/hud/panel/quickmenu.qc:608 +#: qcsrc/client/hud/panel/quickmenu.qc:610 #, c-format msgid "Submenu%d" msgstr "Подменю%d" -#: qcsrc/client/hud/panel/quickmenu.qc:624 +#: qcsrc/client/hud/panel/quickmenu.qc:615 #, c-format msgid "Command%d" msgstr "Команда%d" -#: qcsrc/client/hud/panel/quickmenu.qc:650 +#: qcsrc/client/hud/panel/quickmenu.qc:641 msgid "Continue..." msgstr "Продолжить…" -#: qcsrc/client/hud/panel/quickmenu.qc:807 -#: qcsrc/client/hud/panel/quickmenu.qc:814 +#: qcsrc/client/hud/panel/quickmenu.qc:798 +#: qcsrc/client/hud/panel/quickmenu.qc:805 msgid "Chat" msgstr "Чат" -#: qcsrc/client/hud/panel/quickmenu.qc:808 +#: qcsrc/client/hud/panel/quickmenu.qc:799 msgid "QMCMD^Send public message to" msgstr "QMCMD^Отправить публичное сообщение" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^:-) / nice one" msgstr "QMCMD^:-) / хорош" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^nice one" msgstr "QMCMD^хорош" -#: qcsrc/client/hud/panel/quickmenu.qc:810 +#: qcsrc/client/hud/panel/quickmenu.qc:801 msgid "QMCMD^good game" msgstr "QMCMD^хорошая игра" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck" msgstr "QMCMD^привет / удачной игры" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck and have fun" msgstr "QMCMD^привет / удачи и приятной игры" -#: qcsrc/client/hud/panel/quickmenu.qc:813 +#: qcsrc/client/hud/panel/quickmenu.qc:804 msgid "QMCMD^Send in English" msgstr "QMCMD^Отправить на английском" -#: qcsrc/client/hud/panel/quickmenu.qc:818 -#: qcsrc/client/hud/panel/quickmenu.qc:834 +#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:825 msgid "QMCMD^Team chat" msgstr "QMCMD^Командный чат" -#: qcsrc/client/hud/panel/quickmenu.qc:819 +#: qcsrc/client/hud/panel/quickmenu.qc:810 msgid "QMCMD^strength soon" msgstr "QMCMD^скоро сила" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item %x^7 (l:%y^7)" msgstr "QMCMD^есть предмет %x^7 (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item, icon" msgstr "QMCMD^есть предмет, иконка" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item (l:%l^7)" msgstr "QMCMD^взял предмет (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item, icon" msgstr "QMCMD^взял предмет, иконка" -#: qcsrc/client/hud/panel/quickmenu.qc:822 +#: qcsrc/client/hud/panel/quickmenu.qc:813 msgid "QMCMD^negative" msgstr "QMCMD^отклонено" -#: qcsrc/client/hud/panel/quickmenu.qc:823 +#: qcsrc/client/hud/panel/quickmenu.qc:814 msgid "QMCMD^positive" msgstr "QMCMD^принято" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^нужна помощь (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help, icon" msgstr "QMCMD^нужна помощь, иконка" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen (l:%y^7)" msgstr "QMCMD^замечен враг (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen, icon" msgstr "QMCMD^замечен враг, иконка" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen (l:%y^7)" msgstr "QMCMD^замечен флаг (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen, icon" msgstr "QMCMD^замечен флаг, иконка" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^защищаюсь (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending, icon" msgstr "QMCMD^защищаюсь, иконка" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^патрулирую (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming, icon" msgstr "QMCMD^патрулирую, иконка" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^атакую (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking, icon" msgstr "QMCMD^атакую, иконка" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier (l:%y^7)" msgstr "QMCMD^убил флагоносца (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier, icon" msgstr "QMCMD^убил флагоносца, иконка" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 #, c-format msgid "QMCMD^dropped flag (l:%d^7)" msgstr "QMCMD^сбросил флаг (l:%d^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 msgid "QMCMD^dropped flag, icon" msgstr "QMCMD^сбросил флаг, иконка" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^drop weapon, icon" msgstr "QMCMD^сбросьте оружие, иконка" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^dropped weapon %w^7 (l:%l^7)" msgstr "QMCMD^сбросил оружие %w^7 (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^drop flag/key, icon" msgstr "QMCMD^сбросьте флаг/ключ, иконка" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^dropped flag/key %w^7 (l:%l^7)" msgstr "QMCMD^сбросил флаг/ключ %w^7 (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:837 +#: qcsrc/client/hud/panel/quickmenu.qc:828 msgid "QMCMD^Send private message to" msgstr "QMCMD^Отправить личное сообщение" -#: qcsrc/client/hud/panel/quickmenu.qc:839 -#: qcsrc/client/hud/panel/quickmenu.qc:869 +#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:860 msgid "QMCMD^Settings" msgstr "QMCMD^Настройки" -#: qcsrc/client/hud/panel/quickmenu.qc:840 -#: qcsrc/client/hud/panel/quickmenu.qc:847 +#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:838 msgid "QMCMD^View/HUD settings" msgstr "QMCMD^Настройки вида/интерфейса" -#: qcsrc/client/hud/panel/quickmenu.qc:841 +#: qcsrc/client/hud/panel/quickmenu.qc:832 msgid "QMCMD^3rd person view" msgstr "QMCMD^Вид от третьего лица" -#: qcsrc/client/hud/panel/quickmenu.qc:842 +#: qcsrc/client/hud/panel/quickmenu.qc:833 msgid "QMCMD^Player models like mine" msgstr "QMCMD^Модели игроков такие же как у меня" -#: qcsrc/client/hud/panel/quickmenu.qc:843 +#: qcsrc/client/hud/panel/quickmenu.qc:834 msgid "QMCMD^Names above players" msgstr "QMCMD^Имена над игроками" -#: qcsrc/client/hud/panel/quickmenu.qc:844 +#: qcsrc/client/hud/panel/quickmenu.qc:835 msgid "QMCMD^Crosshair per weapon" msgstr "QMCMD^Прицел для каждого оружия" -#: qcsrc/client/hud/panel/quickmenu.qc:845 +#: qcsrc/client/hud/panel/quickmenu.qc:836 msgid "QMCMD^FPS" msgstr "QMCMD^Счётчик кадров (FPS)" -#: qcsrc/client/hud/panel/quickmenu.qc:846 +#: qcsrc/client/hud/panel/quickmenu.qc:837 msgid "QMCMD^Net graph" msgstr "QMCMD^График сетевой активности" -#: qcsrc/client/hud/panel/quickmenu.qc:849 -#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:840 +#: qcsrc/client/hud/panel/quickmenu.qc:843 msgid "QMCMD^Sound settings" msgstr "QMCMD^Настройки звука" -#: qcsrc/client/hud/panel/quickmenu.qc:850 +#: qcsrc/client/hud/panel/quickmenu.qc:841 msgid "QMCMD^Hit sound" msgstr "QMCMD^Звук попадания" -#: qcsrc/client/hud/panel/quickmenu.qc:851 +#: qcsrc/client/hud/panel/quickmenu.qc:842 msgid "QMCMD^Chat sound" msgstr "QMCMD^Звук чата" -#: qcsrc/client/hud/panel/quickmenu.qc:856 +#: qcsrc/client/hud/panel/quickmenu.qc:847 msgid "QMCMD^Change spectator camera" msgstr "QMCMD^Сменить камеру зрителя" -#: qcsrc/client/hud/panel/quickmenu.qc:861 -#: qcsrc/client/hud/panel/quickmenu.qc:865 +#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:856 msgid "QMCMD^Observer camera" msgstr "QMCMD^Камера свободного обзора" -#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:853 msgid "QMCMD^Increase speed" msgstr "QMCMD^Увеличить скорость" -#: qcsrc/client/hud/panel/quickmenu.qc:863 +#: qcsrc/client/hud/panel/quickmenu.qc:854 msgid "QMCMD^Decrease speed" msgstr "QMCMD^Уменьшить скорость" -#: qcsrc/client/hud/panel/quickmenu.qc:864 +#: qcsrc/client/hud/panel/quickmenu.qc:855 msgid "QMCMD^Wall collision" msgstr "QMCMD^Столкновение со стенами" -#: qcsrc/client/hud/panel/quickmenu.qc:868 +#: qcsrc/client/hud/panel/quickmenu.qc:859 msgid "QMCMD^Fullscreen" msgstr "QMCMD^На весь экран" -#: qcsrc/client/hud/panel/quickmenu.qc:871 -#: qcsrc/client/hud/panel/quickmenu.qc:881 +#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:872 msgid "QMCMD^Call a vote" msgstr "QMCMD^Запустить голосование" -#: qcsrc/client/hud/panel/quickmenu.qc:872 +#: qcsrc/client/hud/panel/quickmenu.qc:863 msgid "QMCMD^Restart the map" msgstr "QMCMD^Перезапустить арену" -#: qcsrc/client/hud/panel/quickmenu.qc:873 +#: qcsrc/client/hud/panel/quickmenu.qc:864 msgid "QMCMD^End match" msgstr "QMCMD^Закончить матч" -#: qcsrc/client/hud/panel/quickmenu.qc:876 +#: qcsrc/client/hud/panel/quickmenu.qc:867 msgid "QMCMD^Reduce match time" msgstr "QMCMD^Уменьшить время матча" -#: qcsrc/client/hud/panel/quickmenu.qc:877 +#: qcsrc/client/hud/panel/quickmenu.qc:868 msgid "QMCMD^Extend match time" msgstr "QMCMD^Увеличить время матча" -#: qcsrc/client/hud/panel/quickmenu.qc:880 +#: qcsrc/client/hud/panel/quickmenu.qc:871 msgid "QMCMD^Shuffle teams" msgstr "QMCMD^Перемешать команды" -#: qcsrc/client/hud/panel/quickmenu.qc:885 +#: qcsrc/client/hud/panel/quickmenu.qc:876 msgid "QMCMD^Spectate a player" msgstr "QMCMD^Наблюдать за игроком" @@ -1268,14 +1268,14 @@ msgstr "Уничтожьте вражескую команду и победит #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 #: qcsrc/menu/xonotic/dialog_multiplayer_create.qc:105 msgid "Frag limit:" msgstr "Предел фрагов:" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 msgid "The amount of frags needed before the match will end" msgstr "Количество фрагов, необходимых для завершения матча" @@ -3348,7 +3348,7 @@ msgid "^BG%s%s^K1 was riddled full of holes by ^BG%s^K1's Machine Gun%s%s" msgstr "^BG%s%s^K1 был изрешечён из Пулемёта ^BG%s^K1%s%s" #: qcsrc/common/notifications/all.inc:472 -#: qcsrc/common/notifications/all.inc:778 +#: qcsrc/common/notifications/all.inc:779 #, c-format msgid "^BGYou cannot place more than ^F2%s^BG mines at a time" msgstr "^BGВы не можете разместить больше чем ^F2%s^BG мин одновременно" @@ -4158,7 +4158,16 @@ msgstr "^BGВы держите ^TC^TT Ключ" msgid "^BGYou have no lives left, you must wait until the next match" msgstr "^BGУ вас не осталось жизней, подождите до следующего матча" -#: qcsrc/common/notifications/all.inc:707 +#: qcsrc/common/notifications/all.inc:706 +msgid "" +"^F4WARNING:^BG you can't rejoin this match after spectating.\n" +"Use the same command again to spectate anyway." +msgstr "" +"^F4ВНИМАНИЕ:^BG вы не сможете заново подсоединиться к матчу после перехода в " +"зрители.\n" +"Используйте ту же команду ещё раз, чтобы стать зрителем в любом случае." + +#: qcsrc/common/notifications/all.inc:708 #, c-format msgid "" "^BGWaiting for players to join...\n" @@ -4167,43 +4176,43 @@ msgstr "" "^BGОжидание игроков…\n" "%s — требуются активные игроки" -#: qcsrc/common/notifications/all.inc:708 +#: qcsrc/common/notifications/all.inc:709 #, c-format msgid "^BGWaiting for %s player(s) to join..." msgstr "^BGОжидание присоединения %s игроков(а)…" -#: qcsrc/common/notifications/all.inc:710 +#: qcsrc/common/notifications/all.inc:711 msgid "^BGYour weapon has been downgraded until you find some ammo!" msgstr "^BGВаше оружие ослаблено до тех пор, пока вы не найдёте патроны!" -#: qcsrc/common/notifications/all.inc:711 +#: qcsrc/common/notifications/all.inc:712 msgid "^F4^COUNT^BG left to find some ammo!" msgstr "^F4^COUNT^BG осталось на поиск патронов!" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo or you'll be dead in ^F4^COUNT^BG!" msgstr "^BGНайдите патроны, иначе вы погибните через ^F4^COUNT^BG!" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo! ^F4^COUNT^BG left!" msgstr "^BGРаздобудьте патронов! Осталось ^F4^COUNT^BG!" -#: qcsrc/common/notifications/all.inc:713 +#: qcsrc/common/notifications/all.inc:714 #, c-format msgid "^F2Extra lives remaining: ^K1%s" msgstr "^F2Осталось дополнительных жизней: ^K1%s" -#: qcsrc/common/notifications/all.inc:715 qcsrc/menu/xonotic/campaign.qc:244 +#: qcsrc/common/notifications/all.inc:716 qcsrc/menu/xonotic/campaign.qc:244 #, c-format msgid "Level %s: " msgstr "Уровень %s:" -#: qcsrc/common/notifications/all.inc:715 +#: qcsrc/common/notifications/all.inc:716 #, c-format msgid "^BGPress ^F2%s^BG to enter the game" msgstr "^BGНажмите ^F2%s^BG для входа в игру" -#: qcsrc/common/notifications/all.inc:718 +#: qcsrc/common/notifications/all.inc:719 #, c-format msgid "" "^F2^COUNT^BG until weapon change...\n" @@ -4212,34 +4221,34 @@ msgstr "" "^F2^COUNT^BG до смены оружия…\n" "Следующее оружие: ^F1%s" -#: qcsrc/common/notifications/all.inc:719 +#: qcsrc/common/notifications/all.inc:720 #, c-format msgid "^F2Active weapon: ^F1%s" msgstr "^F2Текущее оружие: ^F1%s" -#: qcsrc/common/notifications/all.inc:721 +#: qcsrc/common/notifications/all.inc:722 #, c-format msgid "^BGYou captured %s^BG control point" msgstr "^BGВы захватили контрольную точку %s^BG" -#: qcsrc/common/notifications/all.inc:722 +#: qcsrc/common/notifications/all.inc:723 msgid "^BGYou captured a control point" msgstr "^BGВы захватили контрольную точку" -#: qcsrc/common/notifications/all.inc:723 +#: qcsrc/common/notifications/all.inc:724 #, c-format msgid "^TC^TT^BG team captured %s^BG control point" msgstr "^BGКоманда ^TC^TT^BG захватила контрольную точку %s^BG" -#: qcsrc/common/notifications/all.inc:724 +#: qcsrc/common/notifications/all.inc:725 msgid "^TC^TT^BG team captured a control point" msgstr "Команда ^TC^TT^BG захватила контрольную точку" -#: qcsrc/common/notifications/all.inc:725 +#: qcsrc/common/notifications/all.inc:726 msgid "^BGThis control point currently cannot be captured" msgstr "^BGДанную контрольную точку нельзя захватить" -#: qcsrc/common/notifications/all.inc:726 +#: qcsrc/common/notifications/all.inc:727 msgid "" "^BGThe enemy generator cannot be destroyed yet\n" "^F2Capture some control points to unshield it" @@ -4247,11 +4256,11 @@ msgstr "" "^BGГенератор врага нельзя разрушить в данный момент\n" "^F2Захватите контрольные точки, чтобы снять с него щит" -#: qcsrc/common/notifications/all.inc:727 +#: qcsrc/common/notifications/all.inc:728 msgid "^BGThe ^TCenemy^BG generator is no longer shielded!" msgstr "^BGГенератор ^TCпротивника^BG потерял защиту!" -#: qcsrc/common/notifications/all.inc:728 +#: qcsrc/common/notifications/all.inc:729 msgid "" "^K1Your generator is NOT shielded!\n" "^BGRe-capture control points to shield it!" @@ -4259,17 +4268,17 @@ msgstr "" "^K1Ваш генератор без защиты\n" "^BGЗахватите контрольные точки, чтобы защитить его!" -#: qcsrc/common/notifications/all.inc:729 +#: qcsrc/common/notifications/all.inc:730 #, c-format msgid "^BGPress ^F2%s^BG to teleport" msgstr "^BGНажмите ^F2%s^BG для телепортации" -#: qcsrc/common/notifications/all.inc:730 +#: qcsrc/common/notifications/all.inc:731 #, c-format msgid "^BGTeleporting disabled for %s" msgstr "^BGТелепортация запрещена для %s" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep fragging until we have a winner!" @@ -4277,7 +4286,7 @@ msgstr "" "^F2Продолжаем играть в ^F4ОВЕРТАЙМЕ^F2!\n" "Убивайте противников, пока не определится победитель!" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep scoring until we have a winner!" @@ -4285,7 +4294,7 @@ msgstr "" "^F2Продолжаем играть в ^F4ОВЕРТАЙМЕ^F2!\n" "Зарабатывайте очки, пока не определится победитель!" -#: qcsrc/common/notifications/all.inc:733 +#: qcsrc/common/notifications/all.inc:734 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "\n" @@ -4299,7 +4308,7 @@ msgstr "" "Чем больше контрольных точек держит ваша команда,\n" "тем быстрее распадается генератор противника" -#: qcsrc/common/notifications/all.inc:734 +#: qcsrc/common/notifications/all.inc:735 #, c-format msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" @@ -4308,123 +4317,123 @@ msgstr "" "^F2Продолжаем играть в ^F4ОВЕРТАЙМЕ^F2!\n" "^BGК игровому времени добавлено ^F4%s^BG!" -#: qcsrc/common/notifications/all.inc:736 +#: qcsrc/common/notifications/all.inc:737 msgid "^K1In^BG-portal created" msgstr "^K1Входной ^BGпортал создан" -#: qcsrc/common/notifications/all.inc:737 +#: qcsrc/common/notifications/all.inc:738 msgid "^F3Out^BG-portal created" msgstr "^F3Выходной ^BGпортал создан" -#: qcsrc/common/notifications/all.inc:738 +#: qcsrc/common/notifications/all.inc:739 msgid "^F1Portal creation failed" msgstr "^F1Не удалось создать портал" -#: qcsrc/common/notifications/all.inc:740 +#: qcsrc/common/notifications/all.inc:741 msgid "^F2Strength infuses your weapons with devastating power" msgstr "^F2Сила наполняет ваше оружие разрушительной мощью" -#: qcsrc/common/notifications/all.inc:741 +#: qcsrc/common/notifications/all.inc:742 msgid "^F2Strength has worn off" msgstr "^F2Действие Силы закончилось" -#: qcsrc/common/notifications/all.inc:743 +#: qcsrc/common/notifications/all.inc:744 msgid "^F2Shield surrounds you" msgstr "^F2Вас окружает Щит" -#: qcsrc/common/notifications/all.inc:744 +#: qcsrc/common/notifications/all.inc:745 msgid "^F2Shield has worn off" msgstr "^F2Действие Щита закончилось" -#: qcsrc/common/notifications/all.inc:746 +#: qcsrc/common/notifications/all.inc:747 msgid "^F2You are on speed" msgstr "^F2Вы двигаетесь быстрее" -#: qcsrc/common/notifications/all.inc:747 +#: qcsrc/common/notifications/all.inc:748 msgid "^F2Speed has worn off" msgstr "^F2Действие Скорости закончилось" -#: qcsrc/common/notifications/all.inc:749 +#: qcsrc/common/notifications/all.inc:750 msgid "^F2You are invisible" msgstr "^F2Вы невидимы" -#: qcsrc/common/notifications/all.inc:750 +#: qcsrc/common/notifications/all.inc:751 msgid "^F2Invisibility has worn off" msgstr "^F2Действие Невидимости закончилось" -#: qcsrc/common/notifications/all.inc:752 +#: qcsrc/common/notifications/all.inc:753 msgid "^F2The race is over, finish your lap!" msgstr "^F2Гонка окончена, завершите ваш круг!" -#: qcsrc/common/notifications/all.inc:754 +#: qcsrc/common/notifications/all.inc:755 msgid "^BGSequence completed!" msgstr "^BGЗадача выполнена!" -#: qcsrc/common/notifications/all.inc:755 +#: qcsrc/common/notifications/all.inc:756 msgid "^BGThere are more to go..." msgstr "^BGВпереди ещё много чего…" -#: qcsrc/common/notifications/all.inc:756 +#: qcsrc/common/notifications/all.inc:757 #, c-format msgid "^BGOnly %s^BG more to go..." msgstr "^BGОсталось всего лишь %s^BG…" -#: qcsrc/common/notifications/all.inc:758 +#: qcsrc/common/notifications/all.inc:759 msgid "^F2Superweapons have broken down" msgstr "^F2Супероружие разрушилось" -#: qcsrc/common/notifications/all.inc:759 +#: qcsrc/common/notifications/all.inc:760 msgid "^F2Superweapons have been lost" msgstr "^F2Супероружие было потеряно" -#: qcsrc/common/notifications/all.inc:760 +#: qcsrc/common/notifications/all.inc:761 msgid "^F2You now have a superweapon" msgstr "^F2Вы получили супероружие" -#: qcsrc/common/notifications/all.inc:762 +#: qcsrc/common/notifications/all.inc:763 msgid "^K1Changing to ^TC^TT^K1 in ^COUNT" msgstr "^K1Переход в ^TC^TT^K1 через ^COUNT" -#: qcsrc/common/notifications/all.inc:763 +#: qcsrc/common/notifications/all.inc:764 msgid "^K1Changing team in ^COUNT" msgstr "^K1Смена команды через ^COUNT" -#: qcsrc/common/notifications/all.inc:764 +#: qcsrc/common/notifications/all.inc:765 msgid "^K1Spectating in ^COUNT" msgstr "^K1Вы станете зрителем через ^COUNT" -#: qcsrc/common/notifications/all.inc:765 +#: qcsrc/common/notifications/all.inc:766 msgid "^K1Suicide in ^COUNT" msgstr "^K1Вы совершите самоубийство через ^COUNT" -#: qcsrc/common/notifications/all.inc:767 +#: qcsrc/common/notifications/all.inc:768 msgid "^F4Timeout begins in ^COUNT" msgstr "^F4Тайм-аут начнётся через ^COUNT" -#: qcsrc/common/notifications/all.inc:768 +#: qcsrc/common/notifications/all.inc:769 msgid "^F4Timeout ends in ^COUNT" msgstr "^F4Тайм-аут закончится через ^COUNT" -#: qcsrc/common/notifications/all.inc:770 +#: qcsrc/common/notifications/all.inc:771 msgid "^K1Cannot join given minigame session!" msgstr "^K1Невозможно присоединиться к данной сессии мини-игры!" -#: qcsrc/common/notifications/all.inc:772 +#: qcsrc/common/notifications/all.inc:773 #, c-format msgid "^BGPress ^F2%s^BG to enter/exit the vehicle" msgstr "^BGНажмите ^F2%s^BG, чтобы войти или выйти из транспорта" -#: qcsrc/common/notifications/all.inc:773 +#: qcsrc/common/notifications/all.inc:774 #, c-format msgid "^BGPress ^F2%s^BG to enter the vehicle gunner" msgstr "^BGНажмите ^F2%s^BG, чтобы стать пулемётчиком транспорта" -#: qcsrc/common/notifications/all.inc:774 +#: qcsrc/common/notifications/all.inc:775 #, c-format msgid "^BGPress ^F2%s^BG to steal this vehicle" msgstr "^BGНажмите ^F2%s^BG для кражи этого транспорта" -#: qcsrc/common/notifications/all.inc:775 +#: qcsrc/common/notifications/all.inc:776 msgid "" "^F2The enemy is stealing one of your vehicles!\n" "^F4Stop them!" @@ -4432,7 +4441,7 @@ msgstr "" "^F2Враг угнал одну из ваших машин!\n" "^F4Остановите его!" -#: qcsrc/common/notifications/all.inc:776 +#: qcsrc/common/notifications/all.inc:777 msgid "^F2Intruder detected, disabling shields!" msgstr "^F2Захватчик обнаружен, отключение щитов!" diff --git a/common.sq.po b/common.sq.po index 1147e13a1b..c5a6066f2b 100644 --- a/common.sq.po +++ b/common.sq.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: Xonotic\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-06 07:22+0100\n" -"PO-Revision-Date: 2022-03-06 06:22+0000\n" -"Last-Translator: divVerent \n" +"POT-Creation-Date: 2022-03-27 07:22+0200\n" +"PO-Revision-Date: 2013-09-12 16:53+0000\n" +"Last-Translator: FULL NAME \n" "Language-Team: Albanian (http://www.transifex.com/team-xonotic/xonotic/" "language/sq/)\n" "Language: sq\n" @@ -215,270 +215,270 @@ msgstr "" msgid "Player %d" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:617 -#: qcsrc/client/hud/panel/quickmenu.qc:619 +#: qcsrc/client/hud/panel/quickmenu.qc:608 +#: qcsrc/client/hud/panel/quickmenu.qc:610 #, c-format msgid "Submenu%d" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:624 +#: qcsrc/client/hud/panel/quickmenu.qc:615 #, c-format msgid "Command%d" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:650 +#: qcsrc/client/hud/panel/quickmenu.qc:641 msgid "Continue..." msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:807 -#: qcsrc/client/hud/panel/quickmenu.qc:814 +#: qcsrc/client/hud/panel/quickmenu.qc:798 +#: qcsrc/client/hud/panel/quickmenu.qc:805 msgid "Chat" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:808 +#: qcsrc/client/hud/panel/quickmenu.qc:799 msgid "QMCMD^Send public message to" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^:-) / nice one" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^nice one" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:810 +#: qcsrc/client/hud/panel/quickmenu.qc:801 msgid "QMCMD^good game" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck and have fun" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:813 +#: qcsrc/client/hud/panel/quickmenu.qc:804 msgid "QMCMD^Send in English" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:818 -#: qcsrc/client/hud/panel/quickmenu.qc:834 +#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:825 msgid "QMCMD^Team chat" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:819 +#: qcsrc/client/hud/panel/quickmenu.qc:810 msgid "QMCMD^strength soon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item %x^7 (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:822 +#: qcsrc/client/hud/panel/quickmenu.qc:813 msgid "QMCMD^negative" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:823 +#: qcsrc/client/hud/panel/quickmenu.qc:814 msgid "QMCMD^positive" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 #, c-format msgid "QMCMD^dropped flag (l:%d^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 msgid "QMCMD^dropped flag, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^drop weapon, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^dropped weapon %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^drop flag/key, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^dropped flag/key %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:837 +#: qcsrc/client/hud/panel/quickmenu.qc:828 msgid "QMCMD^Send private message to" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:839 -#: qcsrc/client/hud/panel/quickmenu.qc:869 +#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:860 msgid "QMCMD^Settings" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:840 -#: qcsrc/client/hud/panel/quickmenu.qc:847 +#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:838 msgid "QMCMD^View/HUD settings" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:841 +#: qcsrc/client/hud/panel/quickmenu.qc:832 msgid "QMCMD^3rd person view" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:842 +#: qcsrc/client/hud/panel/quickmenu.qc:833 msgid "QMCMD^Player models like mine" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:843 +#: qcsrc/client/hud/panel/quickmenu.qc:834 msgid "QMCMD^Names above players" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:844 +#: qcsrc/client/hud/panel/quickmenu.qc:835 msgid "QMCMD^Crosshair per weapon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:845 +#: qcsrc/client/hud/panel/quickmenu.qc:836 msgid "QMCMD^FPS" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:846 +#: qcsrc/client/hud/panel/quickmenu.qc:837 msgid "QMCMD^Net graph" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:849 -#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:840 +#: qcsrc/client/hud/panel/quickmenu.qc:843 msgid "QMCMD^Sound settings" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:850 +#: qcsrc/client/hud/panel/quickmenu.qc:841 msgid "QMCMD^Hit sound" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:851 +#: qcsrc/client/hud/panel/quickmenu.qc:842 msgid "QMCMD^Chat sound" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:856 +#: qcsrc/client/hud/panel/quickmenu.qc:847 msgid "QMCMD^Change spectator camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:861 -#: qcsrc/client/hud/panel/quickmenu.qc:865 +#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:856 msgid "QMCMD^Observer camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:853 msgid "QMCMD^Increase speed" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:863 +#: qcsrc/client/hud/panel/quickmenu.qc:854 msgid "QMCMD^Decrease speed" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:864 +#: qcsrc/client/hud/panel/quickmenu.qc:855 msgid "QMCMD^Wall collision" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:868 +#: qcsrc/client/hud/panel/quickmenu.qc:859 msgid "QMCMD^Fullscreen" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:871 -#: qcsrc/client/hud/panel/quickmenu.qc:881 +#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:872 msgid "QMCMD^Call a vote" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:872 +#: qcsrc/client/hud/panel/quickmenu.qc:863 msgid "QMCMD^Restart the map" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:873 +#: qcsrc/client/hud/panel/quickmenu.qc:864 msgid "QMCMD^End match" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:876 +#: qcsrc/client/hud/panel/quickmenu.qc:867 msgid "QMCMD^Reduce match time" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:877 +#: qcsrc/client/hud/panel/quickmenu.qc:868 msgid "QMCMD^Extend match time" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:880 +#: qcsrc/client/hud/panel/quickmenu.qc:871 msgid "QMCMD^Shuffle teams" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:885 +#: qcsrc/client/hud/panel/quickmenu.qc:876 msgid "QMCMD^Spectate a player" msgstr "" @@ -1227,14 +1227,14 @@ msgstr "" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 #: qcsrc/menu/xonotic/dialog_multiplayer_create.qc:105 msgid "Frag limit:" msgstr "" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 msgid "The amount of frags needed before the match will end" msgstr "" @@ -3265,7 +3265,7 @@ msgid "^BG%s%s^K1 was riddled full of holes by ^BG%s^K1's Machine Gun%s%s" msgstr "" #: qcsrc/common/notifications/all.inc:472 -#: qcsrc/common/notifications/all.inc:778 +#: qcsrc/common/notifications/all.inc:779 #, c-format msgid "^BGYou cannot place more than ^F2%s^BG mines at a time" msgstr "" @@ -4043,122 +4043,128 @@ msgstr "" msgid "^BGYou have no lives left, you must wait until the next match" msgstr "" -#: qcsrc/common/notifications/all.inc:707 +#: qcsrc/common/notifications/all.inc:706 +msgid "" +"^F4WARNING:^BG you can't rejoin this match after spectating.\n" +"Use the same command again to spectate anyway." +msgstr "" + +#: qcsrc/common/notifications/all.inc:708 #, c-format msgid "" "^BGWaiting for players to join...\n" "Need active players for: %s" msgstr "" -#: qcsrc/common/notifications/all.inc:708 +#: qcsrc/common/notifications/all.inc:709 #, c-format msgid "^BGWaiting for %s player(s) to join..." msgstr "" -#: qcsrc/common/notifications/all.inc:710 +#: qcsrc/common/notifications/all.inc:711 msgid "^BGYour weapon has been downgraded until you find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:711 +#: qcsrc/common/notifications/all.inc:712 msgid "^F4^COUNT^BG left to find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo or you'll be dead in ^F4^COUNT^BG!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo! ^F4^COUNT^BG left!" msgstr "" -#: qcsrc/common/notifications/all.inc:713 +#: qcsrc/common/notifications/all.inc:714 #, c-format msgid "^F2Extra lives remaining: ^K1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:715 qcsrc/menu/xonotic/campaign.qc:244 +#: qcsrc/common/notifications/all.inc:716 qcsrc/menu/xonotic/campaign.qc:244 #, c-format msgid "Level %s: " msgstr "" -#: qcsrc/common/notifications/all.inc:715 +#: qcsrc/common/notifications/all.inc:716 #, c-format msgid "^BGPress ^F2%s^BG to enter the game" msgstr "" -#: qcsrc/common/notifications/all.inc:718 +#: qcsrc/common/notifications/all.inc:719 #, c-format msgid "" "^F2^COUNT^BG until weapon change...\n" "Next weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:719 +#: qcsrc/common/notifications/all.inc:720 #, c-format msgid "^F2Active weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:721 +#: qcsrc/common/notifications/all.inc:722 #, c-format msgid "^BGYou captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:722 +#: qcsrc/common/notifications/all.inc:723 msgid "^BGYou captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:723 +#: qcsrc/common/notifications/all.inc:724 #, c-format msgid "^TC^TT^BG team captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:724 +#: qcsrc/common/notifications/all.inc:725 msgid "^TC^TT^BG team captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:725 +#: qcsrc/common/notifications/all.inc:726 msgid "^BGThis control point currently cannot be captured" msgstr "" -#: qcsrc/common/notifications/all.inc:726 +#: qcsrc/common/notifications/all.inc:727 msgid "" "^BGThe enemy generator cannot be destroyed yet\n" "^F2Capture some control points to unshield it" msgstr "" -#: qcsrc/common/notifications/all.inc:727 +#: qcsrc/common/notifications/all.inc:728 msgid "^BGThe ^TCenemy^BG generator is no longer shielded!" msgstr "" -#: qcsrc/common/notifications/all.inc:728 +#: qcsrc/common/notifications/all.inc:729 msgid "" "^K1Your generator is NOT shielded!\n" "^BGRe-capture control points to shield it!" msgstr "" -#: qcsrc/common/notifications/all.inc:729 +#: qcsrc/common/notifications/all.inc:730 #, c-format msgid "^BGPress ^F2%s^BG to teleport" msgstr "" -#: qcsrc/common/notifications/all.inc:730 +#: qcsrc/common/notifications/all.inc:731 #, c-format msgid "^BGTeleporting disabled for %s" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep fragging until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep scoring until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:733 +#: qcsrc/common/notifications/all.inc:734 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "\n" @@ -4167,136 +4173,136 @@ msgid "" "the faster the enemy generator decays" msgstr "" -#: qcsrc/common/notifications/all.inc:734 +#: qcsrc/common/notifications/all.inc:735 #, c-format msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "^BGAdded ^F4%s^BG to the game!" msgstr "" -#: qcsrc/common/notifications/all.inc:736 +#: qcsrc/common/notifications/all.inc:737 msgid "^K1In^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:737 +#: qcsrc/common/notifications/all.inc:738 msgid "^F3Out^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:738 +#: qcsrc/common/notifications/all.inc:739 msgid "^F1Portal creation failed" msgstr "" -#: qcsrc/common/notifications/all.inc:740 +#: qcsrc/common/notifications/all.inc:741 msgid "^F2Strength infuses your weapons with devastating power" msgstr "" -#: qcsrc/common/notifications/all.inc:741 +#: qcsrc/common/notifications/all.inc:742 msgid "^F2Strength has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:743 +#: qcsrc/common/notifications/all.inc:744 msgid "^F2Shield surrounds you" msgstr "" -#: qcsrc/common/notifications/all.inc:744 +#: qcsrc/common/notifications/all.inc:745 msgid "^F2Shield has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:746 +#: qcsrc/common/notifications/all.inc:747 msgid "^F2You are on speed" msgstr "" -#: qcsrc/common/notifications/all.inc:747 +#: qcsrc/common/notifications/all.inc:748 msgid "^F2Speed has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:749 +#: qcsrc/common/notifications/all.inc:750 msgid "^F2You are invisible" msgstr "" -#: qcsrc/common/notifications/all.inc:750 +#: qcsrc/common/notifications/all.inc:751 msgid "^F2Invisibility has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:752 +#: qcsrc/common/notifications/all.inc:753 msgid "^F2The race is over, finish your lap!" msgstr "" -#: qcsrc/common/notifications/all.inc:754 +#: qcsrc/common/notifications/all.inc:755 msgid "^BGSequence completed!" msgstr "" -#: qcsrc/common/notifications/all.inc:755 +#: qcsrc/common/notifications/all.inc:756 msgid "^BGThere are more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:756 +#: qcsrc/common/notifications/all.inc:757 #, c-format msgid "^BGOnly %s^BG more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:758 +#: qcsrc/common/notifications/all.inc:759 msgid "^F2Superweapons have broken down" msgstr "" -#: qcsrc/common/notifications/all.inc:759 +#: qcsrc/common/notifications/all.inc:760 msgid "^F2Superweapons have been lost" msgstr "" -#: qcsrc/common/notifications/all.inc:760 +#: qcsrc/common/notifications/all.inc:761 msgid "^F2You now have a superweapon" msgstr "" -#: qcsrc/common/notifications/all.inc:762 +#: qcsrc/common/notifications/all.inc:763 msgid "^K1Changing to ^TC^TT^K1 in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:763 +#: qcsrc/common/notifications/all.inc:764 msgid "^K1Changing team in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:764 +#: qcsrc/common/notifications/all.inc:765 msgid "^K1Spectating in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:765 +#: qcsrc/common/notifications/all.inc:766 msgid "^K1Suicide in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:767 +#: qcsrc/common/notifications/all.inc:768 msgid "^F4Timeout begins in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:768 +#: qcsrc/common/notifications/all.inc:769 msgid "^F4Timeout ends in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:770 +#: qcsrc/common/notifications/all.inc:771 msgid "^K1Cannot join given minigame session!" msgstr "" -#: qcsrc/common/notifications/all.inc:772 +#: qcsrc/common/notifications/all.inc:773 #, c-format msgid "^BGPress ^F2%s^BG to enter/exit the vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:773 +#: qcsrc/common/notifications/all.inc:774 #, c-format msgid "^BGPress ^F2%s^BG to enter the vehicle gunner" msgstr "" -#: qcsrc/common/notifications/all.inc:774 +#: qcsrc/common/notifications/all.inc:775 #, c-format msgid "^BGPress ^F2%s^BG to steal this vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:775 +#: qcsrc/common/notifications/all.inc:776 msgid "" "^F2The enemy is stealing one of your vehicles!\n" "^F4Stop them!" msgstr "" -#: qcsrc/common/notifications/all.inc:776 +#: qcsrc/common/notifications/all.inc:777 msgid "^F2Intruder detected, disabling shields!" msgstr "" diff --git a/common.sr.po b/common.sr.po index c6a5d15a62..94e063a53f 100644 --- a/common.sr.po +++ b/common.sr.po @@ -12,9 +12,10 @@ msgid "" msgstr "" "Project-Id-Version: Xonotic\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-06 07:22+0100\n" -"PO-Revision-Date: 2022-03-06 06:22+0000\n" -"Last-Translator: divVerent \n" +"POT-Creation-Date: 2022-03-27 07:22+0200\n" +"PO-Revision-Date: 2013-09-12 16:53+0000\n" +"Last-Translator: Марко М. Костић (Marko M. Kostić) , 2017,2019\n" "Language-Team: Serbian (http://www.transifex.com/team-xonotic/xonotic/" "language/sr/)\n" "Language: sr\n" @@ -223,270 +224,270 @@ msgstr "^3ALT ^7+ ^3ARROW KEYS ^7за тачнија прилагођавања. msgid "Player %d" msgstr "Играч %d" -#: qcsrc/client/hud/panel/quickmenu.qc:617 -#: qcsrc/client/hud/panel/quickmenu.qc:619 +#: qcsrc/client/hud/panel/quickmenu.qc:608 +#: qcsrc/client/hud/panel/quickmenu.qc:610 #, c-format msgid "Submenu%d" msgstr "Подмени%d" -#: qcsrc/client/hud/panel/quickmenu.qc:624 +#: qcsrc/client/hud/panel/quickmenu.qc:615 #, c-format msgid "Command%d" msgstr "Наредба%d" -#: qcsrc/client/hud/panel/quickmenu.qc:650 +#: qcsrc/client/hud/panel/quickmenu.qc:641 msgid "Continue..." msgstr "Настави..." -#: qcsrc/client/hud/panel/quickmenu.qc:807 -#: qcsrc/client/hud/panel/quickmenu.qc:814 +#: qcsrc/client/hud/panel/quickmenu.qc:798 +#: qcsrc/client/hud/panel/quickmenu.qc:805 msgid "Chat" msgstr "Ћаскање" -#: qcsrc/client/hud/panel/quickmenu.qc:808 +#: qcsrc/client/hud/panel/quickmenu.qc:799 msgid "QMCMD^Send public message to" msgstr "QMCMD^Пошаљи јавну поруку ка" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^:-) / nice one" msgstr "QMCMD^:-) / добар потез" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^nice one" msgstr "QMCMD^добар потез" -#: qcsrc/client/hud/panel/quickmenu.qc:810 +#: qcsrc/client/hud/panel/quickmenu.qc:801 msgid "QMCMD^good game" msgstr "QMCMD^добра игра" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck" msgstr "QMCMD^здраво / срећно" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck and have fun" msgstr "QMCMD^здраво / срећно и нека ти буде забавно" -#: qcsrc/client/hud/panel/quickmenu.qc:813 +#: qcsrc/client/hud/panel/quickmenu.qc:804 msgid "QMCMD^Send in English" msgstr "QMCMD^Пошаљи на енглеском" -#: qcsrc/client/hud/panel/quickmenu.qc:818 -#: qcsrc/client/hud/panel/quickmenu.qc:834 +#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:825 msgid "QMCMD^Team chat" msgstr "QMCMD^Екипно ћаскање" -#: qcsrc/client/hud/panel/quickmenu.qc:819 +#: qcsrc/client/hud/panel/quickmenu.qc:810 msgid "QMCMD^strength soon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item %x^7 (l:%y^7)" msgstr "QMCMD^бесплатна ствар %x^7 (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item, icon" msgstr "QMCMD^бесплатна ствар, иконица" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item (l:%l^7)" msgstr "QMCMD^узео ствар (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:822 +#: qcsrc/client/hud/panel/quickmenu.qc:813 msgid "QMCMD^negative" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:823 +#: qcsrc/client/hud/panel/quickmenu.qc:814 msgid "QMCMD^positive" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 #, c-format msgid "QMCMD^dropped flag (l:%d^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 msgid "QMCMD^dropped flag, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^drop weapon, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^dropped weapon %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^drop flag/key, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^dropped flag/key %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:837 +#: qcsrc/client/hud/panel/quickmenu.qc:828 msgid "QMCMD^Send private message to" msgstr "QMCMD^Пошаљите приватну поруку за" -#: qcsrc/client/hud/panel/quickmenu.qc:839 -#: qcsrc/client/hud/panel/quickmenu.qc:869 +#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:860 msgid "QMCMD^Settings" msgstr "QMCMD^Подешавања" -#: qcsrc/client/hud/panel/quickmenu.qc:840 -#: qcsrc/client/hud/panel/quickmenu.qc:847 +#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:838 msgid "QMCMD^View/HUD settings" msgstr "QMCMD^Преглед/ХУД подешавања" -#: qcsrc/client/hud/panel/quickmenu.qc:841 +#: qcsrc/client/hud/panel/quickmenu.qc:832 msgid "QMCMD^3rd person view" msgstr "QMCMD^Преглед из трећег лица" -#: qcsrc/client/hud/panel/quickmenu.qc:842 +#: qcsrc/client/hud/panel/quickmenu.qc:833 msgid "QMCMD^Player models like mine" msgstr "QMCMD^Модели играча као што је мој" -#: qcsrc/client/hud/panel/quickmenu.qc:843 +#: qcsrc/client/hud/panel/quickmenu.qc:834 msgid "QMCMD^Names above players" msgstr "QMCMD^Имена изнад играча" -#: qcsrc/client/hud/panel/quickmenu.qc:844 +#: qcsrc/client/hud/panel/quickmenu.qc:835 msgid "QMCMD^Crosshair per weapon" msgstr "QMCMD^Нишани по оружју" -#: qcsrc/client/hud/panel/quickmenu.qc:845 +#: qcsrc/client/hud/panel/quickmenu.qc:836 msgid "QMCMD^FPS" msgstr "QMCMD^КПС" -#: qcsrc/client/hud/panel/quickmenu.qc:846 +#: qcsrc/client/hud/panel/quickmenu.qc:837 msgid "QMCMD^Net graph" msgstr "QMCMD^График мреже" -#: qcsrc/client/hud/panel/quickmenu.qc:849 -#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:840 +#: qcsrc/client/hud/panel/quickmenu.qc:843 msgid "QMCMD^Sound settings" msgstr "QMCMD^Подешавања звука" -#: qcsrc/client/hud/panel/quickmenu.qc:850 +#: qcsrc/client/hud/panel/quickmenu.qc:841 msgid "QMCMD^Hit sound" msgstr "QMCMD^Звук погодка" -#: qcsrc/client/hud/panel/quickmenu.qc:851 +#: qcsrc/client/hud/panel/quickmenu.qc:842 msgid "QMCMD^Chat sound" msgstr "QMCMD^Звук ћаскања" -#: qcsrc/client/hud/panel/quickmenu.qc:856 +#: qcsrc/client/hud/panel/quickmenu.qc:847 msgid "QMCMD^Change spectator camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:861 -#: qcsrc/client/hud/panel/quickmenu.qc:865 +#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:856 msgid "QMCMD^Observer camera" msgstr "QMCMD^Посматрачка камера" -#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:853 msgid "QMCMD^Increase speed" msgstr "QMCMD^Повећај брзину" -#: qcsrc/client/hud/panel/quickmenu.qc:863 +#: qcsrc/client/hud/panel/quickmenu.qc:854 msgid "QMCMD^Decrease speed" msgstr "QMCMD^Смањи брзину" -#: qcsrc/client/hud/panel/quickmenu.qc:864 +#: qcsrc/client/hud/panel/quickmenu.qc:855 msgid "QMCMD^Wall collision" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:868 +#: qcsrc/client/hud/panel/quickmenu.qc:859 msgid "QMCMD^Fullscreen" msgstr "QMCMD^Преко целог екрана" -#: qcsrc/client/hud/panel/quickmenu.qc:871 -#: qcsrc/client/hud/panel/quickmenu.qc:881 +#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:872 msgid "QMCMD^Call a vote" msgstr "QMCMD^Затражи изгласавање" -#: qcsrc/client/hud/panel/quickmenu.qc:872 +#: qcsrc/client/hud/panel/quickmenu.qc:863 msgid "QMCMD^Restart the map" msgstr "QMCMD^Поново покрени мапу" -#: qcsrc/client/hud/panel/quickmenu.qc:873 +#: qcsrc/client/hud/panel/quickmenu.qc:864 msgid "QMCMD^End match" msgstr "QMCMD^Заврши игру" -#: qcsrc/client/hud/panel/quickmenu.qc:876 +#: qcsrc/client/hud/panel/quickmenu.qc:867 msgid "QMCMD^Reduce match time" msgstr "QMCMD^Смањи време трајања игре" -#: qcsrc/client/hud/panel/quickmenu.qc:877 +#: qcsrc/client/hud/panel/quickmenu.qc:868 msgid "QMCMD^Extend match time" msgstr "QMCMD^Повећај време трајања игре" -#: qcsrc/client/hud/panel/quickmenu.qc:880 +#: qcsrc/client/hud/panel/quickmenu.qc:871 msgid "QMCMD^Shuffle teams" msgstr "QMCMD^Промешај екипе" -#: qcsrc/client/hud/panel/quickmenu.qc:885 +#: qcsrc/client/hud/panel/quickmenu.qc:876 msgid "QMCMD^Spectate a player" msgstr "" @@ -1237,14 +1238,14 @@ msgstr "Убијте сваког из непријатељске екипе д #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 #: qcsrc/menu/xonotic/dialog_multiplayer_create.qc:105 msgid "Frag limit:" msgstr "Граница фреговања:" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 msgid "The amount of frags needed before the match will end" msgstr "Број фрегова потребних пре него што се игра заврши" @@ -3282,7 +3283,7 @@ msgid "^BG%s%s^K1 was riddled full of holes by ^BG%s^K1's Machine Gun%s%s" msgstr "" #: qcsrc/common/notifications/all.inc:472 -#: qcsrc/common/notifications/all.inc:778 +#: qcsrc/common/notifications/all.inc:779 #, c-format msgid "^BGYou cannot place more than ^F2%s^BG mines at a time" msgstr "" @@ -4060,122 +4061,128 @@ msgstr "" msgid "^BGYou have no lives left, you must wait until the next match" msgstr "" -#: qcsrc/common/notifications/all.inc:707 +#: qcsrc/common/notifications/all.inc:706 +msgid "" +"^F4WARNING:^BG you can't rejoin this match after spectating.\n" +"Use the same command again to spectate anyway." +msgstr "" + +#: qcsrc/common/notifications/all.inc:708 #, c-format msgid "" "^BGWaiting for players to join...\n" "Need active players for: %s" msgstr "" -#: qcsrc/common/notifications/all.inc:708 +#: qcsrc/common/notifications/all.inc:709 #, c-format msgid "^BGWaiting for %s player(s) to join..." msgstr "" -#: qcsrc/common/notifications/all.inc:710 +#: qcsrc/common/notifications/all.inc:711 msgid "^BGYour weapon has been downgraded until you find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:711 +#: qcsrc/common/notifications/all.inc:712 msgid "^F4^COUNT^BG left to find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo or you'll be dead in ^F4^COUNT^BG!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo! ^F4^COUNT^BG left!" msgstr "" -#: qcsrc/common/notifications/all.inc:713 +#: qcsrc/common/notifications/all.inc:714 #, c-format msgid "^F2Extra lives remaining: ^K1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:715 qcsrc/menu/xonotic/campaign.qc:244 +#: qcsrc/common/notifications/all.inc:716 qcsrc/menu/xonotic/campaign.qc:244 #, c-format msgid "Level %s: " msgstr "" -#: qcsrc/common/notifications/all.inc:715 +#: qcsrc/common/notifications/all.inc:716 #, c-format msgid "^BGPress ^F2%s^BG to enter the game" msgstr "" -#: qcsrc/common/notifications/all.inc:718 +#: qcsrc/common/notifications/all.inc:719 #, c-format msgid "" "^F2^COUNT^BG until weapon change...\n" "Next weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:719 +#: qcsrc/common/notifications/all.inc:720 #, c-format msgid "^F2Active weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:721 +#: qcsrc/common/notifications/all.inc:722 #, c-format msgid "^BGYou captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:722 +#: qcsrc/common/notifications/all.inc:723 msgid "^BGYou captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:723 +#: qcsrc/common/notifications/all.inc:724 #, c-format msgid "^TC^TT^BG team captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:724 +#: qcsrc/common/notifications/all.inc:725 msgid "^TC^TT^BG team captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:725 +#: qcsrc/common/notifications/all.inc:726 msgid "^BGThis control point currently cannot be captured" msgstr "" -#: qcsrc/common/notifications/all.inc:726 +#: qcsrc/common/notifications/all.inc:727 msgid "" "^BGThe enemy generator cannot be destroyed yet\n" "^F2Capture some control points to unshield it" msgstr "" -#: qcsrc/common/notifications/all.inc:727 +#: qcsrc/common/notifications/all.inc:728 msgid "^BGThe ^TCenemy^BG generator is no longer shielded!" msgstr "" -#: qcsrc/common/notifications/all.inc:728 +#: qcsrc/common/notifications/all.inc:729 msgid "" "^K1Your generator is NOT shielded!\n" "^BGRe-capture control points to shield it!" msgstr "" -#: qcsrc/common/notifications/all.inc:729 +#: qcsrc/common/notifications/all.inc:730 #, c-format msgid "^BGPress ^F2%s^BG to teleport" msgstr "" -#: qcsrc/common/notifications/all.inc:730 +#: qcsrc/common/notifications/all.inc:731 #, c-format msgid "^BGTeleporting disabled for %s" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep fragging until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep scoring until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:733 +#: qcsrc/common/notifications/all.inc:734 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "\n" @@ -4184,136 +4191,136 @@ msgid "" "the faster the enemy generator decays" msgstr "" -#: qcsrc/common/notifications/all.inc:734 +#: qcsrc/common/notifications/all.inc:735 #, c-format msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "^BGAdded ^F4%s^BG to the game!" msgstr "" -#: qcsrc/common/notifications/all.inc:736 +#: qcsrc/common/notifications/all.inc:737 msgid "^K1In^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:737 +#: qcsrc/common/notifications/all.inc:738 msgid "^F3Out^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:738 +#: qcsrc/common/notifications/all.inc:739 msgid "^F1Portal creation failed" msgstr "" -#: qcsrc/common/notifications/all.inc:740 +#: qcsrc/common/notifications/all.inc:741 msgid "^F2Strength infuses your weapons with devastating power" msgstr "" -#: qcsrc/common/notifications/all.inc:741 +#: qcsrc/common/notifications/all.inc:742 msgid "^F2Strength has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:743 +#: qcsrc/common/notifications/all.inc:744 msgid "^F2Shield surrounds you" msgstr "" -#: qcsrc/common/notifications/all.inc:744 +#: qcsrc/common/notifications/all.inc:745 msgid "^F2Shield has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:746 +#: qcsrc/common/notifications/all.inc:747 msgid "^F2You are on speed" msgstr "" -#: qcsrc/common/notifications/all.inc:747 +#: qcsrc/common/notifications/all.inc:748 msgid "^F2Speed has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:749 +#: qcsrc/common/notifications/all.inc:750 msgid "^F2You are invisible" msgstr "" -#: qcsrc/common/notifications/all.inc:750 +#: qcsrc/common/notifications/all.inc:751 msgid "^F2Invisibility has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:752 +#: qcsrc/common/notifications/all.inc:753 msgid "^F2The race is over, finish your lap!" msgstr "" -#: qcsrc/common/notifications/all.inc:754 +#: qcsrc/common/notifications/all.inc:755 msgid "^BGSequence completed!" msgstr "" -#: qcsrc/common/notifications/all.inc:755 +#: qcsrc/common/notifications/all.inc:756 msgid "^BGThere are more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:756 +#: qcsrc/common/notifications/all.inc:757 #, c-format msgid "^BGOnly %s^BG more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:758 +#: qcsrc/common/notifications/all.inc:759 msgid "^F2Superweapons have broken down" msgstr "" -#: qcsrc/common/notifications/all.inc:759 +#: qcsrc/common/notifications/all.inc:760 msgid "^F2Superweapons have been lost" msgstr "" -#: qcsrc/common/notifications/all.inc:760 +#: qcsrc/common/notifications/all.inc:761 msgid "^F2You now have a superweapon" msgstr "" -#: qcsrc/common/notifications/all.inc:762 +#: qcsrc/common/notifications/all.inc:763 msgid "^K1Changing to ^TC^TT^K1 in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:763 +#: qcsrc/common/notifications/all.inc:764 msgid "^K1Changing team in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:764 +#: qcsrc/common/notifications/all.inc:765 msgid "^K1Spectating in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:765 +#: qcsrc/common/notifications/all.inc:766 msgid "^K1Suicide in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:767 +#: qcsrc/common/notifications/all.inc:768 msgid "^F4Timeout begins in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:768 +#: qcsrc/common/notifications/all.inc:769 msgid "^F4Timeout ends in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:770 +#: qcsrc/common/notifications/all.inc:771 msgid "^K1Cannot join given minigame session!" msgstr "" -#: qcsrc/common/notifications/all.inc:772 +#: qcsrc/common/notifications/all.inc:773 #, c-format msgid "^BGPress ^F2%s^BG to enter/exit the vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:773 +#: qcsrc/common/notifications/all.inc:774 #, c-format msgid "^BGPress ^F2%s^BG to enter the vehicle gunner" msgstr "" -#: qcsrc/common/notifications/all.inc:774 +#: qcsrc/common/notifications/all.inc:775 #, c-format msgid "^BGPress ^F2%s^BG to steal this vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:775 +#: qcsrc/common/notifications/all.inc:776 msgid "" "^F2The enemy is stealing one of your vehicles!\n" "^F4Stop them!" msgstr "" -#: qcsrc/common/notifications/all.inc:776 +#: qcsrc/common/notifications/all.inc:777 msgid "^F2Intruder detected, disabling shields!" msgstr "" diff --git a/common.sv.po b/common.sv.po index 9b655213c8..5f43a7e7a6 100644 --- a/common.sv.po +++ b/common.sv.po @@ -3,14 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Gustaf Alhäll, 2022 +# Gustaf Alhäll, 2022 # Hanicef , 2021 msgid "" msgstr "" "Project-Id-Version: Xonotic\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-06 07:22+0100\n" -"PO-Revision-Date: 2022-03-06 06:22+0000\n" -"Last-Translator: divVerent \n" +"POT-Creation-Date: 2022-03-27 07:22+0200\n" +"PO-Revision-Date: 2013-09-12 16:53+0000\n" +"Last-Translator: Hanicef , 2021\n" "Language-Team: Swedish (http://www.transifex.com/team-xonotic/xonotic/" "language/sv/)\n" "Language: sv\n" @@ -22,7 +24,7 @@ msgstr "" #: qcsrc/client/hud/hud_config.qc:80 #, c-format msgid "^2Successfully exported to %s! (Note: It's saved in data/data/)" -msgstr "^2Lyckad export till %s! (Anmärkning: Den är sparad i data/data/)" +msgstr "^2Exporten till %s lyckades! (Anmärkning: Den är sparad i data/data/)" #: qcsrc/client/hud/hud_config.qc:84 #, c-format @@ -218,282 +220,282 @@ msgstr "^3ALT ^7+ ^3PILTANGENTER ^7för finjusteringar." msgid "Player %d" msgstr "Spelare %d" -#: qcsrc/client/hud/panel/quickmenu.qc:617 -#: qcsrc/client/hud/panel/quickmenu.qc:619 +#: qcsrc/client/hud/panel/quickmenu.qc:608 +#: qcsrc/client/hud/panel/quickmenu.qc:610 #, c-format msgid "Submenu%d" msgstr "Undermeny%d" -#: qcsrc/client/hud/panel/quickmenu.qc:624 +#: qcsrc/client/hud/panel/quickmenu.qc:615 #, c-format msgid "Command%d" msgstr "Kommando%d" -#: qcsrc/client/hud/panel/quickmenu.qc:650 +#: qcsrc/client/hud/panel/quickmenu.qc:641 msgid "Continue..." msgstr "Fortsätt..." -#: qcsrc/client/hud/panel/quickmenu.qc:807 -#: qcsrc/client/hud/panel/quickmenu.qc:814 +#: qcsrc/client/hud/panel/quickmenu.qc:798 +#: qcsrc/client/hud/panel/quickmenu.qc:805 msgid "Chat" msgstr "Chatt" -#: qcsrc/client/hud/panel/quickmenu.qc:808 +#: qcsrc/client/hud/panel/quickmenu.qc:799 msgid "QMCMD^Send public message to" msgstr "Skicka allmänt meddelande till" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^:-) / nice one" msgstr ":-) / snyggt gjort" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^nice one" msgstr "snyggt gjort" -#: qcsrc/client/hud/panel/quickmenu.qc:810 +#: qcsrc/client/hud/panel/quickmenu.qc:801 msgid "QMCMD^good game" msgstr "bra spel" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck" msgstr "hej / lycka till" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck and have fun" msgstr "hej / lycka till och ha skoj" -#: qcsrc/client/hud/panel/quickmenu.qc:813 +#: qcsrc/client/hud/panel/quickmenu.qc:804 msgid "QMCMD^Send in English" msgstr "Skicka på engelska" -#: qcsrc/client/hud/panel/quickmenu.qc:818 -#: qcsrc/client/hud/panel/quickmenu.qc:834 +#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:825 msgid "QMCMD^Team chat" msgstr "Lagchatt" -#: qcsrc/client/hud/panel/quickmenu.qc:819 +#: qcsrc/client/hud/panel/quickmenu.qc:810 msgid "QMCMD^strength soon" msgstr "styrka snart" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item %x^7 (l:%y^7)" msgstr "fri sak %x^7 (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item, icon" msgstr "fri sak, ikon" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item (l:%l^7)" msgstr "tog sak (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item, icon" msgstr "tog sak, ikon" -#: qcsrc/client/hud/panel/quickmenu.qc:822 +#: qcsrc/client/hud/panel/quickmenu.qc:813 msgid "QMCMD^negative" msgstr "negativ" -#: qcsrc/client/hud/panel/quickmenu.qc:823 +#: qcsrc/client/hud/panel/quickmenu.qc:814 msgid "QMCMD^positive" msgstr "positiv" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "behöver hjälp (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help, icon" msgstr "behöver hjälp, ikon" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen (l:%y^7)" msgstr "såg fiende (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen, icon" msgstr "såg fiende, ikon" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen (l:%y^7)" msgstr "såg flagga (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen, icon" msgstr "såg flagga, ikon" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "skyddar (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending, icon" msgstr "skyddar, ikon" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "utforskar (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming, icon" msgstr "utforskar, ikon" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "attackerar (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking, icon" msgstr "attackerar, ikon" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier (l:%y^7)" msgstr "dödade flaggbärare (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier, icon" msgstr "dödade flaggbärare, ikon" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 #, c-format msgid "QMCMD^dropped flag (l:%d^7)" msgstr "släppte flagga (l:%d^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 msgid "QMCMD^dropped flag, icon" msgstr "släppte flagga, ikon" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^drop weapon, icon" msgstr "släppte vapen, ikon" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^dropped weapon %w^7 (l:%l^7)" msgstr "släppte vapen %w^7 (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^drop flag/key, icon" msgstr "släpp flagga/nyckel, ikon" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^dropped flag/key %w^7 (l:%l^7)" msgstr "släppte flagga/nyckel %w^7 (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:837 +#: qcsrc/client/hud/panel/quickmenu.qc:828 msgid "QMCMD^Send private message to" msgstr "Skicka privat meddelande till" -#: qcsrc/client/hud/panel/quickmenu.qc:839 -#: qcsrc/client/hud/panel/quickmenu.qc:869 +#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:860 msgid "QMCMD^Settings" msgstr "Inställningar" -#: qcsrc/client/hud/panel/quickmenu.qc:840 -#: qcsrc/client/hud/panel/quickmenu.qc:847 +#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:838 msgid "QMCMD^View/HUD settings" msgstr "Visa vy/HUD-inställningar" -#: qcsrc/client/hud/panel/quickmenu.qc:841 +#: qcsrc/client/hud/panel/quickmenu.qc:832 msgid "QMCMD^3rd person view" msgstr "3dje personsläge" -#: qcsrc/client/hud/panel/quickmenu.qc:842 +#: qcsrc/client/hud/panel/quickmenu.qc:833 msgid "QMCMD^Player models like mine" msgstr "Spelaremodeller som min" -#: qcsrc/client/hud/panel/quickmenu.qc:843 +#: qcsrc/client/hud/panel/quickmenu.qc:834 msgid "QMCMD^Names above players" msgstr "Namn över spelare" -#: qcsrc/client/hud/panel/quickmenu.qc:844 +#: qcsrc/client/hud/panel/quickmenu.qc:835 msgid "QMCMD^Crosshair per weapon" msgstr "Sikte per vapen" -#: qcsrc/client/hud/panel/quickmenu.qc:845 +#: qcsrc/client/hud/panel/quickmenu.qc:836 msgid "QMCMD^FPS" msgstr "FPS" -#: qcsrc/client/hud/panel/quickmenu.qc:846 +#: qcsrc/client/hud/panel/quickmenu.qc:837 msgid "QMCMD^Net graph" msgstr "Nätgraf" -#: qcsrc/client/hud/panel/quickmenu.qc:849 -#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:840 +#: qcsrc/client/hud/panel/quickmenu.qc:843 msgid "QMCMD^Sound settings" msgstr "Ljudinställningar" -#: qcsrc/client/hud/panel/quickmenu.qc:850 +#: qcsrc/client/hud/panel/quickmenu.qc:841 msgid "QMCMD^Hit sound" msgstr "Träffljud" -#: qcsrc/client/hud/panel/quickmenu.qc:851 +#: qcsrc/client/hud/panel/quickmenu.qc:842 msgid "QMCMD^Chat sound" msgstr "Chattljud" -#: qcsrc/client/hud/panel/quickmenu.qc:856 +#: qcsrc/client/hud/panel/quickmenu.qc:847 msgid "QMCMD^Change spectator camera" msgstr "Ändra åskådarkamera" -#: qcsrc/client/hud/panel/quickmenu.qc:861 -#: qcsrc/client/hud/panel/quickmenu.qc:865 +#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:856 msgid "QMCMD^Observer camera" msgstr "Observerarkamera" -#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:853 msgid "QMCMD^Increase speed" msgstr "Öka hastighel" -#: qcsrc/client/hud/panel/quickmenu.qc:863 +#: qcsrc/client/hud/panel/quickmenu.qc:854 msgid "QMCMD^Decrease speed" msgstr "Minska hastighet" -#: qcsrc/client/hud/panel/quickmenu.qc:864 +#: qcsrc/client/hud/panel/quickmenu.qc:855 msgid "QMCMD^Wall collision" msgstr "Väggkollision" -#: qcsrc/client/hud/panel/quickmenu.qc:868 +#: qcsrc/client/hud/panel/quickmenu.qc:859 msgid "QMCMD^Fullscreen" msgstr "Fullskärm" -#: qcsrc/client/hud/panel/quickmenu.qc:871 -#: qcsrc/client/hud/panel/quickmenu.qc:881 +#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:872 msgid "QMCMD^Call a vote" msgstr "Kalla till röstning" -#: qcsrc/client/hud/panel/quickmenu.qc:872 +#: qcsrc/client/hud/panel/quickmenu.qc:863 msgid "QMCMD^Restart the map" msgstr "Börja om kartan" -#: qcsrc/client/hud/panel/quickmenu.qc:873 +#: qcsrc/client/hud/panel/quickmenu.qc:864 msgid "QMCMD^End match" msgstr "Avsluta matchen" -#: qcsrc/client/hud/panel/quickmenu.qc:876 +#: qcsrc/client/hud/panel/quickmenu.qc:867 msgid "QMCMD^Reduce match time" msgstr "Förkorta matchtiden" -#: qcsrc/client/hud/panel/quickmenu.qc:877 +#: qcsrc/client/hud/panel/quickmenu.qc:868 msgid "QMCMD^Extend match time" msgstr "Förläng matchtiden" -#: qcsrc/client/hud/panel/quickmenu.qc:880 +#: qcsrc/client/hud/panel/quickmenu.qc:871 msgid "QMCMD^Shuffle teams" msgstr "Slumpa lagen" -#: qcsrc/client/hud/panel/quickmenu.qc:885 +#: qcsrc/client/hud/panel/quickmenu.qc:876 msgid "QMCMD^Spectate a player" msgstr "Åskåda spelare" #: qcsrc/client/hud/panel/racetimer.qc:56 #, c-format msgid " (-%dL)" -msgstr "" +msgstr " (-%dV)" #: qcsrc/client/hud/panel/racetimer.qc:61 #, c-format msgid " (+%dL)" -msgstr "" +msgstr " (+%dV)" #: qcsrc/client/hud/panel/racetimer.qc:80 msgid "Start line" @@ -996,7 +998,7 @@ msgstr "^3%1.0f minuter" #: qcsrc/client/hud/panel/scoreboard.qc:1888 #, c-format msgid "^5%s %s" -msgstr "" +msgstr "^5%s %s" #: qcsrc/client/hud/panel/scoreboard.qc:1882 #: qcsrc/client/hud/panel/scoreboard.qc:1889 @@ -1009,7 +1011,7 @@ msgstr "poäng" #: qcsrc/client/hud/panel/scoreboard.qc:1914 #, c-format msgid "^2+%s %s" -msgstr "" +msgstr "^2+%s %s" #: qcsrc/client/hud/panel/scoreboard.qc:1925 #, c-format @@ -1063,24 +1065,24 @@ msgstr "nmi" #: qcsrc/client/hud/panel/timer.qc:132 msgid "Warmup" -msgstr "" +msgstr "Uppvärmning" #: qcsrc/client/hud/panel/timer.qc:134 msgid "Timeout" -msgstr "" +msgstr "Timeout" #: qcsrc/client/hud/panel/timer.qc:136 msgid "Sudden Death" -msgstr "" +msgstr "Plötslig Död" #: qcsrc/client/hud/panel/timer.qc:138 msgid "Overtime" -msgstr "" +msgstr "Övertid" #: qcsrc/client/hud/panel/timer.qc:140 #, c-format msgid "Overtime #%d" -msgstr "" +msgstr "Övertid #%d" #: qcsrc/client/hud/panel/vote.qc:30 msgid "^1You must answer before entering hud configure mode" @@ -1256,14 +1258,14 @@ msgstr "Döda alla fiender i andra lag för att vinna omgången" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 #: qcsrc/menu/xonotic/dialog_multiplayer_create.qc:105 msgid "Frag limit:" msgstr "Fraggräns:" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 msgid "The amount of frags needed before the match will end" msgstr "Mängden fragningar som krävs innan matchen tar slut" @@ -1655,7 +1657,7 @@ msgstr "Du vann!" #: qcsrc/common/minigames/minigame/pp.qc:468 #: qcsrc/common/minigames/minigame/ttt.qc:351 msgid "Wait for your opponent to make their move" -msgstr "Väntar på din motståndare att göra sin flytt" +msgstr "Vänta på din motståndare att göra sin flytt" #: qcsrc/common/minigames/minigame/c4.qc:397 #: qcsrc/common/minigames/minigame/nmm.qc:617 @@ -1902,11 +1904,11 @@ msgstr "Färg:" #: qcsrc/common/mutators/mutator/damagetext/ui_damagetext.qc:36 msgid "Draw damage numbers for friendly fire" -msgstr "Rita skadenummer för vänlig skjutning" +msgstr "Rita skadenummer för lagskjutning" #: qcsrc/common/mutators/mutator/instagib/items.qh:33 msgid "Vaporizer ammo" -msgstr "Förångarammunition" +msgstr "Vaporizer-ammunition" #: qcsrc/common/mutators/mutator/instagib/items.qh:59 #: qcsrc/common/mutators/mutator/instagib/items.qh:62 @@ -2168,7 +2170,7 @@ msgstr "%s behöver hjälp!" #: qcsrc/common/net_notice.qc:90 msgid "^1Server notices:" -msgstr "^1Servernotifikationer:" +msgstr "^1Servermeddelanden:" #: qcsrc/common/notifications/all.inc:226 msgid "^F4NOTE: ^BGSpectator chat is not sent to players during the match" @@ -3341,7 +3343,7 @@ msgid "^BG%s%s^K1 was riddled full of holes by ^BG%s^K1's Machine Gun%s%s" msgstr "^BG%s%s^K1 blev full av hål av ^BG%s^K1s Kulspruta%s%s" #: qcsrc/common/notifications/all.inc:472 -#: qcsrc/common/notifications/all.inc:778 +#: qcsrc/common/notifications/all.inc:779 #, c-format msgid "^BGYou cannot place more than ^F2%s^BG mines at a time" msgstr "^BGDu kan inte placera mer än ^F2%s^BG minor på samma gång" @@ -3815,7 +3817,7 @@ msgstr "^K1Du orättvist eliminerade dig själv!" #: qcsrc/common/notifications/all.inc:619 #, c-format msgid "^K1You were %s" -msgstr "^K1Du var %s" +msgstr "^K1Du blev %s" #: qcsrc/common/notifications/all.inc:620 msgid "^K1You couldn't catch your breath!" @@ -3899,7 +3901,7 @@ msgstr "^K1Du blev ett stjärnskott!" #: qcsrc/common/notifications/all.inc:633 msgid "^K1You melted away in slime!" -msgstr "^K1Du smält ner i slem!" +msgstr "^K1Du smälte bort i slem!" #: qcsrc/common/notifications/all.inc:634 msgid "^K1You committed suicide!" @@ -4000,7 +4002,7 @@ msgstr "^K1Du blev bedragen av lagkamraten ^BG%s" #: qcsrc/common/notifications/all.inc:652 #, c-format msgid "^K1You were team killed by ^BG%s" -msgstr "^K1Du var lagdödad av ^BG%s" +msgstr "^K1Du blev lagdödad av ^BG%s" #: qcsrc/common/notifications/all.inc:654 msgid "" @@ -4149,7 +4151,13 @@ msgstr "^BGDu börjar med den ^TC^TT Nyckeln" msgid "^BGYou have no lives left, you must wait until the next match" msgstr "^BGDu har inga liv kvar, du måste vänta till den nästa matchen" -#: qcsrc/common/notifications/all.inc:707 +#: qcsrc/common/notifications/all.inc:706 +msgid "" +"^F4WARNING:^BG you can't rejoin this match after spectating.\n" +"Use the same command again to spectate anyway." +msgstr "" + +#: qcsrc/common/notifications/all.inc:708 #, c-format msgid "" "^BGWaiting for players to join...\n" @@ -4158,43 +4166,43 @@ msgstr "" "^BGVäntar på att spelare ska gå med...\n" "Behöver aktiva spelare för: %s" -#: qcsrc/common/notifications/all.inc:708 +#: qcsrc/common/notifications/all.inc:709 #, c-format msgid "^BGWaiting for %s player(s) to join..." msgstr "^BGVäntar på %s spelare att gå med..." -#: qcsrc/common/notifications/all.inc:710 +#: qcsrc/common/notifications/all.inc:711 msgid "^BGYour weapon has been downgraded until you find some ammo!" msgstr "^BGDitt vapen har blivit nergraderat tills du hittar ammunition!" -#: qcsrc/common/notifications/all.inc:711 +#: qcsrc/common/notifications/all.inc:712 msgid "^F4^COUNT^BG left to find some ammo!" msgstr "^F4^COUNT^BG lämnade för att hitta ammunition!" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo or you'll be dead in ^F4^COUNT^BG!" msgstr "^BGHämta ammunition, annars är du död om ^F4^COUNT^BG!" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo! ^F4^COUNT^BG left!" msgstr "^BGHämta ammunition! ^F4^COUNT^BG kvar!" -#: qcsrc/common/notifications/all.inc:713 +#: qcsrc/common/notifications/all.inc:714 #, c-format msgid "^F2Extra lives remaining: ^K1%s" msgstr "^F2Extraliv kvar: ^K1%s" -#: qcsrc/common/notifications/all.inc:715 qcsrc/menu/xonotic/campaign.qc:244 +#: qcsrc/common/notifications/all.inc:716 qcsrc/menu/xonotic/campaign.qc:244 #, c-format msgid "Level %s: " msgstr "Nivå %s: " -#: qcsrc/common/notifications/all.inc:715 +#: qcsrc/common/notifications/all.inc:716 #, c-format msgid "^BGPress ^F2%s^BG to enter the game" msgstr "^BGTryck på ^F2%s^BG för att gå med i spelet" -#: qcsrc/common/notifications/all.inc:718 +#: qcsrc/common/notifications/all.inc:719 #, c-format msgid "" "^F2^COUNT^BG until weapon change...\n" @@ -4203,34 +4211,34 @@ msgstr "" "^F2^COUNT^BG tills vapenväxling...\n" "Nästa vapen: ^F1%s" -#: qcsrc/common/notifications/all.inc:719 +#: qcsrc/common/notifications/all.inc:720 #, c-format msgid "^F2Active weapon: ^F1%s" msgstr "^F2Aktivt vapen: ^F1%s" -#: qcsrc/common/notifications/all.inc:721 +#: qcsrc/common/notifications/all.inc:722 #, c-format msgid "^BGYou captured %s^BG control point" msgstr "^BGDu fångade %s^BG kontrollpunkt" -#: qcsrc/common/notifications/all.inc:722 +#: qcsrc/common/notifications/all.inc:723 msgid "^BGYou captured a control point" msgstr "^BGDu fångade en kontrollpunkt" -#: qcsrc/common/notifications/all.inc:723 +#: qcsrc/common/notifications/all.inc:724 #, c-format msgid "^TC^TT^BG team captured %s^BG control point" msgstr "^TC^TT^BG lag fångade %s^BG kontrollpunkt" -#: qcsrc/common/notifications/all.inc:724 +#: qcsrc/common/notifications/all.inc:725 msgid "^TC^TT^BG team captured a control point" msgstr "^TC^TT^BG lag fångade en kontrollpunkt" -#: qcsrc/common/notifications/all.inc:725 +#: qcsrc/common/notifications/all.inc:726 msgid "^BGThis control point currently cannot be captured" msgstr "^BGDenna kontrollpunkten kan för nuvarande inte bli fångad" -#: qcsrc/common/notifications/all.inc:726 +#: qcsrc/common/notifications/all.inc:727 msgid "" "^BGThe enemy generator cannot be destroyed yet\n" "^F2Capture some control points to unshield it" @@ -4238,11 +4246,11 @@ msgstr "" "^BGFiendens generator kan inte bli förstörd än\n" "^F2Ta några kontrollpuknter för att avskölda den" -#: qcsrc/common/notifications/all.inc:727 +#: qcsrc/common/notifications/all.inc:728 msgid "^BGThe ^TCenemy^BG generator is no longer shielded!" msgstr "^BG^TCFiendens^BG generator är inte längre sköldad!" -#: qcsrc/common/notifications/all.inc:728 +#: qcsrc/common/notifications/all.inc:729 msgid "" "^K1Your generator is NOT shielded!\n" "^BGRe-capture control points to shield it!" @@ -4250,17 +4258,17 @@ msgstr "" "^K1Eran generator är INTE sköldad!\n" "^BGTa tillbaka kontrollpunkter för att skölda den!" -#: qcsrc/common/notifications/all.inc:729 +#: qcsrc/common/notifications/all.inc:730 #, c-format msgid "^BGPress ^F2%s^BG to teleport" msgstr "^BGTryck på ^F2%s^BG för att teleportera" -#: qcsrc/common/notifications/all.inc:730 +#: qcsrc/common/notifications/all.inc:731 #, c-format msgid "^BGTeleporting disabled for %s" msgstr "^BGTeleportering är avslagen för %s" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep fragging until we have a winner!" @@ -4268,7 +4276,7 @@ msgstr "" "^F2Spelar nu ^F4ÖVERTID^F2!\n" "Fortsätt fragga tills vi har en vinnare!" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep scoring until we have a winner!" @@ -4276,7 +4284,7 @@ msgstr "" "^F2Spelar nu ^F4ÖVERTID^F2!\n" "Fortsätt poängsätta tills vi har en vinnare!" -#: qcsrc/common/notifications/all.inc:733 +#: qcsrc/common/notifications/all.inc:734 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "\n" @@ -4290,7 +4298,7 @@ msgstr "" "Desto fler kontrollpunkter erat lag håller,\n" "desto snabbare förfaller fiendens generator" -#: qcsrc/common/notifications/all.inc:734 +#: qcsrc/common/notifications/all.inc:735 #, c-format msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" @@ -4299,123 +4307,123 @@ msgstr "" "^F2Spelar nu ^F4ÖVERTID^F2!\n" "^BGLade till ^F4%s^BG i spelet!" -#: qcsrc/common/notifications/all.inc:736 +#: qcsrc/common/notifications/all.inc:737 msgid "^K1In^BG-portal created" msgstr "^K1In^BG-portal skapad" -#: qcsrc/common/notifications/all.inc:737 +#: qcsrc/common/notifications/all.inc:738 msgid "^F3Out^BG-portal created" msgstr "^F3Ut^BG-portal skapad" -#: qcsrc/common/notifications/all.inc:738 +#: qcsrc/common/notifications/all.inc:739 msgid "^F1Portal creation failed" msgstr "^F1Portaluppskapning misslyckades" -#: qcsrc/common/notifications/all.inc:740 +#: qcsrc/common/notifications/all.inc:741 msgid "^F2Strength infuses your weapons with devastating power" msgstr "^F2Styrka förstärker ditt vapen med förödande kraft" -#: qcsrc/common/notifications/all.inc:741 +#: qcsrc/common/notifications/all.inc:742 msgid "^F2Strength has worn off" msgstr "^F2Styrka har tagit slut" -#: qcsrc/common/notifications/all.inc:743 +#: qcsrc/common/notifications/all.inc:744 msgid "^F2Shield surrounds you" msgstr "^F2Sköld omger dig" -#: qcsrc/common/notifications/all.inc:744 +#: qcsrc/common/notifications/all.inc:745 msgid "^F2Shield has worn off" msgstr "^F2Sköld har tagit slut" -#: qcsrc/common/notifications/all.inc:746 +#: qcsrc/common/notifications/all.inc:747 msgid "^F2You are on speed" msgstr "^F2Du är på hastighet" -#: qcsrc/common/notifications/all.inc:747 +#: qcsrc/common/notifications/all.inc:748 msgid "^F2Speed has worn off" msgstr "^F2Hastighet har tagit slut" -#: qcsrc/common/notifications/all.inc:749 +#: qcsrc/common/notifications/all.inc:750 msgid "^F2You are invisible" msgstr "^F2Du är osynlig" -#: qcsrc/common/notifications/all.inc:750 +#: qcsrc/common/notifications/all.inc:751 msgid "^F2Invisibility has worn off" msgstr "^F2Osynlighet har tagit slut" -#: qcsrc/common/notifications/all.inc:752 +#: qcsrc/common/notifications/all.inc:753 msgid "^F2The race is over, finish your lap!" msgstr "^F2Tävlingen är över, slutför ditt varv!" -#: qcsrc/common/notifications/all.inc:754 +#: qcsrc/common/notifications/all.inc:755 msgid "^BGSequence completed!" msgstr "^BGSekvensen avklared!" -#: qcsrc/common/notifications/all.inc:755 +#: qcsrc/common/notifications/all.inc:756 msgid "^BGThere are more to go..." msgstr "^BGDet är mer kvar..." -#: qcsrc/common/notifications/all.inc:756 +#: qcsrc/common/notifications/all.inc:757 #, c-format msgid "^BGOnly %s^BG more to go..." msgstr "^BGBara %s^BG kvar..." -#: qcsrc/common/notifications/all.inc:758 +#: qcsrc/common/notifications/all.inc:759 msgid "^F2Superweapons have broken down" msgstr "^F2Supervapen har brutits ner" -#: qcsrc/common/notifications/all.inc:759 +#: qcsrc/common/notifications/all.inc:760 msgid "^F2Superweapons have been lost" msgstr "^F2Supervapen har gått förlorade" -#: qcsrc/common/notifications/all.inc:760 +#: qcsrc/common/notifications/all.inc:761 msgid "^F2You now have a superweapon" msgstr "^F2Du har nu ett supervapen" -#: qcsrc/common/notifications/all.inc:762 +#: qcsrc/common/notifications/all.inc:763 msgid "^K1Changing to ^TC^TT^K1 in ^COUNT" msgstr "^K1Byter till ^TC^TT^K1 om ^COUNT" -#: qcsrc/common/notifications/all.inc:763 +#: qcsrc/common/notifications/all.inc:764 msgid "^K1Changing team in ^COUNT" -msgstr "^K1Bytel lag om ^COUNT" +msgstr "^K1Byter lag om ^COUNT" -#: qcsrc/common/notifications/all.inc:764 +#: qcsrc/common/notifications/all.inc:765 msgid "^K1Spectating in ^COUNT" msgstr "^K1Åskådar om ^COUNT" -#: qcsrc/common/notifications/all.inc:765 +#: qcsrc/common/notifications/all.inc:766 msgid "^K1Suicide in ^COUNT" msgstr "^K1Självmord om ^COUNT" -#: qcsrc/common/notifications/all.inc:767 +#: qcsrc/common/notifications/all.inc:768 msgid "^F4Timeout begins in ^COUNT" msgstr "^F4Timeout börjar om ^COUNT" -#: qcsrc/common/notifications/all.inc:768 +#: qcsrc/common/notifications/all.inc:769 msgid "^F4Timeout ends in ^COUNT" msgstr "^F4Timeout slutar om ^COUNT" -#: qcsrc/common/notifications/all.inc:770 +#: qcsrc/common/notifications/all.inc:771 msgid "^K1Cannot join given minigame session!" msgstr "^K1Kan inte gå med på given minispelsession!" -#: qcsrc/common/notifications/all.inc:772 +#: qcsrc/common/notifications/all.inc:773 #, c-format msgid "^BGPress ^F2%s^BG to enter/exit the vehicle" msgstr "^BGTryck på ^F2%s^BG för att gå in/ut fordonet" -#: qcsrc/common/notifications/all.inc:773 +#: qcsrc/common/notifications/all.inc:774 #, c-format msgid "^BGPress ^F2%s^BG to enter the vehicle gunner" msgstr "^BGTryck på ^F2%s^BG för att gå in i fordonsskytt" -#: qcsrc/common/notifications/all.inc:774 +#: qcsrc/common/notifications/all.inc:775 #, c-format msgid "^BGPress ^F2%s^BG to steal this vehicle" msgstr "^BGTryck på ^F2%s^BG för att själa detta fordonet" -#: qcsrc/common/notifications/all.inc:775 +#: qcsrc/common/notifications/all.inc:776 msgid "" "^F2The enemy is stealing one of your vehicles!\n" "^F4Stop them!" @@ -4423,7 +4431,7 @@ msgstr "" "^F2Fienden stjäler en av era fordon!\n" "^F4Stoppa dem!" -#: qcsrc/common/notifications/all.inc:776 +#: qcsrc/common/notifications/all.inc:777 msgid "^F2Intruder detected, disabling shields!" msgstr "^F2Inkräktare upptäckt, slår av sköldarna!" @@ -5007,7 +5015,7 @@ msgstr "SNEDSTRECK" #: qcsrc/common/util.qc:1457 #, c-format msgid "MULTIPLY" -msgstr "MULTIPLICERA" +msgstr "GÅNGER" #: qcsrc/common/util.qc:1458 #, c-format @@ -5026,7 +5034,7 @@ msgstr "LIKA MED" #: qcsrc/common/util.qc:1466 msgid "PRINTSCREEN" -msgstr "" +msgstr "PRINTSCREEN" #: qcsrc/common/util.qc:1469 #, c-format @@ -5044,12 +5052,12 @@ msgstr "MHJULNER" #: qcsrc/common/util.qc:1475 #, c-format msgid "JOY%d" -msgstr "JOY%d" +msgstr "SPAK%d" #: qcsrc/common/util.qc:1478 #, c-format msgid "AUX%d" -msgstr "" +msgstr "AUX%d" #: qcsrc/common/util.qc:1485 #, c-format @@ -5169,7 +5177,7 @@ msgstr "HÖGER_THUMB_HÖGER" #: qcsrc/common/util.qc:1516 qcsrc/common/util.qc:1517 #, c-format msgid "JOY_%s" -msgstr "JOY_%s" +msgstr "SPAK_%s" #: qcsrc/common/util.qc:1514 #, c-format @@ -5194,7 +5202,7 @@ msgstr "HÖGER" #: qcsrc/common/util.qc:1523 #, c-format msgid "MIDINOTE%d" -msgstr "" +msgstr "MIDINOT%d" #: qcsrc/common/vehicles/cl_vehicles.qc:171 #, c-format @@ -5506,22 +5514,22 @@ msgstr "%d sekunder" #: qcsrc/lib/counting.qh:79 #, c-format msgid "%dst" -msgstr "" +msgstr "%d:a" #: qcsrc/lib/counting.qh:80 #, c-format msgid "%dnd" -msgstr "" +msgstr "%d:a" #: qcsrc/lib/counting.qh:81 #, c-format msgid "%drd" -msgstr "" +msgstr "%d:e" #: qcsrc/lib/counting.qh:85 #, c-format msgid "%dth" -msgstr "" +msgstr "%d:e" #: qcsrc/lib/oo.qh:324 msgid "No description" @@ -5544,7 +5552,7 @@ msgstr "%d dagar, %02d:%02d:%02d" #: qcsrc/lib/string.qh:171 #, c-format msgid "%02d:%02d:%02d" -msgstr "" +msgstr "%02d:%02d:%02d" #: qcsrc/menu/item/listbox.qc:413 #, c-format @@ -5608,7 +5616,7 @@ msgstr "Spelmotor" #: qcsrc/menu/xonotic/credits.qc:121 msgid "Engine Additions" -msgstr "Motoradditioner" +msgstr "Motortillägg" #: qcsrc/menu/xonotic/credits.qc:127 msgid "Compiler" @@ -5777,7 +5785,7 @@ msgstr "Tack till" #: qcsrc/menu/xonotic/dialog_credits.qh:8 msgid "The Xonotic credits" -msgstr "" +msgstr "Xonotic tack till" #: qcsrc/menu/xonotic/dialog_disconnect.qc:16 msgid "Are you sure to disconnect from server?" @@ -6317,7 +6325,7 @@ msgstr "ingen stil" #: qcsrc/menu/xonotic/dialog_hudpanel_strafehud.qc:58 msgid "progress bar" -msgstr "framstegsbar" +msgstr "förloppsindikator" #: qcsrc/menu/xonotic/dialog_hudpanel_strafehud.qc:59 msgid "gradient" @@ -6368,7 +6376,7 @@ msgstr "Växelindikatorer:" #: qcsrc/menu/xonotic/dialog_hudpanel_strafehud.qc:128 msgid "Direction caps:" -msgstr "" +msgstr "Riktningskanter:" #: qcsrc/menu/xonotic/dialog_hudpanel_strafehud.qc:130 msgid "Active:" @@ -6392,11 +6400,11 @@ msgstr "Visa förfluten tid" #: qcsrc/menu/xonotic/dialog_hudpanel_timer.qc:23 msgid "Secondary timer:" -msgstr "" +msgstr "Sekundär tidtagare:" #: qcsrc/menu/xonotic/dialog_hudpanel_timer.qc:27 msgid "Swapped" -msgstr "" +msgstr "Växlad" #: qcsrc/menu/xonotic/dialog_hudpanel_timer.qh:6 msgid "Timer Panel" @@ -6979,7 +6987,7 @@ msgstr "Blodförlust" #: qcsrc/menu/xonotic/dialog_multiplayer_create_mutators.qc:93 #: qcsrc/menu/xonotic/dialog_multiplayer_create_mutators.qc:175 msgid "Buffs" -msgstr "" +msgstr "Buffar" #: qcsrc/menu/xonotic/dialog_multiplayer_create_mutators.qc:95 msgid "Overkill" @@ -7031,6 +7039,8 @@ msgid "" "Enable buff pickups (random bonuses like Medic, Invisible, etc.) on the maps " "that support it" msgstr "" +"Slå på buffupplock (slumpmässiga bonusar som Läkare, Osynlighet, osv.) på " +"kartor som stödjer det" #: qcsrc/menu/xonotic/dialog_multiplayer_create_mutators.qc:181 msgid "Only possible to inflict damage on your enemy while they're airborne" @@ -7155,9 +7165,9 @@ msgid "" "weapon. After some time, a countdown will start, after which everyone will " "switch to another weapon." msgstr "" -"No items Xonotic - istället för att plock upp saker så spelar alla med samma " -"vapen. Efter en stund kommer en nedräkning att börja, då alla spelare kommer " -"sedan att växla till ett annat vapen." +"No items Xonotic - istället för att plocka upp saker så spelar alla med " +"samma vapen. Efter en stund kommer en nedräkning att börja, då alla spelare " +"kommer sedan att växla till ett annat vapen." #: qcsrc/menu/xonotic/dialog_multiplayer_create_mutators.qc:293 msgid "with blaster" @@ -7235,7 +7245,7 @@ msgstr "Anslut!" #: qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfo.qc:93 #: qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfo.qc:105 msgid "No Terms of Service specified" -msgstr "" +msgstr "Inga villkor för tjänsten specifierade" #: qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfo.qc:144 #: qcsrc/menu/xonotic/serverlist.qc:1052 @@ -7298,7 +7308,7 @@ msgstr "Använd `crypto_aeslevel` cvaren för att ändra dina preferenser" #: qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfo.qc:203 #: qcsrc/menu/xonotic/serverlist.qc:1056 msgid "custom stats server" -msgstr "" +msgstr "egen statistikserver" #: qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfo.qc:203 #: qcsrc/menu/xonotic/serverlist.qc:1056 @@ -7312,17 +7322,17 @@ msgstr "statistik påslagen" #: qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfo.qc:213 msgid "Status" -msgstr "" +msgstr "Status" #: qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfo.qc:214 #: qcsrc/menu/xonotic/dialog_multiplayer_join_termsofservice.qh:7 #: qcsrc/menu/xonotic/dialog_termsofservice.qh:11 msgid "Terms of Service" -msgstr "" +msgstr "Villkor för Tjänst" #: qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfo.qh:7 msgid "Server Info" -msgstr "" +msgstr "Serverinfo" #: qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfotab.qc:24 msgid "Hostname:" @@ -7375,7 +7385,7 @@ msgstr "Nyckel:" #: qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfotab.qc:96 msgid "Stats:" -msgstr "" +msgstr "Statistik:" #: qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfotab.qh:6 msgid "Server Information" @@ -7657,7 +7667,7 @@ msgstr "Sätt kraft:" #: qcsrc/menu/xonotic/dialog_sandboxtools.qc:76 msgid "Claim *" -msgstr "" +msgstr "Ta förfodran över *" #: qcsrc/menu/xonotic/dialog_sandboxtools.qc:78 msgid "* object info" @@ -7665,11 +7675,11 @@ msgstr "* objektinfo" #: qcsrc/menu/xonotic/dialog_sandboxtools.qc:79 msgid "* mesh info" -msgstr "" +msgstr "* nätinfo" #: qcsrc/menu/xonotic/dialog_sandboxtools.qc:80 msgid "* attachment info" -msgstr "" +msgstr "* fästningsinfo" #: qcsrc/menu/xonotic/dialog_sandboxtools.qc:81 msgid "Show help" @@ -7710,7 +7720,7 @@ msgstr "Användare" #: qcsrc/menu/xonotic/dialog_settings.qc:25 #: qcsrc/menu/xonotic/keybinder.qc:119 msgid "Misc" -msgstr "Blandat" +msgstr "Annat" #: qcsrc/menu/xonotic/dialog_settings.qh:6 msgid "Settings" @@ -7762,7 +7772,7 @@ msgstr "Vapen:" #: qcsrc/menu/xonotic/dialog_settings_audio.qc:100 msgid "New style sound attenuation" -msgstr "" +msgstr "Ny ljuddämpningsstil" #: qcsrc/menu/xonotic/dialog_settings_audio.qc:103 msgid "Mute sounds when not active" @@ -7865,16 +7875,16 @@ msgid "" "Enable spatialization (blend the right and left channel slightly to decrease " "stereo separation a bit for headphones)" msgstr "" -"Slå på spatializering (blanda vänstra och högra kanalerna något för att " -"stereouppdelning en del för hörlurar)" +"Slå på spatializering (blanda vänstra och högra kanalerna lite för att " +"minska stereouppdelning en del för hörlurar)" #: qcsrc/menu/xonotic/dialog_settings_audio.qc:144 msgid "Hit indication sound" -msgstr "Träffindikationsljud" +msgstr "Indikationsljud vid träff" #: qcsrc/menu/xonotic/dialog_settings_audio.qc:145 msgid "Play a hit indicator sound when your shot hits an enemy" -msgstr "Spela en träffindikationsljud när dina skott träffar en fiende" +msgstr "Spela ett indikationsljud när dina skott träffar en fiende" #: qcsrc/menu/xonotic/dialog_settings_audio.qc:149 msgid "SND^Fixed" @@ -8747,7 +8757,7 @@ msgid "" "Warning: if enabled in team games your team's color may be the same as the " "enemy team" msgstr "" -"Varning: om påslagen i lagspel, ditt lags färg kan vara samma som " +"Varning: om påslagen i lagspel kan ditt lags färg kan vara samma som " "motståndarens lag" #: qcsrc/menu/xonotic/dialog_settings_game_model.qc:57 @@ -8900,7 +8910,7 @@ msgstr "Släpp zoom när du dör eller återskapas" #: qcsrc/menu/xonotic/dialog_settings_game_view.qc:119 msgid "Release zoom when you switch weapons" -msgstr "Släpp zoom när du byter vapen" +msgstr "Släpp zoom när du växlar vapen" #: qcsrc/menu/xonotic/dialog_settings_game_view.qh:7 #: qcsrc/menu/xonotic/keybinder.qc:83 @@ -8921,12 +8931,12 @@ msgstr "Ner" #: qcsrc/menu/xonotic/dialog_settings_game_weapons.qc:49 msgid "Use priority list for weapon cycling" -msgstr "Använd prioritetslista för byte av vapen" +msgstr "Använd prioritetslista för vapencykel" #: qcsrc/menu/xonotic/dialog_settings_game_weapons.qc:50 msgid "" "Make use of the list above when cycling through weapons with the mouse wheel" -msgstr "Ta användning av listan ovanför under växling av vapen med mushjulet" +msgstr "Ta användning av listan ovanför när vapen cyklas genom med mushjulet" #: qcsrc/menu/xonotic/dialog_settings_game_weapons.qc:52 msgid "Cycle through only usable weapon selections" @@ -8954,7 +8964,7 @@ msgstr "Rita vapenmodell i första-person" #: qcsrc/menu/xonotic/dialog_settings_game_weapons.qc:64 msgid "Draw the weapon model" -msgstr "Rita vapenmodell" +msgstr "Rita vapenmodellen" #: qcsrc/menu/xonotic/dialog_settings_game_weapons.qc:68 #: qcsrc/menu/xonotic/dialog_settings_game_weapons.qc:71 @@ -9124,7 +9134,7 @@ msgstr "Tvinga klient att använda vald port om den är inte satt till 0" #: qcsrc/menu/xonotic/dialog_settings_misc.qc:34 msgid "Bandwidth:" -msgstr "Bredbredd:" +msgstr "Bandbredd:" #: qcsrc/menu/xonotic/dialog_settings_misc.qc:36 msgid "Specify your network speed" @@ -9172,7 +9182,7 @@ msgstr "Visa nätgraf" #: qcsrc/menu/xonotic/dialog_settings_misc.qc:67 msgid "Show a graph of packet sizes and other information" -msgstr "Visa en graf utav paketstorlekar och annan information" +msgstr "Visa en graf av paketstorlekar och annan information" #: qcsrc/menu/xonotic/dialog_settings_misc.qc:69 msgid "Client-side movement prediction" @@ -9426,7 +9436,7 @@ msgid "" "Enable vertical synchronization to prevent tearing, will cap your fps to the " "screen refresh rate" msgstr "" -"Slå på vertikal synkronisering för att undvika rivning, kommet att låsa din " +"Slå på vertikal synkronisering för att undvika rivning, kommer att låsa din " "fps till skärmens uppdateringsfrekvens" #: qcsrc/menu/xonotic/dialog_settings_video.qc:67 @@ -9497,7 +9507,7 @@ msgid "" "normal rendering starts" msgstr "" "Eliminera överritning genom att rita en bara-djup-version av scenen innan " -"normala rendering börjar" +"den normala renderingen börjar" #: qcsrc/menu/xonotic/dialog_settings_video.qc:100 msgid "DF^Disabled" @@ -9513,7 +9523,7 @@ msgstr "Allt" #: qcsrc/menu/xonotic/dialog_settings_video.qc:107 msgid "Vertex Buffer Objects (VBOs)" -msgstr "" +msgstr "Vertex Buffer Objects (VBOs)" #: qcsrc/menu/xonotic/dialog_settings_video.qc:110 msgid "VBO^Off" @@ -9530,6 +9540,8 @@ msgid "" "Make use of Vertex Buffer Objects to store static geometry in video memory " "for faster rendering" msgstr "" +"Ta användning av Vertex Buffer Objects för att lagra statisk geometri i " +"bildminne för snabbare rendering" #: qcsrc/menu/xonotic/dialog_settings_video.qc:115 msgid "Vertices" @@ -9596,7 +9608,7 @@ msgid "" "Ambient lighting, if set too high it tends to make light on maps look dull " "and flat" msgstr "" -"Omgivet belysning, om satt för högt så brukar den göra att ljus på kartor " +"Omgiven belysning, om satt för högt så brukar den göra att ljus på kartor " "ser tråkiga och platta ut" #: qcsrc/menu/xonotic/dialog_settings_video.qc:153 @@ -9633,7 +9645,7 @@ msgstr "Trippiga kanter (påskegg)" #: qcsrc/menu/xonotic/dialog_singleplayer.qc:145 msgid "Instant action! (random map with bots)" -msgstr "" +msgstr "Omedelbar action! (slumpmässig bana med bottar)" #: qcsrc/menu/xonotic/dialog_singleplayer.qc:152 msgid "???" @@ -9653,7 +9665,7 @@ msgstr "Mellan" #: qcsrc/menu/xonotic/dialog_singleplayer.qc:168 msgid "CSKL^Hard" -msgstr "Svår" +msgstr "Svårt" #: qcsrc/menu/xonotic/dialog_singleplayer.qc:170 msgid "Start Singleplayer!" @@ -9665,7 +9677,7 @@ msgstr "Enspelarläge" #: qcsrc/menu/xonotic/dialog_singleplayer.qh:7 msgid "Play the singleplayer campaign or instant action matches against bots" -msgstr "" +msgstr "Spela enspelarkampanj eller matcher med omedelbar action mot bottar" #: qcsrc/menu/xonotic/dialog_singleplayer_winner.qh:7 msgid "Winner" @@ -9707,18 +9719,21 @@ msgstr "Lagval" #: qcsrc/menu/xonotic/dialog_termsofservice.qc:78 msgid "Terms of Service have been updated. Please read them before continuing:" msgstr "" +"Villkoren för tjänsten har blivit uppdaterats. Vänligen läs den innan du " +"fortsätter:" #: qcsrc/menu/xonotic/dialog_termsofservice.qc:80 msgid "Welcome to Xonotic! Please read the following Terms of Service:" msgstr "" +"Välkommen till Xonotic! Vänligen läs de följande villkoren för tjänsten:" #: qcsrc/menu/xonotic/dialog_termsofservice.qc:93 msgid "Accept" -msgstr "" +msgstr "Acceptera" #: qcsrc/menu/xonotic/dialog_termsofservice.qc:97 msgid "Don't accept (quit the game)" -msgstr "" +msgstr "Acceptera inte (avsluta spelet)" #: qcsrc/menu/xonotic/dialog_uid2name.qc:10 msgid "Allow player statistics to use your nickname?" @@ -9726,8 +9741,7 @@ msgstr "Tillåt spelarstatistik att använda ditt spelarnamn?" #: qcsrc/menu/xonotic/dialog_uid2name.qc:12 msgid "Answering \"No\" you will appear as \"Anonymous player\"" -msgstr "" -"Att svara \"Nej\" innebär att du kommer att dyka upp som \"Anonymous player\"" +msgstr "Om du svarar \"Nej\" kommer du att dyka upp som \"Anonymous player\"" #: qcsrc/menu/xonotic/gametypelist.qc:88 msgid "teamplay" @@ -9767,7 +9781,7 @@ msgstr "ducka / sjunk" #: qcsrc/menu/xonotic/keybinder.qc:42 msgid "off-hand hook" -msgstr "" +msgstr "av-handskrok" #: qcsrc/menu/xonotic/keybinder.qc:43 msgid "jetpack" @@ -9823,7 +9837,7 @@ msgstr "maximera radar" #: qcsrc/menu/xonotic/keybinder.qc:89 msgid "3rd person view" -msgstr "tredje-personsvy" +msgstr "Tredje-personsvy" #: qcsrc/menu/xonotic/keybinder.qc:90 msgid "enter spectator mode" @@ -9871,7 +9885,7 @@ msgstr "avsluta" #: qcsrc/menu/xonotic/keybinder.qc:114 msgid "auto-join team" -msgstr "" +msgstr "gå med lag automatiskt" #: qcsrc/menu/xonotic/keybinder.qc:120 msgid "drop key/flag, exit vehicle" @@ -9919,7 +9933,7 @@ msgstr "" #: qcsrc/menu/xonotic/maplist.qc:296 #, c-format msgid "%s's Xonotic Server" -msgstr "%s's Xonotic Server" +msgstr "%s's Xonotic-Server" #: qcsrc/menu/xonotic/maplist.qc:301 msgid "" diff --git a/common.tr.po b/common.tr.po index 79e28312a0..a8336968d3 100644 --- a/common.tr.po +++ b/common.tr.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: Xonotic\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-06 07:22+0100\n" -"PO-Revision-Date: 2022-03-06 06:22+0000\n" -"Last-Translator: divVerent \n" +"POT-Creation-Date: 2022-03-27 07:22+0200\n" +"PO-Revision-Date: 2013-09-12 16:53+0000\n" +"Last-Translator: Big Brother , 2021\n" "Language-Team: Turkish (http://www.transifex.com/team-xonotic/xonotic/" "language/tr/)\n" "Language: tr\n" @@ -227,270 +227,270 @@ msgstr "" msgid "Player %d" msgstr "Oyuncu %d" -#: qcsrc/client/hud/panel/quickmenu.qc:617 -#: qcsrc/client/hud/panel/quickmenu.qc:619 +#: qcsrc/client/hud/panel/quickmenu.qc:608 +#: qcsrc/client/hud/panel/quickmenu.qc:610 #, c-format msgid "Submenu%d" msgstr "Altmenü%d" -#: qcsrc/client/hud/panel/quickmenu.qc:624 +#: qcsrc/client/hud/panel/quickmenu.qc:615 #, c-format msgid "Command%d" msgstr "Komut%d" -#: qcsrc/client/hud/panel/quickmenu.qc:650 +#: qcsrc/client/hud/panel/quickmenu.qc:641 msgid "Continue..." msgstr "Devam..." -#: qcsrc/client/hud/panel/quickmenu.qc:807 -#: qcsrc/client/hud/panel/quickmenu.qc:814 +#: qcsrc/client/hud/panel/quickmenu.qc:798 +#: qcsrc/client/hud/panel/quickmenu.qc:805 msgid "Chat" msgstr "Sohbet" -#: qcsrc/client/hud/panel/quickmenu.qc:808 +#: qcsrc/client/hud/panel/quickmenu.qc:799 msgid "QMCMD^Send public message to" msgstr "Kişisine herkese açık mesaj gönder" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^:-) / nice one" msgstr ":-) / iyiydi" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^nice one" msgstr "iyiydi" -#: qcsrc/client/hud/panel/quickmenu.qc:810 +#: qcsrc/client/hud/panel/quickmenu.qc:801 msgid "QMCMD^good game" msgstr "iyi oyun" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck" msgstr "selam / iyi şanslar" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck and have fun" msgstr "selam / iyi şanslar ve iyi eğlenceler" -#: qcsrc/client/hud/panel/quickmenu.qc:813 +#: qcsrc/client/hud/panel/quickmenu.qc:804 msgid "QMCMD^Send in English" msgstr "İngilizce dilinde gönder" -#: qcsrc/client/hud/panel/quickmenu.qc:818 -#: qcsrc/client/hud/panel/quickmenu.qc:834 +#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:825 msgid "QMCMD^Team chat" msgstr "Takım sohbet" -#: qcsrc/client/hud/panel/quickmenu.qc:819 +#: qcsrc/client/hud/panel/quickmenu.qc:810 msgid "QMCMD^strength soon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item %x^7 (l:%y^7)" msgstr "Ücretsiz malzeme %x^7 (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item, icon" msgstr "Ücretsiz malzeme, simge" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item (l:%l^7)" msgstr "eşya alındı (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item, icon" msgstr "eşya alındı, simge" -#: qcsrc/client/hud/panel/quickmenu.qc:822 +#: qcsrc/client/hud/panel/quickmenu.qc:813 msgid "QMCMD^negative" msgstr "QMCMD^olumsuz" -#: qcsrc/client/hud/panel/quickmenu.qc:823 +#: qcsrc/client/hud/panel/quickmenu.qc:814 msgid "QMCMD^positive" msgstr "Olumlu" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "yardıma ihtiyacım var (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help, icon" msgstr "yardım gerek, simge" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen (l:%y^7)" msgstr "Düşman görüldü(l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen, icon" msgstr "düşman görüldü, simge" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen (l:%y^7)" msgstr "bayrak görüldü (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen, icon" msgstr "bayrak görüldü, simge" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 #, c-format msgid "QMCMD^dropped flag (l:%d^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 msgid "QMCMD^dropped flag, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^drop weapon, icon" msgstr "silahı bırak, simge" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^dropped weapon %w^7 (l:%l^7)" msgstr "silah bırakıldı %w^7 (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^drop flag/key, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^dropped flag/key %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:837 +#: qcsrc/client/hud/panel/quickmenu.qc:828 msgid "QMCMD^Send private message to" msgstr "Şu kişiye özel mesaj gönder" -#: qcsrc/client/hud/panel/quickmenu.qc:839 -#: qcsrc/client/hud/panel/quickmenu.qc:869 +#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:860 msgid "QMCMD^Settings" msgstr "Ayarlar" -#: qcsrc/client/hud/panel/quickmenu.qc:840 -#: qcsrc/client/hud/panel/quickmenu.qc:847 +#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:838 msgid "QMCMD^View/HUD settings" msgstr "Görünüm/HUD ayarları" -#: qcsrc/client/hud/panel/quickmenu.qc:841 +#: qcsrc/client/hud/panel/quickmenu.qc:832 msgid "QMCMD^3rd person view" msgstr "Üçüncü şahıs görünümü" -#: qcsrc/client/hud/panel/quickmenu.qc:842 +#: qcsrc/client/hud/panel/quickmenu.qc:833 msgid "QMCMD^Player models like mine" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:843 +#: qcsrc/client/hud/panel/quickmenu.qc:834 msgid "QMCMD^Names above players" msgstr "İsimler oyuncuların üzerinde" -#: qcsrc/client/hud/panel/quickmenu.qc:844 +#: qcsrc/client/hud/panel/quickmenu.qc:835 msgid "QMCMD^Crosshair per weapon" msgstr "QMCMD^Her silah için ayrı crosshair" -#: qcsrc/client/hud/panel/quickmenu.qc:845 +#: qcsrc/client/hud/panel/quickmenu.qc:836 msgid "QMCMD^FPS" msgstr "FPS" -#: qcsrc/client/hud/panel/quickmenu.qc:846 +#: qcsrc/client/hud/panel/quickmenu.qc:837 msgid "QMCMD^Net graph" msgstr "Ağ grafiği" -#: qcsrc/client/hud/panel/quickmenu.qc:849 -#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:840 +#: qcsrc/client/hud/panel/quickmenu.qc:843 msgid "QMCMD^Sound settings" msgstr "Ses ayarları" -#: qcsrc/client/hud/panel/quickmenu.qc:850 +#: qcsrc/client/hud/panel/quickmenu.qc:841 msgid "QMCMD^Hit sound" msgstr "Vurma sesi" -#: qcsrc/client/hud/panel/quickmenu.qc:851 +#: qcsrc/client/hud/panel/quickmenu.qc:842 msgid "QMCMD^Chat sound" msgstr "Sohbet sesi" -#: qcsrc/client/hud/panel/quickmenu.qc:856 +#: qcsrc/client/hud/panel/quickmenu.qc:847 msgid "QMCMD^Change spectator camera" msgstr "İzleyici kamerasını değiştir" -#: qcsrc/client/hud/panel/quickmenu.qc:861 -#: qcsrc/client/hud/panel/quickmenu.qc:865 +#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:856 msgid "QMCMD^Observer camera" msgstr "Gözlemci kamerası" -#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:853 msgid "QMCMD^Increase speed" msgstr "Hızı arttır" -#: qcsrc/client/hud/panel/quickmenu.qc:863 +#: qcsrc/client/hud/panel/quickmenu.qc:854 msgid "QMCMD^Decrease speed" msgstr "Hızı azalt" -#: qcsrc/client/hud/panel/quickmenu.qc:864 +#: qcsrc/client/hud/panel/quickmenu.qc:855 msgid "QMCMD^Wall collision" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:868 +#: qcsrc/client/hud/panel/quickmenu.qc:859 msgid "QMCMD^Fullscreen" msgstr "Tam Ekran" -#: qcsrc/client/hud/panel/quickmenu.qc:871 -#: qcsrc/client/hud/panel/quickmenu.qc:881 +#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:872 msgid "QMCMD^Call a vote" msgstr "Oylama başlat" -#: qcsrc/client/hud/panel/quickmenu.qc:872 +#: qcsrc/client/hud/panel/quickmenu.qc:863 msgid "QMCMD^Restart the map" msgstr "Haritayı tekrardan başlat" -#: qcsrc/client/hud/panel/quickmenu.qc:873 +#: qcsrc/client/hud/panel/quickmenu.qc:864 msgid "QMCMD^End match" msgstr "Karşılaşmayı bitir" -#: qcsrc/client/hud/panel/quickmenu.qc:876 +#: qcsrc/client/hud/panel/quickmenu.qc:867 msgid "QMCMD^Reduce match time" msgstr "Karşılaşma süresini azalt" -#: qcsrc/client/hud/panel/quickmenu.qc:877 +#: qcsrc/client/hud/panel/quickmenu.qc:868 msgid "QMCMD^Extend match time" msgstr "Karşılaşma süresini arttır" -#: qcsrc/client/hud/panel/quickmenu.qc:880 +#: qcsrc/client/hud/panel/quickmenu.qc:871 msgid "QMCMD^Shuffle teams" msgstr "Takımları karıştır" -#: qcsrc/client/hud/panel/quickmenu.qc:885 +#: qcsrc/client/hud/panel/quickmenu.qc:876 msgid "QMCMD^Spectate a player" msgstr "Bir oyuncuyu izle" @@ -1239,14 +1239,14 @@ msgstr "Turu kazanmak için tüm düşman takım unsurlarını öldür" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 #: qcsrc/menu/xonotic/dialog_multiplayer_create.qc:105 msgid "Frag limit:" msgstr "Öldürme sınırı" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 msgid "The amount of frags needed before the match will end" msgstr "" @@ -3286,7 +3286,7 @@ msgid "^BG%s%s^K1 was riddled full of holes by ^BG%s^K1's Machine Gun%s%s" msgstr "" #: qcsrc/common/notifications/all.inc:472 -#: qcsrc/common/notifications/all.inc:778 +#: qcsrc/common/notifications/all.inc:779 #, c-format msgid "^BGYou cannot place more than ^F2%s^BG mines at a time" msgstr "" @@ -4066,122 +4066,128 @@ msgstr "" msgid "^BGYou have no lives left, you must wait until the next match" msgstr "" -#: qcsrc/common/notifications/all.inc:707 +#: qcsrc/common/notifications/all.inc:706 +msgid "" +"^F4WARNING:^BG you can't rejoin this match after spectating.\n" +"Use the same command again to spectate anyway." +msgstr "" + +#: qcsrc/common/notifications/all.inc:708 #, c-format msgid "" "^BGWaiting for players to join...\n" "Need active players for: %s" msgstr "" -#: qcsrc/common/notifications/all.inc:708 +#: qcsrc/common/notifications/all.inc:709 #, c-format msgid "^BGWaiting for %s player(s) to join..." msgstr "" -#: qcsrc/common/notifications/all.inc:710 +#: qcsrc/common/notifications/all.inc:711 msgid "^BGYour weapon has been downgraded until you find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:711 +#: qcsrc/common/notifications/all.inc:712 msgid "^F4^COUNT^BG left to find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo or you'll be dead in ^F4^COUNT^BG!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo! ^F4^COUNT^BG left!" msgstr "" -#: qcsrc/common/notifications/all.inc:713 +#: qcsrc/common/notifications/all.inc:714 #, c-format msgid "^F2Extra lives remaining: ^K1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:715 qcsrc/menu/xonotic/campaign.qc:244 +#: qcsrc/common/notifications/all.inc:716 qcsrc/menu/xonotic/campaign.qc:244 #, c-format msgid "Level %s: " msgstr "Seviye %s:" -#: qcsrc/common/notifications/all.inc:715 +#: qcsrc/common/notifications/all.inc:716 #, c-format msgid "^BGPress ^F2%s^BG to enter the game" msgstr "" -#: qcsrc/common/notifications/all.inc:718 +#: qcsrc/common/notifications/all.inc:719 #, c-format msgid "" "^F2^COUNT^BG until weapon change...\n" "Next weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:719 +#: qcsrc/common/notifications/all.inc:720 #, c-format msgid "^F2Active weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:721 +#: qcsrc/common/notifications/all.inc:722 #, c-format msgid "^BGYou captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:722 +#: qcsrc/common/notifications/all.inc:723 msgid "^BGYou captured a control point" msgstr "^BGKontrol noktasını ele geçirdin" -#: qcsrc/common/notifications/all.inc:723 +#: qcsrc/common/notifications/all.inc:724 #, c-format msgid "^TC^TT^BG team captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:724 +#: qcsrc/common/notifications/all.inc:725 msgid "^TC^TT^BG team captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:725 +#: qcsrc/common/notifications/all.inc:726 msgid "^BGThis control point currently cannot be captured" msgstr "" -#: qcsrc/common/notifications/all.inc:726 +#: qcsrc/common/notifications/all.inc:727 msgid "" "^BGThe enemy generator cannot be destroyed yet\n" "^F2Capture some control points to unshield it" msgstr "" -#: qcsrc/common/notifications/all.inc:727 +#: qcsrc/common/notifications/all.inc:728 msgid "^BGThe ^TCenemy^BG generator is no longer shielded!" msgstr "" -#: qcsrc/common/notifications/all.inc:728 +#: qcsrc/common/notifications/all.inc:729 msgid "" "^K1Your generator is NOT shielded!\n" "^BGRe-capture control points to shield it!" msgstr "" -#: qcsrc/common/notifications/all.inc:729 +#: qcsrc/common/notifications/all.inc:730 #, c-format msgid "^BGPress ^F2%s^BG to teleport" msgstr "" -#: qcsrc/common/notifications/all.inc:730 +#: qcsrc/common/notifications/all.inc:731 #, c-format msgid "^BGTeleporting disabled for %s" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep fragging until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep scoring until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:733 +#: qcsrc/common/notifications/all.inc:734 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "\n" @@ -4190,136 +4196,136 @@ msgid "" "the faster the enemy generator decays" msgstr "" -#: qcsrc/common/notifications/all.inc:734 +#: qcsrc/common/notifications/all.inc:735 #, c-format msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "^BGAdded ^F4%s^BG to the game!" msgstr "" -#: qcsrc/common/notifications/all.inc:736 +#: qcsrc/common/notifications/all.inc:737 msgid "^K1In^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:737 +#: qcsrc/common/notifications/all.inc:738 msgid "^F3Out^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:738 +#: qcsrc/common/notifications/all.inc:739 msgid "^F1Portal creation failed" msgstr "" -#: qcsrc/common/notifications/all.inc:740 +#: qcsrc/common/notifications/all.inc:741 msgid "^F2Strength infuses your weapons with devastating power" msgstr "" -#: qcsrc/common/notifications/all.inc:741 +#: qcsrc/common/notifications/all.inc:742 msgid "^F2Strength has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:743 +#: qcsrc/common/notifications/all.inc:744 msgid "^F2Shield surrounds you" msgstr "" -#: qcsrc/common/notifications/all.inc:744 +#: qcsrc/common/notifications/all.inc:745 msgid "^F2Shield has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:746 +#: qcsrc/common/notifications/all.inc:747 msgid "^F2You are on speed" msgstr "" -#: qcsrc/common/notifications/all.inc:747 +#: qcsrc/common/notifications/all.inc:748 msgid "^F2Speed has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:749 +#: qcsrc/common/notifications/all.inc:750 msgid "^F2You are invisible" msgstr "^F2Görünmezsin" -#: qcsrc/common/notifications/all.inc:750 +#: qcsrc/common/notifications/all.inc:751 msgid "^F2Invisibility has worn off" msgstr "^F2Görünmezliğin bitti" -#: qcsrc/common/notifications/all.inc:752 +#: qcsrc/common/notifications/all.inc:753 msgid "^F2The race is over, finish your lap!" msgstr "" -#: qcsrc/common/notifications/all.inc:754 +#: qcsrc/common/notifications/all.inc:755 msgid "^BGSequence completed!" msgstr "" -#: qcsrc/common/notifications/all.inc:755 +#: qcsrc/common/notifications/all.inc:756 msgid "^BGThere are more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:756 +#: qcsrc/common/notifications/all.inc:757 #, c-format msgid "^BGOnly %s^BG more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:758 +#: qcsrc/common/notifications/all.inc:759 msgid "^F2Superweapons have broken down" msgstr "" -#: qcsrc/common/notifications/all.inc:759 +#: qcsrc/common/notifications/all.inc:760 msgid "^F2Superweapons have been lost" msgstr "" -#: qcsrc/common/notifications/all.inc:760 +#: qcsrc/common/notifications/all.inc:761 msgid "^F2You now have a superweapon" msgstr "" -#: qcsrc/common/notifications/all.inc:762 +#: qcsrc/common/notifications/all.inc:763 msgid "^K1Changing to ^TC^TT^K1 in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:763 +#: qcsrc/common/notifications/all.inc:764 msgid "^K1Changing team in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:764 +#: qcsrc/common/notifications/all.inc:765 msgid "^K1Spectating in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:765 +#: qcsrc/common/notifications/all.inc:766 msgid "^K1Suicide in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:767 +#: qcsrc/common/notifications/all.inc:768 msgid "^F4Timeout begins in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:768 +#: qcsrc/common/notifications/all.inc:769 msgid "^F4Timeout ends in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:770 +#: qcsrc/common/notifications/all.inc:771 msgid "^K1Cannot join given minigame session!" msgstr "" -#: qcsrc/common/notifications/all.inc:772 +#: qcsrc/common/notifications/all.inc:773 #, c-format msgid "^BGPress ^F2%s^BG to enter/exit the vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:773 +#: qcsrc/common/notifications/all.inc:774 #, c-format msgid "^BGPress ^F2%s^BG to enter the vehicle gunner" msgstr "" -#: qcsrc/common/notifications/all.inc:774 +#: qcsrc/common/notifications/all.inc:775 #, c-format msgid "^BGPress ^F2%s^BG to steal this vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:775 +#: qcsrc/common/notifications/all.inc:776 msgid "" "^F2The enemy is stealing one of your vehicles!\n" "^F4Stop them!" msgstr "" -#: qcsrc/common/notifications/all.inc:776 +#: qcsrc/common/notifications/all.inc:777 msgid "^F2Intruder detected, disabling shields!" msgstr "" diff --git a/common.uk.po b/common.uk.po index 10ac4bcf64..628f0f4800 100644 --- a/common.uk.po +++ b/common.uk.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: Xonotic\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-06 07:22+0100\n" -"PO-Revision-Date: 2022-03-06 06:22+0000\n" -"Last-Translator: divVerent \n" +"POT-Creation-Date: 2022-03-27 07:22+0200\n" +"PO-Revision-Date: 2013-09-12 16:53+0000\n" +"Last-Translator: Dmitro Sokhin , 2015\n" "Language-Team: Ukrainian (http://www.transifex.com/team-xonotic/xonotic/" "language/uk/)\n" "Language: uk\n" @@ -228,270 +228,270 @@ msgstr "^3ALT ^7+ ^3СТРІЛКИ ^7для точного налаштуван msgid "Player %d" msgstr "Гравець %d" -#: qcsrc/client/hud/panel/quickmenu.qc:617 -#: qcsrc/client/hud/panel/quickmenu.qc:619 +#: qcsrc/client/hud/panel/quickmenu.qc:608 +#: qcsrc/client/hud/panel/quickmenu.qc:610 #, c-format msgid "Submenu%d" msgstr "Підменю%d" -#: qcsrc/client/hud/panel/quickmenu.qc:624 +#: qcsrc/client/hud/panel/quickmenu.qc:615 #, c-format msgid "Command%d" msgstr "Команда%d" -#: qcsrc/client/hud/panel/quickmenu.qc:650 +#: qcsrc/client/hud/panel/quickmenu.qc:641 msgid "Continue..." msgstr "Продовжити..." -#: qcsrc/client/hud/panel/quickmenu.qc:807 -#: qcsrc/client/hud/panel/quickmenu.qc:814 +#: qcsrc/client/hud/panel/quickmenu.qc:798 +#: qcsrc/client/hud/panel/quickmenu.qc:805 msgid "Chat" msgstr "Чат" -#: qcsrc/client/hud/panel/quickmenu.qc:808 +#: qcsrc/client/hud/panel/quickmenu.qc:799 msgid "QMCMD^Send public message to" msgstr "QMCMD^Надіслати публічне повідомлення в" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^:-) / nice one" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^nice one" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:810 +#: qcsrc/client/hud/panel/quickmenu.qc:801 msgid "QMCMD^good game" msgstr "QMCMD^гарна гра" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck" msgstr "QMCMD^привіт/успіхів" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck and have fun" msgstr "QMCMD^привіт / успіхів та веселощів" -#: qcsrc/client/hud/panel/quickmenu.qc:813 +#: qcsrc/client/hud/panel/quickmenu.qc:804 msgid "QMCMD^Send in English" msgstr "QMCMD^Надіслати англійською мовою" -#: qcsrc/client/hud/panel/quickmenu.qc:818 -#: qcsrc/client/hud/panel/quickmenu.qc:834 +#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:825 msgid "QMCMD^Team chat" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:819 +#: qcsrc/client/hud/panel/quickmenu.qc:810 msgid "QMCMD^strength soon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item %x^7 (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:822 +#: qcsrc/client/hud/panel/quickmenu.qc:813 msgid "QMCMD^negative" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:823 +#: qcsrc/client/hud/panel/quickmenu.qc:814 msgid "QMCMD^positive" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 #, c-format msgid "QMCMD^dropped flag (l:%d^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 msgid "QMCMD^dropped flag, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^drop weapon, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^dropped weapon %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^drop flag/key, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^dropped flag/key %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:837 +#: qcsrc/client/hud/panel/quickmenu.qc:828 msgid "QMCMD^Send private message to" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:839 -#: qcsrc/client/hud/panel/quickmenu.qc:869 +#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:860 msgid "QMCMD^Settings" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:840 -#: qcsrc/client/hud/panel/quickmenu.qc:847 +#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:838 msgid "QMCMD^View/HUD settings" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:841 +#: qcsrc/client/hud/panel/quickmenu.qc:832 msgid "QMCMD^3rd person view" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:842 +#: qcsrc/client/hud/panel/quickmenu.qc:833 msgid "QMCMD^Player models like mine" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:843 +#: qcsrc/client/hud/panel/quickmenu.qc:834 msgid "QMCMD^Names above players" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:844 +#: qcsrc/client/hud/panel/quickmenu.qc:835 msgid "QMCMD^Crosshair per weapon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:845 +#: qcsrc/client/hud/panel/quickmenu.qc:836 msgid "QMCMD^FPS" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:846 +#: qcsrc/client/hud/panel/quickmenu.qc:837 msgid "QMCMD^Net graph" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:849 -#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:840 +#: qcsrc/client/hud/panel/quickmenu.qc:843 msgid "QMCMD^Sound settings" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:850 +#: qcsrc/client/hud/panel/quickmenu.qc:841 msgid "QMCMD^Hit sound" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:851 +#: qcsrc/client/hud/panel/quickmenu.qc:842 msgid "QMCMD^Chat sound" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:856 +#: qcsrc/client/hud/panel/quickmenu.qc:847 msgid "QMCMD^Change spectator camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:861 -#: qcsrc/client/hud/panel/quickmenu.qc:865 +#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:856 msgid "QMCMD^Observer camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:853 msgid "QMCMD^Increase speed" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:863 +#: qcsrc/client/hud/panel/quickmenu.qc:854 msgid "QMCMD^Decrease speed" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:864 +#: qcsrc/client/hud/panel/quickmenu.qc:855 msgid "QMCMD^Wall collision" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:868 +#: qcsrc/client/hud/panel/quickmenu.qc:859 msgid "QMCMD^Fullscreen" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:871 -#: qcsrc/client/hud/panel/quickmenu.qc:881 +#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:872 msgid "QMCMD^Call a vote" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:872 +#: qcsrc/client/hud/panel/quickmenu.qc:863 msgid "QMCMD^Restart the map" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:873 +#: qcsrc/client/hud/panel/quickmenu.qc:864 msgid "QMCMD^End match" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:876 +#: qcsrc/client/hud/panel/quickmenu.qc:867 msgid "QMCMD^Reduce match time" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:877 +#: qcsrc/client/hud/panel/quickmenu.qc:868 msgid "QMCMD^Extend match time" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:880 +#: qcsrc/client/hud/panel/quickmenu.qc:871 msgid "QMCMD^Shuffle teams" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:885 +#: qcsrc/client/hud/panel/quickmenu.qc:876 msgid "QMCMD^Spectate a player" msgstr "" @@ -1240,14 +1240,14 @@ msgstr "" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 #: qcsrc/menu/xonotic/dialog_multiplayer_create.qc:105 msgid "Frag limit:" msgstr "Ліміт фрагів:" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 msgid "The amount of frags needed before the match will end" msgstr "Кількість фрагів, яка потрібна для закінчення матчу" @@ -3295,7 +3295,7 @@ msgid "^BG%s%s^K1 was riddled full of holes by ^BG%s^K1's Machine Gun%s%s" msgstr "" #: qcsrc/common/notifications/all.inc:472 -#: qcsrc/common/notifications/all.inc:778 +#: qcsrc/common/notifications/all.inc:779 #, c-format msgid "^BGYou cannot place more than ^F2%s^BG mines at a time" msgstr "" @@ -4092,7 +4092,13 @@ msgstr "^BGВи починаєте з ^TC^TT ключем" msgid "^BGYou have no lives left, you must wait until the next match" msgstr "" -#: qcsrc/common/notifications/all.inc:707 +#: qcsrc/common/notifications/all.inc:706 +msgid "" +"^F4WARNING:^BG you can't rejoin this match after spectating.\n" +"Use the same command again to spectate anyway." +msgstr "" + +#: qcsrc/common/notifications/all.inc:708 #, c-format msgid "" "^BGWaiting for players to join...\n" @@ -4101,43 +4107,43 @@ msgstr "" "^BGОчікування приєднання гравців...\n" "Потрібні активні гравця для: %s" -#: qcsrc/common/notifications/all.inc:708 +#: qcsrc/common/notifications/all.inc:709 #, c-format msgid "^BGWaiting for %s player(s) to join..." msgstr "^BGОчікування приєднання %s гравця(ців)..." -#: qcsrc/common/notifications/all.inc:710 +#: qcsrc/common/notifications/all.inc:711 msgid "^BGYour weapon has been downgraded until you find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:711 +#: qcsrc/common/notifications/all.inc:712 msgid "^F4^COUNT^BG left to find some ammo!" msgstr "^F4^COUNT^BG залишилось часу щоб знайти набої!" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo or you'll be dead in ^F4^COUNT^BG!" msgstr "^BGЗнайдіть набої або загиньте через ^F4^COUNT^BG!" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo! ^F4^COUNT^BG left!" msgstr "^BGЗнайдіть набої! ^F4^COUNT^BG залишилось!" -#: qcsrc/common/notifications/all.inc:713 +#: qcsrc/common/notifications/all.inc:714 #, c-format msgid "^F2Extra lives remaining: ^K1%s" msgstr "^F2Додаткових життів залишилось: ^K1%s" -#: qcsrc/common/notifications/all.inc:715 qcsrc/menu/xonotic/campaign.qc:244 +#: qcsrc/common/notifications/all.inc:716 qcsrc/menu/xonotic/campaign.qc:244 #, c-format msgid "Level %s: " msgstr "" -#: qcsrc/common/notifications/all.inc:715 +#: qcsrc/common/notifications/all.inc:716 #, c-format msgid "^BGPress ^F2%s^BG to enter the game" msgstr "" -#: qcsrc/common/notifications/all.inc:718 +#: qcsrc/common/notifications/all.inc:719 #, c-format msgid "" "^F2^COUNT^BG until weapon change...\n" @@ -4146,60 +4152,60 @@ msgstr "" "^F2^COUNT^BG до зміни зброї...\n" "Наступна зброя: ^F1%s" -#: qcsrc/common/notifications/all.inc:719 +#: qcsrc/common/notifications/all.inc:720 #, c-format msgid "^F2Active weapon: ^F1%s" msgstr "^F2Поточна зброя: ^F1%s" -#: qcsrc/common/notifications/all.inc:721 +#: qcsrc/common/notifications/all.inc:722 #, c-format msgid "^BGYou captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:722 +#: qcsrc/common/notifications/all.inc:723 msgid "^BGYou captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:723 +#: qcsrc/common/notifications/all.inc:724 #, c-format msgid "^TC^TT^BG team captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:724 +#: qcsrc/common/notifications/all.inc:725 msgid "^TC^TT^BG team captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:725 +#: qcsrc/common/notifications/all.inc:726 msgid "^BGThis control point currently cannot be captured" msgstr "" -#: qcsrc/common/notifications/all.inc:726 +#: qcsrc/common/notifications/all.inc:727 msgid "" "^BGThe enemy generator cannot be destroyed yet\n" "^F2Capture some control points to unshield it" msgstr "" -#: qcsrc/common/notifications/all.inc:727 +#: qcsrc/common/notifications/all.inc:728 msgid "^BGThe ^TCenemy^BG generator is no longer shielded!" msgstr "" -#: qcsrc/common/notifications/all.inc:728 +#: qcsrc/common/notifications/all.inc:729 msgid "" "^K1Your generator is NOT shielded!\n" "^BGRe-capture control points to shield it!" msgstr "" -#: qcsrc/common/notifications/all.inc:729 +#: qcsrc/common/notifications/all.inc:730 #, c-format msgid "^BGPress ^F2%s^BG to teleport" msgstr "" -#: qcsrc/common/notifications/all.inc:730 +#: qcsrc/common/notifications/all.inc:731 #, c-format msgid "^BGTeleporting disabled for %s" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep fragging until we have a winner!" @@ -4207,7 +4213,7 @@ msgstr "" "^F2Почався ^F4ДОДАТКОВИЙ ЧАС^F2!\n" "Продовжуйте боротьбу доки не визначиться переможець!" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep scoring until we have a winner!" @@ -4215,7 +4221,7 @@ msgstr "" "^F2Почався ^F4ДОДАТКОВИЙ ЧАС^F2!\n" "Продовжуйте набирати очки доки не визначиться переможець!" -#: qcsrc/common/notifications/all.inc:733 +#: qcsrc/common/notifications/all.inc:734 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "\n" @@ -4224,7 +4230,7 @@ msgid "" "the faster the enemy generator decays" msgstr "" -#: qcsrc/common/notifications/all.inc:734 +#: qcsrc/common/notifications/all.inc:735 #, c-format msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" @@ -4233,129 +4239,129 @@ msgstr "" "^F2Йде ^F4ДОДАТКОВИЙ ЧАС^F2!\n" "^BGДодано ^F4%s^BG у гру!" -#: qcsrc/common/notifications/all.inc:736 +#: qcsrc/common/notifications/all.inc:737 msgid "^K1In^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:737 +#: qcsrc/common/notifications/all.inc:738 msgid "^F3Out^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:738 +#: qcsrc/common/notifications/all.inc:739 msgid "^F1Portal creation failed" msgstr "" -#: qcsrc/common/notifications/all.inc:740 +#: qcsrc/common/notifications/all.inc:741 msgid "^F2Strength infuses your weapons with devastating power" msgstr "^F2Сила надає вашій зброї руйнівної потужності" -#: qcsrc/common/notifications/all.inc:741 +#: qcsrc/common/notifications/all.inc:742 msgid "^F2Strength has worn off" msgstr "^F2Сила вичерпалася" -#: qcsrc/common/notifications/all.inc:743 +#: qcsrc/common/notifications/all.inc:744 msgid "^F2Shield surrounds you" msgstr "^F2Вас оточує щит" -#: qcsrc/common/notifications/all.inc:744 +#: qcsrc/common/notifications/all.inc:745 msgid "^F2Shield has worn off" msgstr "^F2Щит вичерпався" -#: qcsrc/common/notifications/all.inc:746 +#: qcsrc/common/notifications/all.inc:747 msgid "^F2You are on speed" msgstr "^F2Ви прискоренні" -#: qcsrc/common/notifications/all.inc:747 +#: qcsrc/common/notifications/all.inc:748 msgid "^F2Speed has worn off" msgstr "^F2Швидкість вичерпалася" -#: qcsrc/common/notifications/all.inc:749 +#: qcsrc/common/notifications/all.inc:750 msgid "^F2You are invisible" msgstr "^F2Ви невидимі" -#: qcsrc/common/notifications/all.inc:750 +#: qcsrc/common/notifications/all.inc:751 msgid "^F2Invisibility has worn off" msgstr "^F2Невидимість вичерпалася" -#: qcsrc/common/notifications/all.inc:752 +#: qcsrc/common/notifications/all.inc:753 msgid "^F2The race is over, finish your lap!" msgstr "^F2Гонка закінчилася, завершуйте своє коло!" -#: qcsrc/common/notifications/all.inc:754 +#: qcsrc/common/notifications/all.inc:755 msgid "^BGSequence completed!" msgstr "" -#: qcsrc/common/notifications/all.inc:755 +#: qcsrc/common/notifications/all.inc:756 msgid "^BGThere are more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:756 +#: qcsrc/common/notifications/all.inc:757 #, c-format msgid "^BGOnly %s^BG more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:758 +#: qcsrc/common/notifications/all.inc:759 msgid "^F2Superweapons have broken down" msgstr "^F2Суперзброя зламалася" -#: qcsrc/common/notifications/all.inc:759 +#: qcsrc/common/notifications/all.inc:760 msgid "^F2Superweapons have been lost" msgstr "^F2Суперзброя втрачена" -#: qcsrc/common/notifications/all.inc:760 +#: qcsrc/common/notifications/all.inc:761 msgid "^F2You now have a superweapon" msgstr "^F2Ви отримали суперзброю" -#: qcsrc/common/notifications/all.inc:762 +#: qcsrc/common/notifications/all.inc:763 msgid "^K1Changing to ^TC^TT^K1 in ^COUNT" msgstr "^K1Перехід до ^TC^TT^K1 через ^COUNT" -#: qcsrc/common/notifications/all.inc:763 +#: qcsrc/common/notifications/all.inc:764 msgid "^K1Changing team in ^COUNT" msgstr "^K1Зміна команди через ^COUNT" -#: qcsrc/common/notifications/all.inc:764 +#: qcsrc/common/notifications/all.inc:765 msgid "^K1Spectating in ^COUNT" msgstr "^K1Ви станете глядачем через ^COUNT" -#: qcsrc/common/notifications/all.inc:765 +#: qcsrc/common/notifications/all.inc:766 msgid "^K1Suicide in ^COUNT" msgstr "^K1Самогубство через ^COUNT" -#: qcsrc/common/notifications/all.inc:767 +#: qcsrc/common/notifications/all.inc:768 msgid "^F4Timeout begins in ^COUNT" msgstr "^F4Тайм-аут почнеться через ^COUNT" -#: qcsrc/common/notifications/all.inc:768 +#: qcsrc/common/notifications/all.inc:769 msgid "^F4Timeout ends in ^COUNT" msgstr "^F4Тайм-аут закінчиться через ^COUNT" -#: qcsrc/common/notifications/all.inc:770 +#: qcsrc/common/notifications/all.inc:771 msgid "^K1Cannot join given minigame session!" msgstr "" -#: qcsrc/common/notifications/all.inc:772 +#: qcsrc/common/notifications/all.inc:773 #, c-format msgid "^BGPress ^F2%s^BG to enter/exit the vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:773 +#: qcsrc/common/notifications/all.inc:774 #, c-format msgid "^BGPress ^F2%s^BG to enter the vehicle gunner" msgstr "" -#: qcsrc/common/notifications/all.inc:774 +#: qcsrc/common/notifications/all.inc:775 #, c-format msgid "^BGPress ^F2%s^BG to steal this vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:775 +#: qcsrc/common/notifications/all.inc:776 msgid "" "^F2The enemy is stealing one of your vehicles!\n" "^F4Stop them!" msgstr "" -#: qcsrc/common/notifications/all.inc:776 +#: qcsrc/common/notifications/all.inc:777 msgid "^F2Intruder detected, disabling shields!" msgstr "" diff --git a/common.uz@Latn.po b/common.uz@Latn.po index 624a9a5c62..1afcd52d54 100644 --- a/common.uz@Latn.po +++ b/common.uz@Latn.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: Xonotic\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-06 07:22+0100\n" -"PO-Revision-Date: 2022-03-06 06:22+0000\n" -"Last-Translator: divVerent \n" +"POT-Creation-Date: 2022-03-27 07:22+0200\n" +"PO-Revision-Date: 2013-09-12 16:53+0000\n" +"Last-Translator: FULL NAME \n" "Language-Team: Uzbek (Latin) (http://www.transifex.com/team-xonotic/xonotic/" "language/uz@Latn/)\n" "Language: uz@Latn\n" @@ -215,270 +215,270 @@ msgstr "" msgid "Player %d" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:617 -#: qcsrc/client/hud/panel/quickmenu.qc:619 +#: qcsrc/client/hud/panel/quickmenu.qc:608 +#: qcsrc/client/hud/panel/quickmenu.qc:610 #, c-format msgid "Submenu%d" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:624 +#: qcsrc/client/hud/panel/quickmenu.qc:615 #, c-format msgid "Command%d" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:650 +#: qcsrc/client/hud/panel/quickmenu.qc:641 msgid "Continue..." msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:807 -#: qcsrc/client/hud/panel/quickmenu.qc:814 +#: qcsrc/client/hud/panel/quickmenu.qc:798 +#: qcsrc/client/hud/panel/quickmenu.qc:805 msgid "Chat" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:808 +#: qcsrc/client/hud/panel/quickmenu.qc:799 msgid "QMCMD^Send public message to" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^:-) / nice one" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^nice one" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:810 +#: qcsrc/client/hud/panel/quickmenu.qc:801 msgid "QMCMD^good game" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck and have fun" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:813 +#: qcsrc/client/hud/panel/quickmenu.qc:804 msgid "QMCMD^Send in English" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:818 -#: qcsrc/client/hud/panel/quickmenu.qc:834 +#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:825 msgid "QMCMD^Team chat" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:819 +#: qcsrc/client/hud/panel/quickmenu.qc:810 msgid "QMCMD^strength soon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item %x^7 (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:822 +#: qcsrc/client/hud/panel/quickmenu.qc:813 msgid "QMCMD^negative" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:823 +#: qcsrc/client/hud/panel/quickmenu.qc:814 msgid "QMCMD^positive" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 #, c-format msgid "QMCMD^dropped flag (l:%d^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 msgid "QMCMD^dropped flag, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^drop weapon, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^dropped weapon %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^drop flag/key, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^dropped flag/key %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:837 +#: qcsrc/client/hud/panel/quickmenu.qc:828 msgid "QMCMD^Send private message to" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:839 -#: qcsrc/client/hud/panel/quickmenu.qc:869 +#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:860 msgid "QMCMD^Settings" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:840 -#: qcsrc/client/hud/panel/quickmenu.qc:847 +#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:838 msgid "QMCMD^View/HUD settings" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:841 +#: qcsrc/client/hud/panel/quickmenu.qc:832 msgid "QMCMD^3rd person view" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:842 +#: qcsrc/client/hud/panel/quickmenu.qc:833 msgid "QMCMD^Player models like mine" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:843 +#: qcsrc/client/hud/panel/quickmenu.qc:834 msgid "QMCMD^Names above players" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:844 +#: qcsrc/client/hud/panel/quickmenu.qc:835 msgid "QMCMD^Crosshair per weapon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:845 +#: qcsrc/client/hud/panel/quickmenu.qc:836 msgid "QMCMD^FPS" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:846 +#: qcsrc/client/hud/panel/quickmenu.qc:837 msgid "QMCMD^Net graph" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:849 -#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:840 +#: qcsrc/client/hud/panel/quickmenu.qc:843 msgid "QMCMD^Sound settings" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:850 +#: qcsrc/client/hud/panel/quickmenu.qc:841 msgid "QMCMD^Hit sound" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:851 +#: qcsrc/client/hud/panel/quickmenu.qc:842 msgid "QMCMD^Chat sound" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:856 +#: qcsrc/client/hud/panel/quickmenu.qc:847 msgid "QMCMD^Change spectator camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:861 -#: qcsrc/client/hud/panel/quickmenu.qc:865 +#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:856 msgid "QMCMD^Observer camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:853 msgid "QMCMD^Increase speed" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:863 +#: qcsrc/client/hud/panel/quickmenu.qc:854 msgid "QMCMD^Decrease speed" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:864 +#: qcsrc/client/hud/panel/quickmenu.qc:855 msgid "QMCMD^Wall collision" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:868 +#: qcsrc/client/hud/panel/quickmenu.qc:859 msgid "QMCMD^Fullscreen" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:871 -#: qcsrc/client/hud/panel/quickmenu.qc:881 +#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:872 msgid "QMCMD^Call a vote" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:872 +#: qcsrc/client/hud/panel/quickmenu.qc:863 msgid "QMCMD^Restart the map" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:873 +#: qcsrc/client/hud/panel/quickmenu.qc:864 msgid "QMCMD^End match" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:876 +#: qcsrc/client/hud/panel/quickmenu.qc:867 msgid "QMCMD^Reduce match time" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:877 +#: qcsrc/client/hud/panel/quickmenu.qc:868 msgid "QMCMD^Extend match time" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:880 +#: qcsrc/client/hud/panel/quickmenu.qc:871 msgid "QMCMD^Shuffle teams" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:885 +#: qcsrc/client/hud/panel/quickmenu.qc:876 msgid "QMCMD^Spectate a player" msgstr "" @@ -1227,14 +1227,14 @@ msgstr "" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 #: qcsrc/menu/xonotic/dialog_multiplayer_create.qc:105 msgid "Frag limit:" msgstr "" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 msgid "The amount of frags needed before the match will end" msgstr "" @@ -3265,7 +3265,7 @@ msgid "^BG%s%s^K1 was riddled full of holes by ^BG%s^K1's Machine Gun%s%s" msgstr "" #: qcsrc/common/notifications/all.inc:472 -#: qcsrc/common/notifications/all.inc:778 +#: qcsrc/common/notifications/all.inc:779 #, c-format msgid "^BGYou cannot place more than ^F2%s^BG mines at a time" msgstr "" @@ -4043,122 +4043,128 @@ msgstr "" msgid "^BGYou have no lives left, you must wait until the next match" msgstr "" -#: qcsrc/common/notifications/all.inc:707 +#: qcsrc/common/notifications/all.inc:706 +msgid "" +"^F4WARNING:^BG you can't rejoin this match after spectating.\n" +"Use the same command again to spectate anyway." +msgstr "" + +#: qcsrc/common/notifications/all.inc:708 #, c-format msgid "" "^BGWaiting for players to join...\n" "Need active players for: %s" msgstr "" -#: qcsrc/common/notifications/all.inc:708 +#: qcsrc/common/notifications/all.inc:709 #, c-format msgid "^BGWaiting for %s player(s) to join..." msgstr "" -#: qcsrc/common/notifications/all.inc:710 +#: qcsrc/common/notifications/all.inc:711 msgid "^BGYour weapon has been downgraded until you find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:711 +#: qcsrc/common/notifications/all.inc:712 msgid "^F4^COUNT^BG left to find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo or you'll be dead in ^F4^COUNT^BG!" msgstr "" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo! ^F4^COUNT^BG left!" msgstr "" -#: qcsrc/common/notifications/all.inc:713 +#: qcsrc/common/notifications/all.inc:714 #, c-format msgid "^F2Extra lives remaining: ^K1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:715 qcsrc/menu/xonotic/campaign.qc:244 +#: qcsrc/common/notifications/all.inc:716 qcsrc/menu/xonotic/campaign.qc:244 #, c-format msgid "Level %s: " msgstr "" -#: qcsrc/common/notifications/all.inc:715 +#: qcsrc/common/notifications/all.inc:716 #, c-format msgid "^BGPress ^F2%s^BG to enter the game" msgstr "" -#: qcsrc/common/notifications/all.inc:718 +#: qcsrc/common/notifications/all.inc:719 #, c-format msgid "" "^F2^COUNT^BG until weapon change...\n" "Next weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:719 +#: qcsrc/common/notifications/all.inc:720 #, c-format msgid "^F2Active weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:721 +#: qcsrc/common/notifications/all.inc:722 #, c-format msgid "^BGYou captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:722 +#: qcsrc/common/notifications/all.inc:723 msgid "^BGYou captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:723 +#: qcsrc/common/notifications/all.inc:724 #, c-format msgid "^TC^TT^BG team captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:724 +#: qcsrc/common/notifications/all.inc:725 msgid "^TC^TT^BG team captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:725 +#: qcsrc/common/notifications/all.inc:726 msgid "^BGThis control point currently cannot be captured" msgstr "" -#: qcsrc/common/notifications/all.inc:726 +#: qcsrc/common/notifications/all.inc:727 msgid "" "^BGThe enemy generator cannot be destroyed yet\n" "^F2Capture some control points to unshield it" msgstr "" -#: qcsrc/common/notifications/all.inc:727 +#: qcsrc/common/notifications/all.inc:728 msgid "^BGThe ^TCenemy^BG generator is no longer shielded!" msgstr "" -#: qcsrc/common/notifications/all.inc:728 +#: qcsrc/common/notifications/all.inc:729 msgid "" "^K1Your generator is NOT shielded!\n" "^BGRe-capture control points to shield it!" msgstr "" -#: qcsrc/common/notifications/all.inc:729 +#: qcsrc/common/notifications/all.inc:730 #, c-format msgid "^BGPress ^F2%s^BG to teleport" msgstr "" -#: qcsrc/common/notifications/all.inc:730 +#: qcsrc/common/notifications/all.inc:731 #, c-format msgid "^BGTeleporting disabled for %s" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep fragging until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep scoring until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:733 +#: qcsrc/common/notifications/all.inc:734 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "\n" @@ -4167,136 +4173,136 @@ msgid "" "the faster the enemy generator decays" msgstr "" -#: qcsrc/common/notifications/all.inc:734 +#: qcsrc/common/notifications/all.inc:735 #, c-format msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "^BGAdded ^F4%s^BG to the game!" msgstr "" -#: qcsrc/common/notifications/all.inc:736 +#: qcsrc/common/notifications/all.inc:737 msgid "^K1In^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:737 +#: qcsrc/common/notifications/all.inc:738 msgid "^F3Out^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:738 +#: qcsrc/common/notifications/all.inc:739 msgid "^F1Portal creation failed" msgstr "" -#: qcsrc/common/notifications/all.inc:740 +#: qcsrc/common/notifications/all.inc:741 msgid "^F2Strength infuses your weapons with devastating power" msgstr "" -#: qcsrc/common/notifications/all.inc:741 +#: qcsrc/common/notifications/all.inc:742 msgid "^F2Strength has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:743 +#: qcsrc/common/notifications/all.inc:744 msgid "^F2Shield surrounds you" msgstr "" -#: qcsrc/common/notifications/all.inc:744 +#: qcsrc/common/notifications/all.inc:745 msgid "^F2Shield has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:746 +#: qcsrc/common/notifications/all.inc:747 msgid "^F2You are on speed" msgstr "" -#: qcsrc/common/notifications/all.inc:747 +#: qcsrc/common/notifications/all.inc:748 msgid "^F2Speed has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:749 +#: qcsrc/common/notifications/all.inc:750 msgid "^F2You are invisible" msgstr "" -#: qcsrc/common/notifications/all.inc:750 +#: qcsrc/common/notifications/all.inc:751 msgid "^F2Invisibility has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:752 +#: qcsrc/common/notifications/all.inc:753 msgid "^F2The race is over, finish your lap!" msgstr "" -#: qcsrc/common/notifications/all.inc:754 +#: qcsrc/common/notifications/all.inc:755 msgid "^BGSequence completed!" msgstr "" -#: qcsrc/common/notifications/all.inc:755 +#: qcsrc/common/notifications/all.inc:756 msgid "^BGThere are more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:756 +#: qcsrc/common/notifications/all.inc:757 #, c-format msgid "^BGOnly %s^BG more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:758 +#: qcsrc/common/notifications/all.inc:759 msgid "^F2Superweapons have broken down" msgstr "" -#: qcsrc/common/notifications/all.inc:759 +#: qcsrc/common/notifications/all.inc:760 msgid "^F2Superweapons have been lost" msgstr "" -#: qcsrc/common/notifications/all.inc:760 +#: qcsrc/common/notifications/all.inc:761 msgid "^F2You now have a superweapon" msgstr "" -#: qcsrc/common/notifications/all.inc:762 +#: qcsrc/common/notifications/all.inc:763 msgid "^K1Changing to ^TC^TT^K1 in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:763 +#: qcsrc/common/notifications/all.inc:764 msgid "^K1Changing team in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:764 +#: qcsrc/common/notifications/all.inc:765 msgid "^K1Spectating in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:765 +#: qcsrc/common/notifications/all.inc:766 msgid "^K1Suicide in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:767 +#: qcsrc/common/notifications/all.inc:768 msgid "^F4Timeout begins in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:768 +#: qcsrc/common/notifications/all.inc:769 msgid "^F4Timeout ends in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:770 +#: qcsrc/common/notifications/all.inc:771 msgid "^K1Cannot join given minigame session!" msgstr "" -#: qcsrc/common/notifications/all.inc:772 +#: qcsrc/common/notifications/all.inc:773 #, c-format msgid "^BGPress ^F2%s^BG to enter/exit the vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:773 +#: qcsrc/common/notifications/all.inc:774 #, c-format msgid "^BGPress ^F2%s^BG to enter the vehicle gunner" msgstr "" -#: qcsrc/common/notifications/all.inc:774 +#: qcsrc/common/notifications/all.inc:775 #, c-format msgid "^BGPress ^F2%s^BG to steal this vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:775 +#: qcsrc/common/notifications/all.inc:776 msgid "" "^F2The enemy is stealing one of your vehicles!\n" "^F4Stop them!" msgstr "" -#: qcsrc/common/notifications/all.inc:776 +#: qcsrc/common/notifications/all.inc:777 msgid "^F2Intruder detected, disabling shields!" msgstr "" diff --git a/common.zh_CN.po b/common.zh_CN.po index 3fc8cdd23c..15717e12be 100644 --- a/common.zh_CN.po +++ b/common.zh_CN.po @@ -22,9 +22,9 @@ msgid "" msgstr "" "Project-Id-Version: Xonotic\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-06 07:22+0100\n" -"PO-Revision-Date: 2022-03-06 06:22+0000\n" -"Last-Translator: divVerent \n" +"POT-Creation-Date: 2022-03-27 07:22+0200\n" +"PO-Revision-Date: 2013-09-12 16:53+0000\n" +"Last-Translator: 韬 刘 , 2019\n" "Language-Team: Chinese (China) (http://www.transifex.com/team-xonotic/" "xonotic/language/zh_CN/)\n" "Language: zh_CN\n" @@ -232,270 +232,270 @@ msgstr "^3ALT ^7+ ^3箭头键 ^7以微调。" msgid "Player %d" msgstr "玩家 %d" -#: qcsrc/client/hud/panel/quickmenu.qc:617 -#: qcsrc/client/hud/panel/quickmenu.qc:619 +#: qcsrc/client/hud/panel/quickmenu.qc:608 +#: qcsrc/client/hud/panel/quickmenu.qc:610 #, c-format msgid "Submenu%d" msgstr "子菜单%d" -#: qcsrc/client/hud/panel/quickmenu.qc:624 +#: qcsrc/client/hud/panel/quickmenu.qc:615 #, c-format msgid "Command%d" msgstr "指令%d" -#: qcsrc/client/hud/panel/quickmenu.qc:650 +#: qcsrc/client/hud/panel/quickmenu.qc:641 msgid "Continue..." msgstr "继续..." -#: qcsrc/client/hud/panel/quickmenu.qc:807 -#: qcsrc/client/hud/panel/quickmenu.qc:814 +#: qcsrc/client/hud/panel/quickmenu.qc:798 +#: qcsrc/client/hud/panel/quickmenu.qc:805 msgid "Chat" msgstr "聊天" -#: qcsrc/client/hud/panel/quickmenu.qc:808 +#: qcsrc/client/hud/panel/quickmenu.qc:799 msgid "QMCMD^Send public message to" msgstr "QMCMD^发送公共短信给" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^:-) / nice one" msgstr "QMCMD^:-) / 干的漂亮" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^nice one" msgstr "QMCMD^干的漂亮" -#: qcsrc/client/hud/panel/quickmenu.qc:810 +#: qcsrc/client/hud/panel/quickmenu.qc:801 msgid "QMCMD^good game" msgstr "QMCMD^好游戏" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck" msgstr "QMCMD^hi / 祝你好运" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck and have fun" msgstr "QMCMD^hi / 祝你好运,玩的开心" -#: qcsrc/client/hud/panel/quickmenu.qc:813 +#: qcsrc/client/hud/panel/quickmenu.qc:804 msgid "QMCMD^Send in English" msgstr "QMCMD^英文发送" -#: qcsrc/client/hud/panel/quickmenu.qc:818 -#: qcsrc/client/hud/panel/quickmenu.qc:834 +#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:825 msgid "QMCMD^Team chat" msgstr "QMCMD^团队对话" -#: qcsrc/client/hud/panel/quickmenu.qc:819 +#: qcsrc/client/hud/panel/quickmenu.qc:810 msgid "QMCMD^strength soon" msgstr "QMCMD^强壮敏捷" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item %x^7 (l:%y^7)" msgstr "QMCMD^免费物品 %x^7 (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item, icon" msgstr "QMCMD^免费物品, icon" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item (l:%l^7)" msgstr "QMCMD^捡起物品 (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item, icon" msgstr "QMCMD^物品已取走, icon" -#: qcsrc/client/hud/panel/quickmenu.qc:822 +#: qcsrc/client/hud/panel/quickmenu.qc:813 msgid "QMCMD^negative" msgstr "QMCMD^反对" -#: qcsrc/client/hud/panel/quickmenu.qc:823 +#: qcsrc/client/hud/panel/quickmenu.qc:814 msgid "QMCMD^positive" msgstr "QMCMD^赞成" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^需要帮忙 (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help, icon" msgstr "QMCMD^需要帮忙, icon" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen (l:%y^7)" msgstr "QMCMD^发现敌人 (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen, icon" msgstr "QMCMD^发现敌人, icon" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen (l:%y^7)" msgstr "QMCMD^找到旗帜 (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen, icon" msgstr "QMCMD^找到旗帜, icon" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^防守中 (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending, icon" msgstr "QMCMD^防守中, icon" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^漫游中 (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming, icon" msgstr "QMCMD^漫游中, icon" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^攻击中 (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking, icon" msgstr "QMCMD^攻击中, icon" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier (l:%y^7)" msgstr "QMCMD^killed flagcarrier (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier, icon" msgstr "QMCMD^夺旗人已被干掉, icon" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 #, c-format msgid "QMCMD^dropped flag (l:%d^7)" msgstr "QMCMD^已弃旗 (l:%d^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 msgid "QMCMD^dropped flag, icon" msgstr "QMCMD^已弃旗, icon" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^drop weapon, icon" msgstr "QMCMD^掉落武器, icon" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^dropped weapon %w^7 (l:%l^7)" msgstr "QMCMD^掉落武器 %w^7 (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^drop flag/key, icon" msgstr "QMCMD^掉落旗帜/钥匙, icon" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^dropped flag/key %w^7 (l:%l^7)" msgstr "QMCMD^掉落旗子 / 钥匙 %w^7(l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:837 +#: qcsrc/client/hud/panel/quickmenu.qc:828 msgid "QMCMD^Send private message to" msgstr "QMCMD^发送私人短信给" -#: qcsrc/client/hud/panel/quickmenu.qc:839 -#: qcsrc/client/hud/panel/quickmenu.qc:869 +#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:860 msgid "QMCMD^Settings" msgstr "QMCMD^设定" -#: qcsrc/client/hud/panel/quickmenu.qc:840 -#: qcsrc/client/hud/panel/quickmenu.qc:847 +#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:838 msgid "QMCMD^View/HUD settings" msgstr "QMCMD^视角/HUD设置" -#: qcsrc/client/hud/panel/quickmenu.qc:841 +#: qcsrc/client/hud/panel/quickmenu.qc:832 msgid "QMCMD^3rd person view" msgstr "QMCMD^第三人称视角" -#: qcsrc/client/hud/panel/quickmenu.qc:842 +#: qcsrc/client/hud/panel/quickmenu.qc:833 msgid "QMCMD^Player models like mine" msgstr "QMCMD^像我一样的玩家模型" -#: qcsrc/client/hud/panel/quickmenu.qc:843 +#: qcsrc/client/hud/panel/quickmenu.qc:834 msgid "QMCMD^Names above players" msgstr "QMCMD^名字显示在玩家上方" -#: qcsrc/client/hud/panel/quickmenu.qc:844 +#: qcsrc/client/hud/panel/quickmenu.qc:835 msgid "QMCMD^Crosshair per weapon" msgstr "QMCMD^每个武器的十字准线" -#: qcsrc/client/hud/panel/quickmenu.qc:845 +#: qcsrc/client/hud/panel/quickmenu.qc:836 msgid "QMCMD^FPS" msgstr "QMCMD^FPS" -#: qcsrc/client/hud/panel/quickmenu.qc:846 +#: qcsrc/client/hud/panel/quickmenu.qc:837 msgid "QMCMD^Net graph" msgstr "QMCMD^网络图" -#: qcsrc/client/hud/panel/quickmenu.qc:849 -#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:840 +#: qcsrc/client/hud/panel/quickmenu.qc:843 msgid "QMCMD^Sound settings" msgstr "QMCMD^音效设定" -#: qcsrc/client/hud/panel/quickmenu.qc:850 +#: qcsrc/client/hud/panel/quickmenu.qc:841 msgid "QMCMD^Hit sound" msgstr "QMCMD^击打声" -#: qcsrc/client/hud/panel/quickmenu.qc:851 +#: qcsrc/client/hud/panel/quickmenu.qc:842 msgid "QMCMD^Chat sound" msgstr "QMCMD^对话音效" -#: qcsrc/client/hud/panel/quickmenu.qc:856 +#: qcsrc/client/hud/panel/quickmenu.qc:847 msgid "QMCMD^Change spectator camera" msgstr "QMCMD^更改观察者视角" -#: qcsrc/client/hud/panel/quickmenu.qc:861 -#: qcsrc/client/hud/panel/quickmenu.qc:865 +#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:856 msgid "QMCMD^Observer camera" msgstr "QMCMD^观察者视角" -#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:853 msgid "QMCMD^Increase speed" msgstr "QMCMD^增加速度" -#: qcsrc/client/hud/panel/quickmenu.qc:863 +#: qcsrc/client/hud/panel/quickmenu.qc:854 msgid "QMCMD^Decrease speed" msgstr "QMCMD^减少速度" -#: qcsrc/client/hud/panel/quickmenu.qc:864 +#: qcsrc/client/hud/panel/quickmenu.qc:855 msgid "QMCMD^Wall collision" msgstr "QMCMD^墙壁碰撞" -#: qcsrc/client/hud/panel/quickmenu.qc:868 +#: qcsrc/client/hud/panel/quickmenu.qc:859 msgid "QMCMD^Fullscreen" msgstr "QMCMD^全屏" -#: qcsrc/client/hud/panel/quickmenu.qc:871 -#: qcsrc/client/hud/panel/quickmenu.qc:881 +#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:872 msgid "QMCMD^Call a vote" msgstr "QMCMD^发起投票" -#: qcsrc/client/hud/panel/quickmenu.qc:872 +#: qcsrc/client/hud/panel/quickmenu.qc:863 msgid "QMCMD^Restart the map" msgstr "QMCMD^重启地图" -#: qcsrc/client/hud/panel/quickmenu.qc:873 +#: qcsrc/client/hud/panel/quickmenu.qc:864 msgid "QMCMD^End match" msgstr "QMCMD^结束比赛" -#: qcsrc/client/hud/panel/quickmenu.qc:876 +#: qcsrc/client/hud/panel/quickmenu.qc:867 msgid "QMCMD^Reduce match time" msgstr "QMCMD^减少比赛时间" -#: qcsrc/client/hud/panel/quickmenu.qc:877 +#: qcsrc/client/hud/panel/quickmenu.qc:868 msgid "QMCMD^Extend match time" msgstr "QMCMD^延长比赛时间" -#: qcsrc/client/hud/panel/quickmenu.qc:880 +#: qcsrc/client/hud/panel/quickmenu.qc:871 msgid "QMCMD^Shuffle teams" msgstr "QMCMD^随机组队" -#: qcsrc/client/hud/panel/quickmenu.qc:885 +#: qcsrc/client/hud/panel/quickmenu.qc:876 msgid "QMCMD^Spectate a player" msgstr "观察玩家" @@ -1244,14 +1244,14 @@ msgstr "歼灭所有敌人来取得胜利" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 #: qcsrc/menu/xonotic/dialog_multiplayer_create.qc:105 msgid "Frag limit:" msgstr "炸弹限制:" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 msgid "The amount of frags needed before the match will end" msgstr "" @@ -3285,7 +3285,7 @@ msgid "^BG%s%s^K1 was riddled full of holes by ^BG%s^K1's Machine Gun%s%s" msgstr "" #: qcsrc/common/notifications/all.inc:472 -#: qcsrc/common/notifications/all.inc:778 +#: qcsrc/common/notifications/all.inc:779 #, c-format msgid "^BGYou cannot place more than ^F2%s^BG mines at a time" msgstr "" @@ -4063,122 +4063,128 @@ msgstr "" msgid "^BGYou have no lives left, you must wait until the next match" msgstr "" -#: qcsrc/common/notifications/all.inc:707 +#: qcsrc/common/notifications/all.inc:706 +msgid "" +"^F4WARNING:^BG you can't rejoin this match after spectating.\n" +"Use the same command again to spectate anyway." +msgstr "" + +#: qcsrc/common/notifications/all.inc:708 #, c-format msgid "" "^BGWaiting for players to join...\n" "Need active players for: %s" msgstr "" -#: qcsrc/common/notifications/all.inc:708 +#: qcsrc/common/notifications/all.inc:709 #, c-format msgid "^BGWaiting for %s player(s) to join..." msgstr "" -#: qcsrc/common/notifications/all.inc:710 +#: qcsrc/common/notifications/all.inc:711 msgid "^BGYour weapon has been downgraded until you find some ammo!" msgstr "" -#: qcsrc/common/notifications/all.inc:711 +#: qcsrc/common/notifications/all.inc:712 msgid "^F4^COUNT^BG left to find some ammo!" msgstr "^F4^COUNT^BG 内找到弹药!" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo or you'll be dead in ^F4^COUNT^BG!" msgstr "^BG找到弹药否则你将在 ^F4^COUNT^BG后死亡!" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo! ^F4^COUNT^BG left!" msgstr "^BG找到弹药 ^BG还有^F4^COUNT !" -#: qcsrc/common/notifications/all.inc:713 +#: qcsrc/common/notifications/all.inc:714 #, c-format msgid "^F2Extra lives remaining: ^K1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:715 qcsrc/menu/xonotic/campaign.qc:244 +#: qcsrc/common/notifications/all.inc:716 qcsrc/menu/xonotic/campaign.qc:244 #, c-format msgid "Level %s: " msgstr "" -#: qcsrc/common/notifications/all.inc:715 +#: qcsrc/common/notifications/all.inc:716 #, c-format msgid "^BGPress ^F2%s^BG to enter the game" msgstr "" -#: qcsrc/common/notifications/all.inc:718 +#: qcsrc/common/notifications/all.inc:719 #, c-format msgid "" "^F2^COUNT^BG until weapon change...\n" "Next weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:719 +#: qcsrc/common/notifications/all.inc:720 #, c-format msgid "^F2Active weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:721 +#: qcsrc/common/notifications/all.inc:722 #, c-format msgid "^BGYou captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:722 +#: qcsrc/common/notifications/all.inc:723 msgid "^BGYou captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:723 +#: qcsrc/common/notifications/all.inc:724 #, c-format msgid "^TC^TT^BG team captured %s^BG control point" msgstr "" -#: qcsrc/common/notifications/all.inc:724 +#: qcsrc/common/notifications/all.inc:725 msgid "^TC^TT^BG team captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:725 +#: qcsrc/common/notifications/all.inc:726 msgid "^BGThis control point currently cannot be captured" msgstr "" -#: qcsrc/common/notifications/all.inc:726 +#: qcsrc/common/notifications/all.inc:727 msgid "" "^BGThe enemy generator cannot be destroyed yet\n" "^F2Capture some control points to unshield it" msgstr "" -#: qcsrc/common/notifications/all.inc:727 +#: qcsrc/common/notifications/all.inc:728 msgid "^BGThe ^TCenemy^BG generator is no longer shielded!" msgstr "" -#: qcsrc/common/notifications/all.inc:728 +#: qcsrc/common/notifications/all.inc:729 msgid "" "^K1Your generator is NOT shielded!\n" "^BGRe-capture control points to shield it!" msgstr "" -#: qcsrc/common/notifications/all.inc:729 +#: qcsrc/common/notifications/all.inc:730 #, c-format msgid "^BGPress ^F2%s^BG to teleport" msgstr "" -#: qcsrc/common/notifications/all.inc:730 +#: qcsrc/common/notifications/all.inc:731 #, c-format msgid "^BGTeleporting disabled for %s" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep fragging until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep scoring until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:733 +#: qcsrc/common/notifications/all.inc:734 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "\n" @@ -4187,136 +4193,136 @@ msgid "" "the faster the enemy generator decays" msgstr "" -#: qcsrc/common/notifications/all.inc:734 +#: qcsrc/common/notifications/all.inc:735 #, c-format msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "^BGAdded ^F4%s^BG to the game!" msgstr "" -#: qcsrc/common/notifications/all.inc:736 +#: qcsrc/common/notifications/all.inc:737 msgid "^K1In^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:737 +#: qcsrc/common/notifications/all.inc:738 msgid "^F3Out^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:738 +#: qcsrc/common/notifications/all.inc:739 msgid "^F1Portal creation failed" msgstr "" -#: qcsrc/common/notifications/all.inc:740 +#: qcsrc/common/notifications/all.inc:741 msgid "^F2Strength infuses your weapons with devastating power" msgstr "^F2神力给你的武器融入毁灭性的力量" -#: qcsrc/common/notifications/all.inc:741 +#: qcsrc/common/notifications/all.inc:742 msgid "^F2Strength has worn off" msgstr "^F2神力已失效" -#: qcsrc/common/notifications/all.inc:743 +#: qcsrc/common/notifications/all.inc:744 msgid "^F2Shield surrounds you" msgstr "" -#: qcsrc/common/notifications/all.inc:744 +#: qcsrc/common/notifications/all.inc:745 msgid "^F2Shield has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:746 +#: qcsrc/common/notifications/all.inc:747 msgid "^F2You are on speed" msgstr "" -#: qcsrc/common/notifications/all.inc:747 +#: qcsrc/common/notifications/all.inc:748 msgid "^F2Speed has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:749 +#: qcsrc/common/notifications/all.inc:750 msgid "^F2You are invisible" msgstr "" -#: qcsrc/common/notifications/all.inc:750 +#: qcsrc/common/notifications/all.inc:751 msgid "^F2Invisibility has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:752 +#: qcsrc/common/notifications/all.inc:753 msgid "^F2The race is over, finish your lap!" msgstr "" -#: qcsrc/common/notifications/all.inc:754 +#: qcsrc/common/notifications/all.inc:755 msgid "^BGSequence completed!" msgstr "" -#: qcsrc/common/notifications/all.inc:755 +#: qcsrc/common/notifications/all.inc:756 msgid "^BGThere are more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:756 +#: qcsrc/common/notifications/all.inc:757 #, c-format msgid "^BGOnly %s^BG more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:758 +#: qcsrc/common/notifications/all.inc:759 msgid "^F2Superweapons have broken down" msgstr "" -#: qcsrc/common/notifications/all.inc:759 +#: qcsrc/common/notifications/all.inc:760 msgid "^F2Superweapons have been lost" msgstr "" -#: qcsrc/common/notifications/all.inc:760 +#: qcsrc/common/notifications/all.inc:761 msgid "^F2You now have a superweapon" msgstr "" -#: qcsrc/common/notifications/all.inc:762 +#: qcsrc/common/notifications/all.inc:763 msgid "^K1Changing to ^TC^TT^K1 in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:763 +#: qcsrc/common/notifications/all.inc:764 msgid "^K1Changing team in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:764 +#: qcsrc/common/notifications/all.inc:765 msgid "^K1Spectating in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:765 +#: qcsrc/common/notifications/all.inc:766 msgid "^K1Suicide in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:767 +#: qcsrc/common/notifications/all.inc:768 msgid "^F4Timeout begins in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:768 +#: qcsrc/common/notifications/all.inc:769 msgid "^F4Timeout ends in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:770 +#: qcsrc/common/notifications/all.inc:771 msgid "^K1Cannot join given minigame session!" msgstr "" -#: qcsrc/common/notifications/all.inc:772 +#: qcsrc/common/notifications/all.inc:773 #, c-format msgid "^BGPress ^F2%s^BG to enter/exit the vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:773 +#: qcsrc/common/notifications/all.inc:774 #, c-format msgid "^BGPress ^F2%s^BG to enter the vehicle gunner" msgstr "" -#: qcsrc/common/notifications/all.inc:774 +#: qcsrc/common/notifications/all.inc:775 #, c-format msgid "^BGPress ^F2%s^BG to steal this vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:775 +#: qcsrc/common/notifications/all.inc:776 msgid "" "^F2The enemy is stealing one of your vehicles!\n" "^F4Stop them!" msgstr "" -#: qcsrc/common/notifications/all.inc:776 +#: qcsrc/common/notifications/all.inc:777 msgid "^F2Intruder detected, disabling shields!" msgstr "" diff --git a/common.zh_TW.po b/common.zh_TW.po index 45a326252d..f1cb3ac022 100644 --- a/common.zh_TW.po +++ b/common.zh_TW.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: Xonotic\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-06 07:22+0100\n" -"PO-Revision-Date: 2022-03-06 06:22+0000\n" -"Last-Translator: divVerent \n" +"POT-Creation-Date: 2022-03-27 07:22+0200\n" +"PO-Revision-Date: 2013-09-12 16:53+0000\n" +"Last-Translator: 黃柏諺 , 2015\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/team-xonotic/" "xonotic/language/zh_TW/)\n" "Language: zh_TW\n" @@ -220,270 +220,270 @@ msgstr "^3ALT ^7+ ^3ARROW KEYS ^7 進行微調" msgid "Player %d" msgstr "玩家 %d" -#: qcsrc/client/hud/panel/quickmenu.qc:617 -#: qcsrc/client/hud/panel/quickmenu.qc:619 +#: qcsrc/client/hud/panel/quickmenu.qc:608 +#: qcsrc/client/hud/panel/quickmenu.qc:610 #, c-format msgid "Submenu%d" msgstr "子菜單%d" -#: qcsrc/client/hud/panel/quickmenu.qc:624 +#: qcsrc/client/hud/panel/quickmenu.qc:615 #, c-format msgid "Command%d" msgstr "命令%d" -#: qcsrc/client/hud/panel/quickmenu.qc:650 +#: qcsrc/client/hud/panel/quickmenu.qc:641 msgid "Continue..." msgstr "繼續..." -#: qcsrc/client/hud/panel/quickmenu.qc:807 -#: qcsrc/client/hud/panel/quickmenu.qc:814 +#: qcsrc/client/hud/panel/quickmenu.qc:798 +#: qcsrc/client/hud/panel/quickmenu.qc:805 msgid "Chat" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:808 +#: qcsrc/client/hud/panel/quickmenu.qc:799 msgid "QMCMD^Send public message to" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^:-) / nice one" msgstr "QMCMD^:-) / 干得好" -#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:800 msgid "QMCMD^nice one" msgstr "QMCMD^干得好" -#: qcsrc/client/hud/panel/quickmenu.qc:810 +#: qcsrc/client/hud/panel/quickmenu.qc:801 msgid "QMCMD^good game" msgstr "QMCMD^好遊戲" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck" msgstr "QMCMD^嗨 / 祝你好運" -#: qcsrc/client/hud/panel/quickmenu.qc:811 +#: qcsrc/client/hud/panel/quickmenu.qc:802 msgid "QMCMD^hi / good luck and have fun" msgstr "QMCMD^嗨 / 祝你好運并玩的愉快" -#: qcsrc/client/hud/panel/quickmenu.qc:813 +#: qcsrc/client/hud/panel/quickmenu.qc:804 msgid "QMCMD^Send in English" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:818 -#: qcsrc/client/hud/panel/quickmenu.qc:834 +#: qcsrc/client/hud/panel/quickmenu.qc:809 +#: qcsrc/client/hud/panel/quickmenu.qc:825 msgid "QMCMD^Team chat" msgstr "QMCMD^團隊對話" -#: qcsrc/client/hud/panel/quickmenu.qc:819 +#: qcsrc/client/hud/panel/quickmenu.qc:810 msgid "QMCMD^strength soon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item %x^7 (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:820 +#: qcsrc/client/hud/panel/quickmenu.qc:811 msgid "QMCMD^free item, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item (l:%l^7)" msgstr "QMCMD^撿起物品 (l:%l^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:821 +#: qcsrc/client/hud/panel/quickmenu.qc:812 msgid "QMCMD^took item, icon" msgstr "QMCMD^撿起物品, 圖標" -#: qcsrc/client/hud/panel/quickmenu.qc:822 +#: qcsrc/client/hud/panel/quickmenu.qc:813 msgid "QMCMD^negative" msgstr "QMCMD^負面的" -#: qcsrc/client/hud/panel/quickmenu.qc:823 +#: qcsrc/client/hud/panel/quickmenu.qc:814 msgid "QMCMD^positive" msgstr "QMCMD^正面的" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^需要幫助 (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:824 +#: qcsrc/client/hud/panel/quickmenu.qc:815 msgid "QMCMD^need help, icon" msgstr "QMCMD^需要幫助, 圖標" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen (l:%y^7)" msgstr "QMCMD^看見敵人 (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:825 +#: qcsrc/client/hud/panel/quickmenu.qc:816 msgid "QMCMD^enemy seen, icon" msgstr "QMCMD^看見敵人, 圖標" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen (l:%y^7)" msgstr "QMCMD^看見旗子 (l:%y^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:826 +#: qcsrc/client/hud/panel/quickmenu.qc:817 msgid "QMCMD^flag seen, icon" msgstr "QMCMD^看見旗子, 圖標" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^防禦中 (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:827 +#: qcsrc/client/hud/panel/quickmenu.qc:818 msgid "QMCMD^defending, icon" msgstr "QMCMD^防禦中, 圖標" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^徘徊 (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:828 +#: qcsrc/client/hud/panel/quickmenu.qc:819 msgid "QMCMD^roaming, icon" msgstr "QMCMD^徘徊, 圖標" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" msgstr "QMCMD^攻擊中 (l:%l^7) (h:%h^7 a:%a^7 w:%w^7)" -#: qcsrc/client/hud/panel/quickmenu.qc:829 +#: qcsrc/client/hud/panel/quickmenu.qc:820 msgid "QMCMD^attacking, icon" msgstr "QMCMD^攻擊中, 圖標" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier (l:%y^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:821 msgid "QMCMD^killed flagcarrier, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 #, c-format msgid "QMCMD^dropped flag (l:%d^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:822 msgid "QMCMD^dropped flag, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^drop weapon, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:832 +#: qcsrc/client/hud/panel/quickmenu.qc:823 msgid "QMCMD^dropped weapon %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^drop flag/key, icon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:833 +#: qcsrc/client/hud/panel/quickmenu.qc:824 msgid "QMCMD^dropped flag/key %w^7 (l:%l^7)" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:837 +#: qcsrc/client/hud/panel/quickmenu.qc:828 msgid "QMCMD^Send private message to" msgstr "QMCMD^發送私人短信給" -#: qcsrc/client/hud/panel/quickmenu.qc:839 -#: qcsrc/client/hud/panel/quickmenu.qc:869 +#: qcsrc/client/hud/panel/quickmenu.qc:830 +#: qcsrc/client/hud/panel/quickmenu.qc:860 msgid "QMCMD^Settings" msgstr "QMCMD^設定" -#: qcsrc/client/hud/panel/quickmenu.qc:840 -#: qcsrc/client/hud/panel/quickmenu.qc:847 +#: qcsrc/client/hud/panel/quickmenu.qc:831 +#: qcsrc/client/hud/panel/quickmenu.qc:838 msgid "QMCMD^View/HUD settings" msgstr "QMCMD^查看/HUD設定" -#: qcsrc/client/hud/panel/quickmenu.qc:841 +#: qcsrc/client/hud/panel/quickmenu.qc:832 msgid "QMCMD^3rd person view" msgstr "QMCMD^第三人稱視角" -#: qcsrc/client/hud/panel/quickmenu.qc:842 +#: qcsrc/client/hud/panel/quickmenu.qc:833 msgid "QMCMD^Player models like mine" msgstr "QMCMD^玩家模型像我" -#: qcsrc/client/hud/panel/quickmenu.qc:843 +#: qcsrc/client/hud/panel/quickmenu.qc:834 msgid "QMCMD^Names above players" msgstr "QMCMD^名字在玩家上方" -#: qcsrc/client/hud/panel/quickmenu.qc:844 +#: qcsrc/client/hud/panel/quickmenu.qc:835 msgid "QMCMD^Crosshair per weapon" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:845 +#: qcsrc/client/hud/panel/quickmenu.qc:836 msgid "QMCMD^FPS" msgstr "QMCMD^FPS" -#: qcsrc/client/hud/panel/quickmenu.qc:846 +#: qcsrc/client/hud/panel/quickmenu.qc:837 msgid "QMCMD^Net graph" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:849 -#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:840 +#: qcsrc/client/hud/panel/quickmenu.qc:843 msgid "QMCMD^Sound settings" msgstr "QMCMD^音效設定" -#: qcsrc/client/hud/panel/quickmenu.qc:850 +#: qcsrc/client/hud/panel/quickmenu.qc:841 msgid "QMCMD^Hit sound" msgstr "QMCMD^擊打聲" -#: qcsrc/client/hud/panel/quickmenu.qc:851 +#: qcsrc/client/hud/panel/quickmenu.qc:842 msgid "QMCMD^Chat sound" msgstr "QMCMD^對話音效" -#: qcsrc/client/hud/panel/quickmenu.qc:856 +#: qcsrc/client/hud/panel/quickmenu.qc:847 msgid "QMCMD^Change spectator camera" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:861 -#: qcsrc/client/hud/panel/quickmenu.qc:865 +#: qcsrc/client/hud/panel/quickmenu.qc:852 +#: qcsrc/client/hud/panel/quickmenu.qc:856 msgid "QMCMD^Observer camera" msgstr "QMCMD^觀察鏡頭" -#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:853 msgid "QMCMD^Increase speed" msgstr "QMCMD^加速" -#: qcsrc/client/hud/panel/quickmenu.qc:863 +#: qcsrc/client/hud/panel/quickmenu.qc:854 msgid "QMCMD^Decrease speed" msgstr "QMCMD^減速" -#: qcsrc/client/hud/panel/quickmenu.qc:864 +#: qcsrc/client/hud/panel/quickmenu.qc:855 msgid "QMCMD^Wall collision" msgstr "" -#: qcsrc/client/hud/panel/quickmenu.qc:868 +#: qcsrc/client/hud/panel/quickmenu.qc:859 msgid "QMCMD^Fullscreen" msgstr "QMCMD^全屏" -#: qcsrc/client/hud/panel/quickmenu.qc:871 -#: qcsrc/client/hud/panel/quickmenu.qc:881 +#: qcsrc/client/hud/panel/quickmenu.qc:862 +#: qcsrc/client/hud/panel/quickmenu.qc:872 msgid "QMCMD^Call a vote" msgstr "QMCMD^呼籲投票" -#: qcsrc/client/hud/panel/quickmenu.qc:872 +#: qcsrc/client/hud/panel/quickmenu.qc:863 msgid "QMCMD^Restart the map" msgstr "QMCMD^重新啟動地圖" -#: qcsrc/client/hud/panel/quickmenu.qc:873 +#: qcsrc/client/hud/panel/quickmenu.qc:864 msgid "QMCMD^End match" msgstr "QMCMD^結束比賽" -#: qcsrc/client/hud/panel/quickmenu.qc:876 +#: qcsrc/client/hud/panel/quickmenu.qc:867 msgid "QMCMD^Reduce match time" msgstr "QMCMD^減少比賽時間" -#: qcsrc/client/hud/panel/quickmenu.qc:877 +#: qcsrc/client/hud/panel/quickmenu.qc:868 msgid "QMCMD^Extend match time" msgstr "QMCMD^延長比賽時間" -#: qcsrc/client/hud/panel/quickmenu.qc:880 +#: qcsrc/client/hud/panel/quickmenu.qc:871 msgid "QMCMD^Shuffle teams" msgstr "QMCMD^更換團隊" -#: qcsrc/client/hud/panel/quickmenu.qc:885 +#: qcsrc/client/hud/panel/quickmenu.qc:876 msgid "QMCMD^Spectate a player" msgstr "" @@ -1232,14 +1232,14 @@ msgstr "擊敗所有敵人來取取這回合的勝利" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 #: qcsrc/menu/xonotic/dialog_multiplayer_create.qc:105 msgid "Frag limit:" msgstr "擊殺限制:" #: qcsrc/common/gamemodes/gamemode/clanarena/clanarena.qh:40 #: qcsrc/common/gamemodes/gamemode/freezetag/freezetag.qh:43 -#: qcsrc/common/mapinfo.qh:86 +#: qcsrc/common/mapinfo.qh:89 msgid "The amount of frags needed before the match will end" msgstr "" @@ -3274,7 +3274,7 @@ msgid "^BG%s%s^K1 was riddled full of holes by ^BG%s^K1's Machine Gun%s%s" msgstr "" #: qcsrc/common/notifications/all.inc:472 -#: qcsrc/common/notifications/all.inc:778 +#: qcsrc/common/notifications/all.inc:779 #, c-format msgid "^BGYou cannot place more than ^F2%s^BG mines at a time" msgstr "" @@ -4052,122 +4052,128 @@ msgstr "" msgid "^BGYou have no lives left, you must wait until the next match" msgstr "^BG你已經沒有生命了, 你必須等待直到下場比賽" -#: qcsrc/common/notifications/all.inc:707 +#: qcsrc/common/notifications/all.inc:706 +msgid "" +"^F4WARNING:^BG you can't rejoin this match after spectating.\n" +"Use the same command again to spectate anyway." +msgstr "" + +#: qcsrc/common/notifications/all.inc:708 #, c-format msgid "" "^BGWaiting for players to join...\n" "Need active players for: %s" msgstr "" -#: qcsrc/common/notifications/all.inc:708 +#: qcsrc/common/notifications/all.inc:709 #, c-format msgid "^BGWaiting for %s player(s) to join..." msgstr "^BG等待 %s 玩家加入..." -#: qcsrc/common/notifications/all.inc:710 +#: qcsrc/common/notifications/all.inc:711 msgid "^BGYour weapon has been downgraded until you find some ammo!" msgstr "^BG你的武器已降級直到你找到一些彈藥!" -#: qcsrc/common/notifications/all.inc:711 +#: qcsrc/common/notifications/all.inc:712 msgid "^F4^COUNT^BG left to find some ammo!" msgstr "只剩 ^F4^COUNT^BG 秒來尋找彈藥!" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo or you'll be dead in ^F4^COUNT^BG!" msgstr "^BG趕快尋找一些彈藥或者你將會死亡在 ^F4^COUNT^BG 秒!" -#: qcsrc/common/notifications/all.inc:712 +#: qcsrc/common/notifications/all.inc:713 msgid "^BGGet some ammo! ^F4^COUNT^BG left!" msgstr "^BG趕快尋找一些彈藥! 只剩 ^F4^COUNT^BG 秒!" -#: qcsrc/common/notifications/all.inc:713 +#: qcsrc/common/notifications/all.inc:714 #, c-format msgid "^F2Extra lives remaining: ^K1%s" msgstr "^F2剩餘額外生命: ^K1%s" -#: qcsrc/common/notifications/all.inc:715 qcsrc/menu/xonotic/campaign.qc:244 +#: qcsrc/common/notifications/all.inc:716 qcsrc/menu/xonotic/campaign.qc:244 #, c-format msgid "Level %s: " msgstr "" -#: qcsrc/common/notifications/all.inc:715 +#: qcsrc/common/notifications/all.inc:716 #, c-format msgid "^BGPress ^F2%s^BG to enter the game" msgstr "" -#: qcsrc/common/notifications/all.inc:718 +#: qcsrc/common/notifications/all.inc:719 #, c-format msgid "" "^F2^COUNT^BG until weapon change...\n" "Next weapon: ^F1%s" msgstr "" -#: qcsrc/common/notifications/all.inc:719 +#: qcsrc/common/notifications/all.inc:720 #, c-format msgid "^F2Active weapon: ^F1%s" msgstr "^F2激活武器: ^F1%s" -#: qcsrc/common/notifications/all.inc:721 +#: qcsrc/common/notifications/all.inc:722 #, c-format msgid "^BGYou captured %s^BG control point" msgstr "^BG你佔領了 %s^BG 控制點" -#: qcsrc/common/notifications/all.inc:722 +#: qcsrc/common/notifications/all.inc:723 msgid "^BGYou captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:723 +#: qcsrc/common/notifications/all.inc:724 #, c-format msgid "^TC^TT^BG team captured %s^BG control point" msgstr "^TC^TT^BG 團隊佔領了 %s^BG 控制點" -#: qcsrc/common/notifications/all.inc:724 +#: qcsrc/common/notifications/all.inc:725 msgid "^TC^TT^BG team captured a control point" msgstr "" -#: qcsrc/common/notifications/all.inc:725 +#: qcsrc/common/notifications/all.inc:726 msgid "^BGThis control point currently cannot be captured" msgstr "^BG這個控制點當前不能佔領" -#: qcsrc/common/notifications/all.inc:726 +#: qcsrc/common/notifications/all.inc:727 msgid "" "^BGThe enemy generator cannot be destroyed yet\n" "^F2Capture some control points to unshield it" msgstr "" -#: qcsrc/common/notifications/all.inc:727 +#: qcsrc/common/notifications/all.inc:728 msgid "^BGThe ^TCenemy^BG generator is no longer shielded!" msgstr "" -#: qcsrc/common/notifications/all.inc:728 +#: qcsrc/common/notifications/all.inc:729 msgid "" "^K1Your generator is NOT shielded!\n" "^BGRe-capture control points to shield it!" msgstr "" -#: qcsrc/common/notifications/all.inc:729 +#: qcsrc/common/notifications/all.inc:730 #, c-format msgid "^BGPress ^F2%s^BG to teleport" msgstr "" -#: qcsrc/common/notifications/all.inc:730 +#: qcsrc/common/notifications/all.inc:731 #, c-format msgid "^BGTeleporting disabled for %s" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep fragging until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:732 +#: qcsrc/common/notifications/all.inc:733 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "Keep scoring until we have a winner!" msgstr "" -#: qcsrc/common/notifications/all.inc:733 +#: qcsrc/common/notifications/all.inc:734 msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "\n" @@ -4176,136 +4182,136 @@ msgid "" "the faster the enemy generator decays" msgstr "" -#: qcsrc/common/notifications/all.inc:734 +#: qcsrc/common/notifications/all.inc:735 #, c-format msgid "" "^F2Now playing ^F4OVERTIME^F2!\n" "^BGAdded ^F4%s^BG to the game!" msgstr "" -#: qcsrc/common/notifications/all.inc:736 +#: qcsrc/common/notifications/all.inc:737 msgid "^K1In^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:737 +#: qcsrc/common/notifications/all.inc:738 msgid "^F3Out^BG-portal created" msgstr "" -#: qcsrc/common/notifications/all.inc:738 +#: qcsrc/common/notifications/all.inc:739 msgid "^F1Portal creation failed" msgstr "^F1門戶創建失敗" -#: qcsrc/common/notifications/all.inc:740 +#: qcsrc/common/notifications/all.inc:741 msgid "^F2Strength infuses your weapons with devastating power" msgstr "" -#: qcsrc/common/notifications/all.inc:741 +#: qcsrc/common/notifications/all.inc:742 msgid "^F2Strength has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:743 +#: qcsrc/common/notifications/all.inc:744 msgid "^F2Shield surrounds you" msgstr "^F2盾牌環繞著你" -#: qcsrc/common/notifications/all.inc:744 +#: qcsrc/common/notifications/all.inc:745 msgid "^F2Shield has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:746 +#: qcsrc/common/notifications/all.inc:747 msgid "^F2You are on speed" msgstr "" -#: qcsrc/common/notifications/all.inc:747 +#: qcsrc/common/notifications/all.inc:748 msgid "^F2Speed has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:749 +#: qcsrc/common/notifications/all.inc:750 msgid "^F2You are invisible" msgstr "^F2你隱形了" -#: qcsrc/common/notifications/all.inc:750 +#: qcsrc/common/notifications/all.inc:751 msgid "^F2Invisibility has worn off" msgstr "" -#: qcsrc/common/notifications/all.inc:752 +#: qcsrc/common/notifications/all.inc:753 msgid "^F2The race is over, finish your lap!" msgstr "^F2比賽結束, 完成你的賽事!" -#: qcsrc/common/notifications/all.inc:754 +#: qcsrc/common/notifications/all.inc:755 msgid "^BGSequence completed!" msgstr "" -#: qcsrc/common/notifications/all.inc:755 +#: qcsrc/common/notifications/all.inc:756 msgid "^BGThere are more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:756 +#: qcsrc/common/notifications/all.inc:757 #, c-format msgid "^BGOnly %s^BG more to go..." msgstr "" -#: qcsrc/common/notifications/all.inc:758 +#: qcsrc/common/notifications/all.inc:759 msgid "^F2Superweapons have broken down" msgstr "^F2超級武器已損壞" -#: qcsrc/common/notifications/all.inc:759 +#: qcsrc/common/notifications/all.inc:760 msgid "^F2Superweapons have been lost" msgstr "^F2超級武器已消失" -#: qcsrc/common/notifications/all.inc:760 +#: qcsrc/common/notifications/all.inc:761 msgid "^F2You now have a superweapon" msgstr "" -#: qcsrc/common/notifications/all.inc:762 +#: qcsrc/common/notifications/all.inc:763 msgid "^K1Changing to ^TC^TT^K1 in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:763 +#: qcsrc/common/notifications/all.inc:764 msgid "^K1Changing team in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:764 +#: qcsrc/common/notifications/all.inc:765 msgid "^K1Spectating in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:765 +#: qcsrc/common/notifications/all.inc:766 msgid "^K1Suicide in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:767 +#: qcsrc/common/notifications/all.inc:768 msgid "^F4Timeout begins in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:768 +#: qcsrc/common/notifications/all.inc:769 msgid "^F4Timeout ends in ^COUNT" msgstr "" -#: qcsrc/common/notifications/all.inc:770 +#: qcsrc/common/notifications/all.inc:771 msgid "^K1Cannot join given minigame session!" msgstr "" -#: qcsrc/common/notifications/all.inc:772 +#: qcsrc/common/notifications/all.inc:773 #, c-format msgid "^BGPress ^F2%s^BG to enter/exit the vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:773 +#: qcsrc/common/notifications/all.inc:774 #, c-format msgid "^BGPress ^F2%s^BG to enter the vehicle gunner" msgstr "" -#: qcsrc/common/notifications/all.inc:774 +#: qcsrc/common/notifications/all.inc:775 #, c-format msgid "^BGPress ^F2%s^BG to steal this vehicle" msgstr "" -#: qcsrc/common/notifications/all.inc:775 +#: qcsrc/common/notifications/all.inc:776 msgid "" "^F2The enemy is stealing one of your vehicles!\n" "^F4Stop them!" msgstr "" -#: qcsrc/common/notifications/all.inc:776 +#: qcsrc/common/notifications/all.inc:777 msgid "^F2Intruder detected, disabling shields!" msgstr "" diff --git a/demoseeking.cfg b/demoseeking.cfg new file mode 100644 index 0000000000..5dbaf86b3a --- /dev/null +++ b/demoseeking.cfg @@ -0,0 +1,192 @@ +// Provides a seekdemo alias that allows fast-forwarding demo playback by a +// given time. +// +// Setup: +// +// Add "exec input-demoseeking.cfg" and the following cl_hook_gamestart_all +// hook to autoexec.cfg. If you already have a cl_hook_gamestart_all hook, add +// the quoted command to your hook, separated with a semicolon: +// +// exec demoseeking.cfg +// alias cl_hook_gamestart_all "demoseeking_game_started" +// +// Usage: +// 1. start a demo (ply/playdemo command or menu), and +// 2. while in a demo, use the "seekdemo " command +// +// Alternatively, use input-demoseeking.cfg instead to restore the default +// bindings: +// +// * use ,. (comma and dot) keys to seek -5/+5 seconds +// * use m/ (m and slash) keys to seek -30/+30 seconds +// * - (minus) also works instead of slash +// +// Options: +// +// These options can be customized after "exec demoseeking.cfg". +// +// _demoseeking_min_speed +// Minimum seek speed. Default 1.5. +// _demoseeking_max_speed +// Maximum seek speed. Default 200. Reduce this if the client freezes too +// much while seeking. If the framerate is still high while seeking, you +// may increase this, but increasing this with low framerate is unlikely to +// improve seek performance. +// _demoseeking_speed_factor +// Factor of remaining time to seek speed. Default 10. +// The seek speed is defined by the formula +// +// 1.0 + [remaining seek seconds] * _demoseeking_speed_factor +// +// bound by _demoseeking_min_speed and _demoseeking_max_speed. +// _demoseeking_fast_speed +// Seek speed above which rendering is disabled. Default 80. +// +// Variables: +// +// _demo_is_playing +// Indicates whether a demo is currently playing. Set to 1 when playdemo +// starts a demo. +// Note: the setup above is needed to reset this reliably. +// _current_demo_name +// The name of the latest played demo. Same as the argument passed to the +// last playdemo command. If playdemo fails to start the demo (e.g. when +// the file does not exist) this variable is not updated. +// Note: the setup above is needed to reset this reliably. +// _demoseeking_is_seeking +// 1 while a seek is in progress, 0 otherwise. +// +// Extras: +// +// - The alias playdemo_hook is run when demo playback is started. +// - The alias seekdemo_hook_seek_end is run after a seek completed successfully. +// - The alias seekdemo_getseektime can be used by scripts to get the current +// playback time or seek target time. See its usage below. + +// option initialization +set _demoseeking_options_loaded 1 +set _demoseeking_min_speed 1.5 +set _demoseeking_max_speed 200 +set _demoseeking_fast_speed 80 +set _demoseeking_speed_factor 10 + +// state initialization +alias _demoseeking_init_vars "set _demoseeking_vars_loaded 1; set _demo_is_playing 0; set _current_demo_name \"\"; set _demoseeking_is_seeking 0; set _seekdemo_state idle; set _seekdemo_target 0; alias playdemo_hook \"\"; alias seekdemo_hook_seek_end" +alias _demoseeking_init_vars1 "" +_demoseeking_init_vars${_demoseeking_vars_loaded ?} + +// Hook into game start to reset seekdemo state. This prevents reloading the +// last demo when seekdemo is accidentally called during an actual game. +alias demoseeking_game_started "set _demo_is_playing 0; set _current_demo_name \"\"" + +// usage: seekdemo_getseektime +// Populates with the current seek target time, if seeking. If not +// seeking, populate it with the current playback time. +alias seekdemo_getseektime "_seekdemo_getseektime_get \"$1\" _seekdemo_getseektime_rpn_$_seekdemo_state" +alias _seekdemo_getseektime_get "cl_cmd rpn \"/$1\" ${$2} def" +set _seekdemo_getseektime_rpn_idle time +set _seekdemo_getseektime_rpn_starting _seekdemo_target +set _seekdemo_getseektime_rpn_seeking _seekdemo_target + +// Hook into "playdemo" command. This alias runs immediately after the actual +// "playdemo" command runs. Needed for seekdemo to restart the demo when +// seeking backwards. Runs the playdemo_hook alias when a demo file is being +// loaded. +// --- +// "cl_cmd rpn" fails while a map is loading, leaving the value of +// _demoseeking_playdemo_success untouched, which means the playdemo command +// succeeded. +alias playdemo "set _demoseeking_playdemo_success 1; cl_cmd rpn /_demoseeking_playdemo_success 0 def; _demoseeking_playdemo_check \"$1\"" +alias _demoseeking_playdemo_check "_demoseeking_playdemo_check_$_demoseeking_playdemo_success \"$1\"" +alias _demoseeking_playdemo_check_0 "echo \"playdemo failed\"" +alias _demoseeking_playdemo_check_1 "set _demo_is_playing 1; set _current_demo_name \"$1\"; playdemo_hook" + +// Hook into the "defer" command to restore state when "defer clear" is run +// while seeking. "defer clear" seems to be run by some csprogs. +// --- +// compare the first argument. when it's "clear", run _demoseeking_restore +alias defer "alias _demoseeking_deftmp_$1 \"\"; alias _demoseeking_deftmp_clear _demoseeking_restore; _demoseeking_deftmp_$1; unalias _demoseeking_deftmp_$1" +alias _demoseeking_restore "_demoseeking_restore_$_seekdemo_state" +// idle - no seek, no state to restore +alias _demoseeking_restore_idle "" +// startseek - special state where this script calls defer clear before +// starting the seek loop +alias _demoseeking_restore_startseek "" +// starting - unexpected defer clear before seek started. Restore state by +// running check for forward/backward seek. +alias _demoseeking_restore_starting "_seekdemo_start_seek" +// seeking - unexpected defer clear while seeking. Restart the loop. +alias _demoseeking_restore_seeking "_seekdemo_check_time" + +// usage: seekdemo +// Seek the playing demo by the number of seconds. May be a floating point +// number. The seek is asynchronous. When a seek is already in action, the +// target time is adjusted by the specified amount. +// When starting a seek backwards, the demo is restarted before forwarding to +// the earlier time. Does nothing when no demo is playing (_demo_is_playing). +// --- +// check if seek should start or if target time should be adjusted instead +alias seekdemo "_seekdemo_checkstate_$_seekdemo_state ${* q}" +// before starting seek, verify demo is playing first +alias _seekdemo_checkstate_idle "set _seekdemo_demo_is_playing 0; cl_cmd rpn /_seekdemo_demo_is_playing _demo_is_playing 0 != def; _seekdemo_checkstart ${* q}" +// when already seeking, only update the variable holding the target time +alias _seekdemo_checkstate_starting "_seekdemo_checkstate_seeking ${* q}" +alias _seekdemo_checkstate_seeking "rpn /_seekdemo_target _seekdemo_target \"$1\" add def" + +alias _seekdemo_checkstart "_seekdemo_checkstart_$_seekdemo_demo_is_playing ${* q}" +alias _seekdemo_checkstart_0 "echo \"no demo currently playing\"" +// start new seek +alias _seekdemo_checkstart_1 "cl_cmd rpn /_seekdemo_target time \"$1\" add def; set _demoseeking_is_seeking 1; set _seekdemo_state starting; _seekdemo_save_options; _seekdemo_start_seek" + +// check if seeking forwards or backwards +alias _seekdemo_start_seek "set _seekdemo_time_increasing err; cl_cmd rpn /_seekdemo_time_increasing _seekdemo_target time ge def; _seekdemo_check_increasing" +alias _seekdemo_check_increasing "_seekdemo_check_increasing_$_seekdemo_time_increasing" +// when seeking backwards, restart the demo and start the reload wait loop +alias _seekdemo_check_increasing_0 "playdemo \"$_current_demo_name\"; set _seekdemo_reload_success 1; cl_cmd rpn _seekdemo_reload_success 0 def; _seekdemo_check_reloading" +alias _seekdemo_check_increasing_1 "_seekdemo_check_time" +alias _seekdemo_check_increasing_err "_seekdemo_failed \"(demo not loaded?)\"" +alias _seekdemo_check_reloading "_seekdemo_check_reloading_$_seekdemo_reload_success" +alias _seekdemo_check_reloading_0 "_seekdemo_failed (playdemo)" +// launch the "defer 10" command as a fallback to stop waiting in case demo reload fails +alias _seekdemo_check_reloading_1 "defer 10 \"_seekdemo_failed (reload)\"; _seekdemo_wait_reload" + +// demo reload wait loop. "cl_cmd rpn" fails to execute until demo finished loading, leaving _demo_loaded 0 +alias _seekdemo_wait_reload "set _demo_loaded 0; cl_cmd rpn /_demo_loaded 1 def; _seekdemo_check_loaded" +alias _seekdemo_check_loaded "_seekdemo_check_loaded_$_demo_loaded" +alias _seekdemo_check_loaded_0 "defer 0.02 _seekdemo_wait_reload" +// defer clear kills the fallback "defer 10" above +alias _seekdemo_check_loaded_1 "set _seekdemo_state startseek; defer clear; set _seekdemo_state seeking; _seekdemo_check_time" + +// start of main seek loop, check if target time is reached +alias _seekdemo_check_time "set _seekdemo_seek_state failed; cl_cmd rpn _seekdemo_target time dup /_seekdemo_current_time exch def gt /_seekdemo_seek_state exch def; _seekdemo_check_continue" +alias _seekdemo_check_continue "_seekdemo_check_continue_$_seekdemo_seek_state" +alias _seekdemo_check_continue_0 "_seekdemo_leave_seek; seekdemo_hook_seek_end" +// Update options while seeking. +// - Adjust the playback speed by setting the slowmo cvar. The further the seek, the faster the playback speed. +// - Compare the speed to different speed levels to maximize performance for long seeks while reducing screen flashes for short ones. +// Then continue the loop with "defer 0", so the check is run on every rendered frame. +alias _seekdemo_check_continue_1 "set _seekdemo_speed_level failed; cl_cmd rpn _seekdemo_target time sub _demoseeking_speed_factor 0.01 max mul 1 add _demoseeking_min_speed max _demoseeking_max_speed min dup /slowmo exch def dup _demoseeking_fast_speed gt exch 2 gt add /_seekdemo_speed_level exch def; _seekdemo_set_options; defer 0 _seekdemo_check_time" +alias _seekdemo_check_continue_failed "_seekdemo_failed \"(demo ended?)\"" + +alias _seekdemo_failed "_seekdemo_leave_seek; echo SEEK FAILED ${1 ?}" + +// Update options while and after seeking and for different levels of seek speed. +// - Disable r_render only at high seek speed to maximize performance, but keep +// it enabled otherwise to avoid jarring black screens for short seeks. +// - snd_startnonloopingsounds disables all sounds that can safely be disabled, +// avoiding lots of sounds playing at the same time. +// - Other disabled options prevent side effects from fast seeking at low +// framerate, where particles and other effects accumulate and appear at the +// same time when the target has been reached. +alias _seekdemo_leave_seek "_seekdemo_restore_options; set _demoseeking_is_seeking 0; set _seekdemo_state idle; r_render 1; snd_startnonloopingsounds 1; slowmo \"$_seekdemo_sav_slowmo\"" +alias _seekdemo_set_options "_seekdemo_set_options_$_seekdemo_speed_level" +// speed level 0: below 2x playback speed, target almost reached, all options restored +alias _seekdemo_set_options_0 "r_render 1; snd_startnonloopingsounds 1; _seekdemo_restore_options" +// speed level 1: between 2x and 80x playback speed, sounds disabled, game rendered with reduced graphics +alias _seekdemo_set_options_1 "r_render 1; snd_startnonloopingsounds 0; _seekdemo_settemp_options" +// speed level 2: above 80x playback speed, sounds disabled, game not rendered to maximize performance +alias _seekdemo_set_options_2 "r_render 0; snd_startnonloopingsounds 0; _seekdemo_settemp_options" +// save/restore options for reduced settings +alias _seekdemo_save_options "set _seekdemo_sav_cl_decals \"$cl_decals\"; set _seekdemo_sav_cl_damagetext \"$cl_damagetext\"; set _seekdemo_sav_cl_particles \"$cl_particles\"; set _seekdemo_sav_cl_casings \"$cl_casings\"; set _seekdemo_sav_slowmo \"$slowmo\"" +alias _seekdemo_settemp_options "settemp cl_decals 0; settemp cl_damagetext 0; settemp cl_particles 0; settemp cl_casings 0" +alias _seekdemo_restore_options "settemp cl_decals \"$_seekdemo_sav_cl_decals\"; settemp cl_damagetext \"$_seekdemo_sav_cl_damagetext\"; settemp cl_particles \"$_seekdemo_sav_cl_particles\"; settemp cl_casings \"$_seekdemo_sav_cl_casings\"" diff --git a/gamemodes-server.cfg b/gamemodes-server.cfg index 1d2a0d70a9..ba4812b57a 100644 --- a/gamemodes-server.cfg +++ b/gamemodes-server.cfg @@ -451,6 +451,7 @@ set g_lms_last_join 3 "if g_lms_join_anytime is 0, new players can only join if set g_lms_join_anytime 1 "1: new players can join, but get same amount of lives as the worst player; 0: new players can only join if the worst active player has (fraglimit - g_lms_last_join) or more lives" set g_lms_items 0 "enables items to spawn, weaponarena still disables weapons and ammo (to force all items to spawn, use g_pickup_items 1 instead)" set g_lms_weaponarena "most_available" "starting weapons - takes the same options as g_weaponarena" +set g_lms_forfeit_min_match_time 30 "end the match early if at least this many seconds have elapsed and less than 2 players are playing due to forfeits" // ========= diff --git a/gfx/menu/luma/skinvalues.txt b/gfx/menu/luma/skinvalues.txt index eef45e9a0a..1bf37b98b8 100644 --- a/gfx/menu/luma/skinvalues.txt +++ b/gfx/menu/luma/skinvalues.txt @@ -92,9 +92,10 @@ COLOR_DIALOG_VIEW '1 1 1' COLOR_DIALOG_MODEL '1 1 1' COLOR_DIALOG_CROSSHAIR '1 1 1' COLOR_DIALOG_HUD '1 1 1' -COLOR_DIALOG_SCREENSHOTVIEWER '1 1 1' COLOR_DIALOG_SERVERINFO '1 1 1' +COLOR_DIALOG_SCREENSHOTVIEWER '1 1 1' COLOR_DIALOG_FIRSTRUN '1 1 1' +COLOR_DIALOG_WELCOME '1 1 1' COLOR_DIALOG_CVARS '1 0.2 0.15' COLOR_DIALOG_HUDCONFIRM '1 0.2 0.15' diff --git a/gfx/menu/luminos/skinvalues.txt b/gfx/menu/luminos/skinvalues.txt index 2ffe29af0c..d4fdef1cd5 100755 --- a/gfx/menu/luminos/skinvalues.txt +++ b/gfx/menu/luminos/skinvalues.txt @@ -193,6 +193,8 @@ COLOR_DIALOG_CROSSHAIR '1 1 1' COLOR_DIALOG_HUD '1 1 1' COLOR_DIALOG_SERVERINFO '1 1 1' COLOR_DIALOG_SCREENSHOTVIEWER '1 1 1' +COLOR_DIALOG_FIRSTRUN '1 1 1' +COLOR_DIALOG_WELCOME '1 1 1' COLOR_DIALOG_CVARS '1 0 0' COLOR_DIALOG_HUDCONFIRM '1 0 0' diff --git a/gfx/menu/wickedx/skinvalues.txt b/gfx/menu/wickedx/skinvalues.txt index 0580e89eb1..ca5e303dac 100644 --- a/gfx/menu/wickedx/skinvalues.txt +++ b/gfx/menu/wickedx/skinvalues.txt @@ -193,6 +193,8 @@ COLOR_DIALOG_CROSSHAIR '1 1 1' COLOR_DIALOG_HUD '1 1 1' COLOR_DIALOG_SERVERINFO '1 1 1' COLOR_DIALOG_SCREENSHOTVIEWER '1 1 1' +COLOR_DIALOG_FIRSTRUN '1 1 1' +COLOR_DIALOG_WELCOME '1 1 1' COLOR_DIALOG_CVARS '1 0 0' COLOR_DIALOG_HUDCONFIRM '1 0 0' diff --git a/gfx/menu/xaw/skinvalues.txt b/gfx/menu/xaw/skinvalues.txt index af7d8ce165..aa4350cc56 100644 --- a/gfx/menu/xaw/skinvalues.txt +++ b/gfx/menu/xaw/skinvalues.txt @@ -37,6 +37,8 @@ COLOR_DIALOG_CROSSHAIR '1 1 1' COLOR_DIALOG_HUD '1 1 1' COLOR_DIALOG_SERVERINFO '1 1 1' COLOR_DIALOG_SCREENSHOTVIEWER '1 1 1' +COLOR_DIALOG_FIRSTRUN '1 1 1' +COLOR_DIALOG_WELCOME '1 1 1' COLOR_DIALOG_CVARS '1 0 0' COLOR_DIALOG_HUDCONFIRM '1 0 0' diff --git a/input-demoseeking.cfg b/input-demoseeking.cfg index e069ad94ad..b4250f06e6 100644 --- a/input-demoseeking.cfg +++ b/input-demoseeking.cfg @@ -1,32 +1,19 @@ -alias playdemo "set _demo_name \"$1\"" -set _demo_name "" -set _demo_seeking 0 -set _demo_good 0 -set _demo_time_increasing 0 -set _demo_time 0 -set _demo_time_step 0 -alias seekdemo "_seekdemo_1_$_demo_seeking $1" -alias _seekdemo_1_0 "cl_cmd rpn time dup \"$1\" add dup /_demo_time exch def le /_demo_time_increasing exch def; _seekdemo_2" -alias _seekdemo_1_1 "cl_cmd rpn time _demo_time \"$1\" add dup /_demo_time exch def le /_demo_time_increasing exch def; _seekdemo_2" -alias _seekdemo_2 "_demo_seeking 1; r_render 0; snd_startnonloopingsounds 0; _seekdemo_3_$_demo_time_increasing" -alias _seekdemo_3_0 "playdemo \"$_demo_name\"; _seekdemo_4; defer 10 _seekdemo_9_2" -alias _seekdemo_3_1 "_seekdemo_7" -alias _seekdemo_4 "set _demo_good 0; cl_cmd rpn /_demo_good 1 def; _seekdemo_5" -alias _seekdemo_5 "_seekdemo_6_$_demo_good" -alias _seekdemo_6_0 "defer 0.02 _seekdemo_4" -alias _seekdemo_6_1 "defer clear; _seekdemo_7" -alias _seekdemo_7 "set _demo_time_step 2; cl_cmd rpn _demo_time time gt /_demo_time_step exch def; _seekdemo_8" -alias _seekdemo_8 "_seekdemo_9_$_demo_time_step" -alias _seekdemo_9_0 "slowmo 1; set _demo_seeking 0; r_render 1; snd_startnonloopingsounds 1" -alias _seekdemo_9_1 "cl_cmd rpn _demo_time time sub 10 mul 1 add /slowmo exch def; defer 0.001 _seekdemo_7" -alias _seekdemo_9_2 "slowmo 1; set _demo_seeking 0; r_render 1; snd_startnonloopingsounds 1; echo SEEK FAILED" +// +// Make sure to follow the setup in demoseeking.cfg. +// +// This script loads demoseeking.cfg with the original bindings: +// +// * ,. (comma and dot) keys to seek -5/+5 seconds +// * m/ (m and slash) keys to seek -30/+30 seconds +// * - (minus) also works instead of slash +// +// To use demoseeking without these bindings, do `exec demoseeking.cfg` +// instead. + +exec demoseeking.cfg + bind , "seekdemo -5" bind . "seekdemo +5" bind m "seekdemo -30" bind - "seekdemo +30" bind / "seekdemo +30" - -// Usage: -// start a demo -// use ,. keys to seek -5/+5 seconds -// use m/ keys (left/right of ,.) to seek -30/+30 seconds diff --git a/languages.txt b/languages.txt index df10a5f458..f717786565 100644 --- a/languages.txt +++ b/languages.txt @@ -1,12 +1,12 @@ ast "Asturian" "Asturianu" 77% -de "German" "Deutsch" 100% -de_CH "German (Switzerland)" "Deutsch (Schweiz)" 100% +de "German" "Deutsch" 99% +de_CH "German (Switzerland)" "Deutsch (Schweiz)" 99% en "English" "English" 100% en_AU "English (Australia)" "English (Australia)" 72% es "Spanish" "Español" 99% fr "French" "Français" 100% ga "Irish" "Irish" 31% -it "Italian" "Italiano" 100% +it "Italian" "Italiano" 99% hu "Hungarian" "Magyar" 46% nl "Dutch" "Nederlands" 59% pl "Polish" "Polski" 72% @@ -14,7 +14,7 @@ pt "Portuguese" "Português" 81% pt_BR "Portuguese (Brazil)" "Português (Brasil)" 100% ro "Romanian" "Romana" 71% fi "Finnish" "Suomi" 99% -sv "Swedish" "Svenska" 97% +sv "Swedish" "Svenska" 99% tr "Turkish" "Türkçe" 52% cs "Czech" "Čeština" 32% el "Greek" "Ελληνική" 46% @@ -26,4 +26,4 @@ uk "Ukrainian" "Українська" 49% zh_CN "Chinese (China)" "中文" 59% zh_TW "Chinese (Taiwan)" "國語" 58% ja_JP "Japanese" "日本語" 99% -ko "Korean" "한국의" 28% +ko "Korean" "한국의" 37% diff --git a/notifications.cfg b/notifications.cfg index a23eb5539a..83fbcaf849 100644 --- a/notifications.cfg +++ b/notifications.cfg @@ -347,7 +347,6 @@ seta notification_CENTER_ALONE "1" "0 = off, 1 = centerprint" seta notification_CENTER_ASSAULT_ATTACKING "1" "0 = off, 1 = centerprint" seta notification_CENTER_ASSAULT_DEFENDING "1" "0 = off, 1 = centerprint" seta notification_CENTER_ASSAULT_OBJ_DESTROYED "1" "0 = off, 1 = centerprint" -seta notification_CENTER_CAMPAIGN_MESSAGE "1" "0 = off, 1 = centerprint" seta notification_CENTER_CAMPCHECK "1" "0 = off, 1 = centerprint" seta notification_CENTER_COINTOSS "1" "0 = off, 1 = centerprint" seta notification_CENTER_COUNTDOWN_BEGIN "1" "0 = off, 1 = centerprint" @@ -480,6 +479,7 @@ seta notification_CENTER_KEYHUNT_ROUNDSTART "1" "0 = off, 1 = centerprint" seta notification_CENTER_KEYHUNT_SCAN "1" "0 = off, 1 = centerprint" seta notification_CENTER_KEYHUNT_START "1" "0 = off, 1 = centerprint" seta notification_CENTER_LMS_NOLIVES "1" "0 = off, 1 = centerprint" +seta notification_CENTER_LMS_SPECWARN "1" "0 = off, 1 = centerprint" seta notification_CENTER_MISSING_PLAYERS "1" "0 = off, 1 = centerprint" seta notification_CENTER_MISSING_TEAMS "1" "0 = off, 1 = centerprint" seta notification_CENTER_MOTD "1" "0 = off, 1 = centerprint" diff --git a/physicsCPMA.cfg b/physicsCPMA.cfg index 7653219633..30a18cab99 100644 --- a/physicsCPMA.cfg +++ b/physicsCPMA.cfg @@ -40,3 +40,4 @@ sv_jumpspeedcap_max_disable_on_ramps 0 g_teleport_maxspeed 400 sv_track_canjump 0 sv_gameplayfix_stepdown_maxspeed 0 +g_movement_highspeed_q3_compat 1 diff --git a/physicsFruit.cfg b/physicsFruit.cfg index 4fcdcce0fc..7c0c5170e8 100644 --- a/physicsFruit.cfg +++ b/physicsFruit.cfg @@ -38,3 +38,4 @@ sv_jumpspeedcap_max_disable_on_ramps 1 g_teleport_maxspeed 0 sv_track_canjump 0 sv_gameplayfix_stepdown_maxspeed 0 +g_movement_highspeed_q3_compat 0 diff --git a/physicsHavoc.cfg b/physicsHavoc.cfg index a6598de998..fdefb9ccaf 100644 --- a/physicsHavoc.cfg +++ b/physicsHavoc.cfg @@ -39,3 +39,4 @@ sv_jumpspeedcap_max_disable_on_ramps 0 g_teleport_maxspeed 0 sv_track_canjump 0 sv_gameplayfix_stepdown_maxspeed 0 +g_movement_highspeed_q3_compat 0 diff --git a/physicsLeeStricklin-ModdedFruit.cfg b/physicsLeeStricklin-ModdedFruit.cfg index 9bf0e03abf..25f2b54d6f 100644 --- a/physicsLeeStricklin-ModdedFruit.cfg +++ b/physicsLeeStricklin-ModdedFruit.cfg @@ -47,3 +47,4 @@ sv_jumpspeedcap_max_disable_on_ramps 1 g_teleport_maxspeed 0 sv_track_canjump 0 sv_gameplayfix_stepdown_maxspeed 0 +g_movement_highspeed_q3_compat 0 diff --git a/physicsLeeStricklin.cfg b/physicsLeeStricklin.cfg index c6ecfd9274..5edcfbe27b 100644 --- a/physicsLeeStricklin.cfg +++ b/physicsLeeStricklin.cfg @@ -47,3 +47,4 @@ sv_jumpspeedcap_max_disable_on_ramps 1 g_teleport_maxspeed 0 sv_track_canjump 0 sv_gameplayfix_stepdown_maxspeed 0 +g_movement_highspeed_q3_compat 0 diff --git a/physicsLeeStricklinOld.cfg b/physicsLeeStricklinOld.cfg index 8b48b003c5..a4bdd08ca1 100644 --- a/physicsLeeStricklinOld.cfg +++ b/physicsLeeStricklinOld.cfg @@ -42,3 +42,4 @@ sv_jumpspeedcap_max_disable_on_ramps 0 g_teleport_maxspeed 0 sv_track_canjump 0 sv_gameplayfix_stepdown_maxspeed 0 +g_movement_highspeed_q3_compat 0 diff --git a/physicsLzd.cfg b/physicsLzd.cfg index 25a3b704e2..8d54437fb8 100644 --- a/physicsLzd.cfg +++ b/physicsLzd.cfg @@ -40,3 +40,4 @@ sv_jumpspeedcap_max_disable_on_ramps 0 g_teleport_maxspeed 0 sv_track_canjump 0 sv_gameplayfix_stepdown_maxspeed 0 +g_movement_highspeed_q3_compat 0 diff --git a/physicsNexuiz10.cfg b/physicsNexuiz10.cfg index bdaa0e66b6..3ca1ded65c 100644 --- a/physicsNexuiz10.cfg +++ b/physicsNexuiz10.cfg @@ -40,3 +40,4 @@ sv_jumpspeedcap_max_disable_on_ramps 0 g_teleport_maxspeed 0 sv_track_canjump 0 sv_gameplayfix_stepdown_maxspeed 0 +g_movement_highspeed_q3_compat 0 diff --git a/physicsNexuiz11.cfg b/physicsNexuiz11.cfg index c66ac46a0d..03056d184e 100644 --- a/physicsNexuiz11.cfg +++ b/physicsNexuiz11.cfg @@ -39,3 +39,4 @@ sv_jumpspeedcap_max_disable_on_ramps 0 g_teleport_maxspeed 0 sv_track_canjump 0 sv_gameplayfix_stepdown_maxspeed 0 +g_movement_highspeed_q3_compat 0 diff --git a/physicsNexuiz151.cfg b/physicsNexuiz151.cfg index b602295410..e2aa58971c 100644 --- a/physicsNexuiz151.cfg +++ b/physicsNexuiz151.cfg @@ -39,3 +39,4 @@ sv_jumpspeedcap_max_disable_on_ramps 0 g_teleport_maxspeed 0 sv_track_canjump 0 sv_gameplayfix_stepdown_maxspeed 0 +g_movement_highspeed_q3_compat 0 diff --git a/physicsNexuiz151b.cfg b/physicsNexuiz151b.cfg index 4ecdef9c07..26f746a7c0 100644 --- a/physicsNexuiz151b.cfg +++ b/physicsNexuiz151b.cfg @@ -39,3 +39,4 @@ sv_jumpspeedcap_max_disable_on_ramps 0 g_teleport_maxspeed 0 sv_track_canjump 0 sv_gameplayfix_stepdown_maxspeed 0 +g_movement_highspeed_q3_compat 0 diff --git a/physicsNexuiz16rc1.cfg b/physicsNexuiz16rc1.cfg index 912399130d..40e7d1f3fc 100644 --- a/physicsNexuiz16rc1.cfg +++ b/physicsNexuiz16rc1.cfg @@ -39,3 +39,4 @@ sv_jumpspeedcap_max_disable_on_ramps 0 g_teleport_maxspeed 0 sv_track_canjump 0 sv_gameplayfix_stepdown_maxspeed 0 +g_movement_highspeed_q3_compat 0 diff --git a/physicsNexuiz20.cfg b/physicsNexuiz20.cfg index 956310b8eb..24e27b01dd 100644 --- a/physicsNexuiz20.cfg +++ b/physicsNexuiz20.cfg @@ -39,3 +39,4 @@ sv_jumpspeedcap_max_disable_on_ramps 0 g_teleport_maxspeed 0 sv_track_canjump 0 sv_gameplayfix_stepdown_maxspeed 0 +g_movement_highspeed_q3_compat 0 diff --git a/physicsNexuiz25.cfg b/physicsNexuiz25.cfg index 0654a9f29e..167d2f4d45 100644 --- a/physicsNexuiz25.cfg +++ b/physicsNexuiz25.cfg @@ -39,3 +39,4 @@ sv_jumpspeedcap_max_disable_on_ramps 0 g_teleport_maxspeed 0 sv_track_canjump 0 sv_gameplayfix_stepdown_maxspeed 0 +g_movement_highspeed_q3_compat 0 diff --git a/physicsNexuiz26.cfg b/physicsNexuiz26.cfg index e20e2c93ea..6c41d6bbc0 100644 --- a/physicsNexuiz26.cfg +++ b/physicsNexuiz26.cfg @@ -39,3 +39,4 @@ sv_jumpspeedcap_max_disable_on_ramps 0 g_teleport_maxspeed 0 sv_track_canjump 0 sv_gameplayfix_stepdown_maxspeed 0 +g_movement_highspeed_q3_compat 0 diff --git a/physicsNoQWBunny-nexbased.cfg b/physicsNoQWBunny-nexbased.cfg index 063d2e365f..c1447c0f09 100644 --- a/physicsNoQWBunny-nexbased.cfg +++ b/physicsNoQWBunny-nexbased.cfg @@ -48,3 +48,4 @@ sv_jumpspeedcap_max_disable_on_ramps 1 g_teleport_maxspeed 0 sv_track_canjump 0 sv_gameplayfix_stepdown_maxspeed 0 +g_movement_highspeed_q3_compat 0 diff --git a/physicsOverkill.cfg b/physicsOverkill.cfg index b40b5a54f7..be6ea49633 100644 --- a/physicsOverkill.cfg +++ b/physicsOverkill.cfg @@ -53,3 +53,4 @@ sv_jumpspeedcap_max "" sv_jumpspeedcap_max_disable_on_ramps 1 g_teleport_maxspeed 0 sv_gameplayfix_stepdown_maxspeed 400 +g_movement_highspeed_q3_compat 0 diff --git a/physicsQ.cfg b/physicsQ.cfg index d0adac13e7..b84883d88b 100644 --- a/physicsQ.cfg +++ b/physicsQ.cfg @@ -40,3 +40,4 @@ sv_jumpspeedcap_max_disable_on_ramps 0 g_teleport_maxspeed 0 sv_track_canjump 0 sv_gameplayfix_stepdown_maxspeed 0 +g_movement_highspeed_q3_compat 0 diff --git a/physicsQ2.cfg b/physicsQ2.cfg index 7e6e2d6620..5e18a2f049 100644 --- a/physicsQ2.cfg +++ b/physicsQ2.cfg @@ -40,3 +40,4 @@ sv_jumpspeedcap_max_disable_on_ramps 0 g_teleport_maxspeed 0 sv_track_canjump 0 sv_gameplayfix_stepdown_maxspeed 0 +g_movement_highspeed_q3_compat 0 diff --git a/physicsQ2a.cfg b/physicsQ2a.cfg index 55e3125641..c614e817d3 100644 --- a/physicsQ2a.cfg +++ b/physicsQ2a.cfg @@ -41,3 +41,4 @@ sv_jumpspeedcap_max_disable_on_ramps 0 g_teleport_maxspeed 0 sv_track_canjump 0 sv_gameplayfix_stepdown_maxspeed 0 +g_movement_highspeed_q3_compat 0 diff --git a/physicsQ3.cfg b/physicsQ3.cfg index be6c7dd8c2..76ee484ec6 100644 --- a/physicsQ3.cfg +++ b/physicsQ3.cfg @@ -40,3 +40,4 @@ sv_jumpspeedcap_max_disable_on_ramps 0 g_teleport_maxspeed 320 sv_track_canjump 0 sv_gameplayfix_stepdown_maxspeed 0 +g_movement_highspeed_q3_compat 0 diff --git a/physicsQBF.cfg b/physicsQBF.cfg index 4d7bdfeb5c..4de2fbd885 100644 --- a/physicsQBF.cfg +++ b/physicsQBF.cfg @@ -39,3 +39,4 @@ sv_jumpspeedcap_max_disable_on_ramps 0 g_teleport_maxspeed 0 sv_track_canjump 0 sv_gameplayfix_stepdown_maxspeed 0 +g_movement_highspeed_q3_compat 0 diff --git a/physicsQBFplus.cfg b/physicsQBFplus.cfg index 5ae5720c70..880504782b 100644 --- a/physicsQBFplus.cfg +++ b/physicsQBFplus.cfg @@ -39,3 +39,4 @@ sv_jumpspeedcap_max_disable_on_ramps 0 g_teleport_maxspeed 0 sv_track_canjump 0 sv_gameplayfix_stepdown_maxspeed 0 +g_movement_highspeed_q3_compat 0 diff --git a/physicsSamual.cfg b/physicsSamual.cfg index 8c85486045..88165e03df 100644 --- a/physicsSamual.cfg +++ b/physicsSamual.cfg @@ -39,3 +39,4 @@ sv_jumpspeedcap_max_disable_on_ramps 0 g_teleport_maxspeed 0 sv_track_canjump 0 sv_gameplayfix_stepdown_maxspeed 0 +g_movement_highspeed_q3_compat 0 diff --git a/physicsWarsow.cfg b/physicsWarsow.cfg index a89ff6a80f..f89927d5d3 100644 --- a/physicsWarsow.cfg +++ b/physicsWarsow.cfg @@ -40,3 +40,4 @@ sv_jumpspeedcap_max_disable_on_ramps 0 g_teleport_maxspeed 0 sv_track_canjump 0 sv_gameplayfix_stepdown_maxspeed 0 +g_movement_highspeed_q3_compat 0 diff --git a/physicsWarsowClassicBunny.cfg b/physicsWarsowClassicBunny.cfg index 7150651152..ac1a96b52a 100644 --- a/physicsWarsowClassicBunny.cfg +++ b/physicsWarsowClassicBunny.cfg @@ -40,3 +40,4 @@ sv_jumpspeedcap_max_disable_on_ramps 0 g_teleport_maxspeed 0 sv_track_canjump 0 sv_gameplayfix_stepdown_maxspeed 0 +g_movement_highspeed_q3_compat 0 diff --git a/physicsWarsowDev.cfg b/physicsWarsowDev.cfg index bc75e8c622..7f7bcc8d6f 100644 --- a/physicsWarsowDev.cfg +++ b/physicsWarsowDev.cfg @@ -40,3 +40,4 @@ sv_jumpspeedcap_max_disable_on_ramps 0 g_teleport_maxspeed 0 sv_track_canjump 0 sv_gameplayfix_stepdown_maxspeed 0 +g_movement_highspeed_q3_compat 0 diff --git a/physicsX.cfg b/physicsX.cfg index dfe22345c5..252c2e7e9b 100644 --- a/physicsX.cfg +++ b/physicsX.cfg @@ -54,3 +54,4 @@ sv_jumpspeedcap_max "" sv_jumpspeedcap_max_disable_on_ramps 1 g_teleport_maxspeed 0 sv_gameplayfix_stepdown_maxspeed 400 +g_movement_highspeed_q3_compat 0 diff --git a/physicsX010.cfg b/physicsX010.cfg index 7228535532..8b81ca0421 100644 --- a/physicsX010.cfg +++ b/physicsX010.cfg @@ -47,3 +47,4 @@ sv_jumpspeedcap_max "" sv_jumpspeedcap_max_disable_on_ramps 1 g_teleport_maxspeed 0 sv_gameplayfix_stepdown_maxspeed 400 +g_movement_highspeed_q3_compat 0 diff --git a/physicsX07.cfg b/physicsX07.cfg index 9fcdb9918b..aa582bd991 100644 --- a/physicsX07.cfg +++ b/physicsX07.cfg @@ -53,3 +53,4 @@ sv_jumpspeedcap_max "" sv_jumpspeedcap_max_disable_on_ramps 1 g_teleport_maxspeed 0 sv_gameplayfix_stepdown_maxspeed 400 +g_movement_highspeed_q3_compat 0 diff --git a/physicsXDF.cfg b/physicsXDF.cfg index d7dd0a50e5..8bbe28eaa4 100644 --- a/physicsXDF.cfg +++ b/physicsXDF.cfg @@ -45,3 +45,5 @@ sv_jumpspeedcap_max 0.5 sv_jumpspeedcap_max_disable_on_ramps 1 g_teleport_maxspeed 600 sv_gameplayfix_stepdown_maxspeed 400 +// needed for correct q3 haste simulation +g_movement_highspeed_q3_compat 1 diff --git a/physicsXDFLight.cfg b/physicsXDFLight.cfg index 3a80e0858e..dd657afaf7 100644 --- a/physicsXDFLight.cfg +++ b/physicsXDFLight.cfg @@ -45,3 +45,4 @@ sv_jumpspeedcap_max "" sv_jumpspeedcap_max_disable_on_ramps 1 g_teleport_maxspeed 0 sv_gameplayfix_stepdown_maxspeed 400 +g_movement_highspeed_q3_compat 0 diff --git a/qcsrc/Doxyfile b/qcsrc/Doxyfile index 06ee7468dd..b1fd04119a 100644 --- a/qcsrc/Doxyfile +++ b/qcsrc/Doxyfile @@ -1,4 +1,4 @@ -# Doxyfile 1.8.10 +# Doxyfile 1.9.1 # This file describes the settings to be used by the documentation system # doxygen (www.doxygen.org) for a project. @@ -17,11 +17,11 @@ # Project related configuration options #--------------------------------------------------------------------------- -# This tag specifies the encoding used for all characters in the config file -# that follow. The default is UTF-8 which is also the encoding used for all text -# before the first occurrence of this tag. Doxygen uses libiconv (or the iconv -# built into libc) for the transcoding. See http://www.gnu.org/software/libiconv -# for the list of possible encodings. +# This tag specifies the encoding used for all characters in the configuration +# file that follow. The default is UTF-8 which is also the encoding used for all +# text before the first occurrence of this tag. Doxygen uses libiconv (or the +# iconv built into libc) for the transcoding. See +# https://www.gnu.org/software/libiconv/ for the list of possible encodings. # The default value is: UTF-8. DOXYFILE_ENCODING = UTF-8 @@ -32,7 +32,7 @@ DOXYFILE_ENCODING = UTF-8 # title of most generated pages and in a few other places. # The default value is: My Project. -PROJECT_NAME = "Xonotic" +PROJECT_NAME = Xonotic QuakeC # The PROJECT_NUMBER tag can be used to enter a project or revision number. This # could be handy for archiving the generated documentation or if some version @@ -44,7 +44,7 @@ PROJECT_NUMBER = # for a project that appears at the top of each page and should give viewer a # quick idea about the purpose of the project. Keep the description short. -PROJECT_BRIEF = +PROJECT_BRIEF = The free, fast arena FPS with crisp movement and a wide array of weapons # With the PROJECT_LOGO tag one can specify a logo or an icon that is included # in the documentation. The maximum height of the logo should not exceed 55 @@ -68,7 +68,7 @@ OUTPUT_DIRECTORY = # performance problems for the file system. # The default value is: NO. -CREATE_SUBDIRS = YES +CREATE_SUBDIRS = NO # If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII # characters to appear in the names of generated files. If set to NO, non-ASCII @@ -93,6 +93,14 @@ ALLOW_UNICODE_NAMES = NO OUTPUT_LANGUAGE = English +# The OUTPUT_TEXT_DIRECTION tag is used to specify the direction in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all generated output in the proper direction. +# Possible values are: None, LTR, RTL and Context. +# The default value is: None. + +OUTPUT_TEXT_DIRECTION = None + # If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member # descriptions after the members that are listed in the file and class # documentation (similar to Javadoc). Set to NO to disable this. @@ -179,6 +187,16 @@ SHORT_NAMES = NO JAVADOC_AUTOBRIEF = YES +# If the JAVADOC_BANNER tag is set to YES then doxygen will interpret a line +# such as +# /*************** +# as being the beginning of a Javadoc-style comment "banner". If set to NO, the +# Javadoc-style will behave just like regular comments and it will not be +# interpreted by doxygen. +# The default value is: NO. + +JAVADOC_BANNER = NO + # If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first # line (until the first dot) of a Qt-style comment as the brief description. If # set to NO, the Qt-style will behave just like regular Qt-style comments (thus @@ -199,6 +217,14 @@ QT_AUTOBRIEF = NO MULTILINE_CPP_IS_BRIEF = NO +# By default Python docstrings are displayed as preformatted text and doxygen's +# special commands cannot be used. By setting PYTHON_DOCSTRING to NO the +# doxygen's special commands can be used and the contents of the docstring +# documentation blocks is shown as doxygen documentation. +# The default value is: YES. + +PYTHON_DOCSTRING = YES + # If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the # documentation from any documented member that it re-implements. # The default value is: YES. @@ -226,16 +252,15 @@ TAB_SIZE = 4 # will allow you to put the command \sideeffect (or @sideeffect) in the # documentation, which will result in a user-defined paragraph with heading # "Side Effects:". You can put \n's in the value part of an alias to insert -# newlines. +# newlines (in the resulting output). You can put ^^ in the value part of an +# alias to insert a newline as if a physical newline was in the original file. +# When you need a literal { or } or , in the value part of an alias you have to +# escape them by means of a backslash (\), this can lead to conflicts with the +# commands \{ and \} for these it is advised to use the version @{ and @} or use +# a double escape (\\{ and \\}) ALIASES = -# This tag can be used to specify a number of word-keyword mappings (TCL only). -# A mapping has the form "name=value". For example adding "class=itcl::class" -# will allow you to use the command class in the itcl::class meaning. - -TCL_SUBST = - # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources # only. Doxygen will then generate output that is more tailored for C. For # instance, some of the names that are used will be different. The list of all @@ -264,28 +289,42 @@ OPTIMIZE_FOR_FORTRAN = NO OPTIMIZE_OUTPUT_VHDL = NO +# Set the OPTIMIZE_OUTPUT_SLICE tag to YES if your project consists of Slice +# sources only. Doxygen will then generate output that is more tailored for that +# language. For instance, namespaces will be presented as modules, types will be +# separated into more groups, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_SLICE = NO + # Doxygen selects the parser to use depending on the extension of the files it # parses. With this tag you can assign which parser to use for a given # extension. Doxygen has a built-in mapping, but you can override or extend it # using this tag. The format is ext=language, where ext is a file extension, and -# language is one of the parsers supported by doxygen: IDL, Java, Javascript, -# C#, C, C++, D, PHP, Objective-C, Python, Fortran (fixed format Fortran: -# FortranFixed, free formatted Fortran: FortranFree, unknown formatted Fortran: -# Fortran. In the later case the parser tries to guess whether the code is fixed -# or free formatted code, this is the default for Fortran type files), VHDL. For -# instance to make doxygen treat .inc files as Fortran files (default is PHP), -# and .f files as C (default is Fortran), use: inc=Fortran f=C. +# language is one of the parsers supported by doxygen: IDL, Java, JavaScript, +# Csharp (C#), C, C++, D, PHP, md (Markdown), Objective-C, Python, Slice, VHDL, +# Fortran (fixed format Fortran: FortranFixed, free formatted Fortran: +# FortranFree, unknown formatted Fortran: Fortran. In the later case the parser +# tries to guess whether the code is fixed or free formatted code, this is the +# default for Fortran type files). For instance to make doxygen treat .inc files +# as Fortran files (default is PHP), and .f files as C (default is Fortran), +# use: inc=Fortran f=C. # # Note: For files without extension you can use no_extension as a placeholder. # # Note that for custom extensions you also need to set FILE_PATTERNS otherwise -# the files are not read by doxygen. +# the files are not read by doxygen. When specifying no_extension you should add +# * to the FILE_PATTERNS. +# +# Note see also the list of default file extension mappings. -EXTENSION_MAPPING = qc=C qh=C inc=C +EXTENSION_MAPPING = qc=C \ + qh=C \ + inc=C # If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments # according to the Markdown format, which allows for more readable -# documentation. See http://daringfireball.net/projects/markdown/ for details. +# documentation. See https://daringfireball.net/projects/markdown/ for details. # The output of markdown processing is further processed by doxygen, so you can # mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in # case of backward compatibilities issues. @@ -293,6 +332,15 @@ EXTENSION_MAPPING = qc=C qh=C inc=C MARKDOWN_SUPPORT = YES +# When the TOC_INCLUDE_HEADINGS tag is set to a non-zero value, all headings up +# to that level are automatically included in the table of contents, even if +# they do not have an id attribute. +# Note: This feature currently applies only to Markdown headings. +# Minimum value: 0, maximum value: 99, default value: 5. +# This tag requires that the tag MARKDOWN_SUPPORT is set to YES. + +TOC_INCLUDE_HEADINGS = 5 + # When enabled doxygen tries to link words that correspond to documented # classes, or namespaces to their corresponding documentation. Such a link can # be prevented in individual cases by putting a % sign in front of the word or @@ -318,7 +366,7 @@ BUILTIN_STL_SUPPORT = NO CPP_CLI_SUPPORT = NO # Set the SIP_SUPPORT tag to YES if your project consists of sip (see: -# http://www.riverbankcomputing.co.uk/software/sip/intro) sources only. Doxygen +# https://www.riverbankcomputing.com/software/sip/intro) sources only. Doxygen # will parse them like normal C++ but will assume all classes use public instead # of private inheritance when no explicit protection keyword is present. # The default value is: NO. @@ -404,6 +452,19 @@ TYPEDEF_HIDES_STRUCT = YES LOOKUP_CACHE_SIZE = 0 +# The NUM_PROC_THREADS specifies the number threads doxygen is allowed to use +# during processing. When set to 0 doxygen will based this on the number of +# cores available in the system. You can set it explicitly to a value larger +# than 0 to get more control over the balance between CPU load and processing +# speed. At this moment only the input processing can be done using multiple +# threads. Since this is still an experimental feature the default is set to 1, +# which efficively disables parallel processing. Please report any issues you +# encounter. Generating dot graphs in parallel is controlled by the +# DOT_NUM_THREADS setting. +# Minimum value: 0, maximum value: 32, default value: 1. + +NUM_PROC_THREADS = 1 + #--------------------------------------------------------------------------- # Build related configuration options #--------------------------------------------------------------------------- @@ -424,6 +485,12 @@ EXTRACT_ALL = YES EXTRACT_PRIVATE = YES +# If the EXTRACT_PRIV_VIRTUAL tag is set to YES, documented private virtual +# methods of a class will be included in the documentation. +# The default value is: NO. + +EXTRACT_PRIV_VIRTUAL = NO + # If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal # scope will be included in the documentation. # The default value is: NO. @@ -461,6 +528,13 @@ EXTRACT_LOCAL_METHODS = YES EXTRACT_ANON_NSPACES = YES +# If this flag is set to YES, the name of an unnamed parameter in a declaration +# will be determined by the corresponding definition. By default unnamed +# parameters remain unnamed in the output. +# The default value is: YES. + +RESOLVE_UNNAMED_PARAMS = YES + # If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all # undocumented members inside documented classes or files. If set to NO these # members will be included in the various overviews, but no documentation @@ -478,8 +552,8 @@ HIDE_UNDOC_MEMBERS = NO HIDE_UNDOC_CLASSES = NO # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend -# (class|struct|union) declarations. If set to NO, these declarations will be -# included in the documentation. +# declarations. If set to NO, these declarations will be included in the +# documentation. # The default value is: NO. HIDE_FRIEND_COMPOUNDS = NO @@ -498,11 +572,18 @@ HIDE_IN_BODY_DOCS = NO INTERNAL_DOCS = YES -# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file -# names in lower-case letters. If set to YES, upper-case letters are also -# allowed. This is useful if you have classes or files whose names only differ -# in case and if your file system supports case sensitive file names. Windows -# and Mac users are advised to set this option to NO. +# With the correct setting of option CASE_SENSE_NAMES doxygen will better be +# able to match the capabilities of the underlying filesystem. In case the +# filesystem is case sensitive (i.e. it supports files in the same directory +# whose names only differ in casing), the option must be set to YES to properly +# deal with such files in case they appear in the input. For filesystems that +# are not case sensitive the option should be be set to NO to properly deal with +# output files written for symbols that only differ in casing, such as for two +# classes, one named CLASS and the other named Class, and to also support +# references to files without having to specify the exact matching casing. On +# Windows (including Cygwin) and MacOS, users should typically set this option +# to NO, whereas on Linux or other Unix flavors it should typically be set to +# YES. # The default value is: system dependent. CASE_SENSE_NAMES = YES @@ -689,7 +770,7 @@ LAYOUT_FILE = # The CITE_BIB_FILES tag can be used to specify one or more bib files containing # the reference definitions. This must be a list of .bib files. The .bib # extension is automatically appended if omitted. This requires the bibtex tool -# to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info. +# to be installed. See also https://en.wikipedia.org/wiki/BibTeX for more info. # For LaTeX the style of the bibliography can be controlled using # LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the # search path. See also \cite for info how to create references. @@ -734,11 +815,21 @@ WARN_IF_DOC_ERROR = YES # This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that # are documented, but have no documentation for their parameters or return # value. If set to NO, doxygen will only warn about wrong or incomplete -# parameter documentation, but not about the absence of documentation. +# parameter documentation, but not about the absence of documentation. If +# EXTRACT_ALL is set to YES then this flag will automatically be disabled. # The default value is: NO. WARN_NO_PARAMDOC = NO +# If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when +# a warning is encountered. If the WARN_AS_ERROR tag is set to FAIL_ON_WARNINGS +# then doxygen will continue running as if WARN_AS_ERROR tag is set to NO, but +# at the end of the doxygen process doxygen will return with a non-zero status. +# Possible values are: NO, YES and FAIL_ON_WARNINGS. +# The default value is: NO. + +WARN_AS_ERROR = NO + # The WARN_FORMAT tag determines the format of the warning messages that doxygen # can produce. The string should contain the $file, $line, and $text tags, which # will be replaced by the file and line number from which the warning originated @@ -770,8 +861,8 @@ INPUT = # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses # libiconv (or the iconv built into libc) for the transcoding. See the libiconv -# documentation (see: http://www.gnu.org/software/libiconv) for the list of -# possible encodings. +# documentation (see: +# https://www.gnu.org/software/libiconv/) for the list of possible encodings. # The default value is: UTF-8. INPUT_ENCODING = UTF-8 @@ -784,13 +875,20 @@ INPUT_ENCODING = UTF-8 # need to set EXTENSION_MAPPING for the extension otherwise the files are not # read by doxygen. # +# Note the list of default checked file patterns might differ from the list of +# default file extension mappings. +# # If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp, # *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, # *.hh, *.hxx, *.hpp, *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, -# *.m, *.markdown, *.md, *.mm, *.dox, *.py, *.f90, *.f, *.for, *.tcl, *.vhd, -# *.vhdl, *.ucf, *.qsf, *.as and *.js. +# *.m, *.markdown, *.md, *.mm, *.dox (to be provided as doxygen C comment), +# *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, *.f18, *.f, *.for, *.vhd, *.vhdl, +# *.ucf, *.qsf and *.ice. -FILE_PATTERNS = *.qc *.qh *.inc +FILE_PATTERNS = *.qc \ + *.qh \ + *.inc \ + *.md # The RECURSIVE tag can be used to specify whether or not subdirectories should # be searched for input files as well. @@ -874,6 +972,10 @@ IMAGE_PATH = # Note that the filter must not add or remove lines; it is applied before the # code is scanned, but not when the output code is generated. If lines are added # or removed, the anchors will not be placed correctly. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# properly processed by doxygen. INPUT_FILTER = @@ -883,6 +985,10 @@ INPUT_FILTER = # (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how # filters are used. If the FILTER_PATTERNS tag is empty or if none of the # patterns match the file name, INPUT_FILTER is applied. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# properly processed by doxygen. FILTER_PATTERNS = @@ -935,7 +1041,7 @@ INLINE_SOURCES = YES STRIP_CODE_COMMENTS = YES # If the REFERENCED_BY_RELATION tag is set to YES then for each documented -# function all documented functions referencing it will be listed. +# entity all documented functions referencing it will be listed. # The default value is: NO. REFERENCED_BY_RELATION = YES @@ -967,12 +1073,12 @@ SOURCE_TOOLTIPS = YES # If the USE_HTAGS tag is set to YES then the references to source code will # point to the HTML generated by the htags(1) tool instead of doxygen built-in # source browser. The htags tool is part of GNU's global source tagging system -# (see http://www.gnu.org/software/global/global.html). You will need version +# (see https://www.gnu.org/software/global/global.html). You will need version # 4.8.6 or higher. # # To use it do the following: # - Install the latest version of global -# - Enable SOURCE_BROWSER and USE_HTAGS in the config file +# - Enable SOURCE_BROWSER and USE_HTAGS in the configuration file # - Make sure the INPUT points to the root of the source tree # - Run doxygen as normal # @@ -994,6 +1100,44 @@ USE_HTAGS = NO VERBATIM_HEADERS = YES +# If the CLANG_ASSISTED_PARSING tag is set to YES then doxygen will use the +# clang parser (see: +# http://clang.llvm.org/) for more accurate parsing at the cost of reduced +# performance. This can be particularly helpful with template rich C++ code for +# which doxygen's built-in parser lacks the necessary type information. +# Note: The availability of this option depends on whether or not doxygen was +# generated with the -Duse_libclang=ON option for CMake. +# The default value is: NO. + +CLANG_ASSISTED_PARSING = NO + +# If clang assisted parsing is enabled and the CLANG_ADD_INC_PATHS tag is set to +# YES then doxygen will add the directory of each input to the include path. +# The default value is: YES. + +CLANG_ADD_INC_PATHS = YES + +# If clang assisted parsing is enabled you can provide the compiler with command +# line options that you would normally use when invoking the compiler. Note that +# the include paths will already be set by doxygen for the files and directories +# specified with INPUT and INCLUDE_PATH. +# This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES. + +CLANG_OPTIONS = + +# If clang assisted parsing is enabled you can provide the clang parser with the +# path to the directory containing a file called compile_commands.json. This +# file is the compilation database (see: +# http://clang.llvm.org/docs/HowToSetupToolingForLLVM.html) containing the +# options used when the source files were built. This is equivalent to +# specifying the -p option to a clang tool, such as clang-check. These options +# will then be passed to the parser. Any options specified with CLANG_OPTIONS +# will be added as well. +# Note: The availability of this option depends on whether or not doxygen was +# generated with the -Duse_libclang=ON option for CMake. + +CLANG_DATABASE_PATH = + #--------------------------------------------------------------------------- # Configuration options related to the alphabetical class index #--------------------------------------------------------------------------- @@ -1005,13 +1149,6 @@ VERBATIM_HEADERS = YES ALPHABETICAL_INDEX = YES -# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in -# which the alphabetical index list will be split. -# Minimum value: 1, maximum value: 20, default value: 5. -# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. - -COLS_IN_ALPHA_INDEX = 5 - # In case all classes in a project start with a common prefix, all classes will # be put under the same header in the alphabetical index. The IGNORE_PREFIX tag # can be used to specify a prefix (or a list of prefixes) that should be ignored @@ -1112,7 +1249,7 @@ HTML_EXTRA_FILES = # The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen # will adjust the colors in the style sheet and background images according to # this color. Hue is specified as an angle on a colorwheel, see -# http://en.wikipedia.org/wiki/Hue for more information. For instance the value +# https://en.wikipedia.org/wiki/Hue for more information. For instance the value # 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 # purple, and 360 is red again. # Minimum value: 0, maximum value: 359, default value: 220. @@ -1148,6 +1285,17 @@ HTML_COLORSTYLE_GAMMA = 80 HTML_TIMESTAMP = YES +# If the HTML_DYNAMIC_MENUS tag is set to YES then the generated HTML +# documentation will contain a main index with vertical navigation menus that +# are dynamically created via JavaScript. If disabled, the navigation index will +# consists of multiple levels of tabs that are statically embedded in every HTML +# page. Disable this option to support browsers that do not have JavaScript, +# like the Qt help browser. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_DYNAMIC_MENUS = YES + # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML # documentation will contain sections that can be hidden and shown after the # page has loaded. @@ -1171,13 +1319,14 @@ HTML_INDEX_NUM_ENTRIES = 100 # If the GENERATE_DOCSET tag is set to YES, additional index files will be # generated that can be used as input for Apple's Xcode 3 integrated development -# environment (see: http://developer.apple.com/tools/xcode/), introduced with -# OSX 10.5 (Leopard). To create a documentation set, doxygen will generate a -# Makefile in the HTML output directory. Running make will produce the docset in -# that directory and running make install will install the docset in +# environment (see: +# https://developer.apple.com/xcode/), introduced with OSX 10.5 (Leopard). To +# create a documentation set, doxygen will generate a Makefile in the HTML +# output directory. Running make will produce the docset in that directory and +# running make install will install the docset in # ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at -# startup. See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html -# for more information. +# startup. See https://developer.apple.com/library/archive/featuredarticles/Doxy +# genXcode/_index.html for more information. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. @@ -1216,8 +1365,8 @@ DOCSET_PUBLISHER_NAME = Publisher # If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three # additional HTML index files: index.hhp, index.hhc, and index.hhk. The # index.hhp is a project file that can be read by Microsoft's HTML Help Workshop -# (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on -# Windows. +# (see: +# https://www.microsoft.com/en-us/download/details.aspx?id=21138) on Windows. # # The HTML Help Workshop contains a compiler that can convert all HTML output # generated by doxygen into a single compiled HTML file (.chm). Compiled HTML @@ -1247,7 +1396,7 @@ CHM_FILE = HHC_LOCATION = # The GENERATE_CHI flag controls if a separate .chi index file is generated -# (YES) or that it should be included in the master .chm file (NO). +# (YES) or that it should be included in the main .chm file (NO). # The default value is: NO. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. @@ -1292,7 +1441,8 @@ QCH_FILE = # The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help # Project output. For more information please see Qt Help Project / Namespace -# (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#namespace). +# (see: +# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#namespace). # The default value is: org.doxygen.Project. # This tag requires that the tag GENERATE_QHP is set to YES. @@ -1300,8 +1450,8 @@ QHP_NAMESPACE = org.doxygen.Project # The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt # Help Project output. For more information please see Qt Help Project / Virtual -# Folders (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#virtual- -# folders). +# Folders (see: +# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#virtual-folders). # The default value is: doc. # This tag requires that the tag GENERATE_QHP is set to YES. @@ -1309,30 +1459,30 @@ QHP_VIRTUAL_FOLDER = doc # If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom # filter to add. For more information please see Qt Help Project / Custom -# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- -# filters). +# Filters (see: +# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-filters). # This tag requires that the tag GENERATE_QHP is set to YES. QHP_CUST_FILTER_NAME = # The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the # custom filter to add. For more information please see Qt Help Project / Custom -# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- -# filters). +# Filters (see: +# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-filters). # This tag requires that the tag GENERATE_QHP is set to YES. QHP_CUST_FILTER_ATTRS = # The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this # project's filter section matches. Qt Help Project / Filter Attributes (see: -# http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes). +# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#filter-attributes). # This tag requires that the tag GENERATE_QHP is set to YES. QHP_SECT_FILTER_ATTRS = -# The QHG_LOCATION tag can be used to specify the location of Qt's -# qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the -# generated .qhp file. +# The QHG_LOCATION tag can be used to specify the location (absolute path +# including file name) of Qt's qhelpgenerator. If non-empty doxygen will try to +# run qhelpgenerator on the generated .qhp file. # This tag requires that the tag GENERATE_QHP is set to YES. QHG_LOCATION = @@ -1366,7 +1516,7 @@ ECLIPSE_DOC_ID = org.doxygen.Project # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. -DISABLE_INDEX = NO +DISABLE_INDEX = YES # The GENERATE_TREEVIEW tag is used to specify whether a tree-like index # structure should be generated to display hierarchical information. If the tag @@ -1409,6 +1559,17 @@ TREEVIEW_WIDTH = 250 EXT_LINKS_IN_WINDOW = NO +# If the HTML_FORMULA_FORMAT option is set to svg, doxygen will use the pdf2svg +# tool (see https://github.com/dawbarton/pdf2svg) or inkscape (see +# https://inkscape.org) to generate formulas as SVG images instead of PNGs for +# the HTML output. These images will generally look nicer at scaled resolutions. +# Possible values are: png (the default) and svg (looks nicer but requires the +# pdf2svg or inkscape tool). +# The default value is: png. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FORMULA_FORMAT = svg + # Use this tag to change the font size of LaTeX formulas included as images in # the HTML documentation. When you change the font size after a successful # doxygen run you need to manually remove any form_*.png images from the HTML @@ -1418,7 +1579,7 @@ EXT_LINKS_IN_WINDOW = NO FORMULA_FONTSIZE = 10 -# Use the FORMULA_TRANPARENT tag to determine whether or not the images +# Use the FORMULA_TRANSPARENT tag to determine whether or not the images # generated for formulas are transparent PNGs. Transparent PNGs are not # supported properly for IE 6.0, but are supported on all modern browsers. # @@ -1429,8 +1590,14 @@ FORMULA_FONTSIZE = 10 FORMULA_TRANSPARENT = YES +# The FORMULA_MACROFILE can contain LaTeX \newcommand and \renewcommand commands +# to create new LaTeX commands to be used in formulas as building blocks. See +# the section "Including formulas" for details. + +FORMULA_MACROFILE = + # Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see -# http://www.mathjax.org) which uses client side Javascript for the rendering +# https://www.mathjax.org) which uses client side JavaScript for the rendering # instead of using pre-rendered bitmaps. Use this if you do not have LaTeX # installed or if you want to formulas look prettier in the HTML output. When # enabled you may also need to install MathJax separately and configure the path @@ -1442,7 +1609,7 @@ USE_MATHJAX = NO # When MathJax is enabled you can set the default output format to be used for # the MathJax output. See the MathJax site (see: -# http://docs.mathjax.org/en/latest/output.html) for more details. +# http://docs.mathjax.org/en/v2.7-latest/output.html) for more details. # Possible values are: HTML-CSS (which is slower, but has the best # compatibility), NativeMML (i.e. MathML) and SVG. # The default value is: HTML-CSS. @@ -1457,8 +1624,8 @@ MATHJAX_FORMAT = HTML-CSS # MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax # Content Delivery Network so you can quickly see the result without installing # MathJax. However, it is strongly recommended to install a local copy of -# MathJax from http://www.mathjax.org before deployment. -# The default value is: http://cdn.mathjax.org/mathjax/latest. +# MathJax from https://www.mathjax.org before deployment. +# The default value is: https://cdn.jsdelivr.net/npm/mathjax@2. # This tag requires that the tag USE_MATHJAX is set to YES. MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest @@ -1472,7 +1639,8 @@ MATHJAX_EXTENSIONS = # The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces # of code that will be used on startup of the MathJax code. See the MathJax site -# (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an +# (see: +# http://docs.mathjax.org/en/v2.7-latest/output.html) for more details. For an # example see the documentation. # This tag requires that the tag USE_MATHJAX is set to YES. @@ -1500,7 +1668,7 @@ MATHJAX_CODEFILE = SEARCHENGINE = YES # When the SERVER_BASED_SEARCH tag is enabled the search engine will be -# implemented using a web server instead of a web client using Javascript. There +# implemented using a web server instead of a web client using JavaScript. There # are two flavors of web server based searching depending on the EXTERNAL_SEARCH # setting. When disabled, doxygen will generate a PHP script for searching and # an index file used by the script. When EXTERNAL_SEARCH is enabled the indexing @@ -1509,7 +1677,7 @@ SEARCHENGINE = YES # The default value is: NO. # This tag requires that the tag SEARCHENGINE is set to YES. -SERVER_BASED_SEARCH = NO +SERVER_BASED_SEARCH = YES # When EXTERNAL_SEARCH tag is enabled doxygen will no longer generate the PHP # script for searching. Instead the search results are written to an XML file @@ -1519,7 +1687,8 @@ SERVER_BASED_SEARCH = NO # # Doxygen ships with an example indexer (doxyindexer) and search engine # (doxysearch.cgi) which are based on the open source search engine library -# Xapian (see: http://xapian.org/). +# Xapian (see: +# https://xapian.org/). # # See the section "External Indexing and Searching" for details. # The default value is: NO. @@ -1532,8 +1701,9 @@ EXTERNAL_SEARCH = NO # # Doxygen ships with an example indexer (doxyindexer) and search engine # (doxysearch.cgi) which are based on the open source search engine library -# Xapian (see: http://xapian.org/). See the section "External Indexing and -# Searching" for details. +# Xapian (see: +# https://xapian.org/). See the section "External Indexing and Searching" for +# details. # This tag requires that the tag SEARCHENGINE is set to YES. SEARCHENGINE_URL = @@ -1584,21 +1754,35 @@ LATEX_OUTPUT = latex # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be # invoked. # -# Note that when enabling USE_PDFLATEX this option is only used for generating -# bitmaps for formulas in the HTML output, but not in the Makefile that is -# written to the output directory. -# The default file is: latex. +# Note that when not enabling USE_PDFLATEX the default is latex when enabling +# USE_PDFLATEX the default is pdflatex and when in the later case latex is +# chosen this is overwritten by pdflatex. For specific output languages the +# default can have been set differently, this depends on the implementation of +# the output language. # This tag requires that the tag GENERATE_LATEX is set to YES. LATEX_CMD_NAME = latex # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to generate # index for LaTeX. +# Note: This tag is used in the Makefile / make.bat. +# See also: LATEX_MAKEINDEX_CMD for the part in the generated output file +# (.tex). # The default file is: makeindex. # This tag requires that the tag GENERATE_LATEX is set to YES. MAKEINDEX_CMD_NAME = makeindex +# The LATEX_MAKEINDEX_CMD tag can be used to specify the command name to +# generate index for LaTeX. In case there is no backslash (\) as first character +# it will be automatically added in the LaTeX code. +# Note: This tag is used in the generated output file (.tex). +# See also: MAKEINDEX_CMD_NAME for the part in the Makefile / make.bat. +# The default value is: makeindex. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_MAKEINDEX_CMD = makeindex + # If the COMPACT_LATEX tag is set to YES, doxygen generates more compact LaTeX # documents. This may be useful for small projects and may help to save some # trees in general. @@ -1683,9 +1867,11 @@ LATEX_EXTRA_FILES = PDF_HYPERLINKS = YES -# If the USE_PDFLATEX tag is set to YES, doxygen will use pdflatex to generate -# the PDF file directly from the LaTeX files. Set this option to YES, to get a -# higher quality PDF documentation. +# If the USE_PDFLATEX tag is set to YES, doxygen will use the engine as +# specified with LATEX_CMD_NAME to generate the PDF file directly from the LaTeX +# files. Set this option to YES, to get a higher quality PDF documentation. +# +# See also section LATEX_CMD_NAME for selecting the engine. # The default value is: YES. # This tag requires that the tag GENERATE_LATEX is set to YES. @@ -1719,12 +1905,28 @@ LATEX_SOURCE_CODE = NO # The LATEX_BIB_STYLE tag can be used to specify the style to use for the # bibliography, e.g. plainnat, or ieeetr. See -# http://en.wikipedia.org/wiki/BibTeX and \cite for more info. +# https://en.wikipedia.org/wiki/BibTeX and \cite for more info. # The default value is: plain. # This tag requires that the tag GENERATE_LATEX is set to YES. LATEX_BIB_STYLE = plain +# If the LATEX_TIMESTAMP tag is set to YES then the footer of each generated +# page will contain the date and time when the page was generated. Setting this +# to NO can help when comparing the output of multiple runs. +# The default value is: NO. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_TIMESTAMP = NO + +# The LATEX_EMOJI_DIRECTORY tag is used to specify the (relative or absolute) +# path from which the emoji images will be read. If a relative path is entered, +# it will be relative to the LATEX_OUTPUT directory. If left blank the +# LATEX_OUTPUT directory will be used. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_EMOJI_DIRECTORY = + #--------------------------------------------------------------------------- # Configuration options related to the RTF output #--------------------------------------------------------------------------- @@ -1764,9 +1966,9 @@ COMPACT_RTF = NO RTF_HYPERLINKS = NO -# Load stylesheet definitions from file. Syntax is similar to doxygen's config -# file, i.e. a series of assignments. You only have to provide replacements, -# missing definitions are set to their default value. +# Load stylesheet definitions from file. Syntax is similar to doxygen's +# configuration file, i.e. a series of assignments. You only have to provide +# replacements, missing definitions are set to their default value. # # See also section "Doxygen usage" for information on how to generate the # default style sheet that doxygen normally uses. @@ -1775,8 +1977,8 @@ RTF_HYPERLINKS = NO RTF_STYLESHEET_FILE = # Set optional variables used in the generation of an RTF document. Syntax is -# similar to doxygen's config file. A template extensions file can be generated -# using doxygen -e rtf extensionFile. +# similar to doxygen's configuration file. A template extensions file can be +# generated using doxygen -e rtf extensionFile. # This tag requires that the tag GENERATE_RTF is set to YES. RTF_EXTENSIONS_FILE = @@ -1862,6 +2064,13 @@ XML_OUTPUT = xml XML_PROGRAMLISTING = YES +# If the XML_NS_MEMB_FILE_SCOPE tag is set to YES, doxygen will include +# namespace members in file scope as well, matching the HTML output. +# The default value is: NO. +# This tag requires that the tag GENERATE_XML is set to YES. + +XML_NS_MEMB_FILE_SCOPE = NO + #--------------------------------------------------------------------------- # Configuration options related to the DOCBOOK output #--------------------------------------------------------------------------- @@ -1894,9 +2103,9 @@ DOCBOOK_PROGRAMLISTING = NO #--------------------------------------------------------------------------- # If the GENERATE_AUTOGEN_DEF tag is set to YES, doxygen will generate an -# AutoGen Definitions (see http://autogen.sf.net) file that captures the -# structure of the code including all documentation. Note that this feature is -# still experimental and incomplete at the moment. +# AutoGen Definitions (see http://autogen.sourceforge.net/) file that captures +# the structure of the code including all documentation. Note that this feature +# is still experimental and incomplete at the moment. # The default value is: NO. GENERATE_AUTOGEN_DEF = NO @@ -1996,21 +2205,24 @@ INCLUDE_FILE_PATTERNS = # recursively expanded use the := operator instead of the = operator. # This tag requires that the tag ENABLE_PREPROCESSING is set to YES. -PREDEFINED = \ - "XONOTIC" \ - "USING(name, T)=using name = T" \ - "CLASS(name, base)=class name : public base { public:" \ - "INIT(class)=class::class()" \ - "CONSTRUCTOR(class)=class::class(" \ - "DESTRUCTOR(class)=class::~class()" \ - "ATTRIB(class, name, T, val)=T name = val" \ - "ATTRIB_STRZONE(class, name, T, val)=T name = val" \ - "ATTRIBARRAY(class, name, T, val)=T name[val]" \ - "STATIC_ATTRIB(class, name, T, val)=static T name = val" \ - "STATIC_ATTRIB_STRZONE(class, name, T, val)=static T name = val" \ - "METHOD(class, name, prototype)=virtual void class::name()" \ - "ENDCLASS(class)=};" \ - __STDC__ +PREDEFINED = XONOTIC \ + SVQC \ + CSQC \ + MENUQC \ + GAMEQC \ + "USING(name, T)=using name = T" \ + "CLASS(name, base)=class name : public base { public:" \ + INIT(class)=class::class() \ + CONSTRUCTOR(class)=class::class( \ + DESTRUCTOR(class)=class::~class() \ + "ATTRIB(class, name, T, val)=T name = val" \ + "ATTRIB_STRZONE(class, name, T, val)=T name = val" \ + "ATTRIBARRAY(class, name, T, val)=T name[val]" \ + "STATIC_ATTRIB(class, name, T, val)=static T name = val" \ + "STATIC_ATTRIB_STRZONE(class, name, T, val)=static T name = val" \ + "METHOD(class, name, prototype)=virtual void class::name()" \ + ENDCLASS(class)=}; \ + __STDC__ # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this # tag can be used to specify a list of macro names that should be expanded. The @@ -2019,16 +2231,19 @@ PREDEFINED = \ # definition found in the source code. # This tag requires that the tag ENABLE_PREPROCESSING is set to YES. -EXPAND_AS_DEFINED = \ - USING \ - CLASS \ - INIT CONSTRUCTOR DESTRUCTOR \ - ATTRIB ATTRIB_STRZONE \ - STATIC_ATTRIB STATIC_ATTRIB_STRZONE \ - METHOD \ - ENDCLASS \ - LABEL \ - __STDC__ +EXPAND_AS_DEFINED = USING \ + CLASS \ + INIT \ + CONSTRUCTOR \ + DESTRUCTOR \ + ATTRIB \ + ATTRIB_STRZONE \ + STATIC_ATTRIB \ + STATIC_ATTRIB_STRZONE \ + METHOD \ + ENDCLASS \ + LABEL \ + __STDC__ # If the SKIP_FUNCTION_MACROS tag is set to YES then doxygen's preprocessor will # remove all references to function-like macros that are alone on a line, have @@ -2086,12 +2301,6 @@ EXTERNAL_GROUPS = YES EXTERNAL_PAGES = YES -# The PERL_PATH should be the absolute path and name of the perl script -# interpreter (i.e. the result of 'which perl'). -# The default file (with absolute path) is: /usr/bin/perl. - -PERL_PATH = /usr/bin/perl - #--------------------------------------------------------------------------- # Configuration options related to the dot tool #--------------------------------------------------------------------------- @@ -2105,15 +2314,6 @@ PERL_PATH = /usr/bin/perl CLASS_DIAGRAMS = YES -# You can define message sequence charts within doxygen comments using the \msc -# command. Doxygen will then run the mscgen tool (see: -# http://www.mcternan.me.uk/mscgen/)) to produce the chart and insert it in the -# documentation. The MSCGEN_PATH tag allows you to specify the directory where -# the mscgen tool resides. If left empty the tool is assumed to be found in the -# default search path. - -MSCGEN_PATH = - # You can include diagrams made with dia in doxygen documentation. Doxygen will # then run dia to produce the diagram and insert it in the documentation. The # DIA_PATH tag allows you to specify the directory where the dia binary resides. @@ -2132,7 +2332,7 @@ HIDE_UNDOC_RELATIONS = NO # http://www.graphviz.org/), a graph visualization toolkit from AT&T and Lucent # Bell Labs. The other options in this section have no effect if this option is # set to NO -# The default value is: NO. +# The default value is: YES. HAVE_DOT = YES @@ -2144,7 +2344,7 @@ HAVE_DOT = YES # Minimum value: 0, maximum value: 32, default value: 0. # This tag requires that the tag HAVE_DOT is set to YES. -DOT_NUM_THREADS = 2 +DOT_NUM_THREADS = 0 # When you want a differently looking font in the dot files that doxygen # generates you can specify the font name using DOT_FONTNAME. You need to make @@ -2211,10 +2411,32 @@ UML_LOOK = NO # but if the number exceeds 15, the total amount of fields shown is limited to # 10. # Minimum value: 0, maximum value: 100, default value: 10. -# This tag requires that the tag HAVE_DOT is set to YES. +# This tag requires that the tag UML_LOOK is set to YES. UML_LIMIT_NUM_FIELDS = 10 +# If the DOT_UML_DETAILS tag is set to NO, doxygen will show attributes and +# methods without types and arguments in the UML graphs. If the DOT_UML_DETAILS +# tag is set to YES, doxygen will add type and arguments for attributes and +# methods in the UML graphs. If the DOT_UML_DETAILS tag is set to NONE, doxygen +# will not generate fields with class member information in the UML graphs. The +# class diagrams will look similar to the default class diagrams but using UML +# notation for the relationships. +# Possible values are: NO, YES and NONE. +# The default value is: NO. +# This tag requires that the tag UML_LOOK is set to YES. + +DOT_UML_DETAILS = NO + +# The DOT_WRAP_THRESHOLD tag can be used to set the maximum number of characters +# to display on a single line. If the actual line length exceeds this threshold +# significantly it will wrapped across multiple lines. Some heuristics are apply +# to avoid ugly line breaks. +# Minimum value: 0, maximum value: 1000, default value: 17. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_WRAP_THRESHOLD = 17 + # If the TEMPLATE_RELATIONS tag is set to YES then the inheritance and # collaboration graphs will show the relations between templates and their # instances. @@ -2251,7 +2473,7 @@ INCLUDED_BY_GRAPH = YES # The default value is: NO. # This tag requires that the tag HAVE_DOT is set to YES. -CALL_GRAPH = YES +CALL_GRAPH = NO # If the CALLER_GRAPH tag is set to YES then doxygen will generate a caller # dependency graph for every global function or class method. @@ -2263,7 +2485,7 @@ CALL_GRAPH = YES # The default value is: NO. # This tag requires that the tag HAVE_DOT is set to YES. -CALLER_GRAPH = YES +CALLER_GRAPH = NO # If the GRAPHICAL_HIERARCHY tag is set to YES then doxygen will graphical # hierarchy of all classes instead of a textual one. @@ -2288,7 +2510,9 @@ DIRECTORY_GRAPH = YES # Note: If you choose svg you need to set HTML_FILE_EXTENSION to xhtml in order # to make the SVG files visible in IE 9+ (other browsers do not have this # requirement). -# Possible values are: png, jpg, gif, svg, png:gd, png:gd:gd, png:cairo, +# Possible values are: png, png:cairo, png:cairo:cairo, png:cairo:gd, png:gd, +# png:gd:gd, jpg, jpg:cairo, jpg:cairo:gd, jpg:gd, jpg:gd:gd, gif, gif:cairo, +# gif:cairo:gd, gif:gd, gif:gd:gd, svg, png:gd, png:gd:gd, png:cairo, # png:cairo:gd, png:cairo:cairo, png:cairo:gdiplus, png:gdiplus and # png:gdiplus:gdiplus. # The default value is: png. @@ -2341,6 +2565,11 @@ DIAFILE_DIRS = PLANTUML_JAR_PATH = +# When using plantuml, the PLANTUML_CFG_FILE tag can be used to specify a +# configuration file for plantuml. + +PLANTUML_CFG_FILE = + # When using plantuml, the specified paths are searched for files specified by # the !include statement in a plantuml block. @@ -2399,9 +2628,11 @@ DOT_MULTI_TARGETS = YES GENERATE_LEGEND = YES -# If the DOT_CLEANUP tag is set to YES, doxygen will remove the intermediate dot +# If the DOT_CLEANUP tag is set to YES, doxygen will remove the intermediate # files that are used to generate the various graphs. +# +# Note: This setting is not only used for dot files but also for msc and +# plantuml temporary files. # The default value is: YES. -# This tag requires that the tag HAVE_DOT is set to YES. DOT_CLEANUP = YES diff --git a/qcsrc/Makefile b/qcsrc/Makefile index f562bd4f69..ee9e7e64ab 100644 --- a/qcsrc/Makefile +++ b/qcsrc/Makefile @@ -81,6 +81,7 @@ clean: | $(WORKDIR) $(RM) $(WORKDIR)/qccversion.* $(RM) $(WORKDIR)/csprogs-* $(RM) $(WORKDIR)/autoexec/csprogs-*.cfg + $(RM) $(WORKDIR)/*.dat $(RM) csprogs-*.pk3 .PHONY: qc @@ -94,6 +95,12 @@ pk3: csprogs-$(VER).pk3 +COMPTESTS = test-server test-client test-menu +.PHONY: test $(COMPTESTS) +test: $(COMPTESTS) +$(COMPTESTS): + tools/compilationunits.sh $@ + %-$(VER).pk3: $(PROGS_OUT)/%.dat diff --git a/qcsrc/client/csqcmodel_hooks.qc b/qcsrc/client/csqcmodel_hooks.qc index 252c5032de..7c9234fae3 100644 --- a/qcsrc/client/csqcmodel_hooks.qc +++ b/qcsrc/client/csqcmodel_hooks.qc @@ -236,7 +236,7 @@ void CSQCPlayer_ModelAppearance_Apply(entity this, bool islocalplayer) bool forceplayercolors_enabled = false; #define fpc autocvar_cl_forceplayercolors - if (ISGAMETYPE(DUEL)) + if (gametype.m_1v1) { if ((myteam != NUM_SPECTATOR) && (fpc == 1 || fpc == 2 || fpc == 3 || fpc == 5)) forceplayercolors_enabled = true; @@ -301,7 +301,7 @@ void CSQCPlayer_ModelAppearance_Apply(entity this, bool islocalplayer) { if(autocvar_cl_forcemyplayercolors && islocalplayer) this.colormap = 1024 + autocvar_cl_forcemyplayercolors; - else if (autocvar_cl_forceuniqueplayercolors && !islocalplayer && !ISGAMETYPE(DUEL)) + else if (autocvar_cl_forceuniqueplayercolors && !islocalplayer && !gametype.m_1v1) { // Assign each enemy unique colors // pick colors from 0 to 14 since 15 is the rainbow color diff --git a/qcsrc/client/hud/hud_config.qc b/qcsrc/client/hud/hud_config.qc index 2c05285e28..78ed8442ad 100644 --- a/qcsrc/client/hud/hud_config.qc +++ b/qcsrc/client/hud/hud_config.qc @@ -537,27 +537,21 @@ float HUD_Panel_InputEvent(float bInputType, float nPrimary, float nSecondary) return true; } - // allow console bind to work - string con_keys = findkeysforcommand("toggleconsole", 0); - int keys = tokenize(con_keys); // findkeysforcommand returns data for this - - bool hit_con_bind = false; - int i; - for (i = 0; i < keys; ++i) - { - if(nPrimary == stof(argv(i))) - hit_con_bind = true; - } - + int hudShiftState_prev = hudShiftState; + int mouseClicked_prev = mouseClicked; if(key_pressed) { if(nPrimary == K_ALT) hudShiftState |= S_ALT; if(nPrimary == K_CTRL) hudShiftState |= S_CTRL; if(nPrimary == K_SHIFT) hudShiftState |= S_SHIFT; + if(nPrimary == K_MOUSE1) mouseClicked |= S_MOUSE1; + if(nPrimary == K_MOUSE2) mouseClicked |= S_MOUSE2; } else { if(nPrimary == K_ALT) hudShiftState -= (hudShiftState & S_ALT); if(nPrimary == K_CTRL) hudShiftState -= (hudShiftState & S_CTRL); if(nPrimary == K_SHIFT) hudShiftState -= (hudShiftState & S_SHIFT); + if(nPrimary == K_MOUSE1) mouseClicked -= (mouseClicked & S_MOUSE1); + if(nPrimary == K_MOUSE2) mouseClicked -= (mouseClicked & S_MOUSE2); } if(nPrimary == K_CTRL) @@ -576,21 +570,7 @@ float HUD_Panel_InputEvent(float bInputType, float nPrimary, float nSecondary) } } - if(nPrimary == K_MOUSE1) - { - if(key_pressed) - mouseClicked |= S_MOUSE1; - else - mouseClicked -= (mouseClicked & S_MOUSE1); - } - else if(nPrimary == K_MOUSE2) - { - if(key_pressed) - mouseClicked |= S_MOUSE2; - else - mouseClicked -= (mouseClicked & S_MOUSE2); - } - else if(nPrimary == K_ESCAPE) + if(nPrimary == K_ESCAPE) { if (!key_pressed) return true; @@ -639,7 +619,7 @@ float HUD_Panel_InputEvent(float bInputType, float nPrimary, float nSecondary) vector candidate_pos = '0 0 0'; const float LEVELS_NUM = 4; float level_height = vid_conheight / LEVELS_NUM; -LABEL(find_tab_panel) + LABEL(find_tab_panel) level = floor(tab_panel_pos.y / level_height) * level_height; //starting level candidate_pos.x = (!tab_backward) ? vid_conwidth : 0; start_posX = tab_panel_pos.x; @@ -647,7 +627,7 @@ LABEL(find_tab_panel) k=0; while(++k) { - for(i = 0; i < REGISTRY_COUNT(hud_panels); ++i) + for(int i = 0; i < REGISTRY_COUNT(hud_panels); ++i) { panel = REGISTRY_GET(hud_panels, i); if(!(panel.panel_configflags & PANEL_CONFIG_MAIN)) @@ -787,8 +767,19 @@ LABEL(find_tab_panel) if (highlightedPanel) HUD_Panel_EnableMenu(); } - else if(hit_con_bind || nPrimary == K_PAUSE) + else if(nPrimary == K_PAUSE) return false; + else if (hudShiftState_prev == hudShiftState && mouseClicked_prev == mouseClicked) + { + // allow console bind to work + string con_keys = findkeysforcommand("toggleconsole", 0); + int keys = tokenize(con_keys); // findkeysforcommand returns data for this + for (int i = 0; i < keys; ++i) + { + if(nPrimary == stof(argv(i))) + return false; // hit console bind + } + } return true; } diff --git a/qcsrc/client/hud/panel/quickmenu.qc b/qcsrc/client/hud/panel/quickmenu.qc index 3c3a5ba864..245bdad1ba 100644 --- a/qcsrc/client/hud/panel/quickmenu.qc +++ b/qcsrc/client/hud/panel/quickmenu.qc @@ -449,34 +449,26 @@ bool QuickMenu_InputEvent(int bInputType, float nPrimary, float nSecondary) // at this point bInputType can only be 0 or 1 (key pressed or released) bool key_pressed = (bInputType == 0); + int hudShiftState_prev = hudShiftState; + int mouseClicked_prev = mouseClicked; if(key_pressed) { if(nPrimary == K_ALT) hudShiftState |= S_ALT; if(nPrimary == K_CTRL) hudShiftState |= S_CTRL; if(nPrimary == K_SHIFT) hudShiftState |= S_SHIFT; + if(nPrimary == K_MOUSE1) mouseClicked |= S_MOUSE1; + if(nPrimary == K_MOUSE2) mouseClicked |= S_MOUSE2; } else { if(nPrimary == K_ALT) hudShiftState -= (hudShiftState & S_ALT); if(nPrimary == K_CTRL) hudShiftState -= (hudShiftState & S_CTRL); if(nPrimary == K_SHIFT) hudShiftState -= (hudShiftState & S_SHIFT); + if(nPrimary == K_MOUSE1) mouseClicked -= (mouseClicked & S_MOUSE1); + if(nPrimary == K_MOUSE2) mouseClicked -= (mouseClicked & S_MOUSE2); } - if(nPrimary == K_MOUSE1) - { - if(key_pressed) - mouseClicked |= S_MOUSE1; - else - mouseClicked -= (mouseClicked & S_MOUSE1); - } - else if(nPrimary == K_MOUSE2) - { - if(key_pressed) - mouseClicked |= S_MOUSE2; - else - mouseClicked -= (mouseClicked & S_MOUSE2); - } - else if(nPrimary == K_ESCAPE && key_pressed) + if(nPrimary == K_ESCAPE && key_pressed) { QuickMenu_Close(); } @@ -484,13 +476,12 @@ bool QuickMenu_InputEvent(int bInputType, float nPrimary, float nSecondary) { QuickMenu_Page_ActiveEntry(stof(chr2str(nPrimary))); } - else + else if (hudShiftState_prev == hudShiftState && mouseClicked_prev == mouseClicked) { // allow console bind to work string con_keys = findkeysforcommand("toggleconsole", 0); int keys = tokenize(con_keys); // findkeysforcommand returns data for this - int i; - for (i = 0; i < keys; ++i) + for (int i = 0; i < keys; ++i) { if(nPrimary == stof(argv(i))) return false; // hit console bind diff --git a/qcsrc/client/hud/panel/timer.qc b/qcsrc/client/hud/panel/timer.qc index cdf635f227..68e7312c7a 100644 --- a/qcsrc/client/hud/panel/timer.qc +++ b/qcsrc/client/hud/panel/timer.qc @@ -91,7 +91,7 @@ void HUD_Timer() timer_color = HUD_Timer_Color(timeleft); // Timer text - if (autocvar_hud_panel_timer_increment || timelimit == 0) + if (autocvar_hud_panel_timer_increment || timelimit <= 0) timer = seconds_tostring(HUD_Timer_TimeElapsed(curtime, STAT(GAMESTARTTIME))); else timer = seconds_tostring(timeleft); diff --git a/qcsrc/client/main.qc b/qcsrc/client/main.qc index a70627d807..16227a0cba 100644 --- a/qcsrc/client/main.qc +++ b/qcsrc/client/main.qc @@ -1312,6 +1312,59 @@ NET_HANDLE(TE_CSQC_WEAPONCOMPLAIN, bool isNew) } } +NET_HANDLE(TE_CSQC_SERVERWELCOME, bool isNew) +{ + bool campaign = ReadByte(); + if (campaign) + { + string campaign_title = ReadString(); + int campaign_level = ReadByte(); + string campaign_msg = ReadString(); + string welcomedialog_args; + welcomedialog_args = strcat("HOSTNAME \"", campaign_title, "\""); + string key = getcommandkey(_("jump"), "+jump"); + string msg = strcat( + CCR("^F1"), sprintf(_("Level %d:"), campaign_level), + sprintf(CCR(" ^BG%s\n^3\n"), campaign_msg), + sprintf(CCR(_("^BGPress ^F2%s^BG to enter the game")), key)); + msg = MakeConsoleSafe(strreplace("\n", "\\n", msg)); + welcomedialog_args = strcat(welcomedialog_args, " WELCOME \"", msg, "\""); + localcmd("\nmenu_cmd directmenu Welcome ", welcomedialog_args, "\n"); + return true; + } + + bool force_centerprint = ReadByte(); + string hostname = ReadString(); + string ver = ReadString(); + string modifications = ReadString(); + string cache_mutatormsg = ReadString(); + string mutator_msg = ReadString(); + string motd = ReadString(); + + string msg = ""; + msg = strcat(msg, ver); + msg = strcat(msg, "^8\n\n", strcat(_("Gametype:"), " ^1", MapInfo_Type_ToText(gametype)), "^8\n"); + if(modifications != "") + msg = strcat(msg, "^8\n", _("Active modifications:"), " ^3", modifications, "^8\n"); + if (cache_mutatormsg != "") + msg = strcat(msg, "\n\n^8", _("Special gameplay tips:"), " ^7", cache_mutatormsg); + msg = strcat(msg, mutator_msg); // trust that the mutator will do proper formatting + if (motd != "") + msg = strcat(msg, "\n\n^8", _("MOTD:"), " ^7", motd); + + if (!force_centerprint && !isdemo() && cvar("_menu_welcome_dialog_available") && autocvar_cl_welcome_in_menu_dialog) + { + string welcomedialog_args; + welcomedialog_args = strcat("HOSTNAME \"", hostname, "\""); + msg = MakeConsoleSafe(strreplace("\n", "\\n", msg)); + welcomedialog_args = strcat(welcomedialog_args, " WELCOME \"", msg, "\""); + localcmd("\nmenu_cmd directmenu Welcome ", welcomedialog_args, "\n"); + } + else + centerprint_Add(ORDINAL(CPID_MOTD), strcat(hostname, "\n\n\n", msg), -1, 0); + return true; +} + string _getcommandkey(string cmd_name, string command, bool forcename) { string keys; diff --git a/qcsrc/client/main.qh b/qcsrc/client/main.qh index 83417c08d9..56dae7f4f1 100644 --- a/qcsrc/client/main.qh +++ b/qcsrc/client/main.qh @@ -19,6 +19,7 @@ bool autocvar__hud_showbinds_reload; bool autocvar_developer_csqcentities; bool autocvar_cl_race_cptimes_onlyself; // TODO: move to race gamemode bool autocvar_cl_race_cptimes_showself = false; +bool autocvar_cl_welcome_in_menu_dialog = true; // Map coordinate base calculations need these vector mi_center; diff --git a/qcsrc/common/gamemodes/gamemode/duel/duel.qh b/qcsrc/common/gamemodes/gamemode/duel/duel.qh index 298e62e003..cacf13fa55 100644 --- a/qcsrc/common/gamemodes/gamemode/duel/duel.qh +++ b/qcsrc/common/gamemodes/gamemode/duel/duel.qh @@ -6,7 +6,7 @@ CLASS(Duel, Gametype) INIT(Duel) { - this.gametype_init(this, _("Duel"),"duel","g_duel",GAMETYPE_FLAG_USEPOINTS,"","timelimit=10 pointlimit=0 leadlimit=0",_("Fight in a one versus one arena battle to decide the winner")); + this.gametype_init(this, _("Duel"),"duel","g_duel",GAMETYPE_FLAG_USEPOINTS | GAMETYPE_FLAG_1V1,"","timelimit=10 pointlimit=0 leadlimit=0",_("Fight in a one versus one arena battle to decide the winner")); } METHOD(Duel, m_isAlwaysSupported, bool(Gametype this, int spawnpoints, float diameter)) { diff --git a/qcsrc/common/gamemodes/gamemode/lms/sv_lms.qc b/qcsrc/common/gamemodes/gamemode/lms/sv_lms.qc index ffc7768e24..0357069988 100644 --- a/qcsrc/common/gamemodes/gamemode/lms/sv_lms.qc +++ b/qcsrc/common/gamemodes/gamemode/lms/sv_lms.qc @@ -7,6 +7,7 @@ #include int autocvar_g_lms_extra_lives; +float autocvar_g_lms_forfeit_min_match_time; bool autocvar_g_lms_join_anytime; int autocvar_g_lms_last_join; bool autocvar_g_lms_items; @@ -43,10 +44,16 @@ int WinningCondition_LMS() entity first_player = NULL; int totalplayers = 0; - FOREACH_CLIENT(IS_PLAYER(it) && it.frags == FRAGS_PLAYER, { - if (!totalplayers) - first_player = it; - ++totalplayers; + int totalplayed = 0; + FOREACH_CLIENT(true, { + if (IS_PLAYER(it) && it.frags == FRAGS_PLAYER) + { + if (!totalplayers) + first_player = it; + ++totalplayers; + } + else if (GameRules_scoring_add(it, LMS_RANK, 0)) + ++totalplayed; }); if (totalplayers) @@ -74,6 +81,11 @@ int WinningCondition_LMS() if (LMS_NewPlayerLives()) { + if (totalplayed && game_starttime > 0 && time > game_starttime + autocvar_g_lms_forfeit_min_match_time) // give players time to join + { + GameRules_scoring_add(first_player, LMS_RANK, 1); + return WINNING_YES; + } // game still running (that is, nobody got removed from the game by a frag yet)? then continue return WINNING_NO; } @@ -91,6 +103,11 @@ int WinningCondition_LMS() // nobody is playing at all... if (LMS_NewPlayerLives()) { + if (totalplayed && game_starttime > 0 && time > game_starttime + autocvar_g_lms_forfeit_min_match_time) // give players time to join + { + ClearWinners(); + return WINNING_YES; + } // wait for players... } else @@ -502,7 +519,8 @@ MUTATOR_HOOKFUNCTION(lms, ClientCommand_Spectate) if(player.frags != FRAGS_SPECTATOR && player.frags != FRAGS_PLAYER_OUT_OF_GAME) { player.lms_spectate_warning = 1; - sprint(player, "WARNING: you won't be able to enter the game again after spectating in LMS. Use the same command again to spectate anyway.\n"); + sprint(player, "^1WARNING:^7 you can't rejoin this match after spectating. Use the same command again to spectate anyway.\n"); + Send_Notification(NOTIF_ONE_ONLY, player, MSG_CENTER, CENTER_LMS_SPECWARN); } return MUT_SPECCMD_RETURN; } diff --git a/qcsrc/common/mapinfo.qh b/qcsrc/common/mapinfo.qh index 0ac0c62305..a7bf6ce0aa 100644 --- a/qcsrc/common/mapinfo.qh +++ b/qcsrc/common/mapinfo.qh @@ -22,6 +22,7 @@ const int GAMETYPE_FLAG_PREFERRED = BIT(2); // preferred (when available) const int GAMETYPE_FLAG_PRIORITY = BIT(3); // priority selection when preferred gametype isn't available in random selections const int GAMETYPE_FLAG_HIDELIMITS = BIT(4); // don't display a score limit needed for winning the match in the scoreboard const int GAMETYPE_FLAG_WEAPONARENA = BIT(5); // gametype has a forced weapon arena, weapon arena mutators should disable themselves when this is set +const int GAMETYPE_FLAG_1V1 = BIT(6); // 1v1 gameplay int MAPINFO_TYPE_ALL; .int m_flags; @@ -44,6 +45,8 @@ CLASS(Gametype, Object) ATTRIB(Gametype, m_hidelimits, bool, false); /** does this gametype enforce its own weapon arena? */ ATTRIB(Gametype, m_weaponarena, bool, false); + /** 1v1 gameplay? */ + ATTRIB(Gametype, m_1v1, bool, false); /** game type defaults */ ATTRIB(Gametype, model2, string); /** game type description */ @@ -111,6 +114,7 @@ CLASS(Gametype, Object) this.m_priority = ((gflags & GAMETYPE_FLAG_PREFERRED) ? 2 : ((gflags & GAMETYPE_FLAG_PRIORITY) ? 1 : 0)); this.m_hidelimits = (gflags & GAMETYPE_FLAG_HIDELIMITS); this.m_weaponarena = (gflags & GAMETYPE_FLAG_WEAPONARENA); + this.m_1v1 = (gflags & GAMETYPE_FLAG_1V1); // same as `1 << m_id` MAPINFO_TYPE_ALL |= this.items = this.m_flags = (MAPINFO_TYPE_ALL + 1); diff --git a/qcsrc/common/net_linked.qh b/qcsrc/common/net_linked.qh index 6651c6cb9b..e1586c2034 100644 --- a/qcsrc/common/net_linked.qh +++ b/qcsrc/common/net_linked.qh @@ -5,6 +5,7 @@ REGISTER_NET_TEMP(TE_CSQC_RACE) REGISTER_NET_TEMP(TE_CSQC_TEAMNAGGER) REGISTER_NET_TEMP(TE_CSQC_PINGPLREPORT) REGISTER_NET_TEMP(TE_CSQC_WEAPONCOMPLAIN) +REGISTER_NET_TEMP(TE_CSQC_SERVERWELCOME) REGISTER_NET_TEMP(TE_CSQC_VEHICLESETUP) const int RACE_NET_CHECKPOINT_HIT_QUALIFYING = 0; // byte checkpoint, short time, short recordtime, string recordholder diff --git a/qcsrc/common/notifications/all.inc b/qcsrc/common/notifications/all.inc index f1b2af8e60..31d9bb1d1e 100644 --- a/qcsrc/common/notifications/all.inc +++ b/qcsrc/common/notifications/all.inc @@ -703,6 +703,7 @@ string multiteam_info_sprintf(string input, string teamname) { return ((input != MULTITEAM_CENTER(KEYHUNT_START, N_ENABLE, 0, 0, "", CPID_KEYHUNT, "0 0", _("^BGYou are starting with the ^TC^TT Key"), "", KEY) MSG_CENTER_NOTIF(LMS_NOLIVES, N_ENABLE, 0, 0, "", CPID_LMS, "0 0", _("^BGYou have no lives left, you must wait until the next match"), "") + MSG_CENTER_NOTIF(LMS_SPECWARN, N_ENABLE, 0, 0, "", CPID_LMS, "0 0", _("^F4WARNING:^BG you can't rejoin this match after spectating.\nUse the same command again to spectate anyway."), "") MSG_CENTER_NOTIF(MISSING_TEAMS, N_ENABLE, 0, 1, "missing_teams", CPID_MISSING_TEAMS, "-1 0", _("^BGWaiting for players to join...\nNeed active players for: %s"), "") MSG_CENTER_NOTIF(MISSING_PLAYERS, N_ENABLE, 0, 1, "f1", CPID_MISSING_PLAYERS, "-1 0", _("^BGWaiting for %s player(s) to join..."), "") @@ -712,7 +713,6 @@ string multiteam_info_sprintf(string input, string teamname) { return ((input != MSG_CENTER_NOTIF(INSTAGIB_FINDAMMO_FIRST, N_ENABLE, 0, 0, "", CPID_INSTAGIB_FINDAMMO, "1 10", _("^BGGet some ammo or you'll be dead in ^F4^COUNT^BG!"), _("^BGGet some ammo! ^F4^COUNT^BG left!")) MSG_CENTER_NOTIF(INSTAGIB_LIVES_REMAINING, N_ENABLE, 0, 1, "f1", CPID_Null, "0 0", _("^F2Extra lives remaining: ^K1%s"), "") - MSG_CENTER_NOTIF(CAMPAIGN_MESSAGE, N_ENABLE, 1, 1, "f1 s1 join_key", CPID_CAMPAIGN_MESSAGE, "-1 0", strcat(_("Level %s: "), "^BG%s\n^3\n", _("^BGPress ^F2%s^BG to enter the game")), "") MSG_CENTER_NOTIF(MOTD, N_ENABLE, 1, 0, "s1", CPID_MOTD, "-1 0", "^BG%s", "") MSG_CENTER_NOTIF(NIX_COUNTDOWN, N_ENABLE, 0, 2, "item_wepname", CPID_NIX, "1 f2", _("^F2^COUNT^BG until weapon change...\nNext weapon: ^F1%s"), "") diff --git a/qcsrc/common/notifications/all.qh b/qcsrc/common/notifications/all.qh index 8d882bf3cc..45259741b3 100644 --- a/qcsrc/common/notifications/all.qh +++ b/qcsrc/common/notifications/all.qh @@ -62,7 +62,6 @@ ENUMCLASS(CPID) CASE(CPID, MISSING_TEAMS) CASE(CPID, MISSING_PLAYERS) CASE(CPID, INSTAGIB_FINDAMMO) - CASE(CPID, CAMPAIGN_MESSAGE) CASE(CPID, MOTD) CASE(CPID, NIX) CASE(CPID, ONSLAUGHT) diff --git a/qcsrc/common/physics/movetypes/movetypes.qc b/qcsrc/common/physics/movetypes/movetypes.qc index 1bd0eb7aeb..48aa9dd106 100644 --- a/qcsrc/common/physics/movetypes/movetypes.qc +++ b/qcsrc/common/physics/movetypes/movetypes.qc @@ -179,6 +179,8 @@ int _Movetype_FlyMove(entity this, float dt, bool applygravity, bool applystepno if(trace_fraction == 1) break; + time_left *= 1 - trace_fraction; + float my_trace_fraction = trace_fraction; vector my_trace_plane_normal = trace_plane_normal; @@ -204,6 +206,7 @@ int _Movetype_FlyMove(entity this, float dt, bool applygravity, bool applystepno // step - handle it immediately vector org = this.origin; vector steppush = '0 0 1' * stepheight; + push = this.velocity * time_left; if(!_Movetype_PushEntity(this, steppush, true, false)) { @@ -224,7 +227,8 @@ int _Movetype_FlyMove(entity this, float dt, bool applygravity, bool applystepno } // accept the new position if it made some progress... - if(fabs(this.origin_x - org.x) >= 0.03125 || fabs(this.origin_y - org.y) >= 0.03125) + // previously this checked if absolute distance >= 0.03125 which made stepping up unreliable + if(this.origin_x - org.x || this.origin_y - org.y) { trace_endpos = this.origin; time_left *= 1 - trace2_fraction; @@ -250,8 +254,6 @@ int _Movetype_FlyMove(entity this, float dt, bool applygravity, bool applystepno numplanes = 0; } - time_left *= 1 - my_trace_fraction; - // clipped to another plane if(numplanes >= MAX_CLIP_PLANES) { diff --git a/qcsrc/common/resources/sv_resources.qc b/qcsrc/common/resources/sv_resources.qc index 9984e9111d..37805f852f 100644 --- a/qcsrc/common/resources/sv_resources.qc +++ b/qcsrc/common/resources/sv_resources.qc @@ -65,7 +65,7 @@ float GetResourceLimit(entity e, Resource res_type) } } MUTATOR_CALLHOOK(GetResourceLimit, e, res_type, limit); - limit = M_ARGV(2, float); + limit = M_ARGV(9, float); if (limit > RES_AMOUNT_HARD_LIMIT) { limit = RES_AMOUNT_HARD_LIMIT; @@ -96,8 +96,8 @@ void SetResource(entity e, Resource res_type, float amount) { return; } - res_type = M_ARGV(1, entity); - amount = M_ARGV(2, float); + res_type = M_ARGV(8, entity); + amount = M_ARGV(9, float); float max_amount = GetResourceLimit(e, res_type); // TODO: should allow overriding these limits if cheats are enabled! float amount_wasted = 0; if (amount > max_amount && max_amount != RES_LIMIT_NONE) @@ -128,8 +128,8 @@ void GiveResource(entity receiver, Resource res_type, float amount) { return; } - res_type = M_ARGV(1, entity); - amount = M_ARGV(2, float); + res_type = M_ARGV(8, entity); + amount = M_ARGV(9, float); if (amount <= 0) { return; @@ -172,9 +172,9 @@ void GiveResourceWithLimit(entity receiver, Resource res_type, float amount, flo { return; } - res_type = M_ARGV(1, entity); - amount = M_ARGV(2, float); - limit = M_ARGV(3, float); + res_type = M_ARGV(8, entity); + amount = M_ARGV(9, float); + limit = M_ARGV(10, float); if (amount <= 0) { return; @@ -198,8 +198,8 @@ void TakeResource(entity receiver, Resource res_type, float amount) { return; } - res_type = M_ARGV(1, entity); - amount = M_ARGV(2, float); + res_type = M_ARGV(8, entity); + amount = M_ARGV(9, float); if (amount <= 0) { return; @@ -218,9 +218,9 @@ void TakeResourceWithLimit(entity receiver, Resource res_type, float amount, flo { return; } - res_type = M_ARGV(1, entity); - amount = M_ARGV(2, float); - limit = M_ARGV(3, float); + res_type = M_ARGV(8, entity); + amount = M_ARGV(9, float); + limit = M_ARGV(10, float); if (amount <= 0) { return; diff --git a/qcsrc/common/weapons/weapon/shockwave.qc b/qcsrc/common/weapons/weapon/shockwave.qc index 6b357968a7..2429a30177 100644 --- a/qcsrc/common/weapons/weapon/shockwave.qc +++ b/qcsrc/common/weapons/weapon/shockwave.qc @@ -479,7 +479,7 @@ void W_Shockwave_Attack(Weapon thiswep, entity actor, .entity weaponentity) // WEAPONTODO: replace with simpler method vector nearest_on_line = (w_shotorg + a * w_shotdir); - vector nearest_to_attacker = WarpZoneLib_NearestPointOnBox(center + head.mins, center + head.maxs, nearest_on_line); + vector nearest_to_attacker = NearestPointOnBoundingBox(center + head.mins, center + head.maxs, nearest_on_line); if((vdist(head.WarpZone_findradius_dist, <=, WEP_CVAR(shockwave, blast_distance))) && (W_Shockwave_Attack_IsVisible(actor, head, nearest_on_line, w_shotorg, attack_endpos))) diff --git a/qcsrc/lib/vector.qh b/qcsrc/lib/vector.qh index 13869b016e..23bfdf0559 100644 --- a/qcsrc/lib/vector.qh +++ b/qcsrc/lib/vector.qh @@ -177,13 +177,23 @@ vector vec_epsilon(vector this, float eps) ERASEABLE vector NearestPointOnBox(entity box, vector org) { - vector m1 = box.mins + box.origin; - vector m2 = box.maxs + box.origin; + vector mi = box.mins + box.origin; + vector ma = box.maxs + box.origin; return vec3( - bound(m1.x, org.x, m2.x), - bound(m1.y, org.y, m2.y), - bound(m1.z, org.z, m2.z) + bound(mi.x, org.x, ma.x), + bound(mi.y, org.y, ma.y), + bound(mi.z, org.z, ma.z) ); } + +ERASEABLE +vector NearestPointOnBoundingBox(vector mi, vector ma, vector org) +{ + return vec3( + bound(mi.x, org.x, ma.x), + bound(mi.y, org.y, ma.y), + bound(mi.z, org.z, ma.z) + ); +} #endif diff --git a/qcsrc/menu/command/menu_cmd.qc b/qcsrc/menu/command/menu_cmd.qc index ce682de004..b56e8e9e4a 100644 --- a/qcsrc/menu/command/menu_cmd.qc +++ b/qcsrc/menu/command/menu_cmd.qc @@ -7,6 +7,7 @@ #include +.void(entity me, int argsbuf) readInputArgs; .entity firstChild, nextSibling; string _dumptree_space; @@ -97,6 +98,27 @@ void GameCommand(string theCommand) m_play_click_sound(MENU_SOUND_OPEN); m_goto(strcat(filter, argv(1))); // switch to a menu item } + else if(argc > 2 && !isdemo()) + { + entity e = NULL; + float argsbuf = 0; + string s = strzone(argv(1)); // dialog name + for(int i = 0; (e = nextent(e)); ) + if(e.classname != "vtbl" && e.name == strcat(filter, s)) + { + argsbuf = buf_create(); + if(argsbuf >= 0) + if(e.readInputArgs) + { + for(i = 2; i < argc; ++i) + bufstr_add(argsbuf, argv(i), 1); + e.readInputArgs(e, argsbuf); + m_goto(strcat(filter, s)); + } + if(argsbuf >= 0) + buf_del(argsbuf); + } + } return; } diff --git a/qcsrc/menu/skin-customizables.inc b/qcsrc/menu/skin-customizables.inc index 54f6283b80..15bd5356b8 100644 --- a/qcsrc/menu/skin-customizables.inc +++ b/qcsrc/menu/skin-customizables.inc @@ -70,6 +70,7 @@ SKINBEGIN SKINVECTOR(COLOR_DIALOG_CROSSHAIR, '1 0.7 0.7'); SKINVECTOR(COLOR_DIALOG_HUD, '1 0.7 0.7'); SKINVECTOR(COLOR_DIALOG_SERVERINFO, '0.7 0.7 1'); + SKINVECTOR(COLOR_DIALOG_WELCOME, '1 0.7 0.7'); SKINVECTOR(COLOR_DIALOG_CVARS, '1 0 0'); SKINVECTOR(COLOR_DIALOG_SCREENSHOTVIEWER, '0.7 0.7 1'); SKINVECTOR(COLOR_DIALOG_HUDCONFIRM, '1 0 0'); diff --git a/qcsrc/menu/xonotic/_mod.inc b/qcsrc/menu/xonotic/_mod.inc index 56d8e00c18..103b2ea675 100644 --- a/qcsrc/menu/xonotic/_mod.inc +++ b/qcsrc/menu/xonotic/_mod.inc @@ -86,6 +86,7 @@ #include #include #include +#include #include #include #include diff --git a/qcsrc/menu/xonotic/_mod.qh b/qcsrc/menu/xonotic/_mod.qh index 0b8f5c149d..2e0cf762bf 100644 --- a/qcsrc/menu/xonotic/_mod.qh +++ b/qcsrc/menu/xonotic/_mod.qh @@ -86,6 +86,7 @@ #include #include #include +#include #include #include #include diff --git a/qcsrc/menu/xonotic/campaign.qc b/qcsrc/menu/xonotic/campaign.qc index b9e9f54dbd..900e085d8c 100644 --- a/qcsrc/menu/xonotic/campaign.qc +++ b/qcsrc/menu/xonotic/campaign.qc @@ -239,9 +239,9 @@ void XonoticCampaignList_drawListBoxItem(entity me, int i, vector absSize, bool s = campaign_shortdesc[i]; // fteqcc sucks else s = "???"; - // NOTE the following string is equal to the one used in the campaign level notification - // (CAMPAIGN_MESSAGE) to avoid adding another duplicate string to translate - s = draw_TextShortenToWidth(strcat(sprintf(_("Level %s: "), itos(i+1)), s), me.columnNameSize, 0, me.realFontSize); + // NOTE the following string should be equal to the one used in the Welcome dialog + // to avoid adding a slightly different string to translate + s = draw_TextShortenToWidth(strcat(sprintf(_("Level %d:"), i+1), " ", s), me.columnNameSize, 0, me.realFontSize); draw_Text(me.realUpperMargin1 * eY + (me.columnNameOrigin + 0.00 * (me.columnNameSize - draw_TextWidth(s, 0, me.realFontSize))) * eX, s, me.realFontSize, theColor, theAlpha, 0); if(i <= me.campaignIndex) diff --git a/qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfotab.qc b/qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfotab.qc index 5b2dc05ab1..4774b82a31 100644 --- a/qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfotab.qc +++ b/qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfotab.qc @@ -23,59 +23,59 @@ void XonoticServerInfoTab_fill(entity me) me.TR(me); me.TD(me, 1, 0.8, e = makeXonoticTextLabel(0, _("Hostname:"))); me.TD(me, 1, 4.6, e = makeXonoticTextLabel(0.5, "")); - e.colorL = SKINCOLOR_SERVERINFO_NAME; - e.allowCut = 1; - me.nameLabel = e; + e.colorL = SKINCOLOR_SERVERINFO_NAME; + e.allowCut = 1; + me.nameLabel = e; me.TR(me); me.TD(me, 1, 0.8, e = makeXonoticTextLabel(0, _("Address:"))); me.TD(me, 1, 4.6, e = makeXonoticTextLabel(0.5, "")); - e.colorL = SKINCOLOR_SERVERINFO_IP; - e.allowCut = 1; - me.cnameLabel = e; + e.colorL = SKINCOLOR_SERVERINFO_IP; + e.allowCut = 1; + me.cnameLabel = e; me.TR(me); me.TR(me); me.TD(me, 1, 0.8, e = makeXonoticTextLabel(0, _("Gametype:"))); me.TD(me, 1, 1.2, e = makeXonoticTextLabel(0, "")); - e.allowCut = 1; - me.typeLabel = e; + e.allowCut = 1; + me.typeLabel = e; me.TR(me); me.TD(me, 1, 0.8, e = makeXonoticTextLabel(0, _("Map:"))); me.TD(me, 1, 1.2, e = makeXonoticTextLabel(0, "")); - e.allowCut = 1; - me.mapLabel = e; + e.allowCut = 1; + me.mapLabel = e; me.TR(me); me.TD(me, 1, 0.8, e = makeXonoticTextLabel(0, _("Mod:"))); me.TD(me, 1, 1.2, e = makeXonoticTextLabel(0, "")); - e.allowCut = 1; - me.modLabel = e; + e.allowCut = 1; + me.modLabel = e; me.TR(me); me.TD(me, 1, 0.8, e = makeXonoticTextLabel(0, _("Version:"))); me.TD(me, 1, 1.2, e = makeXonoticTextLabel(0, "")); - e.allowCut = 1; - me.versionLabel = e; + e.allowCut = 1; + me.versionLabel = e; me.TR(me); me.TD(me, 1, 0.8, e = makeXonoticTextLabel(0, _("Settings:"))); me.TD(me, 1, 1.2, e = makeXonoticTextLabel(0, "")); - e.allowCut = 1; - me.pureLabel = e; + e.allowCut = 1; + me.pureLabel = e; me.TR(me); me.TR(me); me.TD(me, 1, 0.8, e = makeXonoticTextLabel(0, _("Players:"))); me.TD(me, 1, 1.2, e = makeXonoticTextLabel(0, "")); - e.allowCut = 1; - me.numPlayersLabel = e; + e.allowCut = 1; + me.numPlayersLabel = e; me.TR(me); me.TD(me, 1, 0.8, e = makeXonoticTextLabel(0, _("Bots:"))); me.TD(me, 1, 1.2, e = makeXonoticTextLabel(0, "")); - e.allowCut = 1; - me.numBotsLabel = e; + e.allowCut = 1; + me.numBotsLabel = e; me.TR(me); me.TD(me, 1, 0.8, e = makeXonoticTextLabel(0, _("Free slots:"))); me.TD(me, 1, 1.2, e = makeXonoticTextLabel(0, "")); - e.allowCut = 1; - me.numFreeSlotsLabel = e; + e.allowCut = 1; + me.numFreeSlotsLabel = e; me.gotoRC(me, me.rows - 5, 0); me.TD(me, 1, 0.8, e = makeXonoticTextLabel(0, _("Encryption:"))); diff --git a/qcsrc/menu/xonotic/dialog_termsofservice.qc b/qcsrc/menu/xonotic/dialog_termsofservice.qc index 0fec38a892..83839a3f67 100644 --- a/qcsrc/menu/xonotic/dialog_termsofservice.qc +++ b/qcsrc/menu/xonotic/dialog_termsofservice.qc @@ -86,6 +86,7 @@ void XonoticToSDialog_fill(entity me) me.TR(me); me.TR(me); me.TD(me, me.rows - 4, me.columns, me.textBox = makeXonoticTextBox()); + me.textBox.allowColors = true; me.TR(me); me.gotoRC(me, me.rows - 1, 0); diff --git a/qcsrc/menu/xonotic/dialog_welcome.qc b/qcsrc/menu/xonotic/dialog_welcome.qc new file mode 100644 index 0000000000..691e7cbf9f --- /dev/null +++ b/qcsrc/menu/xonotic/dialog_welcome.qc @@ -0,0 +1,76 @@ +#include "dialog_welcome.qh" + +#include "image.qh" +#include "textlabel.qh" +#include "textbox.qh" +#include "radiobutton.qh" +#include "commandbutton.qh" +#include "slider.qh" + +void welcomeDialog_resetStrings(entity me) +{ + strcpy(me.serverinfo_name, ""); + strcpy(me.serverinfo_MOTD, ""); +} + +float XonoticWelcomeDialog_keyDown(entity me, float key, float ascii, float shift) +{ + switch(key) + { + case K_KP_ENTER: + case K_ENTER: + case K_SPACE: + me.close(me); + return true; + default: + return SUPER(XonoticWelcomeDialog).keyDown(me, key, ascii, shift); + } +} + +void XonoticWelcomeDialog_configureDialog(entity me) +{ + welcomeDialog_resetStrings(me); + SUPER(XonoticWelcomeDialog).configureDialog(me); + registercvar("_menu_welcome_dialog_available", "0", 0); + cvar_set("_menu_welcome_dialog_available", "1"); +} + +void XonoticWelcomeDialog_destroy(entity me) +{ + cvar_set("_menu_welcome_dialog_available", "0"); +} + +void XonoticWelcomeDialog_readInputArgs(entity me, int argsbuf) +{ + int i = 0; + string s; + welcomeDialog_resetStrings(me); + if(argsbuf >= 0) + while((s = bufstr_get(argsbuf, i)) != "") + { + if(s == "HOSTNAME") + strcpy(me.serverinfo_name, bufstr_get(argsbuf, ++i)); + else if(s == "WELCOME") + strcpy(me.serverinfo_MOTD, bufstr_get(argsbuf, ++i)); + ++i; + } + //me.serverinfo_name_ent.setText(me.serverinfo_name_ent, me.serverinfo_name); + me.serverinfo_MOTD_ent.setText(me.serverinfo_MOTD_ent, me.serverinfo_MOTD); + me.frame.setText(me.frame, me.serverinfo_name); +} + +void XonoticWelcomeDialog_fill(entity me) +{ + entity e; + + me.TR(me); + me.TD(me, me.rows - 1, me.columns, me.serverinfo_MOTD_ent = makeXonoticTextBox()); + me.serverinfo_MOTD_ent.align = 0.5; + me.serverinfo_MOTD_ent.allowColors = true; + me.serverinfo_MOTD_ent.escapedNewLines = true; + me.gotoRC(me, me.rows - 1, 0); + me.TD(me, 1, me.columns, e = makeXonoticButton(_("OK"), '0 0 0')); + e.onClick = Dialog_Close; + e.onClickEntity = me; + e.preferredFocusPriority = 1; +} diff --git a/qcsrc/menu/xonotic/dialog_welcome.qh b/qcsrc/menu/xonotic/dialog_welcome.qh new file mode 100644 index 0000000000..63f18cafaa --- /dev/null +++ b/qcsrc/menu/xonotic/dialog_welcome.qh @@ -0,0 +1,21 @@ +#pragma once + +#include "rootdialog.qh" +CLASS(XonoticWelcomeDialog, XonoticRootDialog) + METHOD(XonoticWelcomeDialog, fill, void(entity)); + ATTRIB(XonoticWelcomeDialog, title, string, _("Welcome")); + ATTRIB(XonoticWelcomeDialog, color, vector, SKINCOLOR_DIALOG_WELCOME); + ATTRIB(XonoticWelcomeDialog, intendedWidth, float, 0.8); + ATTRIB(XonoticWelcomeDialog, rows, float, 12); + ATTRIB(XonoticWelcomeDialog, columns, float, 4); + ATTRIB(XonoticWelcomeDialog, name, string, "Welcome"); + + METHOD(XonoticWelcomeDialog, keyDown, float(entity, float, float, float)); + METHOD(XonoticWelcomeDialog, configureDialog, void(entity)); + METHOD(XonoticWelcomeDialog, destroy, void(entity)); + METHOD(XonoticWelcomeDialog, readInputArgs, void(entity, int)); + ATTRIB(XonoticWelcomeDialog, serverinfo_name, string, string_null); + //ATTRIB(XonoticWelcomeDialog, serverinfo_name_ent, entity, world); + ATTRIB(XonoticWelcomeDialog, serverinfo_MOTD, string, string_null); + ATTRIB(XonoticWelcomeDialog, serverinfo_MOTD_ent, entity, world); +ENDCLASS(XonoticWelcomeDialog) diff --git a/qcsrc/menu/xonotic/mainwindow.qc b/qcsrc/menu/xonotic/mainwindow.qc index b07785258b..e215e5080b 100644 --- a/qcsrc/menu/xonotic/mainwindow.qc +++ b/qcsrc/menu/xonotic/mainwindow.qc @@ -44,6 +44,7 @@ #include "dialog_sandboxtools.qh" #include "dialog_monstertools.qh" #include "dialog_gamemenu.qh" +#include "dialog_welcome.qh" #include "dialog_teamselect.qh" #include "dialog_uid2name.qh" #include "dialog_singleplayer.qh" @@ -91,6 +92,10 @@ void MainWindow_configureMainWindow(entity me) i.configureDialog(i); me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z); + i = NEW(XonoticWelcomeDialog); + i.configureDialog(i); + me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z); + // hud_configure dialogs i = NEW(XonoticHUDExitDialog); diff --git a/qcsrc/menu/xonotic/textbox.qc b/qcsrc/menu/xonotic/textbox.qc index 1027d0c9e1..e79af1e335 100644 --- a/qcsrc/menu/xonotic/textbox.qc +++ b/qcsrc/menu/xonotic/textbox.qc @@ -32,13 +32,14 @@ void XonoticTextBox_setText(entity me, string text) string t; buf = buf_create(); - for (int i = 0, n = tokenizebyseparator(text, "\n"); i < n; ++i) + string separator = (me.escapedNewLines) ? "\\n" : "\n"; + for (int i = 0, n = tokenizebyseparator(text, separator); i < n; ++i) { t = substring(argv(i), 0, -1); getWrappedLine_remaining = t; while (getWrappedLine_remaining) { - t = getWrappedLine(1, me.realFontSize, draw_TextWidth_WithColors); + t = getWrappedLine(1, me.realFontSize, (me.allowColors) ? draw_TextWidth_WithColors : draw_TextWidth_WithoutColors); bufstr_set(buf, line, t); line++; } @@ -86,5 +87,9 @@ void XonoticTextBox_resizeNotify(entity me, vector relOrigin, vector relSize, ve void XonoticTextBox_drawListBoxItem(entity me, int i, vector absSize, bool isSelected, bool isFocused) { string s = me.getTextBoxLine(me, i); - draw_Text(vec2(0, 0), s, me.realFontSize, me.colorL, me.alpha, true); + vector color = (me.allowColors) ? '1 1 1' : me.colorL; + if (me.align == 0.5) + draw_CenterText(0.5 * eX, s, me.realFontSize, color, 1, me.allowColors); + else + draw_Text(vec2(0, 0), s, me.realFontSize, color, me.alpha, me.allowColors); } diff --git a/qcsrc/menu/xonotic/textbox.qh b/qcsrc/menu/xonotic/textbox.qh index b27481671a..3289d7b4db 100644 --- a/qcsrc/menu/xonotic/textbox.qh +++ b/qcsrc/menu/xonotic/textbox.qh @@ -9,6 +9,9 @@ CLASS(XonoticTextBox, XonoticListBox) METHOD(XonoticTextBox, resizeNotify, void(entity, vector, vector, vector, vector)); METHOD(XonoticTextBox, drawListBoxItem, void(entity, int, vector, bool, bool)); ATTRIB(XonoticTextBox, allowFocusSound, float, 0); + ATTRIB(XonoticTextBox, align, float, 0); + ATTRIB(XonoticTextBox, allowColors, bool, false); + ATTRIB(XonoticTextBox, escapedNewLines, bool, false); ATTRIB(XonoticTextBox, alpha, float, SKINALPHA_TEXT); ATTRIB(XonoticTextBox, fontSize, float, SKINFONTSIZE_NORMAL); ATTRIB(XonoticTextBox, realFontSize, vector, '0 0 0'); diff --git a/qcsrc/server/antilag.qc b/qcsrc/server/antilag.qc index b57627963c..858e0ef8b1 100644 --- a/qcsrc/server/antilag.qc +++ b/qcsrc/server/antilag.qc @@ -20,10 +20,10 @@ const int ANTILAG_MAX_ORIGINS = 64; void antilag_record(entity e, entity store, float t) { - if (e.vehicle) { - if (e.vehicle.vehicle_flags == VHF_PLAYERSLOT) return; - antilag_record(e.vehicle, e.vehicle, t); - } + if (e.vehicle) { + if (e.vehicle.vehicle_flags == VHF_PLAYERSLOT) return; + antilag_record(e.vehicle, e.vehicle, t); + } if (time < store.antilag_times[store.antilag_index]) return; store.antilag_index += 1; @@ -86,9 +86,9 @@ vector antilag_takebackavgvelocity(entity e, entity store, float t0, float t1) void antilag_takeback(entity e, entity store, float t) { if (e.vehicle) { - if (e.vehicle.vehicle_flags == VHF_PLAYERSLOT) return; + if (e.vehicle.vehicle_flags == VHF_PLAYERSLOT) return; antilag_takeback(e.vehicle, e.vehicle, t); - } + } if (!store.antilag_takenback) store.antilag_saved_origin = e.origin; @@ -101,7 +101,7 @@ void antilag_takeback(entity e, entity store, float t) void antilag_restore(entity e, entity store) { if (e.vehicle) { - if (e.vehicle.vehicle_flags == VHF_PLAYERSLOT) return; + if (e.vehicle.vehicle_flags == VHF_PLAYERSLOT) return; antilag_restore(e.vehicle, e.vehicle); } diff --git a/qcsrc/server/campaign.qc b/qcsrc/server/campaign.qc index a368938c2d..6bd853d1b4 100644 --- a/qcsrc/server/campaign.qc +++ b/qcsrc/server/campaign.qc @@ -41,6 +41,11 @@ float Campaign_Invalid() return 0; } +string Campaign_GetTitle() +{ + return campaign_title; +} + int Campaign_GetLevelNum() { return campaign_level + 1; diff --git a/qcsrc/server/campaign.qh b/qcsrc/server/campaign.qh index 1aca244920..10e06a240f 100644 --- a/qcsrc/server/campaign.qh +++ b/qcsrc/server/campaign.qh @@ -10,6 +10,7 @@ int autocvar_g_campaign_skill; // this must be included BEFORE campaign_common.h to make this a memory saving #define CAMPAIGN_MAX_ENTRIES 2 +string Campaign_GetTitle(); int Campaign_GetLevelNum(); string Campaign_GetMessage(); diff --git a/qcsrc/server/client.qc b/qcsrc/server/client.qc index 8ae3df1938..68c19f638a 100644 --- a/qcsrc/server/client.qc +++ b/qcsrc/server/client.qc @@ -1033,8 +1033,22 @@ string GetClientVersionMessage(entity this) } } -string getwelcomemessage(entity this) +void SendWelcomemessage(entity this, bool force_centerprint) { + msg_entity = this; + WriteHeader(MSG_ONE, TE_CSQC_SERVERWELCOME); + WriteByte(MSG_ONE, boolean(autocvar_g_campaign)); + if (boolean(autocvar_g_campaign)) + { + WriteString(MSG_ONE, Campaign_GetTitle()); + WriteByte(MSG_ONE, Campaign_GetLevelNum()); + WriteString(MSG_ONE, Campaign_GetMessage()); + return; + } + WriteByte(MSG_ONE, force_centerprint); + WriteString(MSG_ONE, autocvar_hostname); + WriteString(MSG_ONE, GetClientVersionMessage(this)); + MUTATOR_CALLHOOK(BuildMutatorsPrettyString, ""); string modifications = M_ARGV(0, string); @@ -1055,13 +1069,7 @@ string getwelcomemessage(entity this) modifications = strcat(modifications, ", Jet pack"); modifications = substring(modifications, 2, strlen(modifications) - 2); - string versionmessage = GetClientVersionMessage(this); - string s = strcat(versionmessage, "^8\n^8\nserver is ^9", autocvar_hostname, "^8\n"); - - s = strcat(s, "^8\nmatch type is ^1", gamemode_name, "^8\n"); - - if(modifications != "") - s = strcat(s, "^8\nactive modifications: ^3", modifications, "^8\n"); + WriteString(MSG_ONE, modifications); if(cache_lastmutatormsg != autocvar_g_mutatormsg) { @@ -1069,21 +1077,25 @@ string getwelcomemessage(entity this) strcpy(cache_mutatormsg, cache_lastmutatormsg); } - if (cache_mutatormsg != "") { - s = strcat(s, "\n\n^8special gameplay tips: ^7", cache_mutatormsg); - } + WriteString(MSG_ONE, cache_mutatormsg); string mutator_msg = ""; MUTATOR_CALLHOOK(BuildGameplayTipsString, mutator_msg); mutator_msg = M_ARGV(0, string); - s = strcat(s, mutator_msg); // trust that the mutator will do proper formatting + WriteString(MSG_ONE, mutator_msg); // trust that the mutator will do proper formatting + WriteString(MSG_ONE, strreplace("\\n", "\n", autocvar_sv_motd)); +} - string motd = autocvar_sv_motd; - if (motd != "") { - s = strcat(s, "\n\n^8MOTD: ^7", strreplace("\\n", "\n", motd)); - } - return s; +void SendWelcomemessage_onConnection_think(entity this) +{ + SendWelcomemessage(this, false); +} + +void SendWelcomemessage_onConnection(entity this) +{ + // give the client time to sent its version + defer(this, 0.5, SendWelcomemessage_onConnection_think); } /** @@ -1173,7 +1185,11 @@ void ClientConnect(entity this) CS(this).model_randomizer = random(); if (IS_REAL_CLIENT(this)) + { + if (!autocvar_g_campaign) + SendWelcomemessage_onConnection(this); sv_notice_join(this); + } this.move_qcphysics = autocvar_sv_qcphysics; @@ -1188,14 +1204,8 @@ void ClientConnect(entity this) MUTATOR_CALLHOOK(ClientConnect, this); - if (IS_REAL_CLIENT(this)) - { - if (!autocvar_g_campaign && !IS_PLAYER(this)) - { - CS(this).motd_actived_time = -1; - Send_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CENTER_MOTD, getwelcomemessage(this)); - } - } + if (IS_REAL_CLIENT(this) && !IS_PLAYER(this) && !autocvar_g_campaign) + CS(this).motd_actived_time = -1; // the welcome message is shown by the client } /* ============= @@ -1447,10 +1457,9 @@ void respawn(entity this) void play_countdown(entity this, float finished, Sound samp) { TC(Sound, samp); - if(IS_REAL_CLIENT(this)) - if(floor(finished - time - frametime) != floor(finished - time)) - if(finished - time < 6) - sound (this, CH_INFO, samp, VOL_BASE, ATTEN_NORM); + float time_left = finished - time; + if(IS_REAL_CLIENT(this) && time_left < 6 && floor(time_left - frametime) != floor(time_left)) + sound(this, CH_INFO, samp, VOL_BASE, ATTEN_NORM); } // it removes special powerups not handled by StatusEffects @@ -1459,8 +1468,11 @@ void player_powerups_remove_all(entity this) if (this.items & (IT_SUPERWEAPON | IT_UNLIMITED_AMMO | IT_UNLIMITED_SUPERWEAPONS)) { // don't play the poweroff sound when the game restarts or the player disconnects - if (time > game_starttime + 1 && IS_CLIENT(this)) + if (time > game_starttime + 1 && IS_CLIENT(this) + && !(start_items & (IT_UNLIMITED_AMMO | IT_UNLIMITED_SUPERWEAPONS))) + { sound(this, CH_INFO, SND_POWEROFF, VOL_BASE, ATTEN_NORM); + } if (this.items & (IT_UNLIMITED_AMMO | IT_UNLIMITED_SUPERWEAPONS)) stopsound(this, CH_TRIGGER_SINGLE); // get rid of the pickup sound this.items -= (this.items & (IT_SUPERWEAPON | IT_UNLIMITED_AMMO | IT_UNLIMITED_SUPERWEAPONS)); @@ -2053,12 +2065,12 @@ void PrintWelcomeMessage(entity this) if (autocvar_g_campaign) { if ((IS_PLAYER(this) && PHYS_INPUT_BUTTON_INFO(this)) || (!IS_PLAYER(this))) { CS(this).motd_actived_time = time; - Send_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CENTER_CAMPAIGN_MESSAGE, Campaign_GetMessage(), Campaign_GetLevelNum()); + SendWelcomemessage(this, false); } } else { if (PHYS_INPUT_BUTTON_INFO(this)) { CS(this).motd_actived_time = time; - Send_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CENTER_MOTD, getwelcomemessage(this)); + SendWelcomemessage(this, true); } } } @@ -2069,7 +2081,7 @@ void PrintWelcomeMessage(entity this) CS(this).motd_actived_time = time; else if ((time - CS(this).motd_actived_time > 2) && IS_PLAYER(this)) { // hide it some seconds after BUTTON_INFO has been released CS(this).motd_actived_time = 0; - Kill_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CPID_CAMPAIGN_MESSAGE); + Kill_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CPID_MOTD); } } else { if (PHYS_INPUT_BUTTON_INFO(this)) @@ -2088,10 +2100,7 @@ void PrintWelcomeMessage(entity this) { // instantly hide MOTD CS(this).motd_actived_time = 0; - if (autocvar_g_campaign) - Kill_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CPID_CAMPAIGN_MESSAGE); - else - Kill_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CPID_MOTD); + Kill_Notification(NOTIF_ONE_ONLY, this, MSG_CENTER, CPID_MOTD); } else if (IS_PLAYER(this) || IS_SPEC(this)) { diff --git a/qcsrc/server/damage.qc b/qcsrc/server/damage.qc index 969423bfb8..d0b3a288fb 100644 --- a/qcsrc/server/damage.qc +++ b/qcsrc/server/damage.qc @@ -881,6 +881,8 @@ float RadiusDamageForSource (entity inflictor, vector inflictororigin, vector in return 0; } + if (rad < 0) rad = 0; + RadiusDamage_running = 1; tfloordmg = autocvar_g_throughfloor_damage; @@ -912,27 +914,25 @@ float RadiusDamageForSource (entity inflictor, vector inflictororigin, vector in if (((cantbe != targ) && !mustbe) || (mustbe == targ)) if (targ.takedamage) { - vector nearest; - vector diff; - float power; - - // LordHavoc: measure distance to nearest point on target (not origin) - // (this guarentees 100% damage on a touch impact) - nearest = targ.WarpZone_findradius_nearest; - diff = targ.WarpZone_findradius_dist; + // measure distance from nearest point on target (not origin) + // to nearest point on inflictor (not origin) + vector nearest = targ.WarpZone_findradius_nearest; + vector inflictornearest = NearestPointOnBoundingBox( + inflictororigin - (inflictor.maxs - inflictor.mins) * 0.5, + inflictororigin + (inflictor.maxs - inflictor.mins) * 0.5, + nearest); + vector diff = inflictornearest - nearest; + // round up a little on the damage to ensure full damage on impacts // and turn the distance into a fraction of the radius - power = 1 - ((vlen (diff) - bound(MIN_DAMAGEEXTRARADIUS, targ.damageextraradius, MAX_DAMAGEEXTRARADIUS)) / rad); - //bprint(" "); - //bprint(ftos(power)); - //if (targ == attacker) - // print(ftos(power), "\n"); - if (power > 0) + float dist = max(0, vlen(diff) - bound(MIN_DAMAGEEXTRARADIUS, targ.damageextraradius, MAX_DAMAGEEXTRARADIUS)); + if (dist <= rad) { - float finaldmg; - if (power > 1) - power = 1; - finaldmg = coredamage * power + edgedamage * (1 - power); + float power = 1; + if (rad > 0) + power -= (dist / rad); + // at this point power can't be < 0 or > 1 + float finaldmg = coredamage * power + edgedamage * (1 - power); if (finaldmg > 0) { float a; diff --git a/qcsrc/server/damage.qh b/qcsrc/server/damage.qh index fbdebd359c..a1dadc1a28 100644 --- a/qcsrc/server/damage.qh +++ b/qcsrc/server/damage.qh @@ -135,7 +135,7 @@ float RadiusDamageForSource (entity inflictor, vector inflictororigin, vector in float RadiusDamage (entity inflictor, entity attacker, float coredamage, float edgedamage, float rad, entity cantbe, entity mustbe, float forceintensity, int deathtype, .entity weaponentity, entity directhitentity); .float damageforcescale; -const float MIN_DAMAGEEXTRARADIUS = 2; +const float MIN_DAMAGEEXTRARADIUS = 0.1; const float MAX_DAMAGEEXTRARADIUS = 16; .float damageextraradius; diff --git a/qcsrc/server/mutators/events.qh b/qcsrc/server/mutators/events.qh index e7ca8583fd..6feb811323 100644 --- a/qcsrc/server/mutators/events.qh +++ b/qcsrc/server/mutators/events.qh @@ -714,24 +714,27 @@ enum { /**/ MUTATOR_HOOKABLE(ItemTouched, EV_ItemTouched); +// The Resource hooks are often called by other hooks and to avoid conflicts +// as much as possible their args start from ARGV_7 + /** Called when the amount of entity resources changes. Can be used to override resource limit. */ #define EV_GetResourceLimit(i, o) \ - /** checked entity */ i(entity, MUTATOR_ARGV_0_entity) \ - /** resource type */ i(entity, MUTATOR_ARGV_1_entity) \ - /** limit */ i(float, MUTATOR_ARGV_2_float) \ - /**/ o(float, MUTATOR_ARGV_2_float) \ + /** checked entity */ i(entity, MUTATOR_ARGV_7_entity) \ + /** resource type */ i(entity, MUTATOR_ARGV_8_entity) \ + /** limit */ i(float, MUTATOR_ARGV_9_float) \ + /**/ o(float, MUTATOR_ARGV_9_float) \ /**/ MUTATOR_HOOKABLE(GetResourceLimit, EV_GetResourceLimit); /** Called when the amount of resource of an entity changes. See RES_* constants for resource types. Return true to forbid the change. */ #define EV_SetResource(i, o) \ - /** checked entity */ i(entity, MUTATOR_ARGV_0_entity) \ - /** resource type */ i(entity, MUTATOR_ARGV_1_entity) \ - /**/ o(entity, MUTATOR_ARGV_1_entity) \ - /** amount */ i(float, MUTATOR_ARGV_2_float) \ - /**/ o(float, MUTATOR_ARGV_2_float) \ + /** checked entity */ i(entity, MUTATOR_ARGV_7_entity) \ + /** resource type */ i(entity, MUTATOR_ARGV_8_entity) \ + /**/ o(entity, MUTATOR_ARGV_8_entity) \ + /** amount */ i(float, MUTATOR_ARGV_9_float) \ + /**/ o(float, MUTATOR_ARGV_9_float) \ /**/ MUTATOR_HOOKABLE(SetResource, EV_SetResource); @@ -739,9 +742,9 @@ MUTATOR_HOOKABLE(SetResource, EV_SetResource); constants for resource types. Amount wasted is the amount of resource that is above resource limit so it was not given. */ #define EV_ResourceAmountChanged(i, o) \ - /** checked entity */ i(entity, MUTATOR_ARGV_0_entity) \ - /** resource type */ i(entity, MUTATOR_ARGV_1_entity) \ - /** amount */ i(float, MUTATOR_ARGV_2_float) \ + /** checked entity */ i(entity, MUTATOR_ARGV_7_entity) \ + /** resource type */ i(entity, MUTATOR_ARGV_8_entity) \ + /** amount */ i(float, MUTATOR_ARGV_9_float) \ /**/ MUTATOR_HOOKABLE(ResourceAmountChanged, EV_ResourceAmountChanged); @@ -749,9 +752,9 @@ MUTATOR_HOOKABLE(ResourceAmountChanged, EV_ResourceAmountChanged); limit. See RES_* constants for resource types. Amount wasted is the amount of resource that is above resource limit so it was not given. */ #define EV_ResourceWasted(i, o) \ - /** checked entity */ i(entity, MUTATOR_ARGV_0_entity) \ - /** resource type */ i(entity, MUTATOR_ARGV_1_entity) \ - /** amount wasted */ i(float, MUTATOR_ARGV_2_float) \ + /** checked entity */ i(entity, MUTATOR_ARGV_7_entity) \ + /** resource type */ i(entity, MUTATOR_ARGV_8_entity) \ + /** amount wasted */ i(float, MUTATOR_ARGV_9_float) \ /**/ MUTATOR_HOOKABLE(ResourceWasted, EV_ResourceWasted); @@ -759,24 +762,24 @@ MUTATOR_HOOKABLE(ResourceWasted, EV_ResourceWasted); for resource types. Return true to forbid giving. NOTE: This hook is also called by GiveResourceWithLimit */ #define EV_GiveResource(i, o) \ - /** receiver */ i(entity, MUTATOR_ARGV_0_entity) \ - /** resource type */ i(entity, MUTATOR_ARGV_1_entity) \ - /**/ o(entity, MUTATOR_ARGV_1_entity) \ - /** amount */ i(float, MUTATOR_ARGV_2_float) \ - /**/ o(float, MUTATOR_ARGV_2_float) \ + /** receiver */ i(entity, MUTATOR_ARGV_7_entity) \ + /** resource type */ i(entity, MUTATOR_ARGV_8_entity) \ + /**/ o(entity, MUTATOR_ARGV_8_entity) \ + /** amount */ i(float, MUTATOR_ARGV_9_float) \ + /**/ o(float, MUTATOR_ARGV_9_float) \ /**/ MUTATOR_HOOKABLE(GiveResource, EV_GiveResource); /** Called when entity is being given some resource with specified limit. See RES_* constants for resource types. Return true to forbid giving. */ #define EV_GiveResourceWithLimit(i, o) \ - /** receiver */ i(entity, MUTATOR_ARGV_0_entity) \ - /** resource type */ i(entity, MUTATOR_ARGV_1_entity) \ - /**/ o(entity, MUTATOR_ARGV_1_entity) \ - /** amount */ i(float, MUTATOR_ARGV_2_float) \ - /**/ o(float, MUTATOR_ARGV_2_float) \ - /** limit */ i(float, MUTATOR_ARGV_3_float) \ - /**/ o(float, MUTATOR_ARGV_3_float) \ + /** receiver */ i(entity, MUTATOR_ARGV_7_entity) \ + /** resource type */ i(entity, MUTATOR_ARGV_8_entity) \ + /**/ o(entity, MUTATOR_ARGV_8_entity) \ + /** amount */ i(float, MUTATOR_ARGV_9_float) \ + /**/ o(float, MUTATOR_ARGV_9_float) \ + /** limit */ i(float, MUTATOR_ARGV_10_float) \ + /**/ o(float, MUTATOR_ARGV_10_float) \ /**/ MUTATOR_HOOKABLE(GiveResourceWithLimit, EV_GiveResourceWithLimit); @@ -784,27 +787,29 @@ MUTATOR_HOOKABLE(GiveResourceWithLimit, EV_GiveResourceWithLimit); for resource types. Return true to forbid giving. NOTE: This hook is also called by TakeResourceWithLimit */ #define EV_TakeResource(i, o) \ - /** receiver */ i(entity, MUTATOR_ARGV_0_entity) \ - /** resource type */ i(entity, MUTATOR_ARGV_1_entity) \ - /**/ o(entity, MUTATOR_ARGV_1_entity) \ - /** amount */ i(float, MUTATOR_ARGV_2_float) \ - /**/ o(float, MUTATOR_ARGV_2_float) \ + /** receiver */ i(entity, MUTATOR_ARGV_7_entity) \ + /** resource type */ i(entity, MUTATOR_ARGV_8_entity) \ + /**/ o(entity, MUTATOR_ARGV_8_entity) \ + /** amount */ i(float, MUTATOR_ARGV_9_float) \ + /**/ o(float, MUTATOR_ARGV_9_float) \ /**/ MUTATOR_HOOKABLE(TakeResource, EV_TakeResource); /** Called when some resource is being taken from an entity, with a limit. See RES_* constants for resource types. Return true to forbid giving. */ #define EV_TakeResourceWithLimit(i, o) \ - /** receiver */ i(entity, MUTATOR_ARGV_0_entity) \ - /** resource type */ i(entity, MUTATOR_ARGV_1_entity) \ - /**/ o(entity, MUTATOR_ARGV_1_entity) \ - /** amount */ i(float, MUTATOR_ARGV_2_float) \ - /**/ o(float, MUTATOR_ARGV_2_float) \ - /** limit */ i(float, MUTATOR_ARGV_3_float) \ - /**/ o(float, MUTATOR_ARGV_3_float) \ + /** receiver */ i(entity, MUTATOR_ARGV_7_entity) \ + /** resource type */ i(entity, MUTATOR_ARGV_8_entity) \ + /**/ o(entity, MUTATOR_ARGV_8_entity) \ + /** amount */ i(float, MUTATOR_ARGV_9_float) \ + /**/ o(float, MUTATOR_ARGV_9_float) \ + /** limit */ i(float, MUTATOR_ARGV_10_float) \ + /**/ o(float, MUTATOR_ARGV_10_float) \ /**/ MUTATOR_HOOKABLE(TakeResourceWithLimit, EV_TakeResourceWithLimit); +// END Resource hooks + /** called at when a player connect */ #define EV_ClientConnect(i, o) \ /** player */ i(entity, MUTATOR_ARGV_0_entity) \ diff --git a/qcsrc/server/world.qc b/qcsrc/server/world.qc index 7fce21e6ee..5801fae88a 100644 --- a/qcsrc/server/world.qc +++ b/qcsrc/server/world.qc @@ -1334,7 +1334,7 @@ void NextLevel() } -float InitiateSuddenDeath() +int InitiateSuddenDeath() { // Check first whether normal overtimes could be added before initiating suddendeath mode // - for this timelimit_overtime needs to be >0 of course @@ -1630,8 +1630,8 @@ void CheckRules_World() if(timelimit > 0) timelimit += game_starttime; - float wantovertime; - wantovertime = 0; + int overtimes_prev = overtimes; + int wantovertime = 0; if(checkrules_suddendeathend) { @@ -1717,6 +1717,12 @@ void CheckRules_World() if(checkrules_status == WINNING_YES) { + if (overtimes == -1 && overtimes != overtimes_prev) + { + // if suddendeathend overtime has just begun, revert it + checkrules_suddendeathend = 0; + overtimes = overtimes_prev; + } //print("WINNING\n"); NextLevel(); } diff --git a/qcsrc/tools/compilationunits.sh b/qcsrc/tools/compilationunits.sh index 7a7ff17b6d..d13cb6e091 100755 --- a/qcsrc/tools/compilationunits.sh +++ b/qcsrc/tools/compilationunits.sh @@ -1,4 +1,5 @@ #!/usr/bin/env bash +[ -z "$QCCFLAGS_WATERMARK" ] && export QCCFLAGS_WATERMARK=$(git describe --tags --dirty='~') set -eu cd ${0%/*} @@ -29,7 +30,7 @@ CPP="cc -xc -E" declare -a QCCDEFS=( -DNDEBUG=1 -DXONOTIC=1 - -DWATERMARK="\"$(git describe --tags --dirty='~')\"" + -DWATERMARK="\"$QCCFLAGS_WATERMARK\"" -DENABLE_EFFECTINFO=0 -DENABLE_DEBUGDRAW=0 -DENABLE_DEBUGTRACE=0 @@ -66,10 +67,10 @@ function check1() { MODE=${prog} includes="-include lib/_all.inc" [ -f ${prog}/_all.qh ] && includes="${includes} -include ${prog}/_all.qh" - qpp ${file} test.dat \ + qpp ${file} test-${prog}.dat \ ${includes} \ -I. ${QCCIDENT} ${QCCDEFS} > ${WORKDIR}/${prog}.qc - qcc ${QCCFLAGS} -o ../${WORKDIR}/test.dat ../${WORKDIR}/${prog}.qc >/dev/null + qcc ${QCCFLAGS} -o ../${WORKDIR}/test-${prog}.dat ../${WORKDIR}/${prog}.qc >/dev/null } function check() { @@ -85,6 +86,7 @@ if [ ${#@} -eq 0 ]; then check menu else for var in ${@}; do + var=${var#test-} check ${var} done fi diff --git a/ruleset-XDF.cfg b/ruleset-XDF.cfg index 7e7d308a09..8f622bbcaa 100644 --- a/ruleset-XDF.cfg +++ b/ruleset-XDF.cfg @@ -25,12 +25,6 @@ sv_vote_nospectators 1 timelimit_override 20 sv_maxidle_playertospectator 0 -// speed powerup (q3 haste replacement) -g_movement_highspeed_q3_compat 1 -g_balance_powerup_speed_time 30 // q3 haste lasts 30 seconds unless count field set otherwise -g_balance_powerup_speed_highspeed 1.3 -g_balance_powerup_speed_attackrate 0.7692307692 // 1/1.3 - // game mode settings g_cts_finish_kill_delay 2 g_cts_selfdamage 0 diff --git a/xonotic-client.cfg b/xonotic-client.cfg index 09602a5432..beac1862e7 100644 --- a/xonotic-client.cfg +++ b/xonotic-client.cfg @@ -23,8 +23,15 @@ alias use "impulse 21" cl_particles_forcetraileffects 1 alias dropweapon "impulse 17" -alias +show_info +button7 -alias -show_info -button7 + +alias +show_info0 "+button7" +alias -show_info0 "-button7" +alias +show_info1 "menu_showwelcomedialog" +alias -show_info1 "" + +seta cl_welcome_in_menu_dialog 1 "1: show the welcome message in a dedicated menu dialog; 0: show it as a centerprint message" +alias +show_info +show_info$cl_welcome_in_menu_dialog +alias -show_info -show_info$cl_welcome_in_menu_dialog // merge lightmaps up to 2048x2048 textures mod_q3bsp_lightmapmergepower 4