mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Fix files with CRLF line endings in translations (#8280)
This commit is contained in:
parent
1942660955
commit
eeb67627ec
1 changed files with 4 additions and 0 deletions
|
@ -58,6 +58,10 @@ void Translations::loadTranslation(const std::string &data)
|
|||
|
||||
while (is.good()) {
|
||||
std::getline(is, line);
|
||||
// Trim last character if file was using a \r\n line ending
|
||||
if (line.length () > 0 && line[line.length() - 1] == '\r')
|
||||
line.resize(line.length() - 1);
|
||||
|
||||
if (str_starts_with(line, "# textdomain:")) {
|
||||
textdomain = utf8_to_wide(trim(str_split(line, ':')[1]));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue