ꠃꠁꠇꠤꠙꠤꠒꠤꠀ sylwiki https://syl.wikipedia.org/wiki/%EA%A0%9D%EA%A0%A5%EA%A0%9F_%EA%A0%9A%EA%A0%A3%EA%A0%94%EA%A0%A3 MediaWiki 1.47.0-wmf.15 first-letter ꠝꠤꠒꠤꠀ ꠛꠤꠡꠦꠡ ꠝꠣꠔ ꠛꠦꠛꠀꠞꠈꠣꠞ꠆ꠞꠣ ꠛꠦꠛꠀꠞꠈꠣꠞ꠆ꠞꠣꠞ ꠝꠣꠔ ꠃꠁꠇꠤꠙꠤꠒꠤꠀ ꠃꠁꠇꠤꠙꠤꠒꠤꠀ ꠝꠣꠔ ꠚꠣꠁꠟ ꠚꠣꠁꠟ ꠟꠂꠀ ꠝꠣꠔ ꠝꠤꠒꠤꠀ-ꠃꠁꠇꠤ ꠝꠤꠒꠤꠀ-ꠃꠁꠇꠤ ꠟꠂꠀ ꠝꠣꠔ ꠐꠦꠝ꠆ꠙꠟꠦꠐ ꠐꠦꠝ꠆ꠙꠟꠦꠐ ꠟꠂꠀ ꠝꠣꠔ ꠡꠣꠁꠎ꠆ꠎ ꠡꠣꠁꠎ꠆ꠎ ꠟꠂꠀ ꠝꠣꠔ ꠇꠦꠐꠣꠉꠞꠤ ꠇꠦꠐꠣꠉꠞꠤ ꠟꠂꠀ ꠝꠣꠔ TimedText TimedText talk Module Module talk Event Event talk Module:ꠉꠘꠣ ꠞꠥꠙꠣꠘ꠆ꠔꠞ 828 177 34132 551 2026-08-18T17:04:04Z R1F4T 30 34132 Scribunto text/plain -- Return input text after converting any en digits and month names. --the change is made from this unicode syloti numberic doc [https://www.unicode.org/L2/L2022/22212-syloti-nagri-numerals.pdf] -- the numbers are added according to provided unicode Character from the doc which mentioned in the previous line local en_digits = { ['0'] = '০', ['1'] = '١', ['2'] = '٢', ['3'] = '৩', ['4'] = 'ᑳ', ['5'] = '☽', ['6'] = 'ᑯ', ['7'] = 'v', ['8'] = '৪', ['9'] = 'ᑫ' , } local en_months = { ['January'] = 'ꠎꠣꠘꠃꠀꠞꠤ', ['january'] = 'ꠎꠣꠘꠃꠀꠞꠤ', ['February'] = 'ꠚꠦꠛꠃꠀꠞꠤ', ['february'] = 'ꠚꠦꠛꠃꠀꠞꠤ', ['March'] = 'ꠝꠣꠞ꠆ꠌ', ['march'] = 'ꠝꠣꠞ꠆ꠌ', ['April'] = 'ꠄꠙ꠆ꠞꠤꠟ', ['april'] = 'ꠄꠙ꠆ꠞꠤꠟ', ['May'] = 'ꠝꠦ', ['may'] = 'ꠝꠦ', ['June'] = 'ꠎꠥꠘ', ['june'] = 'ꠎꠥꠘ', ['July'] = 'ꠎꠥꠟꠣꠁ', ['july'] = 'ꠎꠥꠟꠣꠁ', ['August'] = 'ꠀꠉꠡꠐ', ['august'] = 'ꠀꠉꠡꠐ', ['September'] = 'ꠍꠦꠙꠐꠦꠝꠛꠞ', ['september'] = 'ꠍꠦꠙꠐꠦꠝꠛꠞ', ['October'] = 'ꠅꠇꠐꠥꠛꠞ', ['october'] = 'ꠅꠇꠐꠥꠛꠞ', ['November'] = 'ꠘꠜꠦꠝꠛꠞ', ['november'] = 'ꠘꠜꠦꠝꠛꠞ', ['December'] = 'ꠒꠤꠡꠦꠝꠛꠞ', ['december'] = 'ꠒꠤꠡꠦꠝꠛꠞ', ['জানুয়ারি'] = 'ꠎꠣꠘꠃꠀꠞꠤ', ['ফেব্রুয়ারি'] = 'ꠚꠦꠛꠃꠀꠞꠤ', ['মার্চ'] = 'ꠝꠣꠞ꠆ꠌ', ['এপ্রিল'] = 'ꠄꠙ꠆ꠞꠤꠟ', ['মে'] = 'ꠝꠦ', ['জুন'] = 'ꠎꠥꠘ', ['জুলাই'] = 'ꠎꠥꠟꠣꠁ', ['আগস্ট'] = 'ꠀꠉꠡꠐ', ['সেপ্টেম্বর'] = 'ꠍꠦꠙꠐꠦꠝꠛꠞ', ['অক্টোবর'] = 'ꠅꠇꠐꠥꠛꠞ', ['নভেম্বর'] = 'ꠘꠜꠦꠝꠛꠞ', ['ডিসেম্বর'] = 'ꠒꠤꠡꠦꠝꠛꠞ', } local function _main(input) -- Callable from another module. input = input or '' return (input:gsub('%a+', en_months):gsub('%d', en_digits)) end local function main(frame) -- Callable from #invoke or from a template. return _main(frame.args[1] or frame:getParent().args[1]) end return { main = main, _main = _main } 1wzkefry2k9vexb5gxkwonvpho95cm8 ꠛꠦꠛꠀꠞꠈꠣꠞ꠆ꠞꠣꠞ ꠝꠣꠔ:Max 3 7475 34133 33993 2026-08-19T00:20:45Z JJPMaster 1959 JJPMaster moved page [[ꠛꠦꠛꠀꠞꠈꠣꠞ꠆ꠞꠣꠞ ꠝꠣꠔ:DreamRimmer]] to [[ꠛꠦꠛꠀꠞꠈꠣꠞ꠆ꠞꠣꠞ ꠝꠣꠔ:Max]] ꠪ Automatically moved page while renaming the user "[[Special:CentralAuth/DreamRimmer|DreamRimmer]]" to "[[Special:CentralAuth/Max|Max]]" 30881 wikitext text/x-wiki {{Welcome}}--[[File:ꠢꠣꠍꠘ ꠞꠣꠎꠣ.png|75px|link=User:ꠢꠣꠍꠘ ꠞꠣꠎꠣ|]]([[User_talk:ꠢꠣꠍꠘ ꠞꠣꠎꠣ|talk]]) 23:34, 6 ꠎꠥꠘ 2025 (+06) abtizs4izgk2r808end6d783ok6dbcb ꠛꠦꠛꠀꠞꠈꠣꠞ꠆ꠞꠣꠞ ꠝꠣꠔ:DreamRimmer 3 9395 34134 2026-08-19T00:20:45Z JJPMaster 1959 JJPMaster moved page [[ꠛꠦꠛꠀꠞꠈꠣꠞ꠆ꠞꠣꠞ ꠝꠣꠔ:DreamRimmer]] to [[ꠛꠦꠛꠀꠞꠈꠣꠞ꠆ꠞꠣꠞ ꠝꠣꠔ:Max]] ꠪ Automatically moved page while renaming the user "[[Special:CentralAuth/DreamRimmer|DreamRimmer]]" to "[[Special:CentralAuth/Max|Max]]" 34134 wikitext text/x-wiki #REDIRECT [[ꠛꠦꠛꠀꠞꠈꠣꠞ꠆ꠞꠣꠞ ꠝꠣꠔ:Max]] p9opqdnwl5ntw1rl291mvyqwlanhp8c