Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make Diacritics strings translatable. (1803) #1809

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,24 @@

<?php slot('sidebar'); ?>

<?php echo get_component('settings', 'menu'); ?>
<?php echo get_component('settings', 'menu'); ?>

<?php end_slot(); ?>

<?php slot('title'); ?>
<h1>
<?php echo __('Diacritics settings'); ?>
</h1>

<h1><?php echo __('Diacritics settings'); ?></h1>

<?php end_slot(); ?>

<?php slot('content'); ?>

<div class="alert alert-info">
<p>
<?php echo __('Please rebuild the search index after uploading diacritics mappings.'); ?>
</p>
<pre>$ php symfony search:populate</pre>
</div>
<div class="alert alert-info">
<p><?php echo __('Please rebuild the search index if you are adding new languages.'); ?></p>
<pre>$ php symfony search:populate</pre>
</div>

<?php echo $form->renderGlobalErrors(); ?>
<?php echo $form->renderGlobalErrors(); ?>

<?php echo $form->renderFormTag(url_for(['module' => 'settings', 'action' => 'diacritics'])); ?>

Expand Down
Loading