You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
335 B
14 lines
335 B
#pragma once |
|
|
|
#include <string> |
|
#include <vector> |
|
|
|
namespace devilution { |
|
|
|
/** |
|
* @brief Returns a list of preferred languages based on user/system configuration. |
|
* @return 0 or more POSIX locale codes (language code with optional region identifier) |
|
*/ |
|
std::vector<std::string> GetLocales(); |
|
|
|
} // namespace devilution
|
|
|