Sometimes In PHP code I encounter phrase wrapped into _() like this _('some phrase') what does _() mean ?
_()
_('some phrase')
thanks
That is a short-hand for gettext() function in PHP.
gettext()
_('some phrase') -> gettext('some phrase')
gettext('some phrase')
PHP Gettext docs