ماڊيول:PakistanSuperLeague/Teams: جي ورجائن ۾ تفاوت

ڊاٿل مواد شامل ڪيل مواد
نئون صفحو: --[[ Each team must have a table with the following keys: code: A short code of 2-4 letters (uppercase) to represent the team. fullName: The full name of the team....
(ڪو بہ تفاوت ڪونھي)

ورجاءُ بمطابق 15:52, 22 فيبروري 2016ع

Documentation for this module may be created at ماڊيول:PakistanSuperLeague/Teams/doc

--[[
    Each team must have a table with the following keys:
    code: A short code of 2-4 letters (uppercase) to represent the team.
    fullName: The full name of the team.
    shortName: The short name of the team, usually the location in which it is based.
    pageName: The title of the team's article on Wikipedia. This is usually the team's full name, but if disambiguation is
              needed, it may be different.
    startYear: The year in which the team first played.
    endYear: The year in which the team last played. (For inactive/disbanded/terminated teams only)
    
    This module is to be used with mw.loadData(). It should NOT contain functions!
]]

return {
    
    {
        code       = "IU",
        fullName   = "اسلام آباد يونائيٽڊ",
        shortName  = "اسلام آباد",
        pageName   = "اسلام آباد يونائيٽڊ",
        startYear  = 2015,
    },
    
    {
        code       = "KK",
        fullName   = "ڪراچي کنگز",
        shortName  = "ڪراچي",
        pageName   = "ڪراچي کنگز",
        startYear  = 2015,
    },
    
    {
        code       = "PZ",
        fullName   = "پشاور زلمي",
        shortName  = "پشاور",
        pageName   = "پشاور زلمي",
        startYear  = 2015,
    },
    
    {
        code       = "QG",
        fullName   = "ڪوئٽا گليڊي ايٽرز",
        shortName  = "ڪوئٽا",
        pageName   = "ڪوئٽا گليڊي ايٽرز",
        startYear  = 2015,
    },
    
    {
        code       = "LQ",
        fullName   = "لاهور قلندرز",
        shortName  = "لاهور",
        pageName   = "لاهور قلندرز",
        startYear  = 2015,
    },
    
}