summaryrefslogtreecommitdiff
path: root/src/chat_interface.h
Commit message (Collapse)AuthorAge
* C++ modernize: Pragma once (#6264)Loïc Blot2017-08-17
| | | | * Migrate cpp headers to pragma once
* Add server side ncurses terminalest312015-11-06
This adds a chat console the server owner can use for administration or to talk with players. It runs in its own thread, which makes the user interface immune to the server's lag, behaving just like a client, except timeout. As it uses the same console code as the f10 console, things like nick completion or a scroll buffer basically come for free. The terminal itself is written in a general way so that adding a client version later on is just about implementing an interface. Fatal errors are printed after the console exists and the ncurses terminal buffer gets cleaned up with endwin(), so that the error still remains visible. The server owner can chose their username their entered text will have in chat and where players can send PMs to. Once the username is secured with a password to prevent anybody to take over the server, the owner can execute admin tasks over the console. This change includes a contribution by @kahrl who has improved ncurses library detection.
ef='#n77'>77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: minetest\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-07-17 07:23+0200\n"
"PO-Revision-Date: 2015-08-05 13:29+0200\n"
"Last-Translator: Kisbenedek Márton <martonkisbenedek@gmail.com>\n"
"Language-Team: Hungarian "
"<https://hosted.weblate.org/projects/minetest/minetest/hu/>\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 2.4-dev\n"

#: builtin/fstk/ui.lua:82
msgid "An error occured in a Lua script, such as a mod:"
msgstr ""

#: builtin/fstk/ui.lua:84
msgid "An error occured:"
msgstr "Hiba történt:"

#: builtin/fstk/ui.lua:89 builtin/mainmenu/store.lua:165
msgid "Ok"
msgstr "OK"

#: builtin/mainmenu/common.lua:239 src/game.cpp:1891
msgid "Loading..."
msgstr "Betöltés..."

#: builtin/mainmenu/common.lua:240
msgid "Try reenabling public serverlist and check your internet connection."
msgstr ""
"Próbáld újra engedélyezni a nyilvános szerverlistát és ellenőrizd az "
"internetkapcsolatot."

#: builtin/mainmenu/dlg_config_world.lua:29
msgid "World:"
msgstr "Világ:"

#: builtin/mainmenu/dlg_config_world.lua:33
#: builtin/mainmenu/dlg_config_world.lua:35
msgid "Hide Game"
msgstr "Játék elrejtése"

#: builtin/mainmenu/dlg_config_world.lua:39
#: builtin/mainmenu/dlg_config_world.lua:41
msgid "Hide mp content"
msgstr "Modpakk tartalom elrejtése"

#: builtin/mainmenu/dlg_config_world.lua:49
#, fuzzy
msgid "Mod:"
msgstr "Mod:"

#: builtin/mainmenu/dlg_config_world.lua:51 builtin/mainmenu/tab_mods.lua:99
msgid "Depends:"
msgstr "Függ ettől:"

#: builtin/mainmenu/dlg_config_world.lua:54 src/guiKeyChangeMenu.cpp:191
msgid "Save"
msgstr "Mentés"

#: builtin/mainmenu/dlg_config_world.lua:55
#: builtin/mainmenu/dlg_create_world.lua:64
#: builtin/mainmenu/dlg_rename_modpack.lua:33 src/guiKeyChangeMenu.cpp:199
#: src/keycode.cpp:223
msgid "Cancel"
msgstr "Mégse"

#: builtin/mainmenu/dlg_config_world.lua:71
msgid "Enable MP"
msgstr "Modpakk engedélyezése"

#: builtin/mainmenu/dlg_config_world.lua:73
msgid "Disable MP"
msgstr "Modpakk letiltása"

#: builtin/mainmenu/dlg_config_world.lua:77
#: builtin/mainmenu/dlg_config_world.lua:79
msgid "enabled"
msgstr "Engedélyezve"

#: builtin/mainmenu/dlg_config_world.lua:85
msgid "Enable all"
msgstr "Összes engedélyezése"

#: builtin/mainmenu/dlg_create_world.lua:50
msgid "World name"
msgstr "Világ neve"

#: builtin/mainmenu/dlg_create_world.lua:53
#, fuzzy
msgid "Seed"
msgstr "Seed"

#: builtin/mainmenu/dlg_create_world.lua:56
msgid "Mapgen"
msgstr "Térkép generátor"

#: builtin/mainmenu/dlg_create_world.lua:59
msgid "Game"
msgstr "Játék"

#: builtin/mainmenu/dlg_create_world.lua:63
msgid "Create"
msgstr "Létrehozás"

#: builtin/mainmenu/dlg_create_world.lua:68
msgid "You have no subgames installed."
msgstr "Nincsenek al-játékok telepítve."

#: builtin/mainmenu/dlg_create_world.lua:69
msgid "Download one from minetest.net"
msgstr "Letöltés a minetest.net-ről"

#: builtin/mainmenu/dlg_create_world.lua:72
msgid "Warning: The minimal development test is meant for developers."
msgstr ""
"Figyelmeztetés: A \"minimal development test\" csak fejlesztőknek ajánlott."

#: builtin/mainmenu/dlg_create_world.lua:73
msgid "Download a subgame, such as minetest_game, from minetest.net"
msgstr "Tölts le egy al-játékot (pl. minetest_game) a minetest.net-ről"

#: builtin/mainmenu/dlg_create_world.lua:99
msgid "A world named \"$1\" already exists"
msgstr "\"$1\" nevű világ már létezik"

#: builtin/mainmenu/dlg_create_world.lua:116
msgid "No worldname given or no game selected"
msgstr "Nincs megadva a világ neve, vagy nincs kiválasztva játék"

#: builtin/mainmenu/dlg_delete_mod.lua:26
msgid "Are you sure you want to delete \"$1\"?"
msgstr "Biztosan törölni akarod: \"$1\"?"

#: builtin/mainmenu/dlg_delete_mod.lua:27
#: builtin/mainmenu/dlg_delete_world.lua:25
#: builtin/mainmenu/tab_settings.lua:100
msgid "Yes"
msgstr "Igen"

#: builtin/mainmenu/dlg_delete_mod.lua:28
msgid "No of course not!"
msgstr "Persze, hogy nem!"

#: builtin/mainmenu/dlg_delete_mod.lua:41
msgid "Modmgr: failed to delete \"$1\""
msgstr "Modmgr: \"$1\" törlése meghiúsult"

#: builtin/mainmenu/dlg_delete_mod.lua:45
msgid "Modmgr: invalid modpath \"$1\""
msgstr "Modmgr: érvénytelen mod útvonal: \"$1\""

#: builtin/mainmenu/dlg_delete_world.lua:24
msgid "Delete World \"$1\"?"
msgstr "\"$1\" világ törlése?"

#: builtin/mainmenu/dlg_delete_world.lua:26
msgid "No"
msgstr "Nem"

#: builtin/mainmenu/dlg_rename_modpack.lua:26
msgid "Rename Modpack:"
msgstr "Modpakk átnevezése:"

#: builtin/mainmenu/dlg_rename_modpack.lua:31 src/keycode.cpp:227
msgid "Accept"
msgstr "Elfogad"

#: builtin/mainmenu/modmgr.lua:344
msgid "Install Mod: file: \"$1\""
msgstr "Mod telepítés: fájl: \"$1\""

#: builtin/mainmenu/modmgr.lua:345
msgid ""
"\n"
"Install Mod: unsupported filetype \"$1\" or broken archive"
msgstr ""
"\n"
"Mod telepítés: \"$1\" nem támogatott fájltípus, vagy hibás archívum"

#: builtin/mainmenu/modmgr.lua:365
msgid "Failed to install $1 to $2"
msgstr "$1 telepítése meghiúsult"

#: builtin/mainmenu/modmgr.lua:368
msgid "Install Mod: unable to find suitable foldername for modpack $1"
msgstr ""
"Mod telepítése: nem található megfelelő mappanév ehhez a modpakk-hoz: $1"

#: builtin/mainmenu/modmgr.lua:388
msgid "Install Mod: unable to find real modname for: $1"
msgstr "Mod telepítése: nem található megfelelő mod név ehhez: $1"

#: builtin/mainmenu/store.lua:88
msgid "Unsorted"
msgstr "Rendezetlen"

#: builtin/mainmenu/store.lua:99 builtin/mainmenu/store.lua:580
msgid "Search"
msgstr "Keresés"

#: builtin/mainmenu/store.lua:126
msgid "Downloading $1, please wait..."
msgstr "$1 letöltése, kérlek várj..."

#: builtin/mainmenu/store.lua:160
msgid "Successfully installed:"
msgstr "Sikeresen telepítve:"

#: builtin/mainmenu/store.lua:162
msgid "Shortname:"
msgstr "Rövid név:"

#: builtin/mainmenu/store.lua:472
msgid "Rating"
msgstr "Értékelés"

#: builtin/mainmenu/store.lua:497
msgid "re-Install"
msgstr "Újratelepítés"

#: builtin/mainmenu/store.lua:499
msgid "Install"
msgstr "Telepítés"

#: builtin/mainmenu/store.lua:518
msgid "Close store"
msgstr "Áruház bezárása"

#: builtin/mainmenu/store.lua:526
msgid "Page $1 of $2"
msgstr "Oldal $1 ennyiből: $2"

#: builtin/mainmenu/tab_credits.lua:22
msgid "Credits"
msgstr "Készítők"

#: builtin/mainmenu/tab_credits.lua:31
msgid "Core Developers"
msgstr "Belső fejlesztők"

#: builtin/mainmenu/tab_credits.lua:47
msgid "Active Contributors"
msgstr "Tevékeny hozzájárulók"

#: builtin/mainmenu/tab_credits.lua:54
msgid "Previous Core Developers"
msgstr "Korábbi belső fejlesztők"

#: builtin/mainmenu/tab_credits.lua:59
msgid "Previous Contributors"
msgstr "Korábbi hozzájárulók"

#: builtin/mainmenu/tab_mods.lua:30
msgid "Installed Mods:"
msgstr "Telepített modok:"

#: builtin/mainmenu/tab_mods.lua:39
msgid "Online mod repository"
msgstr "Online mod tároló"

#: builtin/mainmenu/tab_mods.lua:78
msgid "No mod description available"
msgstr "Nincs elérhető mod leírás"

#: builtin/mainmenu/tab_mods.lua:82
msgid "Mod information:"
msgstr "Mod ismertető:"

#: builtin/mainmenu/tab_mods.lua:93
msgid "Rename"
msgstr "Átnevez"

#: builtin/mainmenu/tab_mods.lua:95
msgid "Uninstall selected modpack"
msgstr "Kiválasztott modpakk törlése"

#: builtin/mainmenu/tab_mods.lua:106
msgid "Uninstall selected mod"
msgstr "Kiválasztott mod törlése"

#: builtin/mainmenu/tab_mods.lua:121
msgid "Select Mod File:"
msgstr "Mod fájl kiválasztása:"

#: builtin/mainmenu/tab_mods.lua:165
msgid "Mods"
msgstr "Modok"

#: builtin/mainmenu/tab_multiplayer.lua:23
msgid "Address / Port :"
msgstr "Cím / Port:"

#: builtin/mainmenu/tab_multiplayer.lua:24
msgid "Name / Password :"
msgstr "Név / jelszó:"

#: builtin/mainmenu/tab_multiplayer.lua:29
#: builtin/mainmenu/tab_simple_main.lua:30
msgid "Public Serverlist"
msgstr "Nyilvános szerverlista"

#: builtin/mainmenu/tab_multiplayer.lua:34 builtin/mainmenu/tab_server.lua:26
#: builtin/mainmenu/tab_singleplayer.lua:96 src/keycode.cpp:229
msgid "Delete"
msgstr "Törlés"

#: builtin/mainmenu/tab_multiplayer.lua:38
#: builtin/mainmenu/tab_simple_main.lua:34
msgid "Connect"
msgstr "Csatlakozás"

#: builtin/mainmenu/tab_multiplayer.lua:62
#: builtin/mainmenu/tab_simple_main.lua:45
msgid "Creative mode"
msgstr "Kreatív mód"

#: builtin/mainmenu/tab_multiplayer.lua:63
#: builtin/mainmenu/tab_simple_main.lua:46
msgid "Damage enabled"
msgstr "Sérülés engedélyezve"

#: builtin/mainmenu/tab_multiplayer.lua:64
#: builtin/mainmenu/tab_simple_main.lua:47
msgid "PvP enabled"
msgstr "PvP engedélyezve"

#: builtin/mainmenu/tab_multiplayer.lua:257
msgid "Client"
msgstr "Kliens"

#: builtin/mainmenu/tab_server.lua:27 builtin/mainmenu/tab_singleplayer.lua:97
msgid "New"
msgstr "Új"

#: builtin/mainmenu/tab_server.lua:28 builtin/mainmenu/tab_singleplayer.lua:98
msgid "Configure"
msgstr "Beállítás"

#: builtin/mainmenu/tab_server.lua:29
msgid "Start Game"
msgstr "Játék indítása"

#: builtin/mainmenu/tab_server.lua:30
#: builtin/mainmenu/tab_singleplayer.lua:100
msgid "Select World:"
msgstr "Világ kiválasztása:"

#: builtin/mainmenu/tab_server.lua:31 builtin/mainmenu/tab_simple_main.lua:76
#: builtin/mainmenu/tab_singleplayer.lua:101
msgid "Creative Mode"
msgstr "Kreatív mód"

#: builtin/mainmenu/tab_server.lua:33 builtin/mainmenu/tab_simple_main.lua:78
#: builtin/mainmenu/tab_singleplayer.lua:103
msgid "Enable Damage"
msgstr "Sérülés engedélyezése"

#: builtin/mainmenu/tab_server.lua:35
msgid "Public"
msgstr "Nyilvános"

#: builtin/mainmenu/tab_server.lua:37 builtin/mainmenu/tab_simple_main.lua:25
msgid "Name/Password"
msgstr "Név/jelszó"

#: builtin/mainmenu/tab_server.lua:45
#, fuzzy
msgid "Bind Address"
msgstr "Bind Address"

#: builtin/mainmenu/tab_server.lua:47
msgid "Port"
msgstr "Port"

#: builtin/mainmenu/tab_server.lua:51
msgid "Server Port"
msgstr "Szerver port"

#: builtin/mainmenu/tab_server.lua:138
#: builtin/mainmenu/tab_singleplayer.lua:165
msgid "No world created or selected!"
msgstr "Nincs létrehozva, vagy kiválasztva világ!"

#: builtin/mainmenu/tab_server.lua:191
msgid "Server"
msgstr "Szerver"

#: builtin/mainmenu/tab_settings.lua:21
msgid "Opaque Leaves"
msgstr "Áttetsző levelek"

#: builtin/mainmenu/tab_settings.lua:22
msgid "Simple Leaves"
msgstr "Egyszerű levelek"

#: builtin/mainmenu/tab_settings.lua:23
msgid "Fancy Leaves"
msgstr "Szép levelek"

#: builtin/mainmenu/tab_settings.lua:32
msgid "No Filter"
msgstr "Nincs szűrés"

#: builtin/mainmenu/tab_settings.lua:33
msgid "Bilinear Filter"
msgstr "Bi-lineáris szűrés"

#: builtin/mainmenu/tab_settings.lua:34
msgid "Trilinear Filter"
msgstr "Tri-lineáris szűrés"

#: builtin/mainmenu/tab_settings.lua:43
#, fuzzy
msgid "No Mipmap"
msgstr "No Mipmap"

#: builtin/mainmenu/tab_settings.lua:44
#, fuzzy
msgid "Mipmap"
msgstr "Mipmap"

#: builtin/mainmenu/tab_settings.lua:45
#, fuzzy
msgid "Mipmap + Aniso. Filter"
msgstr "Mipmap + Aniso. Filter"

#: builtin/mainmenu/tab_settings.lua:98
msgid "Are you sure to reset your singleplayer world?"
msgstr "Biztosan visszaállítod az egyjátékos világod?"

#: builtin/mainmenu/tab_settings.lua:102
msgid "No!!!"
msgstr "Nem!!!"

#: builtin/mainmenu/tab_settings.lua:202
msgid "Smooth Lighting"
msgstr "Simított megvilágítás"

#: builtin/mainmenu/tab_settings.lua:204
msgid "Enable Particles"
msgstr "Részecskék engedélyezése"

#: builtin/mainmenu/tab_settings.lua:206
msgid "3D Clouds"
msgstr "3D felhők"

#: builtin/mainmenu/tab_settings.lua:208
msgid "Opaque Water"
msgstr "Áttetsző víz"

#: builtin/mainmenu/tab_settings.lua:210
msgid "Connected Glass"
msgstr "Tiszta (csatlakozó) üveg"

#: builtin/mainmenu/tab_settings.lua:212
msgid "Node Highlighting"
msgstr "Node kiemelés"

#: builtin/mainmenu/tab_settings.lua:217
msgid "Texturing:"
msgstr "Textúrázás:"

#: builtin/mainmenu/tab_settings.lua:222
msgid "Rendering:"
msgstr "Renderelés:"

#: builtin/mainmenu/tab_settings.lua:226
msgid "Restart minetest for driver change to take effect"
msgstr "A driver változások életbe lépéséhez indítsd újra a Minetestet"

#: builtin/mainmenu/tab_settings.lua:228
msgid "Shaders"
msgstr "Shaderek"

#: builtin/mainmenu/tab_settings.lua:233
msgid "Change keys"
msgstr "Gombok változtatása"

#: builtin/mainmenu/tab_settings.lua:236
msgid "Reset singleplayer world"
msgstr "Egyjátékos világ visszaállítása"

#: builtin/mainmenu/tab_settings.lua:240
msgid "GUI scale factor"
msgstr "Felhasználói felület méretaránya"

#: builtin/mainmenu/tab_settings.lua:244
msgid "Scaling factor applied to menu elements: "
msgstr "A méretarány alkalmazva a menü elemekre: "

#: builtin/mainmenu/tab_settings.lua:250
#, fuzzy
msgid "Touch free target"
msgstr "Touch free target"

#: builtin/mainmenu/tab_settings.lua:256
#, fuzzy
msgid "Touchthreshold (px)"
msgstr "Touchthreshold (px)"

#: builtin/mainmenu/tab_settings.lua:263 builtin/mainmenu/tab_settings.lua:277
#, fuzzy
msgid "Bumpmapping"
msgstr "Bumpmapping"

#: builtin/mainmenu/tab_settings.lua:265 builtin/mainmenu/tab_settings.lua:278
#, fuzzy
msgid "Generate Normalmaps"
msgstr "Generate Normalmaps"

#: builtin/mainmenu/tab_settings.lua:267 builtin/mainmenu/tab_settings.lua:279
#, fuzzy
msgid "Parallax Occlusion"
msgstr "Parallax Occlusion"

#: builtin/mainmenu/tab_settings.lua:269 builtin/mainmenu/tab_settings.lua:280
msgid "Waving Water"
msgstr "Hullámzó víz"

#: builtin/mainmenu/tab_settings.lua:271 builtin/mainmenu/tab_settings.lua:281
msgid "Waving Leaves"
msgstr "Hullámzó levelek"

#: builtin/mainmenu/tab_settings.lua:273 builtin/mainmenu/tab_settings.lua:282
msgid "Waving Plants"
msgstr "Hullámzó növények"

#: builtin/mainmenu/tab_settings.lua:308
msgid "To enable shaders the OpenGL driver needs to be used."
msgstr "A shaderek engedélyezéséhez OpenGL driver használata szükséges."

#: builtin/mainmenu/tab_settings.lua:430
msgid "Settings"
msgstr "Beállítások"

#: builtin/mainmenu/tab_simple_main.lua:82
msgid "Start Singleplayer"
msgstr "Egyjátékos mód indítása"

#: builtin/mainmenu/tab_simple_main.lua:83
msgid "Config mods"
msgstr "Modok beállítása"

#: builtin/mainmenu/tab_simple_main.lua:201
msgid "Main"
msgstr "Főmenü"

#: builtin/mainmenu/tab_singleplayer.lua:99 src/keycode.cpp:248
msgid "Play"
msgstr "Játék"

#: builtin/mainmenu/tab_singleplayer.lua:246
msgid "Singleplayer"
msgstr "Egyjátékos mód"

#: builtin/mainmenu/tab_texturepacks.lua:49
msgid "Select texture pack:"
msgstr "Textúra pakk kiválasztása:"

#: builtin/mainmenu/tab_texturepacks.lua:69
msgid "No information available"
msgstr "Nincs elérhető információ"

#: builtin/mainmenu/tab_texturepacks.lua:114
msgid "Texturepacks"
msgstr "Textúra pakkok"

#: src/client.cpp:1721
msgid "Loading textures..."
msgstr "Textúrák betöltése..."

#: src/client.cpp:1736
msgid "Rebuilding shaders..."
msgstr "Shaderek újraépítése..."

#: src/client.cpp:1743
msgid "Initializing nodes..."
msgstr "Csomópontok inicializálása..."

#: src/client.cpp:1760
msgid "Initializing nodes"
msgstr "Csomópontok inicializálása"

#: src/client.cpp:1768
msgid "Item textures..."
msgstr "Elem textúrák..."

#: src/client.cpp:1793
msgid "Done!"
msgstr "Kész!"

#: src/client/clientlauncher.cpp:185
msgid "Main Menu"
msgstr "Főmenü"

#: src/client/clientlauncher.cpp:223
msgid "Player name too long."
msgstr "Túl hosszú játékosnév."

#: src/client/clientlauncher.cpp:261
msgid "Connection error (timed out?)"
msgstr "Csatlakozási hiba (idő lejárt?)"

#: src/client/clientlauncher.cpp:425
msgid "No world selected and no address provided. Nothing to do."
msgstr "Nincs világ kiválasztva és nincs cím megadva. Nincs mit tenni."

#: src/client/clientlauncher.cpp:432
msgid "Provided world path doesn't exist: "
msgstr "A megadott világ útvonala nem létezik: "

#: src/client/clientlauncher.cpp:441
msgid "Could not find or load game \""
msgstr "Nem lehet betölteni, vagy nem található játék \""

#: src/client/clientlauncher.cpp:459
msgid "Invalid gamespec."
msgstr "Nem valós játék spec."

#: src/fontengine.cpp:70 src/fontengine.cpp:226
#, fuzzy
msgid "needs_fallback_font"
msgstr "needs_fallback_font"

#: src/game.cpp:1052 src/guiFormSpecMenu.cpp:2065
msgid "Proceed"
msgstr "Folytatás"

#: src/game.cpp:1072
msgid "You died."
msgstr "Meghaltál."

#: src/game.cpp:1073
msgid "Respawn"
msgstr "Újraéledés"

#: src/game.cpp:1092
msgid ""
"Default Controls:\n"
"No menu visible:\n"
"- single tap: button activate\n"
"- double tap: place/use\n"
"- slide finger: look around\n"
"Menu/Inventory visible:\n"
"- double tap (outside):\n"
" -->close\n"
"- touch stack, touch slot:\n"
" --> move stack\n"
"- touch&drag, tap 2nd finger\n"
" --> place single item to slot\n"
msgstr ""
"Alapértelmezett irányítás:\n"
"Nem látható menü:\n"
"- egy érintés: gomb aktiválás\n"
"- dupla érintés: helyez/használat\n"
"- ujj csúsztatás: körbenéz\n"
"Menü/Inventory látható:\n"
"- dupla érintés (külső):\n"
" -->bezár\n"
"- stack, vagy slot érintése:\n"
" --> stack mozgatása\n"
"- érint&megfogás, érintés 2. ujjal\n"
" --> egy elem slotba helyezése\n"

#: src/game.cpp:1106
msgid ""
"Default Controls:\n"
"- WASD: move\n"
"- Space: jump/climb\n"
"- Shift: sneak/go down\n"
"- Q: drop item\n"
"- I: inventory\n"
"- Mouse: turn/look\n"
"- Mouse left: dig/punch\n"
"- Mouse right: place/use\n"
"- Mouse wheel: select item\n"
"- T: chat\n"
msgstr ""
"Alapértelmezett irányítás:\n"
"- WASD: Mozgás\n"
"- Space: Ugrás/Mászás\n"
"- Shift: Lopakodás/Lefele menés\n"
"- Q: Tárgyak eldobása\n"
"- I: Invertory\n"
"- Egér: Forgás/Nézelődés\n"
"- Egér Bal-gomb: Ásás/Ütés\n"
"- Egér jobb-gomb: Helyezés/Használat\n"
"- Egér görgő: Tárgyak kiválasztása\n"
"- T: Beszélgetés\n"

#: src/game.cpp:1125
msgid "Continue"
msgstr "Tovább"

#: src/game.cpp:1129
msgid "Change Password"
msgstr "Jelszó változtatás"

#: src/game.cpp:1134
msgid "Sound Volume"
msgstr "Hangerő"

#: src/game.cpp:1136
msgid "Change Keys"
msgstr "Gombok változtatása"

#: src/game.cpp:1139
msgid "Exit to Menu"
msgstr "Kilépés a menübe"

#: src/game.cpp:1141
msgid "Exit to OS"
msgstr "Kilépés az OP-rendszerbe"

#: src/game.cpp:1841
msgid "Shutting down..."
msgstr "Leállítás..."

#: src/game.cpp:1948
msgid "Creating server..."
msgstr "Szerver létrehozása..."

#: src/game.cpp:1984
msgid "Creating client..."
msgstr "Kliens létrehozása..."

#: src/game.cpp:2159
msgid "Resolving address..."
msgstr "Cím feloldása..."

#: src/game.cpp:2261
msgid "Connecting to server..."
msgstr "Csatlakozás a szerverhez..."

#: src/game.cpp:2317
msgid "Item definitions..."
msgstr "Elem definíciók..."

#: src/game.cpp:2322
msgid "Node definitions..."
msgstr "Csomópont definíciók..."

#: src/game.cpp:2329
msgid "Media..."
msgstr "Média..."

#: src/game.cpp:2334
msgid "KiB/s"
msgstr "KiB/mp"

#: src/game.cpp:2338
msgid "MiB/s"
msgstr "MiB/mp"

#: src/game.cpp:4363
msgid ""
"\n"
"Check debug.txt for details."
msgstr ""
"\n"
"Részletekért tekintsd meg a debug.txt fájlt."

#: src/guiFormSpecMenu.cpp:2855
msgid "Enter "
msgstr "Belépés "

#: src/guiFormSpecMenu.cpp:2875
msgid "ok"
msgstr "Ok"

#: src/guiKeyChangeMenu.cpp:125
msgid "Keybindings. (If this menu screws up, remove stuff from minetest.conf)"
msgstr ""
"Gombkiosztás. (Ha elfuserálod ezt a menüt, távolíts el néhány cuccot a "
"minetest.conf-ból)"

#: src/guiKeyChangeMenu.cpp:165
msgid "\"Use\" = climb down"
msgstr "\"Használat\" = Lemászás"

#: src/guiKeyChangeMenu.cpp:180
msgid "Double tap \"jump\" to toggle fly"
msgstr "Az \"ugrás\" gomb duplán a repüléshez"

#: src/guiKeyChangeMenu.cpp:295
msgid "Key already in use"
msgstr "A gomb már használatban van"

#: src/guiKeyChangeMenu.cpp:373
msgid "press key"
msgstr "Nyomj meg egy gombot"

#: src/guiKeyChangeMenu.cpp:399
msgid "Forward"
msgstr "Előre"

#: src/guiKeyChangeMenu.cpp:400
msgid "Backward"
msgstr "Vissza"

#: src/guiKeyChangeMenu.cpp:401 src/keycode.cpp:228
msgid "Left"
msgstr "Bal"

#: src/guiKeyChangeMenu.cpp:402 src/keycode.cpp:228
msgid "Right"
msgstr "Jobb"

#: src/guiKeyChangeMenu.cpp:403
msgid "Use"
msgstr "Használat"

#: src/guiKeyChangeMenu.cpp:404
msgid "Jump"
msgstr "Ugrás"

#: src/guiKeyChangeMenu.cpp:405
msgid "Sneak"
msgstr "Lopakodás"

#: src/guiKeyChangeMenu.cpp:406
msgid "Drop"
msgstr "Eldobás"

#: src/guiKeyChangeMenu.cpp:407
#, fuzzy
msgid "Inventory"
msgstr "Inventory"

#: src/guiKeyChangeMenu.cpp:408
msgid "Chat"
msgstr "Beszélgetés"

#: src/guiKeyChangeMenu.cpp:409
msgid "Command"
msgstr "Parancs"

#: src/guiKeyChangeMenu.cpp:410
msgid "Console"
msgstr "Konzol"

#: src/guiKeyChangeMenu.cpp:411
msgid "Toggle fly"
msgstr "Repülés bekapcsolása"

#: src/guiKeyChangeMenu.cpp:412
msgid "Toggle fast"
msgstr "Gyorsaság bekapcsolása"

#: src/guiKeyChangeMenu.cpp:413
#, fuzzy
msgid "Toggle Cinematic"
msgstr "Toggle Cinematic"

#: src/guiKeyChangeMenu.cpp:414
msgid "Toggle noclip"
msgstr "Váltás noclip-re"

#: src/guiKeyChangeMenu.cpp:415
msgid "Range select"
msgstr "Látótávolság választása"

#: src/guiKeyChangeMenu.cpp:416
msgid "Print stacks"
msgstr "Stacks nyomtatása"

#: src/guiPasswordChange.cpp:108
msgid "Old Password"
msgstr "Régi jelszó"

#: src/guiPasswordChange.cpp:124
msgid "New Password"
msgstr "Új jelszó"

#: src/guiPasswordChange.cpp:139
msgid "Confirm Password"
msgstr "Jelszó megerősítés"

#: src/guiPasswordChange.cpp:155
msgid "Change"
msgstr "Változtat"

#: src/guiPasswordChange.cpp:164
msgid "Passwords do not match!"
msgstr "Nem egyeznek a jelszavak!"

#: src/guiVolumeChange.cpp:105
msgid "Sound Volume: "
msgstr "Hangerő: "

#: src/guiVolumeChange.cpp:119
msgid "Exit"
msgstr "Kilépés"

#: src/keycode.cpp:223
msgid "Left Button"
msgstr "Bal gomb"

#: src/keycode.cpp:223
msgid "Middle Button"
msgstr "Középső gomb"

#: src/keycode.cpp:223
msgid "Right Button"
msgstr "Jobb gomb"

#: src/keycode.cpp:223
msgid "X Button 1"
msgstr "X gomb 1"

#: src/keycode.cpp:224
msgid "Back"
msgstr "Vissza"

#: src/keycode.cpp:224
msgid "Clear"
msgstr "Törlés"

#: src/keycode.cpp:224
msgid "Return"
msgstr "Enter"

#: src/keycode.cpp:224
msgid "Tab"
msgstr "Tabulátor"

#: src/keycode.cpp:224
msgid "X Button 2"
msgstr "X Gomb 2"

#: src/keycode.cpp:225
msgid "Capital"
msgstr "Nagybetű"

#: src/keycode.cpp:225
#, fuzzy
msgid "Control"
msgstr "Control"

#: src/keycode.cpp:225
#, fuzzy
msgid "Kana"
msgstr "Kana"

#: src/keycode.cpp:225
msgid "Menu"
msgstr "Menü"

#: src/keycode.cpp:225
msgid "Pause"
msgstr "Szünet"

#: src/keycode.cpp:225
#, fuzzy
msgid "Shift"
msgstr "Shift"

#: src/keycode.cpp:226
msgid "Convert"
msgstr "Konvertálás"

#: src/keycode.cpp:226
msgid "Escape"
msgstr "Kilépés"

#: src/keycode.cpp:226
msgid "Final"
msgstr "Befejezés"

#: src/keycode.cpp:226
msgid "Junja"
msgstr "Junjaa"

#: src/keycode.cpp:226
msgid "Kanji"
msgstr "Kanjii"

#: src/keycode.cpp:226
msgid "Nonconvert"
msgstr "Nem konvertált"

#: src/keycode.cpp:227
msgid "End"
msgstr "Vége"

#: src/keycode.cpp:227
msgid "Home"
msgstr "Otthon"

#: src/keycode.cpp:227
msgid "Mode Change"
msgstr "Mód váltás"

#: src/keycode.cpp:227
msgid "Next"
msgstr "Következő"

#: src/keycode.cpp:227
msgid "Prior"
msgstr "Elsődleges"

#: src/keycode.cpp:227
msgid "Space"
msgstr "Szóköz"

#: src/keycode.cpp:228
msgid "Down"
msgstr "Le"

#: src/keycode.cpp:228
msgid "Execute"
msgstr "Végrehajt"

#: src/keycode.cpp:228
msgid "Print"
msgstr "Nyomtat"

#: src/keycode.cpp:228
msgid "Select"
msgstr "Kiválaszt"

#: src/keycode.cpp:228
msgid "Up"
msgstr "Fel"

#: src/keycode.cpp:229
msgid "Help"
msgstr "Segítség"

#: src/keycode.cpp:229
msgid "Insert"
msgstr "Beilleszt"

#: src/keycode.cpp:229
msgid "Snapshot"
msgstr "Pillanatkép"

#: src/keycode.cpp:232
msgid "Left Windows"
msgstr "Bal Windows"

#: src/keycode.cpp:233
msgid "Apps"
msgstr "Alkalmazások"

#: src/keycode.cpp:233
msgid "Numpad 0"
msgstr "Numerikus billentyű 0"

#: src/keycode.cpp:233
msgid "Numpad 1"
msgstr "Numerikus billentyű 1"

#: src/keycode.cpp:233
msgid "Right Windows"
msgstr "Jobb Windows"

#: src/keycode.cpp:233
msgid "Sleep"
msgstr "Alvás"

#: src/keycode.cpp:234
msgid "Numpad 2"
msgstr "Numerikus billentyű 2"

#: src/keycode.cpp:234
msgid "Numpad 3"
msgstr "Numerikus billentyű 3"

#: src/keycode.cpp:234
msgid "Numpad 4"
msgstr "Numerikus billentyű 4"

#: src/keycode.cpp:234
msgid "Numpad 5"
msgstr "Numerikus billentyű 5"

#: src/keycode.cpp:234
msgid "Numpad 6"
msgstr "Numerikus billentyű 6"

#: src/keycode.cpp:234
msgid "Numpad 7"
msgstr "Numerikus billentyű 7"

#: src/keycode.cpp:235
msgid "Numpad *"
msgstr "Numerikus billentyű *"

#: src/keycode.cpp:235
msgid "Numpad +"
msgstr "Numerikus billentyű +"

#: src/keycode.cpp:235
msgid "Numpad -"
msgstr "Numerikus billentyű -"

#: src/keycode.cpp:235
msgid "Numpad /"
msgstr "Numerikus billentyű /"

#: src/keycode.cpp:235
msgid "Numpad 8"
msgstr "Numerikus billentyű 8"

#: src/keycode.cpp:235
msgid "Numpad 9"
msgstr "Numerikus billentyű 9"

#: src/keycode.cpp:239
msgid "Num Lock"
msgstr "Numlock"

#: src/keycode.cpp:239
msgid "Scroll Lock"
msgstr "ScrollLock"

#: src/keycode.cpp:240
msgid "Left Shift"
msgstr "Bal Shift"

#: src/keycode.cpp:240
msgid "Right Shift"
msgstr "Jobb Shift"

#: src/keycode.cpp:241
msgid "Left Control"
msgstr "Bal Controll"

#: src/keycode.cpp:241
msgid "Left Menu"
msgstr "Bal menü"

#: src/keycode.cpp:241
msgid "Right Control"
msgstr "Jobb Control"

#: src/keycode.cpp:241
msgid "Right Menu"
msgstr "Jobb menü"

#: src/keycode.cpp:243
msgid "Comma"
msgstr "Vessző"

#: src/keycode.cpp:243
msgid "Minus"
msgstr "Mínusz"

#: src/keycode.cpp:243
msgid "Period"
msgstr "Pont"

#: src/keycode.cpp:243
msgid "Plus"
msgstr "Plusz"

#: src/keycode.cpp:247
#, fuzzy
msgid "Attn"
msgstr "Attn"

#: src/keycode.cpp:247
#, fuzzy
msgid "CrSel"
msgstr "CrSel"

#: src/keycode.cpp:248
#, fuzzy
msgid "Erase OEF"
msgstr "Erase OEF"

#: src/keycode.cpp:248
#, fuzzy
msgid "ExSel"
msgstr "ExSel"

#: src/keycode.cpp:248
#, fuzzy
msgid "OEM Clear"
msgstr "OEM Clear"

#: src/keycode.cpp:248
#, fuzzy
msgid "PA1"
msgstr "PA1"

#: src/keycode.cpp:248
msgid "Zoom"
msgstr "Nagyítás"

#, fuzzy
#~ msgid "Game Name"
#~ msgstr "Játék"

#, fuzzy
#~ msgid "Games"
#~ msgstr "Játék"

#~ msgid "Favorites:"
#~ msgstr "Kedvencek:"

#, fuzzy
#~ msgid "Password"
#~ msgstr "Régi jelszó"

#~ msgid "Preload item visuals"
#~ msgstr "Előretöltött tárgy láthatóság"

#, fuzzy
#~ msgid "Finite Liquid"
#~ msgstr "Végtelen folyadék"

#~ msgid "Failed to delete all world files"
#~ msgstr "Hiba az összes világ törlése közben"

#~ msgid "Cannot configure world: Nothing selected"
#~ msgstr "Nem sikerült a világ beállítása: Nincs kiválasztva"

#~ msgid "Cannot create world: No games found"
#~ msgstr "Nem sikerült a világot létrehozni: Nem található a játék"

#~ msgid "Files to be deleted"
#~ msgstr "A fájl törölve lett"

#~ msgid "Cannot delete world: Nothing selected"
#~ msgstr "Nem törölhető a világ: Nincs kiválasztva"

#~ msgid "Address required."
#~ msgstr "Cím szükséges."

#~ msgid "Create world"
#~ msgstr "Világ létrehozása"

#~ msgid "Leave address blank to start a local server."
#~ msgstr "Hagyd el a nevét, hogy helyi szervert indíts."

#~ msgid "Show Favorites"
#~ msgstr "Kedvencek mutatása"

#~ msgid "Show Public"
#~ msgstr "Publikus mutatása"

#~ msgid "Advanced"
#~ msgstr "Haladó"

#~ msgid "Multiplayer"
#~ msgstr "Többjátékos mód"

#~ msgid "Cannot create world: Name contains invalid characters"
#~ msgstr "Nem sikerült a világ létrehozása: A névben nem jó karakterek vannak"

#~ msgid "Warning: Configuration not consistent.  "
#~ msgstr "Figyelem: A beállítások nem egyformák.  "

#~ msgid "Configuration saved.  "
#~ msgstr "Beállítások mentve.  "

#~ msgid "is required by:"
#~ msgstr "kell neki:"

#~ msgid "Left click: Move all items, Right click: Move single item"
#~ msgstr "Ball gomb: Tárgyak mozgatása, Jobb gomb: egy tárgyat mozgat"

#~ msgid "Anisotropic Filtering"
#~ msgstr "Anzisztrópikus szűrés"

#~ msgid "Mip-Mapping"
#~ msgstr "Mip-mapping"

#, fuzzy
#~ msgid "Downloading"
#~ msgstr "Le"