| 122 |
* |
* |
| 123 |
*/ |
*/ |
| 124 |
function google_translation_postprocess($translate) { |
function google_translation_postprocess($translate) { |
| 125 |
|
$translate->translation = str_replace('<', '<', $translate->translation); |
| 126 |
|
$translate->translation = str_replace('>', '>', $translate->translation); |
| 127 |
|
$translate->translation = str_replace('</ ', '</', $translate->translation); |
| 128 |
|
$translate->translation = str_replace('"', '"', $translate->translation); |
| 129 |
|
$translate->translation = str_replace('<br>', '', $translate->translation); |
| 130 |
|
$translate->translation = str_replace('<br />', '', $translate->translation); |
| 131 |
|
$translate->translation = str_replace('# ', '#', $translate->translation); |
| 132 |
return $translate; |
return $translate; |
| 133 |
} |
} |
| 134 |
|
|