OllieWP / ollie

A finely-crafted WordPress block theme by Mike McAlister
https://olliewp.com
GNU General Public License v3.0
370 stars 49 forks source link

Theme is not internationalized #177

Open EldarAgalarov opened 1 month ago

EldarAgalarov commented 1 month ago

Text in Ollie patterns and templates are not translateable. For example paragraph in 404.html:

<p class="has-text-align-center has-secondary-color has-text-color">Unfortunately, the page you are looking for no longer exists, or has been moved. Please try searching for your content below.</p>

Must be internationalized following way:

<p class="has-text-align-center has-secondary-color has-text-color"><?php echo esc_html_x('Unfortunately, the page you are looking for no longer exists, or has been moved. Please try searching for your content below.', '404 error message', 'ollie'); ?></p>

As you can't use php inside html templates, I suggest to move all 404.html body into hidden 404.php pattern and reference to the pattern from 404.html.