aboutsummaryrefslogtreecommitdiff
path: root/src/script/lua_api
Commit message (Expand)AuthorAge
...
* [CSM] Client side moddingLoic Blot2017-03-13
* Light calculation: New bulk node lighting codeDániel Juhász2017-03-11
* Add ModMetadata API (#5131)Loïc Blot2017-02-08
* Fix incompatibility of ItemStack.to_table() introduced by stack metarubenwardy2017-02-07
* Add ItemStack key-value meta storagerubenwardy2017-02-04
* Derive NodeMetaRef from MetaDataRefrubenwardy2017-02-04
* Make NodeMetaRef::getmeta a non-static memberrubenwardy2017-02-04
* Serverlist: Add ping indicators (#5164)kilbith2017-02-03
* from_table: Fix crash for missing inventory or fieldSmallJoker2017-01-28
* Implement player attribute backend (#4155)Loïc Blot2017-01-27
* Initialize TileAnimationParams to prevent crashes/bugs for legacy invocations...sfan52017-01-24
* Revert "Detach the player from entities on death." (#5087)Loïc Blot2017-01-21
* Add Entity get_texture_mod() to Lua APIsapier2017-01-21
* Detach the player from entities on death. (#5077)red-0012017-01-21
* Add particle animation, glowsfan52017-01-18
* Fix typo in alias for deprecated settexturemodsapier2017-01-17
* Rename ObjectRef methods to be consistent and predictablerubenwardy2017-01-16
* Make nametag removable with set_nametag_attributes (#5021)Rui2017-01-11
* Performance fix + SAO factorizationRogier2017-01-11
* Add staticdata parameter to add_entity (#5009)Rui2017-01-09
* Environment & IGameDef code refactoring (#4985)Ner'zhul2017-01-09
* Move ServerEnvironment to dedicated cpp/header filesLoic Blot2017-01-08
* Breath cheat fix: server sideLoic Blot2017-01-01
* Dont compare short with bool (#4963)adrido2016-12-28
* Fix warning reported by clang (possible bug in Settings lua api)sfan52016-12-21
* Mod security: Allow read-only access to all mod pathsShadowNinja2016-12-20
* Simple decorations: Fix range check for deco->deco_param2Auke Kok2016-12-08
* Simple deco: Allow setting param2 value on placementAuke Kok2016-12-07
* Allow restricting detached inventories to one playersfan52016-11-28
* Revert "Adding particle blend, glow and animation (#4705)"sfan52016-11-14
* Adding particle blend, glow and animation (#4705)Foghrye42016-11-15
* Fix crash when attached object no longer existsRogier2016-11-13
* Add minetest.get_server_uptime() function to Lua API (#4702)Brandon2016-11-02
* Add version APIShadowNinja2016-10-31
* Lua voxelmanip: Add optional buffer param for 'get param2 data'paramat2016-10-31
* Fix overloading problems mentioned by clangLoic Blot2016-10-30
* PlayerSAO/LocalPlayer refactor: (#4612)Ner'zhul2016-10-30
* Adding LuaError on attempt to assign vectors with values out of rangeFoghrye42016-10-25
* Emergeblocks: Fix occasional crashRogier2016-10-16
* Attached particle spawnersraymoo2016-10-13
* Move RemotePlayer code to its own cpp/headerLoic Blot2016-10-08
* RemotePlayer/LocalPlayer Player base class proper separation (code cleanup) (...Loic Blot2016-10-08
* More code cleanup (UNORDERED + RemotePlayer/LocalPlayer)Loic Blot2016-10-08
* Player/LocalPlayer/RemotePlayer inheritance cleanup (part 2 on X)Loic Blot2016-10-08
* Prevent attached models from disappearing during parent reload (#4128)Foghrye42016-10-08
* Player/LocalPlayer/RemotePlayer inheritance cleanup (part 1 on X)Loic Blot2016-10-08
* Use more unordered_maps to improve performance in c++11 buildsLoic Blot2016-10-06
* Replace various std::map with UNORDERED_MAP + various cleanupsLoic Blot2016-10-05
* Decorations: Generalise 'spawn by' to be used by all decoration typesparamat2016-09-14
* Return nil on empty get_area() (#4508)James Stevenson2016-09-10
5'>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
# 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.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: minetest\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-11-23 17:37+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#: builtin/gamemgr.lua:23
msgid "Game Name"
msgstr ""

#: builtin/gamemgr.lua:25 builtin/mainmenu.lua:310
msgid "Create"
msgstr ""

#: builtin/gamemgr.lua:26 builtin/mainmenu.lua:311 builtin/modmgr.lua:331
#: builtin/modmgr.lua:448 src/guiKeyChangeMenu.cpp:195 src/keycode.cpp:223
msgid "Cancel"
msgstr ""

#: builtin/gamemgr.lua:118
msgid "Gamemgr: Unable to copy mod \"$1\" to game \"$2\""
msgstr ""

#: builtin/gamemgr.lua:216
msgid "GAMES"
msgstr ""

#: builtin/gamemgr.lua:217 builtin/mainmenu.lua:1076
msgid "Games"
msgstr ""

#: builtin/gamemgr.lua:234
msgid "Mods:"
msgstr ""

#: builtin/gamemgr.lua:235
msgid "edit game"
msgstr ""

#: builtin/gamemgr.lua:238
msgid "new game"
msgstr ""

#: builtin/gamemgr.lua:248
msgid "EDIT GAME"
msgstr ""

#: builtin/gamemgr.lua:269
msgid "Remove selected mod"
msgstr ""

#: builtin/gamemgr.lua:272
msgid "<<-- Add mod"
msgstr ""

#: builtin/mainmenu.lua:158
msgid "Ok"
msgstr ""

#: builtin/mainmenu.lua:297
msgid "World name"
msgstr ""

#: builtin/mainmenu.lua:300
msgid "Seed"
msgstr ""

#: builtin/mainmenu.lua:303
msgid "Mapgen"
msgstr ""

#: builtin/mainmenu.lua:306
msgid "Game"
msgstr ""

#: builtin/mainmenu.lua:319
msgid "Delete World \"$1\"?"
msgstr ""

#: builtin/mainmenu.lua:320 builtin/modmgr.lua:877
msgid "Yes"
msgstr ""

#: builtin/mainmenu.lua:321
msgid "No"
msgstr ""

#: builtin/mainmenu.lua:364
msgid "A world named \"$1\" already exists"
msgstr ""

#: builtin/mainmenu.lua:381
msgid "No worldname given or no game selected"
msgstr ""

#: builtin/mainmenu.lua:650
msgid "To enable shaders the OpenGL driver needs to be used."
msgstr ""

#: builtin/mainmenu.lua:818
msgid "CLIENT"
msgstr ""

#: builtin/mainmenu.lua:819
msgid "Favorites:"
msgstr ""

#: builtin/mainmenu.lua:820
msgid "Address/Port"
msgstr ""

#: builtin/mainmenu.lua:821
msgid "Name/Password"
msgstr ""

#: builtin/mainmenu.lua:824
msgid "Public Serverlist"
msgstr ""

#: builtin/mainmenu.lua:829 builtin/mainmenu.lua:874 builtin/mainmenu.lua:937
#: src/keycode.cpp:229
msgid "Delete"
msgstr ""

#: builtin/mainmenu.lua:833
msgid "Connect"
msgstr ""

#: builtin/mainmenu.lua:875 builtin/mainmenu.lua:938
msgid "New"
msgstr ""

#: builtin/mainmenu.lua:876 builtin/mainmenu.lua:939
msgid "Configure"
msgstr ""

#: builtin/mainmenu.lua:877
msgid "Start Game"
msgstr ""

#: builtin/mainmenu.lua:878 builtin/mainmenu.lua:941
msgid "Select World:"
msgstr ""

#: builtin/mainmenu.lua:879
msgid "START SERVER"
msgstr ""

#: builtin/mainmenu.lua:880 builtin/mainmenu.lua:943
msgid "Creative Mode"
msgstr ""

#: builtin/mainmenu.lua:882 builtin/mainmenu.lua:945
msgid "Enable Damage"
msgstr ""

#: builtin/mainmenu.lua:884
msgid "Public"
msgstr ""

#: builtin/mainmenu.lua:886
msgid "Name"
msgstr ""

#: builtin/mainmenu.lua:888
msgid "Password"
msgstr ""

#: builtin/mainmenu.lua:889
msgid "Server Port"
msgstr ""

#: builtin/mainmenu.lua:899
msgid "SETTINGS"
msgstr ""

#: builtin/mainmenu.lua:900
msgid "Fancy trees"
msgstr ""

#: builtin/mainmenu.lua:902
msgid "Smooth Lighting"
msgstr ""

#: builtin/mainmenu.lua:904
msgid "3D Clouds"
msgstr ""

#: builtin/mainmenu.lua:906
msgid "Opaque Water"
msgstr ""

#: builtin/mainmenu.lua:909
msgid "Mip-Mapping"
msgstr ""

#: builtin/mainmenu.lua:911
msgid "Anisotropic Filtering"
msgstr ""

#: builtin/mainmenu.lua:913
msgid "Bi-Linear Filtering"
msgstr ""

#: builtin/mainmenu.lua:915
msgid "Tri-Linear Filtering"
msgstr ""

#: builtin/mainmenu.lua:918
msgid "Shaders"
msgstr ""

#: builtin/mainmenu.lua:920
msgid "Preload item visuals"
msgstr ""

#: builtin/mainmenu.lua:922
msgid "Enable Particles"
msgstr ""

#: builtin/mainmenu.lua:924
msgid "Finite Liquid"
msgstr ""

#: builtin/mainmenu.lua:927
msgid "Change keys"
msgstr ""

#: builtin/mainmenu.lua:940 src/keycode.cpp:248
msgid "Play"
msgstr ""

#: builtin/mainmenu.lua:942
msgid "SINGLE PLAYER"
msgstr ""

#: builtin/mainmenu.lua:955
msgid "Select texture pack:"
msgstr ""

#: builtin/mainmenu.lua:956
msgid "TEXTURE PACKS"
msgstr ""

#: builtin/mainmenu.lua:976
msgid "No information available"
msgstr ""

#: builtin/mainmenu.lua:1005
msgid "Core Developers"
msgstr ""

#: builtin/mainmenu.lua:1020
msgid "Active Contributors"
msgstr ""

#: builtin/mainmenu.lua:1028
msgid "Previous Contributors"
msgstr ""

#: builtin/mainmenu.lua:1069
msgid "Singleplayer"
msgstr ""

#: builtin/mainmenu.lua:1070
msgid "Client"
msgstr ""

#: builtin/mainmenu.lua:1071
msgid "Server"
msgstr ""

#: builtin/mainmenu.lua:1072
msgid "Settings"
msgstr ""

#: builtin/mainmenu.lua:1073
msgid "Texture Packs"
msgstr ""

#: builtin/mainmenu.lua:1080
msgid "Mods"
msgstr ""

#: builtin/mainmenu.lua:1082
msgid "Credits"
msgstr ""

#: builtin/modmgr.lua:236
msgid "MODS"
msgstr ""

#: builtin/modmgr.lua:237
msgid "Installed Mods:"
msgstr ""

#: builtin/modmgr.lua:243
msgid "Add mod:"
msgstr ""

#: builtin/modmgr.lua:244
msgid "Local install"
msgstr ""

#: builtin/modmgr.lua:245
msgid "Online mod repository"
msgstr ""

#: builtin/modmgr.lua:284
msgid "No mod description available"
msgstr ""

#: builtin/modmgr.lua:288
msgid "Mod information:"
msgstr ""

#: builtin/modmgr.lua:299
msgid "Rename"
msgstr ""

#: builtin/modmgr.lua:301
msgid "Uninstall selected modpack"
msgstr ""

#: builtin/modmgr.lua:312
msgid "Uninstall selected mod"
msgstr ""

#: builtin/modmgr.lua:324
msgid "Rename Modpack:"
msgstr ""

#: builtin/modmgr.lua:329 src/keycode.cpp:227
msgid "Accept"
msgstr ""

#: builtin/modmgr.lua:423
msgid "World:"
msgstr ""

#: builtin/modmgr.lua:427 builtin/modmgr.lua:429
msgid "Hide Game"
msgstr ""

#: builtin/modmgr.lua:433 builtin/modmgr.lua:435
msgid "Hide mp content"
msgstr ""

#: builtin/modmgr.lua:442
msgid "Mod:"
msgstr ""

#: builtin/modmgr.lua:444
msgid "Depends:"
msgstr ""

#: builtin/modmgr.lua:447 src/guiKeyChangeMenu.cpp:187
msgid "Save"
msgstr ""

#: builtin/modmgr.lua:464
msgid "Enable MP"
msgstr ""

#: builtin/modmgr.lua:466
msgid "Disable MP"
msgstr ""

#: builtin/modmgr.lua:470 builtin/modmgr.lua:472
msgid "enabled"
msgstr ""

#: builtin/modmgr.lua:478
msgid "Enable all"
msgstr ""

#: builtin/modmgr.lua:577
msgid "Select Mod File:"
msgstr ""

#: builtin/modmgr.lua:616
msgid "Install Mod: file: \"$1\""
msgstr ""

#: builtin/modmgr.lua:617
msgid ""
"\n"
"Install Mod: unsupported filetype \"$1\""
msgstr ""

#: builtin/modmgr.lua:638
msgid "Failed to install $1 to $2"
msgstr ""

#: builtin/modmgr.lua:641
msgid "Install Mod: unable to find suitable foldername for modpack $1"
msgstr ""

#: builtin/modmgr.lua:661
msgid "Install Mod: unable to find real modname for: $1"
msgstr ""

#: builtin/modmgr.lua:855
msgid "Modmgr: failed to delete \"$1\""
msgstr ""

#: builtin/modmgr.lua:859
msgid "Modmgr: invalid modpath \"$1\""
msgstr ""

#: builtin/modmgr.lua:876
msgid "Are you sure you want to delete \"$1\"?"
msgstr ""

#: builtin/modmgr.lua:878
msgid "No of course not!"
msgstr ""

#: builtin/modstore.lua:183
msgid "Page $1 of $2"
msgstr ""

#: builtin/modstore.lua:243
msgid "Rating"
msgstr ""

#: builtin/modstore.lua:251
msgid "re-Install"
msgstr ""

#: builtin/modstore.lua:253
msgid "Install"
msgstr ""

#: src/client.cpp:2917
msgid "Item textures..."
msgstr ""

#: src/game.cpp:940
msgid "Loading..."
msgstr ""

#: src/game.cpp:1000
msgid "Creating server...."
msgstr ""

#: src/game.cpp:1016
msgid "Creating client..."
msgstr ""

#: src/game.cpp:1025
msgid "Resolving address..."
msgstr ""

#: src/game.cpp:1122
msgid "Connecting to server..."
msgstr ""

#: src/game.cpp:1219
msgid "Item definitions..."
msgstr ""

#: src/game.cpp:1226
msgid "Node definitions..."
msgstr ""

#: src/game.cpp:1233
msgid "Media..."
msgstr ""

#: src/game.cpp:3409
msgid "Shutting down stuff..."
msgstr ""

#: src/game.cpp:3439
msgid ""
"\n"
"Check debug.txt for details."
msgstr ""

#: src/guiDeathScreen.cpp:96
msgid "You died."
msgstr ""

#: src/guiDeathScreen.cpp:104
msgid "Respawn"
msgstr ""

#: src/guiFormSpecMenu.cpp:1656 src/guiMessageMenu.cpp:107
#: src/guiTextInputMenu.cpp:139
msgid "Proceed"
msgstr ""

#: src/guiKeyChangeMenu.cpp:121
msgid "Keybindings. (If this menu screws up, remove stuff from minetest.conf)"
msgstr ""

#: src/guiKeyChangeMenu.cpp:161
msgid "\"Use\" = climb down"
msgstr ""

#: src/guiKeyChangeMenu.cpp:176
msgid "Double tap \"jump\" to toggle fly"
msgstr ""

#: src/guiKeyChangeMenu.cpp:288
msgid "Key already in use"
msgstr ""

#: src/guiKeyChangeMenu.cpp:363
msgid "press key"
msgstr ""

#: src/guiKeyChangeMenu.cpp:389
msgid "Forward"
msgstr ""

#: src/guiKeyChangeMenu.cpp:390
msgid "Backward"
msgstr ""

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

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

#: src/guiKeyChangeMenu.cpp:393
msgid "Use"
msgstr ""

#: src/guiKeyChangeMenu.cpp:394
msgid "Jump"
msgstr ""

#: src/guiKeyChangeMenu.cpp:395
msgid "Sneak"
msgstr ""

#: src/guiKeyChangeMenu.cpp:396
msgid "Drop"
msgstr ""

#: src/guiKeyChangeMenu.cpp:397
msgid "Inventory"
msgstr ""

#: src/guiKeyChangeMenu.cpp:398
msgid "Chat"
msgstr ""

#: src/guiKeyChangeMenu.cpp:399
msgid "Command"
msgstr ""

#: src/guiKeyChangeMenu.cpp:400
msgid "Console"
msgstr ""

#: src/guiKeyChangeMenu.cpp:401
msgid "Toggle fly"
msgstr ""

#: src/guiKeyChangeMenu.cpp:402
msgid "Toggle fast"
msgstr ""

#: src/guiKeyChangeMenu.cpp:403
msgid "Toggle noclip"
msgstr ""

#: src/guiKeyChangeMenu.cpp:404
msgid "Range select"
msgstr ""

#: src/guiKeyChangeMenu.cpp:405
msgid "Print stacks"
msgstr ""

#: src/guiPasswordChange.cpp:106
msgid "Old Password"
msgstr ""

#: src/guiPasswordChange.cpp:122
msgid "New Password"
msgstr ""

#: src/guiPasswordChange.cpp:137
msgid "Confirm Password"
msgstr ""

#: src/guiPasswordChange.cpp:153
msgid "Change"
msgstr ""

#: src/guiPasswordChange.cpp:162
msgid "Passwords do not match!"
msgstr ""

#: src/guiPauseMenu.cpp:122
msgid "Continue"
msgstr ""

#: src/guiPauseMenu.cpp:133
msgid "Change Password"
msgstr ""

#: src/guiPauseMenu.cpp:143
msgid "Sound Volume"
msgstr ""

#: src/guiPauseMenu.cpp:152
msgid "Exit to Menu"
msgstr ""

#: src/guiPauseMenu.cpp:161
msgid "Exit to OS"
msgstr ""

#: src/guiPauseMenu.cpp:170
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 ""

#: src/guiVolumeChange.cpp:107
msgid "Sound Volume: "
msgstr ""

#: src/guiVolumeChange.cpp:121
msgid "Exit"
msgstr ""

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

#: src/keycode.cpp:223
msgid "Middle Button"
msgstr ""

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

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

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

#: src/keycode.cpp:224
msgid "Clear"
msgstr ""

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

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

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

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

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

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

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

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

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

#: src/keycode.cpp:226
msgid "Convert"
msgstr ""

#: src/keycode.cpp:226
msgid "Escape"
msgstr ""

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

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

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

#: src/keycode.cpp:226
msgid "Nonconvert"
msgstr ""

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

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

#: src/keycode.cpp:227
msgid "Mode Change"
msgstr ""

#: src/keycode.cpp:227
msgid "Next"
msgstr ""

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

#: src/keycode.cpp:227
msgid "Space"
msgstr ""

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

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

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

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

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

#: src/keycode.cpp:229
msgid "Help"
msgstr ""

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#: src/keycode.cpp:248
msgid "Zoom"
msgstr ""

#: src/main.cpp:1472
msgid "needs_fallback_font"
msgstr "yes"

#: src/main.cpp:1547
msgid "Main Menu"
msgstr ""

#: src/main.cpp:1723
msgid "No world selected and no address provided. Nothing to do."
msgstr ""

#: src/main.cpp:1731
msgid "Could not find or load game \""
msgstr ""

#: src/main.cpp:1745
msgid "Invalid gamespec."
msgstr ""

#: src/main.cpp:1790
msgid "Connection error (timed out?)"
msgstr ""