Hi all,
I have also translated the names labels but it is showing a strange problem. I have edited my functions.php to look like this (Danish):
But the Partly Cloudy is beeing tanslated to Partly Overskyet ?
I dont get it why it doesnt translate the entire sentence.
See site here: https://www.buresoebanden.dk/
Any ideas ??
function replace_weather($content) {
$content = str_replace(‘Chance of Flurries’, ‘Mulighed for Sne’, $content);
$content = str_replace(‘Chance of Rain’, ‘Mulighed for Regn’, $content);
$content = str_replace(‘Chance of Freezing Rain’, ‘Mulighed for Isslag’, $content);
$content = str_replace(‘Chance of Sleet’, ‘Mulighed for Slud’, $content);
$content = str_replace(‘Chance of Snow’, ‘Mulighed for Sne’, $content);
$content = str_replace(‘Chance of Thunderstorms’, ‘Mulighed for Torden’, $content);
$content = str_replace(‘Chance of a Thunderstorm’, ‘Mulighed for Torden’, $content);
$content = str_replace(‘Clear’, ‘Klart vejer’, $content);
$content = str_replace(‘Cloudy’, ‘Overskyet’, $content);
$content = str_replace(‘Flurries’, ‘Sne’, $content);
$content = str_replace(‘Fog’, ‘T?ge’, $content);
$content = str_replace(‘Haze’, ‘T?ge’, $content);
$content = str_replace(‘Mostly Cloudy’, ‘Mest Skyet’, $content);
$content = str_replace(‘Mostly Sunny’, ‘Mest Sol’, $content);
$content = str_replace(‘Partly Cloudy’, ‘Delvis Skyet’, $content);
$content = str_replace(‘Partly Sunny’, ‘Delvis Sol’, $content);
$content = str_replace(‘Freezing Rain’, ‘Isslag’, $content);
$content = str_replace(‘Rain’, ‘Regn’, $content);
$content = str_replace(‘Sleet’, ‘Slud’, $content);
$content = str_replace(‘Sunny’, ‘Sol’, $content);
$content = str_replace(‘Thunderstorms’, ‘Torden’, $content);
$content = str_replace(‘Thunderstorm’, ‘Torden’, $content);
$content = str_replace(‘Unknown’, ‘Ukendt’, $content);
$content = str_replace(‘Overcast’, ‘Overskyet’, $content);
$content = str_replace(‘Scattered Clouds’, ‘Lidt Skyet’, $content);
$content = str_replace(‘Monday’, ‘Mandag’, $content);
$content = str_replace(‘Tuesday’, ‘Tirsdag’, $content);
$content = str_replace(‘Wednesday’, ‘Onsdag’, $content);
$content = str_replace(‘Thursday’, ‘Torsdag’, $content);
$content = str_replace(‘Friday’, ‘Fredag’, $content);
$content = str_replace(‘Saturday’, ‘Lordag’, $content);
$content = str_replace(‘Sunday’, ‘Sondag’, $content);
return $content;
}
add_filter(‘wp_wunderground_forecast’, ‘replace_weather’);