From: Yves G. <yg...@us...> - 2005-01-18 21:15:52
|
Update of /cvsroot/phpsqliteadmin/phpsqliteadmin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10043 Modified Files: changelog.txt create_system_db.sql Added Files: i18n_langs.php Log Message: I just added the file i18n_langs.php to show how multilanguage support can be done. Only remaining problem is that I could not figure out how to get the output of the i18n() shown from inside a heredoc block (echo <<<EOT EOT;) Maybe someone on the list can give a hint... Index: changelog.txt =================================================================== RCS file: /cvsroot/phpsqliteadmin/phpsqliteadmin/changelog.txt,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- changelog.txt 27 Jun 2004 21:34:36 -0000 1.4 +++ changelog.txt 18 Jan 2005 21:15:26 -0000 1.5 @@ -1,6 +1,6 @@ phpSQLiteAdmin changelog ( see http://phpsqliteadmin.sourceforge.net/ for more details) -0.3 (xx.xx.2004) +0.3 (xx.xx.2005) - added login - fixed session problem concerning database names --- NEW FILE: i18n_langs.php --- <?php $strings = array( // Application html-title 1 => 'phpSQLiteAdmin 0.3', // dbconfig.php 2 => 'Add a new database alias', 3 => 'Available databases:', 4 => 'Alias', 5 => 'Database file', 6 => 'Description', ); ?> Index: create_system_db.sql =================================================================== RCS file: /cvsroot/phpsqliteadmin/phpsqliteadmin/create_system_db.sql,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- create_system_db.sql 11 May 2004 18:23:19 -0000 1.1.1.1 +++ create_system_db.sql 18 Jan 2005 21:15:34 -0000 1.2 @@ -50,5 +50,4 @@ insert into databases values (1,'i-man-0.8_Lin','/home/yves/projects/php/i-man-0.8/exampledb/i-man.sqlite',''); insert into databases values (1,'i-man-0.9_Lin','/home/yves/projects/php/i-man-0.9/exampledb/i-man.sqlite',''); insert into databases values (1,'i-man-0.8_Win','c:\htdocs\i-man-0.8\exampledb\i-man.sqlite',''); -insert into databases values (1,'phpsla.sqlite','phpsla.sqlite','phpsla system database'); - +insert into databases values (1,'phpsla.sqlite','db/phpsla.sqlite','phpsla system database'); |