2001-01-11 10:52:33 +01:00
|
|
|
<?php
|
|
|
|
/**************************************************************************\
|
2001-01-13 11:18:50 +01:00
|
|
|
* phpGroupWare API - Translation class for SQL *
|
|
|
|
* This file written by Joseph Engo <jengo@phpgroupware.org> *
|
|
|
|
* and Dan Kuykendall <seek3r@phpgroupware.org> *
|
2003-08-28 16:31:11 +02:00
|
|
|
* Handles multi-language support use SQL tables *
|
2001-01-13 11:18:50 +01:00
|
|
|
* Copyright (C) 2000, 2001 Joseph Engo *
|
|
|
|
* -------------------------------------------------------------------------*
|
2001-01-16 14:52:32 +01:00
|
|
|
* This library is part of the phpGroupWare API *
|
|
|
|
* http://www.phpgroupware.org/api *
|
|
|
|
* ------------------------------------------------------------------------ *
|
2001-01-13 11:18:50 +01:00
|
|
|
* This library is free software; you can redistribute it and/or modify it *
|
|
|
|
* under the terms of the GNU Lesser General Public License as published by *
|
|
|
|
* the Free Software Foundation; either version 2.1 of the License, *
|
|
|
|
* or any later version. *
|
|
|
|
* This library 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 Lesser General Public License for more details. *
|
|
|
|
* You should have received a copy of the GNU Lesser General Public License *
|
|
|
|
* along with this library; if not, write to the Free Software Foundation, *
|
|
|
|
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
|
2001-01-11 10:52:33 +01:00
|
|
|
\**************************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
2003-04-02 19:46:37 +02:00
|
|
|
// define the maximal length of a message_id, all message_ids have to be unique
|
|
|
|
// in this length, our column is varchar 255, but addslashes might add some length
|
2003-08-28 16:31:11 +02:00
|
|
|
define('MAX_MESSAGE_ID_LENGTH',230);
|
|
|
|
|
2001-06-15 23:29:33 +02:00
|
|
|
class translation
|
|
|
|
{
|
2003-08-28 16:31:11 +02:00
|
|
|
function translate($key, $vars=false )
|
2002-02-20 05:44:19 +01:00
|
|
|
{
|
2003-08-28 16:31:11 +02:00
|
|
|
if (!$vars)
|
2002-10-19 00:53:12 +02:00
|
|
|
{
|
2003-08-28 16:31:11 +02:00
|
|
|
$vars = array();
|
2002-02-17 19:43:31 +01:00
|
|
|
}
|
2003-08-28 16:31:11 +02:00
|
|
|
$ret = $key;
|
|
|
|
// check also if $GLOBALS['lang'] is a array
|
|
|
|
// php-nuke and postnuke are using $GLOBALS['lang'] too
|
|
|
|
// as string
|
|
|
|
// this makes many problems
|
|
|
|
if (!isset($GLOBALS['lang']) || !$GLOBALS['lang'] || !is_array($GLOBALS['lang']))
|
2001-06-15 23:29:33 +02:00
|
|
|
{
|
2003-08-28 16:31:11 +02:00
|
|
|
$GLOBALS['lang'] = array();
|
|
|
|
if (isset($GLOBALS['phpgw_info']['user']['preferences']['common']['lang']) &&
|
|
|
|
$GLOBALS['phpgw_info']['user']['preferences']['common']['lang'])
|
|
|
|
{
|
|
|
|
$userlang = $GLOBALS['phpgw_info']['user']['preferences']['common']['lang'];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$userlang = 'en';
|
|
|
|
}
|
|
|
|
$sql = "select message_id,content from phpgw_lang where lang like '".$userlang."' ".
|
|
|
|
"and (app_name like '".$GLOBALS['phpgw_info']['flags']['currentapp']."' or app_name like 'common' or app_name like 'all')";
|
|
|
|
|
|
|
|
if (strcasecmp ($GLOBALS['phpgw_info']['flags']['currentapp'], 'common')>0)
|
|
|
|
{
|
|
|
|
$sql .= ' order by app_name asc';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$sql .= ' order by app_name desc';
|
|
|
|
}
|
|
|
|
|
|
|
|
$GLOBALS['phpgw']->db->query($sql,__LINE__,__FILE__);
|
2001-08-31 10:45:44 +02:00
|
|
|
$GLOBALS['phpgw']->db->next_record();
|
2003-08-28 16:31:11 +02:00
|
|
|
$count = $GLOBALS['phpgw']->db->num_rows();
|
|
|
|
for ($idx = 0; $idx < $count; ++$idx)
|
|
|
|
{
|
|
|
|
$GLOBALS['lang'][strtolower ($GLOBALS['phpgw']->db->f('message_id'))] = $GLOBALS['phpgw']->db->f('content');
|
|
|
|
$GLOBALS['phpgw']->db->next_record();
|
|
|
|
}
|
2001-06-15 23:29:33 +02:00
|
|
|
}
|
2003-08-28 16:31:11 +02:00
|
|
|
$ret = $key.'*'; // save key if we dont find a translation
|
|
|
|
$key = strtolower(trim(substr($key,0,MAX_MESSAGE_ID_LENGTH)));
|
2002-02-20 05:30:19 +01:00
|
|
|
|
2003-08-28 16:31:11 +02:00
|
|
|
if (isset($GLOBALS['lang'][$key]))
|
2002-02-20 05:44:19 +01:00
|
|
|
{
|
2003-08-28 16:31:11 +02:00
|
|
|
$ret = $GLOBALS['lang'][$key];
|
2002-02-20 05:44:19 +01:00
|
|
|
}
|
2001-06-15 23:29:33 +02:00
|
|
|
$ndx = 1;
|
2003-08-28 16:31:11 +02:00
|
|
|
while( list($key,$val) = each( $vars ) )
|
2001-06-15 23:29:33 +02:00
|
|
|
{
|
|
|
|
$ret = preg_replace( "/%$ndx/", $val, $ret );
|
|
|
|
++$ndx;
|
|
|
|
}
|
|
|
|
return $ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
function add_app($app)
|
|
|
|
{
|
2003-08-28 16:31:11 +02:00
|
|
|
// post-nuke and php-nuke are using $GLOBALS['lang'] too
|
|
|
|
// but not as array!
|
|
|
|
// this produces very strange results
|
|
|
|
if (!is_array($GLOBALS['lang']))
|
|
|
|
{
|
|
|
|
$GLOBALS['lang'] = array();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($GLOBALS['phpgw_info']['user']['preferences']['common']['lang'])
|
|
|
|
{
|
|
|
|
$userlang = $GLOBALS['phpgw_info']['user']['preferences']['common']['lang'];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$userlang = 'en';
|
|
|
|
}
|
|
|
|
$sql = "select message_id,content from phpgw_lang where lang like '".$userlang."' and app_name like '".$app."'";
|
2001-08-31 10:45:44 +02:00
|
|
|
$GLOBALS['phpgw']->db->query($sql,__LINE__,__FILE__);
|
|
|
|
$GLOBALS['phpgw']->db->next_record();
|
|
|
|
$count = $GLOBALS['phpgw']->db->num_rows();
|
2003-08-28 16:31:11 +02:00
|
|
|
for ($idx = 0; $idx < $count; ++$idx)
|
2001-06-15 23:29:33 +02:00
|
|
|
{
|
2003-08-28 16:31:11 +02:00
|
|
|
$GLOBALS['lang'][strtolower ($GLOBALS['phpgw']->db->f('message_id'))] = $GLOBALS['phpgw']->db->f('content');
|
2001-08-31 10:45:44 +02:00
|
|
|
$GLOBALS['phpgw']->db->next_record();
|
2001-06-15 23:29:33 +02:00
|
|
|
}
|
|
|
|
}
|
2003-04-02 19:46:37 +02:00
|
|
|
|
|
|
|
function get_installed_langs()
|
|
|
|
{
|
|
|
|
$GLOBALS['phpgw']->db->query("SELECT DISTINCT l.lang,ln.lang_name FROM phpgw_lang l,phpgw_languages ln WHERE l.lang = ln.lang_id",__LINE__,__FILE__);
|
|
|
|
if (!$GLOBALS['phpgw']->db->num_rows())
|
|
|
|
{
|
|
|
|
return False;
|
|
|
|
}
|
|
|
|
while ($GLOBALS['phpgw']->db->next_record())
|
|
|
|
{
|
|
|
|
$langs[$GLOBALS['phpgw']->db->f('lang')] = $GLOBALS['phpgw']->db->f('lang_name');
|
|
|
|
}
|
|
|
|
return $langs;
|
|
|
|
}
|
2001-06-15 23:29:33 +02:00
|
|
|
}
|