"do NOT mark untranslated phrases with an asterisk (as EGw does it by default since some versions)"

This commit is contained in:
Ralf Becker 2010-03-16 16:18:41 +00:00
parent 6c7e9b0062
commit 7489a9cfb4

View File

@ -1,6 +1,6 @@
<?php <?php
/** /**
* Setup * Setup translation class
* *
* @link http://www.egroupware.org * @link http://www.egroupware.org
* @package setup * @package setup
@ -19,11 +19,20 @@ if (!defined('MAX_MESSAGE_ID_LENGTH'))
// Define prefix for langfiles (historically 'phpgw_') // Define prefix for langfiles (historically 'phpgw_')
define('EGW_LANGFILE_PREFIX', 'egw_'); define('EGW_LANGFILE_PREFIX', 'egw_');
/**
* Setup translation class
*
*/
class setup_translation class setup_translation
{ {
var $langarray = array(); var $langarray = array();
var $no_translation_marker = '*'; /**
* Marker to show behind untranslated phrases, default none
*
* @var string
*/
var $no_translation_marker = '';//'*';
/** /**
* constructor for the class, loads all phrases into langarray * constructor for the class, loads all phrases into langarray