Fluent Forms eklentisinde bulunan date time elementindeki günleri ve ayları türkçe yapmak için arayan arkadaşlar var ise kendi arşivlediğim kodları paylaşıyorum. Aşağıdaki kodları temanızın funcstions.php dosyasına eklerseniz date time elementi türkçe olacaktır.

add_filter('fluentform/date_i18n', function ($strings) {
$strings = array(
'months' => [
'shorthand' => [
__('Ock', 'fluentform'),
__('Şub', 'fluentform'),
__('Mar', 'fluentform'),
__('Nis', 'fluentform'),
__('May', 'fluentform'),
__('Haz', 'fluentform'),
__('Tem', 'fluentform'),
__('Ağu', 'fluentform'),
__('Eyl', 'fluentform'),
__('Ekm', 'fluentform'),
__('Kas', 'fluentform'),
__('Ara', 'fluentform')
],
'longhand' => [
__('Ocak', 'fluentform'),
__('Şubat', 'fluentform'),
__('Mart', 'fluentform'),
__('Nisan', 'fluentform'),
__('Mayıs', 'fluentform'),
__('Haziran', 'fluentform'),
__('Temmuz', 'fluentform'),
__('Ağustos', 'fluentform'),
__('Eylül', 'fluentform'),
__('Ekim', 'fluentform'),
__('Kasım', 'fluentform'),
__('Aralık', 'fluentform')
]
],
'weekdays' => [
'longhand' => array(
__('Pazar', 'fluentform'),
__('Pazartesi', 'fluentform'),
__('Salı', 'fluentform'),
__('Çarşamba', 'fluentform'),
__('Perşembe', 'fluentform'),
__('Cuma', 'fluentform'),
__('Cumartesi', 'fluentform')
),
'shorthand' => array(
__('Pzr', 'fluentform'),
__('Pzt', 'fluentform'),
__('Sal', 'fluentform'),
__('Çrş', 'fluentform'),
__('Per', 'fluentform'),
__('Cum', 'fluentform'),
__('Cts', 'fluentform')
)
],
'amPM' => [
__('AM', 'fluentform'),
__('PM', 'fluentform')
],
);
return $strings;
});