GP_Translation::fix_translation PHP Method

fix_translation() public method

public fix_translation ( $translation )
    public function fix_translation($translation)
    {
        // When selecting some browsers take the newlines and some don't
        // that's why we don't want to insert too many newlines for each ↵.
        $translation = str_replace("↵\n", '↵', $translation);
        $translation = str_replace('↵', "\n", $translation);
        // When selecting some browsers take the tab and some don't
        // that's why we don't want to insert too many tabs for each ↵.
        $translation = str_replace("→\t", '→', $translation);
        $translation = str_replace('→', "\t", $translation);
        return $translation;
    }