\documentclass{book}
\usepackage[xindy]{glossaries} 
\usepackage{xepersian}


\newglossarystyle{mylistEn}{
\glossarystyle{list}
\renewenvironment{theglossary}{}{}
\renewcommand*{\glossaryheader}{}
\renewcommand*{\glsgroupheading}[1]{\begin{LTR} \section*{\lr{\glsgetgrouptitle{##1}}} \end{LTR}}
\renewcommand*{\glsgroupskip}{}
\renewcommand*{\glossaryentryfield}[5]     {\noindent\glstarget{##1}{##3}\dotfill \space ##2 \\}
\renewcommand*{\glossarysubentryfield}[6]{\glossaryentryfield{##2}{##3}{##4}{##5}{##6}}
}

% تعریف دو نمونه واژه نامه
\newglossary[glg]{english}{gls}{glo}{واژه‌نامه‌ٔ انگلیسی به فارسی}
\newglossary[blg]{persian}{bls}{blo}{واژه‌نامهٔ فارسی به انگلیسی}

% توسط این دستور واژه مورد نظر در متن و هر دو واژه نامه  می آید.
\newcommand{\indic}[2]{
	\newglossaryentry{fa-#1}{type=persian,name={\hspace*{-2.65pt}#1\hspace*{-2.65pt}},sort={#1},description={\lr{#2}}}\gls{fa-#1}
	\newglossaryentry{en-#1}{type=english,name={\lr{#2}},sort={#2},description={#1}}\glsuseri{en-#1}
}

\makeglossaries
\glsdisablehyper



\begin{document}

\indic{دسترسی چندگانه}{Multiple Access}

\indic{فراگردی}{Roaming}

\indic{واگذاری}{Handover}


\twocolumn{}
\glossarystyle{mylistEn}
\printglossary[type=english]

\end{document}