@lingui/format-po-gettext
Version:
Gettext PO format with gettext-style plurals for Lingui Catalogs
11 lines (8 loc) • 369 B
TypeScript
import { CatalogFormatter } from '@lingui/conf';
import { PoFormatterOptions } from '@lingui/format-po';
type PoGettextFormatterOptions = PoFormatterOptions & {
disableSelectWarning?: boolean;
customICUPrefix?: string;
};
declare function formatter(options?: PoGettextFormatterOptions): CatalogFormatter;
export { type PoGettextFormatterOptions, formatter };