Feed The Beast Wiki

Follow the Feed The Beast Wiki on Discord or Mastodon!

READ MORE

Feed The Beast Wiki
mNo edit summary
(Marked this version for translation)
Line 80: Line 80:
 
Discord server</translate>]=], {arg="discord", type="link", desc=[=[<translate><!--T:47-->
 
Discord server</translate>]=], {arg="discord", type="link", desc=[=[<translate><!--T:47-->
 
The Discord server for the author, if applicable. If the server is just for one of their mods and they have multiple, then do not link that. Instead, the discord parameter in the Infobox for that specific mod should be used.</translate>]=]}},
 
The Discord server for the author, if applicable. If the server is just for one of their mods and they have multiple, then do not link that. Instead, the discord parameter in the Infobox for that specific mod should be used.</translate>]=]}},
  +
{ [=[<translate><!--T:48-->
{ [=[<translate>IRC channel</translate>]=], {arg="irc", type="templateCall", template="IRC", desc=[=[<translate>The IRC server and channel for the mod. Formatted as server@channel, for example: esper.net@TheSteamTank.</translate>]=]}}
 
  +
IRC channel</translate>]=], {arg="irc", type="templateCall", template="IRC", desc=[=[<translate><!--T:49-->
 
The IRC server and channel for the mod. Formatted as server@channel, for example: esper.net@TheSteamTank.</translate>]=]}}
   
 
}
 
}

Revision as of 23:38, 2 February 2017

--

--

local p = {}

p.docLead = [=[It is for use with mod author pages.]=]

local genders = { male = [=[Male]=], female = [=[Female]=], other = [=[Other]=], unknown = [=[Unknown]=] }

p.format = {
    {
        title = {arg="name", desc=[=[The author's name.]=]},
        {
            { {arg="image", type="image", desc=[=[The big picture.]=] } },
            { [=[Gender]=], {arg="gender", type="switch", allowedValues = genders, desc=[=[The gender of the mod author.]=]}},
			{ [=[Alias]=], {arg="alias", desc=[=[The mod author's alias if they have one.]=]}},
            { [=[Date of Birth]=], {arg="birthday", desc=[=[The date of birth of the mod author. Use mm/dd/yyyy format.]=]}},
            { [=[Location]=], {arg="location", desc=[=[Where in the world the mod author resides.]=]}}
        },
        {
            { [=[Website]=], {arg="site", type="link", desc=[=[The mod author's website.]=]}},
            { [=[Twitter]=], {arg="twitter", desc=[=[The mod author's Twitter account. It's recommended to use {{Tl|Twitter}}]=]}},
            { [=[Player.me]=], {arg="player", desc=[=[The mod author's player.me account.]=]}},
			{ [=[Facebook]=], {arg="facebook", desc=[=[The mod author's Facebook account.]=]}},
            { [=[GitHub]=], {arg="github", desc=[=[The mod author's GitHub account.]=]}},
            { [=[BitBucket]=], {arg="bitbucket", desc=[=[The mod author's BitBucket account.]=]}},
            { [=[Patreon]=], {arg="patreon", desc=[=[The mod author's Patreon account.]=]}},
            { [=[Occupation]=], {arg="occupation", desc=[=[The mod author's occupation, or job.]=]}}
        },
        {
            { [=[Mods]=], {arg="mods", desc=[=[The mods that the author has created. Use <br /> in between mod names.]=]}},
            { [=[Discontinued Mods]=], {arg="disconmods", desc=[=[Mods that the author has discontinued, or passed on to another author. Use <br /> in between mod names.]=]}},
            { [=[Modpacks]=], {arg="modpack", desc=[=[If the person has released a modpack. Use <br /> between modpacks.]=]}},
            { [=[Projects]=], {arg="projects", desc=[=[Projects that are Minecraft-related that are not mods or modpacks. Use <br /> in between project names.]=]}}
        }
    },
    {
        title = [=[IRC]=],
        {
            { [=[Discord server]=], {arg="discord", type="link", desc=[=[The Discord server for the author, if applicable. If the server is just for one of their mods and they have multiple, then do not link that. Instead, the discord parameter in the Infobox for that specific mod should be used.]=]}},
            { [=[IRC channel]=], {arg="irc", type="templateCall", template="IRC", desc=[=[The IRC server and channel for the mod. Formatted as server@channel, for example: esper.net@TheSteamTank.]=]}}

        }
    }
}

p.examples = {
    { [=[{{Infobox author
|name=Myrathi
|image=Myrathi.png
|alias=Alias
|gender=male
|birthday=01/01/1901
|location=Place
|site=http://nowebsite.com
|facebook=https://facebook.com/somefacebookaccount
|twitter=https://twitter.com/Myrathi
|player=http://player.me/test
|occupation=Licking eyeballs
|mods=[[ChargePads]]<br />[[FinndusFillies]]<br />[[FlatSigns]]<br />[[InfiniBows]]<br />[[ObsidiPlates]]<br />[[Switches]]<br />[[MagicFarmBalance]]<br />[[SizzleBalance]]
|disconmods=Nothing
|server=irc.esper.net
|channel=#Nothing<br />#Eyeballs
}}]=]}
}

return p
--