Make WordPress Core


Ignore:
Timestamp:
02/22/2010 11:12:48 PM (14 years ago)
Author:
markjaquith
Message:

Whitespace cleanup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/pomo/po.php

    r13228 r13316  
    1919if ( !class_exists( 'PO' ) ):
    2020class PO extends Gettext_Translations {
    21    
     21
    2222
    2323    /**
     
    107107        return $po;
    108108    }
    109    
     109
    110110    /**
    111111     * Gives back the original string from a PO-formatted string
     
    218218        return $res !== false;
    219219    }
    220    
     220
    221221    function read_entry($f, $lineno = 0) {
    222222        $entry = new Translation_Entry();
     
    323323        return array('entry' => $entry, 'lineno' => $lineno);
    324324    }
    325    
     325
    326326    function read_line($f, $action = 'read') {
    327327        static $last_line = '';
     
    340340        return $line;
    341341    }
    342    
     342
    343343    function add_comment_to_entry(&$entry, $po_comment_line) {
    344344        $first_two = substr($po_comment_line, 0, 2);
     
    354354        }
    355355    }
    356    
     356
    357357    function trim_quotes($s) {
    358358        if ( substr($s, 0, 1) == '"') $s = substr($s, 1);
Note: See TracChangeset for help on using the changeset viewer.