Fix for loop declaration in xgettext-html.js to use 'let' for location variable

This commit is contained in:
Eli Kogan-Wang 2025-03-20 16:43:09 +01:00
parent b013e29faa
commit 892760b3f9
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ let output = "";
for (let str in strings) {
output += "#:";
for (location in strings[str]) {
for (let location in strings[str]) {
output += " " + location;
}
output += "\n";