Modul:Goalscorers: Perbedaan antara revisi

Konten dihapus Konten ditambahkan
formatNum untuk tipe statistik dan rata-rata statistik
argumen tambahan untuk umpan gol dan nirbobol
Baris 898:
{{#if:{{{extra|}}}|{{{extra}}}{{clear}}|}}
--]]
local statNumber = mw.getLanguage('id'):formatNum( tonumber( g.args['goals'] or g.args['assists'] or 0) ) --format number as string
local matches = g.args['matches']
local statType = "gol"
if g.args['assists'] or g.args['umpan gol'] then statType = "umpan gol" end
if g.args['clean sheets'] or g.args['nirbobol'] then statType = "nirbobol" end
local ongoing = g.args['ongoing']
local text1 = "Sebanyak"
Baris 911:
-- auto version: string.format(" pada %d match%s, dengan rata-arta %."..precision.."g goal%s per pertandingan", matches, average)
if g.args['goals'] and g.args['matches'] then
local averageGoals = mw.getLanguage('id'):formatNum( tonumber( g.args['goals']/g.args['matches']))
averageString = string.format(" pada %d pertandingan, dengan rata-rata %.3g gol per pertandingan", g.args['matches'], averageGoals)
end