mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-02 14:37:55 -05:00
67 lines
2.3 KiB
PHP
Executable File
67 lines
2.3 KiB
PHP
Executable File
<?php
|
|
|
|
$dir = new DirectoryIterator(__DIR__ . "/translations");
|
|
foreach ($dir as $fileinfo) {
|
|
if (!$fileinfo->isDot()) {
|
|
$file = $fileinfo->getFilename();
|
|
// temporary skip validation file (should be inside the system/language folder)
|
|
if (strstr($file, 'form_validation_lang.csv')) continue;
|
|
print_r("generating $file...\n");
|
|
$fh = fopen ( __DIR__ . "/translations/" . $file, 'r' );
|
|
$language_files = array ();
|
|
$output_base = './application/language/';
|
|
|
|
// find out all lang files (columns) we're dealing with...
|
|
$header = fgetcsv ( $fh );
|
|
foreach ( $header as $h ) {
|
|
if ($h != 'label') {
|
|
$language_files [] = $h;
|
|
}
|
|
}
|
|
|
|
// make a directory in the output folder for each language
|
|
foreach ( $language_files as $l ) {
|
|
if (!file_exists($output_base . $l)) {
|
|
mkdir ( $output_base . $l, 0777, true );
|
|
}
|
|
}
|
|
|
|
foreach ( $language_files as $key => $l ) {
|
|
$index_files = array ();
|
|
rewind ( $fh );
|
|
$header = fgetcsv ( $fh ); // move cursor past header row
|
|
|
|
// iterate through all rows of the csv
|
|
$lfh = false;
|
|
|
|
while ( $line = fgets ( $fh, 9999999 ) ) {
|
|
$line = str_getcsv ( $line );
|
|
if (! sizeof($line))
|
|
continue; // this is a blank line between groups
|
|
$index_file_name = basename($file, ".csv");
|
|
$key_name = $line[0];
|
|
|
|
// have we see this before? no == make new file
|
|
if (! in_array ( $index_file_name, $index_files )) {
|
|
|
|
$index_files [] = $index_file_name;
|
|
|
|
// no -- make new file, close existing if open (not 1st)
|
|
if ($lfh !== false) {
|
|
write ( $lfh, "?>" );
|
|
fclose ( $lfh );
|
|
}
|
|
|
|
$lfh = fopen ( $output_base . $l . '/' . $index_file_name . '.php', 'w' );
|
|
fwrite ( $lfh, '<?php ' . PHP_EOL . PHP_EOL );
|
|
}
|
|
$newline = preg_replace("/\r|\n/", "", $line [ $key + 1 ]);
|
|
fwrite ( $lfh, '$lang["' . $key_name . '"] = "' . str_replace ( '"', '\"', $newline ) . '";' . PHP_EOL );
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
?>
|