Module:Ədəd-i
Jump to navigation
Jump to search
Bu modulun təlimatı üçün bu səhifə yaradıla bilər: Module:Ədəd-i/doc
-- Bu Şəki Ensiklopediyasının (Shaki Encyclopedia) redaktorları tərəfindən -- hazırlanmış moduldur. Ədədlərə i,ı,ü,u,si,sı şəkilçilərindən -- uyğun gələn birisini avtomatik olaraq seçib defislə (-) əlavə etmək üçündür. -- Eyniadlı şablondan istifadə etmək lazımdır. local p = {} local yesno = require('Module:Yesno') local suffixes = { [1] = "i", [2] = "si", [3] = "ü", [4] = "ü", [5] = "i", [6] = "sı", [7] = "si", [8] = "i", [9]= "u", [10] = "u", [20] = "si", [30] = "u", [40] = "ı", [50] = "si", [60] = "ı", [70] = "i", [80] = "i", [90] = "ı" } function p.Ordinal(frame) local args = frame.args if args[1] == nil then args = frame:getParent().args end if args[1] == nil then args[1] = "{{{1}}}" end return p._ordinal(args[1], (args[2] == 'd'), yesno(args.sup)) end function p._ordinal(n, d, sup) local x = tonumber(mw.ustring.match(n, "(%d*)%W*$")) if x then local mod10 = math.abs(x) % 10 local mod100 = math.abs(x) % 100 local mod1000 = math.abs(x) % 1000 local mod1000000 = math.abs(x) % 1000000 local mod1000000000 = math.abs(x) % 1000000000 if x == 0 then suffix = "ı" elseif mod1000000000 == 0 then suffix = "ı" elseif mod1000000 == 0 then suffix = "u" elseif mod1000 == 0 then suffix = "i" elseif mod100 == 0 then suffix = "ü" elseif mod10 == 0 then suffix = suffixes[x % 100] else suffix = suffixes[x %10] or "" end end return n .. '-' .. suffix end return p