2025-02-04 20:27:57 +01:00
|
|
|
<?php
|
|
|
|
function extract_strings($cont)
|
|
|
|
{
|
2025-05-25 17:35:50 +02:00
|
|
|
preg_match_all("/([A-Za-z_ ]+): (.*)/", $cont, $matches, PREG_SET_ORDER, 0);
|
2025-02-04 20:27:57 +01:00
|
|
|
$strings = [];
|
|
|
|
foreach ($matches as $match)
|
|
|
|
{
|
|
|
|
$strings[$match[1]] = $match[2];
|
|
|
|
}
|
|
|
|
return $strings;
|
|
|
|
}
|
|
|
|
|
2025-05-25 17:35:50 +02:00
|
|
|
$source = file_get_contents("bootstrapper/en.cat.txt");
|
2025-02-04 20:27:57 +01:00
|
|
|
$source_strings = extract_strings($source);
|
|
|
|
$source_lines = explode("\n", $source);
|
|
|
|
|
2025-05-25 17:35:50 +02:00
|
|
|
foreach (scandir("bootstrapper") as $file)
|
2025-02-04 20:27:57 +01:00
|
|
|
{
|
2025-05-25 17:35:50 +02:00
|
|
|
if (is_file("bootstrapper/$file") && $file != "en.cat.txt")
|
2025-02-04 20:27:57 +01:00
|
|
|
{
|
2025-05-25 17:35:50 +02:00
|
|
|
$cont = file_get_contents("bootstrapper/$file");
|
2025-02-04 20:27:57 +01:00
|
|
|
$target_strings = extract_strings($cont);
|
2025-05-25 17:35:50 +02:00
|
|
|
$fh = fopen("bootstrapper/$file", "wb");
|
2025-02-04 20:27:57 +01:00
|
|
|
foreach ($source_lines as $line)
|
|
|
|
{
|
|
|
|
if ($strings = extract_strings($line))
|
|
|
|
{
|
|
|
|
foreach ($strings as $key => $value)
|
|
|
|
{
|
|
|
|
if (array_key_exists($key, $target_strings))
|
|
|
|
{
|
2025-05-25 17:35:50 +02:00
|
|
|
fwrite($fh, "$key: $target_strings[$key]\n");
|
2025-02-04 20:27:57 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2025-05-25 17:35:50 +02:00
|
|
|
fwrite($fh, "$key: [UNTRANSLATED] $value\n");
|
2025-02-04 20:27:57 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fwrite($fh, $line."\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|