ماڊيول:IndianPremierLeague/Teams

کليل ڄاڻ چيڪلي، وڪيپيڊيا مان

Documentation for this module may be created at ماڊيول:IndianPremierLeague/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       = "CSK",
        fullName   = "چنائي سپر ڪنگز",
        shortName  = "چنائي",
        pageName   = "چنائي سپر ڪنگز",
        startYear  = 2008,
    },

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

    {
        code       = "DD",
        fullName   = "دهلي ڊيئرڊيولز",
        shortName  = "دهلي",
        pageName   = "دهلي ڊيئرڊيولز",
        startYear  = 2008,
    },

    {
        code       = "KKR",
        fullName   = "ڪولڪتا نائٽ رائيڊرز",
        shortName  = "ڪولڪتا",
        pageName   = "ڪولڪتا نائٽ رائيڊرز",
        startYear  = 2008,
    },

    {
        code       = "KTK",
        fullName   = "ڪوچي ٽسڪرز ڪيرالا",
        shortName  = "ڪوچي",
        pageName   = "ڪوچي ٽسڪرز ڪيرالا",
        startYear  = 2011,
        endYear    = 2011,
    },

    {
        code       = "KXIP",
        fullName   = "ڪنگز اليون پنجاب",
        shortName  = "پنجاب",
        pageName   = "ڪنگز اليون پنجاب",
        startYear  = 2008,
    },

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

    {
        code       = "PWI",
        fullName   = "پون ويريئرز انڊيا",
        shortName  = "پونا",
        pageName   = "پون ويريئرز انڊيا",
        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   = "رائزنگ پونا سپرجائنٽز",
        shortName  = "پونا",
        pageName   = "رائزنگ پونا سپرجائنٽز",
        startYear  = 2016,
    },

    {
        code       = "GL",
        fullName   = "گجرات لائيونز",
        shortName  = "گجرات",
        pageName   = "گجرات لائيونز",
        startYear  = 2016,
    },

}