private void FindSymbols(char[] word, int endIndex, EntryCodes codes)
        {
            int trueLength = FindTrueLength(word);

            char[] symbols;
            bool   result = true;

            for (int i = 0; i < trueLength; i++)
            {
                symbols = LanguageGetter.GetCharArray(word[i], codes);
                if (symbols == null || !symbols.Contains(char.ToLower(word[i])))
                {
                    result = false;
                    break;
                }
            }
            if (result)
            {
                _entryModels.Add(new EntryModel
                {
                    StartIndex = endIndex - trueLength,
                    EndIndex   = endIndex,
                    TextColor  = GetColor.GetColorByCode(codes)
                });
            }
        }