1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
|
<?php
/**
* @package languages
* @version $Header: /cvsroot/bitweaver/_bit_languages/BitLanguage.php,v 1.17 2006/02/03 12:39:57 squareing Exp $
*
* Copyright (c) 2005 bitweaver.org
* Copyright (c) 2004-2005, Christian Fowler, et. al.
* All Rights Reserved. See copyright.txt for details and a complete list of authors.
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details
* @author spider <spider@steelsun.com>
*/
/**
* @package languages
*/
class BitLanguage extends BitBase {
// list of available (non-disabled) languages
var $mLanguageList;
var $mLanguage;
function BitLanguage () {
BitBase::BitBase();
global $gBitSystem;
# TODO - put '@' here due to beta1->beta2 upgrades - wolff_borg
$this->mLanguageList = $this->listLanguages();
if (isset($_SESSION['bitlanguage'])) {
// users not logged that change the preference
$this->mLanguage = $_SESSION['bitlanguage'];
} elseif (isset($_SERVER['HTTP_ACCEPT_LANGUAGE']) && $gBitSystem->isFeatureActive( 'browser_languages' )) {
// Get supported languages
if( $browserLangs = split( ',', preg_replace('/;q=[0-9.]+/', '', $_SERVER['HTTP_ACCEPT_LANGUAGE']) ) ) {
foreach( $browserLangs as $bl ) {
if( !empty( $this->mLanguageList[$bl] ) ) {
$this->setLanguage( $bl );
break;
} elseif( strpos( $bl, '-' ) ) {
$baseLang = substr( $bl, 0, 2 );
if( !empty( $this->mLanguageList[$baseLang] ) ) {
$this->setLanguage( $baseLang );
break;
}
}
}
}
}
if( empty( $this->mLanguage ) ) {
$this->mLanguage = $gBitSystem->getPreference('bitlanguage', 'en');
}
}
function getLanguage() {
return( $this->mLanguage );
}
function setLanguage( $pLangCode ) {
$this->mLanguage = $pLangCode;
}
function verifyLanguage( &$pParamHash ) {
$langs = $this->listLanguages();
if( empty( $pParamHash['lang_code'] ) || strlen( $pParamHash['lang_code'] ) < 2 ) {
$this->mErrors['lang_code'] = tra( 'The language code must be at least 2 characters.' );
} elseif( !empty( $langs[$pParamHash['lang_code']] ) && empty( $pParamHash['update_lang_code'] ) ) {
$this->mErrors['lang_code'] = tra( 'This language code is already used by ' ).$langs[$pParamHash['lang_code']]['native_name'];
}
if( empty( $pParamHash['native_name'] ) ) {
$this->mErrors['native_name'] = 'You must provide the native language name';
}
if( !isset( $pParamHash['english_name'] ) ) {
$pParamHash['english_name'] = NULL;
}
return( count( $this->mErrors ) === 0 );
}
function storeLanguage( $pParamHash ) {
if( $this->verifyLanguage( $pParamHash ) ) {
if( empty( $pParamHash['update_lang_code'] ) ) {
$query = "INSERT INTO `".BIT_DB_PREFIX."i18n_languages` (`lang_code`,`english_name`,`native_name`) values (?,?,?)";
$result = $this->mDb->query( $query, array( $pParamHash['lang_code'], $pParamHash['english_name'], $pParamHash['native_name'] ) );
} else {
$query = "UPDATE `".BIT_DB_PREFIX."i18n_languages` SET `lang_code`=?, `english_name`=?, `native_name`=? WHERE `lang_code`=?";
$result = $this->mDb->query( $query, array( $pParamHash['lang_code'], $pParamHash['english_name'], $pParamHash['native_name'], $pParamHash['update_lang_code'] ) );
}
}
return( count( $this->mErrors ) == 0 );
}
function expungeLanguage( $pLangCode ) {
if( !empty( $pLangCode ) ) {
$this->mDb->StartTrans();
$query = "DELETE FROM `".BIT_DB_PREFIX."i18n_strings` WHERE `lang_code`=?";
$result = $this->mDb->query( $query, array( $pLangCode ) );
$query = "DELETE FROM `".BIT_DB_PREFIX."i18n_languages` WHERE `lang_code`=?";
$result = $this->mDb->query( $query, array( $pLangCode ) );
$this->mDb->CompleteTrans();
}
}
function expungeMasterString( $pSourceHash ) {
if( !empty( $pSourceHash ) ) {
$this->mDb->StartTrans();
$query = "DELETE FROM `".BIT_DB_PREFIX."i18n_strings` WHERE `source_hash`=?";
$result = $this->mDb->query( $query, array( $pSourceHash ) );
$query = "DELETE FROM `".BIT_DB_PREFIX."i18n_masters` WHERE `source_hash`=?";
$result = $this->mDb->query( $query, array( $pSourceHash ) );
$this->mDb->CompleteTrans();
return TRUE;
}
}
function getImportedLanguages() {
$ret = array();
if( $rs = $this->mDb->query( 'SELECT DISTINCT(`lang_code`) AS `lang_code` FROM `'.BIT_DB_PREFIX.'i18n_strings`' ) ) {
$res = array();
while( !$rs->EOF ) {
$res[] = $rs->fields['lang_code'];
$rs->MoveNext();
}
$langs = $this->listLanguages();
foreach( $res as $langCode ) {
$ret[$langCode] = $langs[$langCode];
}
}
return $ret;
}
function listLanguages( $pListDisabled=TRUE, $pListOnlyImportable=FALSE ) {
$whereSql = '';
$langs = array();
if( !$pListDisabled ) {
$whereSql = " WHERE `is_disabled` IS NULL ";
}
$ret = $this->mDb->getAssoc( "SELECT il.`lang_code` AS `hash_key`, il.* FROM `".BIT_DB_PREFIX."i18n_languages` il $whereSql ORDER BY il.`lang_code`" );
if( !empty( $ret ) ) {
foreach( array_keys( $ret ) as $langCode ) {
if( $langCode != 'en' && !$this->isImportFileAvailable( $langCode ) && $pListOnlyImportable )
continue;
$ret[$langCode]['translated_name'] = $this->translate( $ret[$langCode]['english_name'] );
$ret[$langCode]['full_name'] = $ret[$langCode]['native_name'].' ('.$this->translate( $ret[$langCode]['english_name'] ).', '.$langCode.')';
$langs[$langCode] = $ret[$langCode];
}
}
return $langs;
}
function verifyMastersLoaded() {
// see if there is anything in the table
$query = "SELECT COUNT(`source_hash`) FROM `".BIT_DB_PREFIX."i18n_masters`";
$count = $this->mDb->getOne($query);
if( empty( $count ) ) {
$this->importMasterStrings();
}
}
function masterStringExists( $pSourceHash ) {
return( !empty( $this->mStrings['master'][$pSourceHash] ) );
}
function searchMasterStrings( $pQuerySource ) {
$query = "SELECT im.`source_hash` AS `hash_key`, `source`, `package`, im.`source_hash`
FROM `".BIT_DB_PREFIX."i18n_masters` im
WHERE UPPER( `source` ) LIKE ? ORDER BY im.`source`";
return( $this->mDb->getAssoc( $query, array( '%'.strtoupper( $pQuerySource ).'%' ) ) );
}
function loadMasterStrings( $pSourceHash = NULL ) {
$this->verifyMastersLoaded();
$bindVars = NULL;
$whereSql = NULL;
if( $pSourceHash ) {
$whereSql = ' WHERE `source_hash`=? ';
$bindVars = array( $pSourceHash );
}
$query = "SELECT im.`source_hash` AS `hash_key`, `source`, `package`, im.`source_hash`
FROM `".BIT_DB_PREFIX."i18n_masters` im
$whereSql ORDER BY im.`source`";
$this->mStrings['master'] = $this->mDb->getAssoc( $query, $bindVars );
}
function storeMasterString( $pParamHash ) {
global $gBitSmarty;
if( !empty( $gBitSmarty->mCompileRsrc ) ) {
list($type, $location) = split( ':', $gBitSmarty->mCompileRsrc );
list($package, $file) = split( '/', $location );
} else {
$package = NULL;
}
$this->mDb->StartTrans();
$newSourceHash = $this->getSourceHash( $pParamHash['new_source'] );
if( $this->masterStringExists( $newSourceHash ) ) {
$oldCount = $this->mDb->getOne( "SELECT COUNT(`source_hash`) FROM `".BIT_DB_PREFIX."i18n_strings` WHERE `source_hash`=?", array( $pParamHash['source_hash'] ) );
$newCount = $this->mDb->getOne( "SELECT COUNT(`source_hash`) FROM `".BIT_DB_PREFIX."i18n_strings` WHERE `source_hash`=?", array( $newSourceHash ) );
if( $newCount ) {
$this->mErrors['master'] = 'There was a conflict updating the master string. The new string already has translations entered.';
} else {
// we have updated a master string to an existing master string
$query = "UPDATE `".BIT_DB_PREFIX."i18n_strings` SET `source_hash`=?, `last_modified`=? WHERE `source_hash`=?";
$trans = $this->mDb->query($query, array( $newSourceHash, time(), $pParamHash['source_hash'] ) );
$query = "DELETE FROM `".BIT_DB_PREFIX."i18n_masters` WHERE `source_hash`=?";
$trans = $this->mDb->query($query, array( $pParamHash['source_hash'] ) );
}
} elseif( $this->masterStringExists( $pParamHash['source_hash'] ) ) {
$query = "UPDATE `".BIT_DB_PREFIX."i18n_strings` SET `source_hash`=?, `last_modified`=? WHERE `source_hash`=?";
$trans = $this->mDb->query($query, array( $newSourceHash, time(), $pParamHash['source_hash'] ) );
$query = "UPDATE `".BIT_DB_PREFIX."i18n_masters` SET `source_hash`=?, `source`=?, `created`=? WHERE `source_hash`=?";
$trans = $this->mDb->query($query, array( $newSourceHash, $pParamHash['new_source'], time(), $pParamHash['source_hash'] ) );
unset( $this->mStrings[$pParamHash['source_hash']] );
} else {
$query = "INSERT INTO `".BIT_DB_PREFIX."i18n_masters` (`source`,`source_hash`, `created`, `package`) VALUES (?,?,?,?)";
$trans = $this->mDb->query($query, array( $pParamHash['new_source'], $this->getSourceHash( $pParamHash['new_source'] ), time(), $package ) );
}
if( count( $this->mErrors ) == 0 ) {
$this->mStrings['master'][$newSourceHash]['source'] = $pParamHash['new_source'];
$this->mStrings['master'][$newSourceHash]['source_hash'] = $newSourceHash;
}
$this->mDb->CompleteTrans();
return( count( $this->mErrors ) == 0 );
}
function importMasterStrings( $pOverwrite=FALSE ) {
global $lang;
$count = 0;
include_once ( LANGUAGES_PKG_PATH.'lang/masters.php' );
foreach( $lang as $key=>$val ) {
$sourceHash = $this->getSourceHash( $key );
$query = "SELECT * FROM `".BIT_DB_PREFIX."i18n_masters` WHERE `source_hash`=?";
$trans = $this->mDb->getAssoc($query, array( $sourceHash ) );
if( $trans ) {
if( $pOverwrite ) {
$query = "UPDATE `".BIT_DB_PREFIX."i18n_masters` SET `source`=?, `created`=? WHERE `source_hash`=?";
$trans = $this->mDb->query($query, array( $val, time(), $sourceHash ) );
$count++;
}
} else {
$this->storeMasterString( array( 'new_source' => $val, 'source_hash' => $sourceHash ) );
$count++;
}
}
return( $count );
}
function storeTranslationString( $pLangCode, $pString, $pSourceHash ) {
$query = "DELETE FROM `".BIT_DB_PREFIX."i18n_strings` WHERE `source_hash`=? AND `lang_code`=?";
$result = $this->mDb->query( $query, array($pSourceHash, $pLangCode) );
if( !empty( $pString ) ) {
$query = "INSERT INTO `".BIT_DB_PREFIX."i18n_strings` (`lang_code`,`tran`,`source_hash`, `last_modified`) values (?,?,?,?)";
$result = $this->mDb->query( $query, array( $pLangCode, $pString, $pSourceHash, time() ) );
}
$this->mStrings[$pLangCode][$pSourceHash]['tran'] = $pString;
}
function getTranslatedStrings( $pSourceHash ) {
$query = "SELECT ist.`lang_code` AS `hash_key`, `tran`, ist.`source_hash`, ist.`lang_code`
FROM `".BIT_DB_PREFIX."i18n_strings` ist
WHERE ist.`source_hash`=?
ORDER BY ist.`lang_code`";
return( $this->mDb->getAssoc($query, array( $pSourceHash ) ) );
}
function getTranslationString( $pSourceHash, $pLangCode ) {
$this->verifyTranslationLoaded( $pLangCode );
$query = "SELECT im.`source_hash` AS `hash_key`, `source`, `tran`, im.`source_hash`
FROM `".BIT_DB_PREFIX."i18n_masters` im
LEFT OUTER JOIN `".BIT_DB_PREFIX."i18n_strings` ist ON( ist.`source_hash`=im.`source_hash` AND ist.`lang_code`=? )
WHERE im.`source_hash`=?
ORDER BY im.`source`";
return( $this->mDb->getAssoc($query, array( $pLangCode, $pSourceHash ) ) );
}
function getLanguageFile( $pLangCode ) {
return( LANGUAGES_PKG_PATH.'lang/'.$pLangCode.'/language.php' );
}
function isImportFileAvailable( $pLangCode ) {
return( file_exists( $this->getLanguageFile( $pLangCode ) ) );
}
function importTranslationStrings( $pLangCode, $pOverwrite=FALSE, $pTable='i18n_strings`', $pFile=FALSE ) {
$count = 0;
if( empty( $pFile ) ) {
if( $this->isImportFileAvailable( $pLangCode ) ) {
$pFile = $this->getLanguageFile( $pLangCode );
}
}
if( !empty ($pFile ) && file_exists( $pFile ) ) {
$this->loadMasterStrings();
// read the file and parse out the master/trans string pairs manually to prevent any evil shit from getting exec'ed
$handle = fopen( $pFile, "r" );
$line = '';
while (!feof($handle)) {
$line .= fgets( $handle );
if (preg_match(
'/([\'"])(.*?)(?<!\\\\)\1[\n\r\s]*=>[\n\r\s]*([\'"])(.*?)(?<!\\\\)\3/msS',
$line, $match )) {
$lang[stripslashes($match[2])] = stripslashes($match[4]);
$line = '';
}
}
fclose($handle);
foreach( $lang as $key=>$val ) {
$hashKey = $this->getSourceHash( $key );
if( !$this->masterStringExists( $hashKey ) ) {
$this->storeMasterString( array( 'source_hash' => $hashKey, 'new_source' => $key ) );
}
$trans = $this->lookupTranslation( $key, $pLangCode, FALSE );
if( !is_null( $trans ) ) {
if( $pOverwrite ) {
$query = "UPDATE `".BIT_DB_PREFIX."i18n_strings` SET `tran`=?, `last_modified`=? WHERE `source_hash`=? AND `lang_code`=?";
$trans = $this->mDb->query($query, array( $val, time(), $hashKey, $pLangCode ) );
$count++;
} elseif( !empty( $val ) && strtolower( $trans ) != strtolower( $val ) ) {
$this->mImportConflicts[$pLangCode][$hashKey]['import'] = $val;
$this->mImportConflicts[$pLangCode][$hashKey]['existing'] = $trans;
if( !empty( $this->mStrings['master'][$hashKey]['source'] ) ) {
$this->mImportConflicts[$pLangCode][$hashKey]['master'] = $this->mStrings['master'][$hashKey]['source'];
}
}
} elseif( !empty( $val ) && (strtolower( $key ) != strtolower( $val )) ) {
$query = "INSERT INTO `".BIT_DB_PREFIX."i18n_strings` (`tran`,`source_hash`,`lang_code`,`last_modified`) VALUES (?,?,?,?)";
$trans = $this->mDb->query($query, array( $val, $hashKey, $pLangCode, time() ) );
$count++;
}
}
}
return( $count );
}
function verifyTranslationLoaded( $pLangCode ) {
if ( $pLangCode ) {
// see if there is anything in the table
$query = "SELECT COUNT(`source_hash`) FROM `".BIT_DB_PREFIX."i18n_strings` ist WHERE ist.`lang_code`=?";
$count = $this->mDb->getOne($query, array( $pLangCode ) );
if( empty( $count ) ) {
$this->importTranslationStrings( $pLangCode );
}
}
}
function loadLanguage( $pLangCode ) {
$this->verifyMastersLoaded();
$this->verifyTranslationLoaded( $pLangCode );
$query = "SELECT im.`source_hash` AS `hash_key`, `source`, `tran`, im.`source_hash`, ivm.`version`
FROM `".BIT_DB_PREFIX."i18n_masters` im
LEFT OUTER JOIN `".BIT_DB_PREFIX."i18n_strings` ist ON( ist.`source_hash`=im.`source_hash` AND ist.`lang_code`=? )
LEFT OUTER JOIN `".BIT_DB_PREFIX."i18n_version_map` ivm ON( im.`source_hash`=ivm.`source_hash` )
ORDER BY im.`source`";
$this->mStrings[$pLangCode] = $this->mDb->getAssoc($query,array( $pLangCode ) );
}
function translate( $pString ) {
global $gBitTranslationHash, $gBitSystem;
$sourceHash = $this->getSourceHash( $pString );
$cacheFile = TEMP_PKG_PATH."lang/".$this->mLanguage."/".$sourceHash;
if( $this->mLanguage == 'en' ) {
$ret = $pString;
} elseif( !empty( $this->mStrings[$this->mLanguage][$sourceHash] ) ) {
$ret = $this->mStrings[$this->mLanguage][$sourceHash]['tran'];
} elseif( file_exists( $cacheFile ) && !$gBitSystem->isFeatureActive( 'interactive_translation' ) ) {
$ret = file_get_contents( $cacheFile );
} else {
if( empty( $this->mStrings[$this->mLanguage] ) ) {
$this->verifyTranslationLoaded( $this->mLanguage );
}
$tran = $this->lookupTranslation( $pString, $this->mLanguage );
if( empty( $tran ) ) {
// lookup failed. let's snag the first part of the langCode if it is a dialect (e.g. pt-br )
$dialect = strpos( $this->mLanguage, '-' );
if( $dialect ) {
$tran = $this->lookupTranslation( $pString, substr( $this->mLanguage, 0, $dialect ) );
}
if( empty( $tran ) ) {
$tran = $pString;
}
}
// write out the cache - translated or not so we don't keep hitting the database
mkdir_p( dirname( $cacheFile ) );
$fp = fopen( $cacheFile, 'w' );
fwrite( $fp, $tran );
fclose( $fp );
$this->mStrings[$this->mLanguage][$sourceHash]['tran'] = $tran;
$ret = $tran;
}
// interactive translation process
if( $gBitSystem->isFeatureActive( 'interactive_translation' ) ) {
if( empty( $gBitTranslationHash ) ) {
$gBitTranslationHash = array();
}
if( !$index = array_search( $sourceHash, $gBitTranslationHash ) ) {
$gBitTranslationHash[] = $sourceHash;
$index = count( $gBitTranslationHash ) - 1;
}
$ret .= '_'.$index;
}
return $ret;
}
function lookupTranslation( $pString, $pLangCode, $pOverrideUsage = TRUE ) {
global $gBitSystem;
$sourceHash = $this->getSourceHash( $pString );
if ( $pLangCode ) {
$query = "SELECT `tran`, ivm.`version`, ivm.`source_hash` AS `usage_source_hash`
FROM `".BIT_DB_PREFIX."i18n_masters` im
LEFT OUTER JOIN `".BIT_DB_PREFIX."i18n_version_map` ivm ON( ivm.`source_hash`=im.`source_hash` AND ivm.`version`=? )
LEFT OUTER JOIN `".BIT_DB_PREFIX."i18n_strings` ist ON( im.`source_hash`=ist.`source_hash` AND `lang_code`=? )
WHERE im.`source_hash`=?";
$ret = $this->mDb->getRow($query, array( BIT_MAJOR_VERSION, $pLangCode, $sourceHash ) );
if( $pOverrideUsage && $gBitSystem->isFeatureActive( 'record_untranslated' ) ) {
$query = "SELECT `source_hash` FROM `".BIT_DB_PREFIX."i18n_masters` WHERE `source_hash`=?";
$source = $this->mDb->getOne($query, array( $this->getSourceHash( $pString ) ) );
if( empty( $source ) ) {
$this->storeMasterString( array( 'source_hash' => $this->getSourceHash( $pString ), 'new_source' => $pString ) );
}
}
if( $pOverrideUsage && $gBitSystem->isFeatureActive( 'track_translation_usage' ) ) {
if( empty( $ret['usage_source_hash'] ) ) {
$query = "INSERT INTO `".BIT_DB_PREFIX."i18n_version_map` (`source_hash`,`version`) VALUES (?,?)";
$trans = $this->mDb->query($query, array( $sourceHash, BIT_MAJOR_VERSION ) );
}
}
}
return (isset( $ret['tran'] ) ? $ret['tran'] : NULL );
}
function getSourceHash( $pString ) {
return( md5( strtolower( trim( $pString ) ) ) );
}
function clearCache() {
unlink_r( TEMP_PKG_PATH."lang/" );
unlink_r( TEMP_PKG_PATH."templates_c/" );
}
}
?>
|