Changeset 609 for trunk/includes/Locale.php
- Timestamp:
- Nov 26, 2013, 10:45:01 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/Locale.php
r608 r609 29 29 function Translate($Text) 30 30 { 31 if(array_key_exists($Text, $this->Texts->Data) )31 if(array_key_exists($Text, $this->Texts->Data) and ($this->Texts->Data[$Text] != '')) 32 32 return($this->Texts->Data[$Text]); 33 33 else return($Text); … … 96 96 ' function Load()'."\n". 97 97 ' {'."\n". 98 ' $this->Code = \' cs\';'."\n".98 ' $this->Code = \''.$this->Texts->Code.'\';'."\n". 99 99 ' $this->Data = array('."\n"; 100 100 foreach($this->Texts->Data as $Index => $Item)
Note:
See TracChangeset
for help on using the changeset viewer.