Skip to content

Commit

Permalink
Merge pull request godotengine#86669 from YeldhamDev/there_is_no_escape
Browse files Browse the repository at this point in the history
Stop escaping `'` on POT generation
  • Loading branch information
akien-mga committed Jan 3, 2024
2 parents f38076e + e502253 commit 34594a3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions editor/pot_generator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ void POTGenerator::_write_to_pot(const String &p_file) {

// Write context.
if (!context.is_empty()) {
file->store_line("msgctxt " + context.c_escape().quote());
file->store_line("msgctxt " + context.json_escape().quote());
}

// Write msgid.
Expand Down Expand Up @@ -183,11 +183,11 @@ void POTGenerator::_write_msgid(Ref<FileAccess> r_file, const String &p_id, bool
}

for (int i = 0; i < lines.size() - 1; i++) {
r_file->store_line((lines[i] + "\n").c_escape().quote());
r_file->store_line((lines[i] + "\n").json_escape().quote());
}

if (!last_line.is_empty()) {
r_file->store_line(last_line.c_escape().quote());
r_file->store_line(last_line.json_escape().quote());
}
}

Expand Down

0 comments on commit 34594a3

Please sign in to comment.