Difference between revisions of "Module:Infobox/de"

From Minetest Wiki
Jump to navigation Jump to search
Line 19: Line 19:
 
     },
 
     },
 
     foodItem = {
 
     foodItem = {
         {id = "type", name = "Type"},
+
         {id = "type", name = "Typ"},
         {id = "restores", name = "Restores"},
+
         {id = "restores", name = "Stellt wieder her"},
         {id = "cookable", name = "[[Smelting|Cookable]]"},
+
         {id = "cookable", name = "[[Smelting|Kochbar]]"},
         {id = "renewable", name = "[[:Category:Renewable|Renewable]]"},
+
         {id = "renewable", name = "[[:Category:Renewable|Erneuerbar]]"},
         {id = "stackable", name = "[[Item stack|Stackable]]"},
+
         {id = "stackable", name = "[[Item stack|Stapelbar]]"},
         {id = "itemstring", name = "[[Itemstrings|Itemstring]]"},
+
         {id = "itemstring", name = "[[Itemstrings|Technischer Name]]"},
 
     },
 
     },
 
     mob = {
 
     mob = {
         {id = "health", name = "Health"},
+
         {id = "health", name = "Gesundheit"},
         {id = "armor", name = "Armor"},
+
         {id = "armor", name = "Rüstung"},
         {id = "damage", name = "Damage"},
+
         {id = "damage", name = "Schaden"},
 
         {id = "drops", name = "Drops"},
 
         {id = "drops", name = "Drops"},
         {id = "entitystring", name = "[[List of entity names|Entitystring]]"},
+
         {id = "entitystring", name = "[[List of entity names|Gebilde]]"},
 
     },
 
     },
 
     object = {
 
     object = {
         {id = "health", name = "Health"},
+
         {id = "health", name = "Gesundheit"},
         {id = "collides_with_objects", name = "[[Objects|Object]] collision"},
+
         {id = "collides_with_objects", name = "[[Objects|ObjeKt]]kollision"},
         {id = "collides_with_blocks", name = "[[Blocks|Block]] collision"},
+
         {id = "collides_with_blocks", name = "[[Blocks|Block]]kollision"},
         {id = "entitystring", name = "[[List of entity names|Entitystring]]"},
+
         {id = "entitystring", name = "[[List of entity names|Gebilde]]"},
 
     },
 
     },
 
     game = {
 
     game = {
         {id = "type", name = "Type"},
+
         {id = "type", name = "Typ"},
         {id = "author", name = "Author"},
+
         {id = "author", name = "Autor"},
         {id = "version", name = "Latest version"},
+
         {id = "version", name = "Letzte Version"},
         {id = "forum", name = "Forum topic"},
+
         {id = "forum", name = "Forenthema"},
         {id = "source", name = "Source code"},
+
         {id = "source", name = "Quellcode"},
 
     },
 
     },
 
     mod = {
 
     mod = {
         {id = "type", name = "Type"},
+
         {id = "type", name = "Typ"},
         {id = "author", name = "Author"},
+
         {id = "author", name = "Autor"},
         {id = "version", name = "Latest version"},
+
         {id = "version", name = "Letzte Version"},
         {id = "forum", name = "Forum topic"},
+
         {id = "forum", name = "Forenthema"},
         {id = "source", name = "Source code"},
+
         {id = "source", name = "Quellcode"},
         {id = "bower", name = "[[Minetest Bower|Bower]] name"},
+
         {id = "bower", name = "[[Minetest Bower|Bower]]-Name"},
         {id = "luaname", name = "Technical name"},
+
         {id = "luaname", name = "Technische Bezeichnung"},
 
     },
 
     },
 
     server = {
 
     server = {
         {id = "owner", name = "Owner"},
+
         {id = "owner", name = "Besitzer"},
         {id = "address", name = "Address"},
+
         {id = "address", name = "Adreses"},
 
         {id = "port", name = "Port"},
 
         {id = "port", name = "Port"},
         {id = "flags", name = "Flags"},
+
         {id = "flags", name = "Schalter"},
         {id = "forum", name = "Forum topic"},
+
         {id = "forum", name = "Forenthema"},
 
         {id = "website", name = "Website"},
 
         {id = "website", name = "Website"},
 
     },
 
     },
 
}
 
}

Revision as of 10:32, 30 March 2018

return {

   block = {
       {id = "type", name = "Typ"},
       {id = "drops", name = "Drops"},
       {id = "physics", name = "Schwerkraft"},
       {id = "luminance", name = "Leuchtet"},
       {id = "flammable", name = "Verbrennbar"},
       {id = "generated", name = "Generiert"},
       {id = "renewable", name = "Unendlich herstellbar"},
       {id = "stackable", name = "Stapelbar"},
       {id = "itemstring", name = "Technischer Name"},
   },
   item = {
       {id = "type", name = "Typ"},
       {id = "renewable", name = "Erneuerbar"},
       {id = "durability", name = "Haltbarkeit"},
       {id = "stackable", name = "Stapelbar"},
       {id = "itemstring", name = "Technischer Name"},
   },
   foodItem = {
       {id = "type", name = "Typ"},
       {id = "restores", name = "Stellt wieder her"},
       {id = "cookable", name = "Kochbar"},
       {id = "renewable", name = "Erneuerbar"},
       {id = "stackable", name = "Stapelbar"},
       {id = "itemstring", name = "Technischer Name"},
   },
   mob = {
       {id = "health", name = "Gesundheit"},
       {id = "armor", name = "Rüstung"},
       {id = "damage", name = "Schaden"},
       {id = "drops", name = "Drops"},
       {id = "entitystring", name = "Gebilde"},
   },
   object = {
       {id = "health", name = "Gesundheit"},
       {id = "collides_with_objects", name = "ObjeKtkollision"},
       {id = "collides_with_blocks", name = "Blockkollision"},
       {id = "entitystring", name = "Gebilde"},
   },
   game = {
       {id = "type", name = "Typ"},
       {id = "author", name = "Autor"},
       {id = "version", name = "Letzte Version"},
       {id = "forum", name = "Forenthema"},
       {id = "source", name = "Quellcode"},
   },
   mod = {
       {id = "type", name = "Typ"},
       {id = "author", name = "Autor"},
       {id = "version", name = "Letzte Version"},
       {id = "forum", name = "Forenthema"},
       {id = "source", name = "Quellcode"},
       {id = "bower", name = "Bower-Name"},
       {id = "luaname", name = "Technische Bezeichnung"},
   },
   server = {
       {id = "owner", name = "Besitzer"},
       {id = "address", name = "Adreses"},
       {id = "port", name = "Port"},
       {id = "flags", name = "Schalter"},
       {id = "forum", name = "Forenthema"},
       {id = "website", name = "Website"},
   },

}