You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please add the exact versions used for each of the following:
WP Emerge Starter Plugin: 0.16.1
WP Emerge (if not the default): 0.16.0
WordPress: 5.4.2
PHP: 7.4
Expected behavior
Text domain should be added automatically to WP translations function such as __($string), _e($e), etc. when using the textdomain command and be added to the .pot file when using the pot command.
Actual behavior
Text domain is not added in blade files, but is in php files and class.
Version
Please add the exact versions used for each of the following:
Expected behavior
Text domain should be added automatically to WP translations function such as __($string), _e($e), etc. when using the textdomain command and be added to the .pot file when using the pot command.
Actual behavior
Text domain is not added in blade files, but is in php files and class.
Steps to reproduce (in case of a bug)
Work around
Instead of using
{{__('hello world')}}
you can use the classic php way<?php echo __('hello world')?>
or<?= __('hello world')?>
(short syntax)The text was updated successfully, but these errors were encountered: