PO::is_finalprotected staticWP 1.0

Helper function for read_entry

Method of the class: PO{}

No Hooks.

Returns

true|false.

Usage

$result = PO::is_final( $context );
$context(string) (required)
.

PO::is_final() code WP 7.0

protected static function is_final( $context ) {
	return ( 'msgstr' === $context ) || ( 'msgstr_plural' === $context );
}