Skip to content

Commit

Permalink
English
Browse files Browse the repository at this point in the history
  • Loading branch information
katahiromz committed Aug 29, 2018
1 parent 925504a commit 456e5cb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/RisohEditor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1159,7 +1159,8 @@ WORD LangFromText(LPWSTR pszLang)
}

// is it American English?
if (lstrcmpiW(pszLang, L"America") == 0 ||
if (lstrcmpiW(pszLang, L"English") == 0 ||
lstrcmpiW(pszLang, L"America") == 0 ||
lstrcmpiW(pszLang, L"American") == 0 ||
lstrcmpiW(pszLang, L"United States") == 0 ||
lstrcmpiW(pszLang, L"USA") == 0 ||
Expand Down

0 comments on commit 456e5cb

Please sign in to comment.