private IEnumerable <KeyValuePair <RepeatAmount, string> > GetSupportedRepeatAmounts()
        {
            yield return(new KeyValuePair <RepeatAmount, string>(RepeatAmount.None, Resources.none));

            yield return(new KeyValuePair <RepeatAmount, string>(RepeatAmount.OneAyah, "1 " + QuranUtils.GetAyahTitle()));

            yield return(new KeyValuePair <RepeatAmount, string>(RepeatAmount.ThreeAyah, "3 " + QuranUtils.GetAyahTitle()));

            yield return(new KeyValuePair <RepeatAmount, string>(RepeatAmount.FiveAyah, "5 " + QuranUtils.GetAyahTitle()));

            yield return(new KeyValuePair <RepeatAmount, string>(RepeatAmount.TenAyah, "10 " + QuranUtils.GetAyahTitle()));

            yield return(new KeyValuePair <RepeatAmount, string>(RepeatAmount.Page, Resources.quran_page));

            yield return(new KeyValuePair <RepeatAmount, string>(RepeatAmount.Surah, Resources.quran_sura));

            yield return(new KeyValuePair <RepeatAmount, string>(RepeatAmount.Rub, Resources.quran_rub3));

            yield return(new KeyValuePair <RepeatAmount, string>(RepeatAmount.Juz, Resources.quran_juz2));
        }