function s_localization()
{
$var = [
'theme_assets_uri' => get_stylesheet_directory_uri() . '/assets',
'translations' => [
'view_less' => __('View Less'),
]
];
wp_localize_script('aa', 'ddd', $var);
}
add_action('wp_enqueue_scripts', 's_localization');
I have the function above. I want to translate a tring from my java script file. When i try to translate 'view less' from my java script file, the word doesn't appear in my string translation in WPML plugin. What could be the problem?