blob: 92e713df4d2c28faa08af82356513e520b18af6b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php
/**
* Smarty plugin
* @package Smarty
* @subpackage plugins
*/
/**
* Smarty plugin
* -------------------------------------------------------------
* File: block.translate.php
* Type: block
* Name: translate
* Purpose: translate a block of text
* -------------------------------------------------------------
*/
//global $lang;
//include_once('lang/language.php');
function smarty_block_tr( $pParams, $pContent, &$gBitSmarty ) {
echo( tra( $pContent ) );
}
?>
|