#include "DiabloUI/support_lines.h" #include "utils/language.h" namespace devilution { const char *const SupportLines[] = { "", N_("GOG.com maintains a web site at https://www.gog.com/forum/diablo"), N_("Follow the links to visit the discussion boards associated with Diablo."), N_("and the Hellfire expansion."), "", N_("DevilutionX is maintained by Diasurgical, issues and bugs can be reported"), N_("at this address: https://github.com/diasurgical/devilutionX"), N_("To help us better serve you, please be sure to include the version number,"), N_("operating system, and the nature of the problem."), "", "", N_("Disclaimer:"), N_(" DevilutionX is not supported or maintained by Blizzard Entertainment,"), N_(" nor GOG.com. Neither Blizzard Entertainment nor GOG.com has tested"), N_(" or certified the quality or compatibility of DevilutionX. All inquiries"), N_(" regarding DevilutionX should be directed to Diasurgical, not to Blizzard"), N_(" Entertainment or GOG.com."), "", "", N_(" This port makes use of CharisSILB, Unifont, and Noto which are licensed under the SIL Open Font License, as well as Twitmoji which is licensed under CC-BY 4.0. The port also makes use of SDL which is licensed under the zlib-license. See the ReadMe for further details."), "", "", }; const std::size_t SupportLinesSize = sizeof(SupportLines) / sizeof(SupportLines[0]); } // namespace devilution