Changeset 15960
- Timestamp:
- 04/05/08 19:20:35 (6 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/midcom/midcom.helper.datamanager2/locale/default.de.txt
r15646 r15960 89 89 ---STRINGEND 90 90 91 ---STRING type php: parse error in line %s 92 Parse Error in Zeile %s 93 ---STRINGEND 94 91 95 ---STRING type number: value must not be larger then %s 92 96 Der Wert dieses Feldes darf nicht gröÃer als %s sein. trunk/midcom/midcom.helper.datamanager2/locale/default.en.txt
r15646 r15960 117 117 ---STRINGEND 118 118 119 ---STRING type php: parse error in line %s 120 Parse Error in line %s 121 ---STRINGEND 122 119 123 ---STRING type number: value must not be larger then %s 120 124 The value of this field may not be larger then %s. trunk/midcom/midcom.helper.datamanager2/type/php.php
r15380 r15960 121 121 if (strstr($parse_results, 'Parse error')) 122 122 { 123 $this->validation_error = $this->_l10n->get('type php: parse error'); 123 $line = preg_replace('/\n.+?on line (\d+?)\n.*\n/', '\1', $parse_results); 124 $this->validation_error = sprintf($this->_l10n->get('type php: parse error in line %s'), $line); 125 124 126 debug_pop(); 125 127 return false;
