|
|
|
parse(self)
Run the state machine, parse the file line by line and call process()
with the current matched symbol. |
source code
|
|
|
add(self,
symbol,
states,
next_state)
Add a transition to the state machine. |
source code
|
|
|
process(self,
symbol,
linenum)
Process the transition corresponding to the current state and the
symbol provided. |
source code
|
|
|
|
|
handle_tc(self)
Handle a translator comment. |
source code
|
|
|
handle_gc(self)
Handle a generated comment. |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
handle_mc(self)
Handle a msgid or msgstr continuation line. |
source code
|
|