Ejemplo n.º 1
0
 public Dictionary<string, string> ParseIntoDictionary(TextReader reader)
 {
     DictionaryGettextParserRequestor dictionaryGettextParserRequestor = new DictionaryGettextParserRequestor();
     this.Parse(reader, dictionaryGettextParserRequestor);
     return dictionaryGettextParserRequestor;
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Parses an input po file into a dictionary.
 /// </summary>
 public Dictionary<String, String> ParseIntoDictionary(TextReader reader)
 {
     var requestor = new DictionaryGettextParserRequestor();
     Parse(reader, requestor);
     return requestor;
 }