Method | Description | |
---|---|---|
GetMessage ( string msgID ) : string |
Given a msgID, returns the associated msgStr. If msgID doesn't exist in this collection, returns msgID. If the associated msgStr is empty, returns msgID.
|
|
GetMessageObject ( string msgID ) : |
Given a msgID, returns the associated msgStr. If msgID doesn't exist in this collection, returns msgID. If the associated msgStr is empty, returns msgID.
|
|
LoadFromFile ( string filepath ) : void |
Add Localization messages from a .po file. Doesn't initialize the collection, so it can be called from a loop if needed.
|
|
LoadFromReader ( TextReader reader ) : void |
Add Localization messages from the specified TextReader (which hopefully points at a .po file) Doesn't initialize the collection, so it can be called from a loop if needed.
|
|
Localization ( ) : System |
Creates a new, empty, Localization
|
|
Localization ( string filePath ) : System |
Creates a new Localization, populated from a .po file at the supplied filePath
|
|
Localization ( string filePath, bool loadComments ) : System |
Creates a new Localization, populated from a .po file at the supplied filePath. If requested, will also load comments from that file.
|
|
ToFile ( string filepath ) : void |
Writes the contents of this Localization to the specified .po file.
|
Method | Description | |
---|---|---|
Unescape ( string text ) : string |
|
Method | Description | |
---|---|---|
GetNodeType ( string line ) : NodeType |
|
public GetMessageObject ( string msgID ) : |
||
msgID | string | |
return |
public LoadFromFile ( string filepath ) : void | ||
filepath | string | |
return | void |
public LoadFromReader ( TextReader reader ) : void | ||
reader | TextReader | |
return | void |
public Localization ( string filePath ) : System | ||
filePath | string | |
return | System |
public Localization ( string filePath, bool loadComments ) : System | ||
filePath | string | |
loadComments | bool | If true, will populate comments so that this .po file can be saved again exactly as it was loaded. |
return | System |