ماڈیول:IndianPremierLeague/Teams

آزاد دائرۃ المعارف، ویکیپیڈیا سے
Documentation icon دستاویز [تخلیق]
--[[
    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 with that name.
    endYear: The year in which the team last played with that name (for renamed teams) or last played (for defunct teams)

    This module is to be used with mw.loadData(). It should NOT contain functions!
]]

return {

    {
        code       = "CSK",
        fullName   = "چنائی سپر کنگز",
        shortName  = "چنائی",
        pageName   = "چنائی سپر کنگز",
        startYear  = 2008,
    },

    {
        code       = "DEC",
        fullName   = "دکن چارجرز",
        shortName  = "دکن",
        abbr       = "DC",
        pageName   = "دکن چارجرز",
        startYear  = 2008,
        endYear    = 2012,
    },

    {
        code       = "DD",
        fullName   = "Delhi Daredevils",
        shortName  = "Delhi",
        pageName   = "Delhi Daredevils",
        startYear  = 2008,
        endYear    = 2018,
    },

    {
        code       = "KKR",
        fullName   = "کولکتہ نائٹ رائیڈرز",
        shortName  = "کولکتہ",
        pageName   = "کولکتہ نائٹ رائیڈرز",
        startYear  = 2008,
    },

    {
        code       = "KTK",
        fullName   = "Kochi Tuskers Kerala",
        shortName  = "Kochi",
        pageName   = "Kochi Tuskers Kerala",
        startYear  = 2011,
        endYear    = 2011,
    },

    {
        code       = "KXIP",
        fullName   = "کنگز الیون پنجاب",
        shortName  = "پنجاب",
        pageName   = "کنگز الیون پنجاب",
        startYear  = 2008,
        endYear    = 2020,
    },

    {
        code       = "MI",
        fullName   = "ممبئی انڈینز",
        shortName  = "ممبئی",
        pageName   = "ممبئی انڈینز",
        startYear  = 2008,
    },

    {
        code       = "PWI",
        fullName   = "Pune Warriors India",
        shortName  = "Pune",
        pageName   = "Pune Warriors India",
        startYear  = 2011,
        endYear    = 2013,
    },

    {
        code       = "SRH",
        fullName   = "سن رائزرز حیدرآباد",
        shortName  = "حیدرآباد",
        pageName   = "سن رائزرز حیدرآباد",
        startYear  = 2013,
    },

    {
        code       = "RCB",
        fullName   = "رائل چیلنجرز بنگلور",
        shortName  = "بنگلور",
        pageName   = "رائل چیلنجرز بنگلور",
        startYear  = 2008,
    },

    {
        code       = "RR",
        fullName   = "راجستھان رائلز",
        shortName  = "راجستھان",
        pageName   = "راجستھان رائلز",
        startYear  = 2008,
    },

    {
        code       = "RPS",
        fullName   = "Rising Pune Supergiant",
        shortName  = "Pune",
        pageName   = "Rising Pune Supergiant",
        startYear  = 2016,
        endYear    = 2017,
    },

    {
        code       = "GL",
        fullName   = "Gujarat Lions",
        shortName  = "Gujarat",
        pageName   = "Gujarat Lions",
        startYear  = 2016,
        endYear    = 2017,
    },

    {
        code       = "DC",
        fullName   = "دہلی کیپیٹلز",
        shortName  = "دہلی",
        pageName   = "دہلی کیپیٹلز",
        startYear  = 2019,
    },

   {
        code       = "PBKS",
        fullName   = "پنجاب کنگز",
        shortName  = "پنجاب",
        pageName   = "پنجاب کنگز",
        startYear  = 2021,
    },
    
    {
        code       = "LSG",
        fullName   = "لکھنؤ سپر جائنٹس",
        shortName  = "لکھنؤ",
        pageName   = "لکھنؤ سپر جائنٹس",
        startYear  = 2022,
    },
    
     {
        code       = "GT",
        fullName   = "گجرات ٹائٹنز",
        shortName  = "گجرات",
        pageName   = "گجرات ٹائٹنز",
        startYear  = 2022,
    },
    

}