Gettext_Translations::gettext_select_plural_form()
最后更新于:2021-11-25 19:51:31
Gettext_Translations::gettext_select_plural_form( int$count)The gettext implementation of select_plural_form.
参数
- $count
-
(int) (Required)
源文件
文件: gc-includes/pomo/translations.php
function gettext_select_plural_form( $count ) {
if ( ! isset( $this->_gettext_select_plural_form ) || is_null( $this->_gettext_select_plural_form ) ) {
list( $nplurals, $expression ) = $this->nplurals_and_expression_from_header( $this->get_header( 'Plural-Forms' ) );
$this->_nplurals = $nplurals;
$this->_gettext_select_plural_form = $this->make_plural_form_function( $nplurals, $expression );
}
return call_user_func( $this->_gettext_select_plural_form, $count );
}