Hi, I resolve the same problem by removing ' in translation file fr_FR.php (french language).
Like this :
'No more topics to display!' => 'Pas d autre sujet à afficher!',
before I try this :
'No more topics to display!' => 'Pas d\'autre sujet à afficher!',
with backslash before the single quote.
The translation is included in javascript so that when the simple quote occur it break the javascript CODOFVAR var.
<script type="text/javascript">
CODOFVAR = {
no_more_posts: 'Pas d'autre sujet à afficher!',
no_posts: 'Aucun sujet trouvé pour vos critères de recherche !',
subcategory_dropdown: 'hidden',
num_posts_per_page: '30',
total: 0,
last_page: 'dernière page'
};
</script>
Wish it will help
Hi, I resolve the same problem by removing ' in translation file fr_FR.php (french language).
Like this :
'No more topics to display!' => 'Pas **d a**utre sujet à afficher!',
before I try this :
'No more topics to display!' => 'Pas **d\'a**utre sujet à afficher!',
with backslash before the single quote.
The translation is included in javascript so that when the simple quote occur it break the javascript CODOFVAR var.
<script type="text/javascript">
CODOFVAR = {
no_more_posts: 'Pas **d'a**utre sujet à afficher!',
no_posts: 'Aucun sujet trouvé pour vos critères de recherche !',
subcategory_dropdown: 'hidden',
num_posts_per_page: '30',
total: 0,
last_page: 'dernière page'
};
</script>
Wish it will help
edited Sep 13 '17 at 2:06 pm