2006-10-25 01:17:41 +00:00
< ?
2025-01-29 03:30:48 +00:00
/*
* This file is part of the 'Science Fair In A Box' project
2025-02-10 19:54:20 +00:00
* Science - ation Website : https :// science - ation . ca /
2025-01-29 03:30:48 +00:00
*
* Copyright ( C ) 2006 Sci - Tech Ontario Inc < info @ scitechontario . org >
* Copyright ( C ) 2006 James Grant < james @ lightbox . org >
2025-02-10 19:54:20 +00:00
* Copyright ( C ) 2024 AlgoLibre Inc . < science - ation @ algolibre . io >
2025-01-29 03:30:48 +00:00
*
* This program is free software ; you can redistribute it and / or
* modify it under the terms of the GNU General Public
* License as published by the Free Software Foundation , version 2.
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the GNU
* General Public License for more details .
*
* You should have received a copy of the GNU General Public License
* along with this program ; see the file COPYING . If not , write to
* the Free Software Foundation , Inc . , 59 Temple Place - Suite 330 ,
* Boston , MA 02111 - 1307 , USA .
*/
2006-10-25 01:17:41 +00:00
?>
< ?
2025-02-10 19:54:20 +00:00
require ( '../common.inc.php' );
require_once ( '../user.inc.php' );
2025-01-29 03:30:48 +00:00
user_auth_required ( 'committee' , 'config' );
2025-02-10 19:54:20 +00:00
send_header (
'Language Packs' ,
array (
'Committee Main' => 'committee_main.php' ,
'SFIAB Configuration' => 'config/index.php'
),
'language_pack_installer'
);
2006-10-25 01:17:41 +00:00
2025-01-29 03:30:48 +00:00
echo i18n ( " Checking for language packs will access a remote server, if you wish to continue click the 'Check for available language packs' link below " );
echo '<br />' ;
echo '<br />' ;
echo '<a href="languagepacks.php?action=check">' . i18n ( 'Check for available language packs' ) . '</a><br />' ;
2006-10-25 01:17:41 +00:00
2025-01-29 03:30:48 +00:00
function loadLanguagePacks ()
{
$ret = array ();
// // FIXME Replace!
// if($packs=file("http://www.sfiab.ca/languages/langpacklist.txt"))
if ( false ) {
$num = count ( $packs );
// format of each line is:
// lang:filename:lastupdate
if ( count ( $packs )) {
2025-02-10 19:54:20 +00:00
foreach ( $packs as $p ) {
2025-01-29 03:30:48 +00:00
list ( $langpack , $filename , $lastupdate ) = explode ( " \t " , trim ( $p ));
$ret [ $langpack ] = array ( 'lang' => $langpack , 'filename' => $filename , 'lastupdate' => $lastupdate );
2006-10-25 01:17:41 +00:00
}
}
2025-01-29 03:30:48 +00:00
} else {
echo error ( i18n ( 'There was an error connecting to the language pack server' ));
2006-10-25 01:17:41 +00:00
}
return $ret ;
2025-01-29 03:30:48 +00:00
}
2006-10-25 01:17:41 +00:00
2025-01-29 03:30:48 +00:00
if ( get_value_from_array ( $_GET , 'action' ) == 'check' ) {
$packs = loadLanguagePacks ();
2006-10-25 01:17:41 +00:00
2025-01-29 03:30:48 +00:00
$num = count ( $packs );
2007-11-19 00:33:38 +00:00
echo '<hr />' ;
2025-01-29 03:30:48 +00:00
echo i18n ( 'Found %1 available language pack(s)' , array ( $num ));
// format of each line is:
// lang:filename:lastupdate
if ( count ( $packs )) {
echo '<table class="summarytable">' ;
echo '<tr>' ;
echo '<th>' . i18n ( 'Language' ) . '</th>' ;
echo '<th>' . i18n ( 'Filename' ) . '</th>' ;
echo '<th>' . i18n ( 'Last Update' ) . '</th>' ;
echo '<th>' . i18n ( 'Install' ) . '</th>' ;
echo '</tr>' ;
2025-02-10 19:54:20 +00:00
foreach ( $packs as $p ) {
2006-10-25 01:17:41 +00:00
echo " <tr><td align= \" center \" > { $p [ 'lang' ] } </td><td> { $p [ 'filename' ] } </td><td> { $p [ 'lastupdate' ] } </td> " ;
2025-01-29 03:30:48 +00:00
echo '<td align="center">' ;
echo " <a href= \" languagepacks.php?action=install&install= { $p [ 'lang' ] } \" > " . i18n ( 'Install' ) . '</a>' ;
echo '</td>' ;
echo '</tr>' ;
2006-10-25 01:17:41 +00:00
}
2025-01-29 03:30:48 +00:00
echo '</table>' ;
2006-10-25 01:17:41 +00:00
}
2025-01-29 03:30:48 +00:00
}
2006-10-25 01:17:41 +00:00
2025-01-29 03:30:48 +00:00
if ( get_value_from_array ( $_GET , 'action' ) == 'install' && get_value_from_array ( $_GET , 'install' )) {
$packs = loadLanguagePacks ();
$loaded = 0 ;
if ( $packs [ $_GET [ 'install' ]]) {
$lines = file ( " http://www.sfiab.ca/languages/ { $packs [ $_GET [ 'install' ]][ 'filename' ] } " );
$totallines = count ( $lines );
$numtranslations = round ( $totallines / 2 );
echo i18n ( 'There are %1 translations in this language pack... processing...' , array ( $numtranslations ));
if ( count ( $lines )) {
2025-02-10 19:54:20 +00:00
foreach ( $lines as $line ) {
2025-01-29 03:30:48 +00:00
$line = trim ( $line );
2006-10-25 01:17:41 +00:00
2025-01-29 03:30:48 +00:00
if ( substr ( $line , 0 , 6 ) == 'UPDATE' || substr ( $line , 0 , 6 ) == 'INSERT' ) {
2024-12-10 19:40:23 -05:00
$stmt = $pdo -> prepare ( $line );
$stmt -> execute ();
2025-01-29 03:30:48 +00:00
$a = $pdo -> rowwCount ();
$loaded += $a ;
} else
echo notice ( 'Ignoring invalid language pack line: %1' , array ( $l ));
2006-10-25 01:17:41 +00:00
}
2025-01-29 03:30:48 +00:00
if ( $loaded == 0 )
echo notice ( i18n ( 'You already have all of the translations in this language pack' ));
2006-10-25 01:17:41 +00:00
else
2025-01-29 03:30:48 +00:00
echo happy ( i18n ( 'Successfully loaded %1 new translations' , array ( $loaded )));
} else {
echo error ( i18n ( 'Error downloading language pack' ));
2006-10-25 01:17:41 +00:00
}
2025-01-29 03:30:48 +00:00
} else {
echo error ( i18n ( 'Invalid language pack to install' ));
2006-10-25 01:17:41 +00:00
}
2025-01-29 03:30:48 +00:00
}
2006-10-25 01:17:41 +00:00
2025-01-29 03:30:48 +00:00
send_footer ();
2006-10-25 01:17:41 +00:00
?>