sylvainjule / kirby-annotator

Kirby field for adding notes to images by pinning them to specific coordinates. Kirby 2 and 3.
MIT License
107 stars 9 forks source link

Percentages decimal points in French #13

Closed cadars closed 3 years ago

cadars commented 4 years ago

When having french as a site language, decimal points for the markers values get converted to commas (and then aren't valid CSS). I was able to circumvent this with a simple str_replace: <?php echo str_replace(',', '.', markerStyle($marker)) ?> but thought you'd like to know.

sylvainjule commented 4 years ago

This is a LC_NUMERIC issue. Can you try setting your locale to fr_FR.utf-8? This should fix it.

// site/config/config.php
return [
  'locale' => 'fr_FR.utf-8'
];
sylvainjule commented 3 years ago

Should be fixed by 268f1fa. Please reopen if needed!