array( 'Hero Section with CTA' => 'Section Héros avec Appel à l\'Action', 'Featured Posts Grid' => 'Grille d\'Articles Vedettes', 'About Section with Image' => 'Section À Propos avec Image', 'Newsletter Signup Section' => 'Section d\'Inscription Newsletter', 'Call to Action Banner' => 'Bannière d\'Appel à l\'Action', 'AI Blog Patterns' => 'Modèles Ai Blog', 'Clear AI Blog Cache' => 'Vider le Cache Ai Blog', 'Cache cleared successfully' => 'Cache vidé avec succès', 'Menu' => 'Menu', 'Close' => 'Fermer', ) ); $locale = get_locale(); if (isset($translations[$locale][$string])) { return $translations[$locale][$string]; } return $string; } /** * Add RTL support detection (though French is LTR) */ function ai_blog_language_direction_class($classes) { $locale = get_locale(); // Add language-specific classes $classes[] = 'lang-' . substr($locale, 0, 2); $classes[] = 'locale-' . str_replace('_', '-', strtolower($locale)); return $classes; } add_filter('body_class', 'ai_blog_language_direction_class'); /** * French number formatting */ function ai_blog_french_number_format($number) { if (get_locale() === 'fr_FR') { return number_format_i18n($number); } return $number; } /** * Add language switcher support (if WPML or Polylang is active) */ function ai_blog_language_switcher() { // WPML support if (function_exists('icl_get_languages')) { $languages = icl_get_languages('skip_missing=0&orderby=code'); if (!empty($languages)) { echo '