Merge pull request #26607 from ptrojahn/translationescape
Unescape translations in CSV importer
This commit is contained in:
commit
9efbddfee1
1 changed files with 1 additions and 1 deletions
|
@ -119,7 +119,7 @@ Error ResourceImporterCSVTranslation::import(const String &p_source_file, const
|
|||
if (key != "") {
|
||||
|
||||
for (int i = 1; i < line.size(); i++) {
|
||||
translations.write[i - 1]->add_message(key, line[i]);
|
||||
translations.write[i - 1]->add_message(key, line[i].c_unescape());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue