PO::is_final() WordPress Method
This function checks if a PO file is final.
PO::is_final( string $context ) #
Helper function for read_entry
Parameters
- $context
(string)(Required)
Return
(bool)
Source
File: wp-includes/pomo/po.php
protected static function is_final( $context ) { return ( 'msgstr' === $context ) || ( 'msgstr_plural' === $context ); }
Expand full source codeCollapse full source codeView on TracView on GitHub