Hello,
can I insert a language string in to this php block?
example:
I already made a new langstring in database, dont know how to insert it?
A user from UK see in this block a link with name "ocean" and the other user from Germany see "oZean".
than you
Hi miskam, here's the code your need to insert language strings below. Save it as a separate file then insert it within your php block as an "include" for example:
can I insert a language string in to this php block?
example:
I already made a new langstring in database, dont know how to insert it?
A user from UK see in this block a link with name "ocean" and the other user from Germany see "oZean".
than you
// START
require_once( 'inc/header.inc.php' );
require_once( BX_DIRECTORY_PATH_INC . 'design.inc.php' );
echo _t( "_MY_LANGUIAGE_KEY" );
// END