diff --git a/Flow.Launcher.Infrastructure/PinyinAlphabet.cs b/Flow.Launcher.Infrastructure/PinyinAlphabet.cs index f11a49613..c85c432dd 100644 --- a/Flow.Launcher.Infrastructure/PinyinAlphabet.cs +++ b/Flow.Launcher.Infrastructure/PinyinAlphabet.cs @@ -76,7 +76,8 @@ namespace Flow.Launcher.Infrastructure public bool ShouldTranslate(string stringToTranslate) { - return WordsHelper.HasChinese(stringToTranslate); + // If a string has Chinese characters, we don't need to translate it to pinyin. + return !WordsHelper.HasChinese(stringToTranslate); } public (string translation, TranslationMapping map) Translate(string content)