diff options
Diffstat (limited to 'src/win32/windows.cpp')
-rw-r--r-- | src/win32/windows.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/win32/windows.cpp b/src/win32/windows.cpp index a4c6eff49..2a9489437 100644 --- a/src/win32/windows.cpp +++ b/src/win32/windows.cpp @@ -1,7 +1,7 @@ -/* POSIX emulation layer for Windows. + /* POSIX emulation layer for Windows. * - * (C) 2008-2011 Robin Burchell <w00t@inspircd.org> - * (C) 2008-2017 Anope Team <team@anope.org> + * Copyright (C) 2008-2011 Robin Burchell <w00t@inspircd.org> + * Copyright (C) 2008-2017 Anope Team <info@anope.org> * * Please read COPYING and README for further details. * @@ -56,11 +56,11 @@ USHORT WindowsGetLanguage(const Anope::string &lang) for (int i = 0; i < sizeof(WindowsLanguages) / sizeof(WindowsLanguage); ++i) { WindowsLanguage &l = WindowsLanguages[i]; - + if (lang == l.languageName || !lang.find(l.languageName + ".")) return l.windowsLanguageName; } - + return LANG_NEUTRAL; } |