GettextLocalizations.fromPO constructor

GettextLocalizations.fromPO(
  1. String poContent
)

Write the translations from a PO file to the Gettext instance

Implementation

GettextLocalizations.fromPO(String poContent) {
  _gt.addLocale(po.parse(poContent));
}