2006-01-19 01:58:37 +00:00
< ?
2025-01-29 03:30:48 +00:00
/*
* This file is part of the Science - ation project
* Science - ation Website : https :// science - ation . ca
*
* This file was part of the 'Science Fair In A Box' project
*
*
* Copyright ( C ) 2005 Sci - Tech Ontario Inc < info @ scitechontario . org >
* Copyright ( C ) 2005 James Grant < james @ lightbox . org >
* Copyright ( C ) 2024 AlgoLibre Inc . < science - ation @ algolibre . io >
*
* 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-01-19 01:58:37 +00:00
?>
< ?
2025-01-29 03:30:48 +00:00
require ( '../common.inc.php' );
require_once ( '../user.inc.php' );
user_auth_required ( 'committee' , 'admin' );
2006-01-19 01:58:37 +00:00
2025-01-29 03:30:48 +00:00
send_header ( 'Translations' ,
array ( 'Committee Main' => 'committee_main.php' ,
'Administration' => 'admin/index.php' ),
'translations_management' );
2006-01-19 01:58:37 +00:00
2025-01-29 03:30:48 +00:00
// by default, we will edit the french translations
if ( get_value_from_array ( $_GET , 'translang' ))
$_SESSION [ 'translang' ] = $_GET [ 'translang' ];
2006-01-19 17:15:07 +00:00
2025-01-29 03:30:48 +00:00
if ( ! get_value_from_array ( $_SESSION , 'translang' ))
$_SESSION [ 'translang' ] = 'fr' ;
2006-01-19 17:15:07 +00:00
2024-12-19 22:29:06 -05:00
$show = false ;
2025-01-29 03:30:48 +00:00
if ( get_value_from_array ( $_GET , 'show' ))
$show = $_GET [ 'show' ];
else if ( get_value_from_array ( $_POST , 'show' ))
$show = $_POST [ 'show' ];
2006-01-19 01:58:37 +00:00
2025-01-29 03:30:48 +00:00
if ( ! $show )
$show = 'missing' ;
2006-01-19 01:58:37 +00:00
2025-01-29 03:30:48 +00:00
if ( get_value_from_array ( $_POST , 'action' ) == 'save' ) {
// first, delete anything thats supposed to eb deleted
if ( count ( get_value_from_array ( $_POST , 'delete' , []))) {
foreach ( $_POST [ 'delete' ] AS $del ) {
2025-02-09 17:24:37 +00:00
$stmt = $pdo -> prepare ( " DELETE FROM translations WHERE lang=? AND strmd5=? " );
$stmt -> execute ([ $_SESSION [ 'translang' ], $del ]);
2008-10-30 17:57:05 +00:00
}
2025-01-29 03:30:48 +00:00
echo happy ( i18n ( 'Translation(s) deleted' ));
2008-10-30 17:57:05 +00:00
}
2025-01-29 03:30:48 +00:00
if ( $_POST [ 'changedFields' ]) {
$changed = split ( ',' , $_POST [ 'changedFields' ]);
foreach ( $changed AS $ch ) {
2025-02-09 17:24:37 +00:00
$stmt = $pdo -> prepare ( " UPDATE translations SET val=? WHERE strmd5=? AND lang=? " );
$stmt -> execute ([ stripslashes ( $_POST [ 'val' ][ $ch ]), $ch , $_SESSION [ 'translang' ]]);
2008-10-30 17:57:05 +00:00
}
2025-01-29 03:30:48 +00:00
echo happy ( i18n ( 'Translation(s) saved' ));
2008-10-30 17:57:05 +00:00
}
2006-01-19 01:58:37 +00:00
}
2025-01-29 03:30:48 +00:00
echo '<table>' ;
echo '<tr><td>' ;
echo i18n ( 'Choose a language to manage translations for' );
echo '</td><td>' ;
echo '<form name="langswitch" method="get" action="translations.php">' ;
echo '<select name="translang" onchange="document.forms.langswitch.submit()">' ;
$q = $pdo -> prepare ( " SELECT * FROM languages WHERE lang!='en' " );
2024-12-08 02:42:00 -05:00
$q -> execute ();
2025-01-29 03:30:48 +00:00
while ( $r = $q -> fetch ( PDO :: FETCH_OBJ )) {
if ( $_SESSION [ 'translang' ] == $r -> lang ) {
$sel = 'selected="selected"' ;
$translangname = $r -> langname ;
} else
$sel = '' ;
echo " <option $sel value= \" $r->lang\ " > $r -> langname </ option > " ;
2006-01-19 17:15:07 +00:00
}
2025-01-29 03:30:48 +00:00
echo '</select>' ;
echo '</form>' ;
echo '</td></tr>' ;
echo '</table>' ;
if ( $show == 'missing' ) {
echo i18n ( 'Show missing translations' );
echo ' | ' ;
echo '<a href="translations.php?show=all">' . i18n ( 'Show all translations' ) . '</a>' ;
} else {
echo '<a href="translations.php?show=missing">' . i18n ( 'Show missing translations' ) . '</a>' ;
echo ' | ' ;
echo i18n ( 'Show all translations' );
2006-01-19 01:58:37 +00:00
}
2025-01-29 03:30:48 +00:00
echo '<br />' ;
echo '<br />' ;
echo i18n ( 'Instructions: Enter the translation below the string and click Save. Only one translation can be saved at a time. The terms %1, %2, etc get substituded with various arguments to the string, so they must appear in the translation if they are in the original string.' );
echo '<br />' ;
echo '<br />' ;
2006-01-19 01:58:37 +00:00
2025-01-29 03:30:48 +00:00
if ( $show == 'missing' )
$showquery = " AND ( val is null OR val='' ) " ;
else
$showquery = '' ;
2025-01-28 14:33:16 -05:00
2025-02-09 17:24:37 +00:00
$q = $pdo -> prepare ( " SELECT * FROM translations WHERE lang=? $showquery ORDER BY str " );
$q -> execute ([ get_value_from_array ( $_SESSION , 'translang' )]);
2025-01-29 03:30:48 +00:00
$num = $q -> rowCount ();
echo i18n ( 'Showing %1 translation strings' , array ( $num ), array ( 'number of strings' ));
2006-01-19 01:58:37 +00:00
2025-01-29 03:30:48 +00:00
echo '<form method="post" action="translations.php">' ;
2008-10-30 17:57:05 +00:00
echo " <input type= \" hidden \" name= \" show \" value= \" $show\ " /> " ;
2025-01-29 03:30:48 +00:00
echo '<input type="hidden" name="action" value="save" />' ;
echo '<input id="changedFields" type="hidden" name="changedFields" value="">' ;
2008-10-30 17:57:05 +00:00
?>
< script type = " text/javascript " >
function doFocus ( strmd5 ) {
var obj = document . getElementById ( 'val_' + strmd5 );
var ch = document . getElementById ( 'changedFields' );
obj . style . backgroundColor = " #FFBFF2 " ;
if ( ch . value )
ch . value = ch . value + " , " + strmd5 ;
else
ch . value = strmd5 ;
return true ;
}
</ script >
< ?
2025-01-29 03:30:48 +00:00
echo '<table class="tableedit">' ;
echo '<tr><th>' ;
echo '<img border="0" src="' . $config [ 'SFIABDIRECTORY' ] . '/images/16/button_cancel.' . $config [ 'icon_extension' ] . " \" > \n " ;
echo '</th>' ;
2024-12-31 19:12:42 -05:00
global $translangname ;
2025-01-29 03:30:48 +00:00
echo '<th>' . i18n ( 'English' ) . ' / ' . $translangname . " </th></tr> \n " ;
while ( $r = $q -> fetch ( PDO :: FETCH_OBJ )) {
echo '<tr>' ;
echo '<td valign="top" rowspan="2">' ;
2008-10-30 17:57:05 +00:00
echo " <input type= \" checkbox \" name= \" delete[] \" value= \" $r->strmd5\ " > \n " ;
2025-01-29 03:30:48 +00:00
echo '</td><td>' ;
echo htmlspecialchars ( $r -> str );
if ( $r -> argsdesc )
echo '<br /><i>' . i18n ( 'Arguments:' ) . " $r->argsdesc </i> " ;
echo '</td>' ;
echo '</tr>' ;
echo '<tr>' ;
echo " <td valign= \" top \" ><input id= \" val_ { $r -> strmd5 } \" onchange= \" return doFocus(' { $r -> strmd5 } '); \" style= \" width: 95% \" type= \" text \" name= \" val[ { $r -> strmd5 } ] \" value= \" " . htmlspecialchars ( $r -> val ) . '" /></td>' ;
echo '</tr>' ;
2006-01-19 01:58:37 +00:00
}
2025-01-29 03:30:48 +00:00
echo '</table>' ;
echo '<input type="submit" value="' . i18n ( 'Save' ) . '">' ;
2008-10-30 17:57:05 +00:00
echo " </form> \n " ;
2006-01-19 01:58:37 +00:00
send_footer ();
?>