I am working on a large document in Bangla using this package setting. This changes the section and subsection numbers to Bengali. However, it doesn't change the numbering style to Bengali for nested lists. My desired output is shown in the figure:
But I got this using the following MWE. As you can see from the image, for the nested list, English alphabets are used. I want to replace those with the Bengali alphabets (ক, খ, গ, etc). How can this be done? It is also helpful if third level nested listing is possible!
\documentclass[10pt,a4paper,showtrims]{memoir}
%https://tex.stackexchange.com/questions/563720/change-numbering-style-to-bengali-in-nested-ordered-list/563725#563725
%https://latex3.github.io/babel/guides/locale-bengali.html
\usepackage{babel}
\babelprovide[import,onchar = fonts ids,maparabic,alph=alphabetic]{bengali}
\babelfont[bengali]{rm}[Renderer=Harfbuzz,AutoFakeBold,AutoFakeSlant=0.3]{Kalpurush}
\babelcharproperty{`।}{locale}{bengali}
%\babelprovide[maparabic,alph=alphabetic]{bengali}
%\babelprovide[mapdigits,alph=alphabetic]{bengali}
%\usepackage[bengali, provide=*]{babel}
%\babelprovide[mapdigits]{bengali} % or alternatively maparabic
\begin{document}
\begin{enumerate}
\item আইটেম ১
\begin{enumerate}
\item নেস্টেড আইটেম ১
\item নেস্টেড আইটেম ২
\end{enumerate}
\item আইটেম ২
\end{enumerate}
\end{document}
Note: I have already tried Change numbering style to Bengali in nested ordered list and got nothing.



\babelprovidetwice, using different options. – Davislor Dec 01 '21 at 09:23\babelprovide. – mmr Dec 01 '21 at 16:33