[Plugin: Weather Forecast – WP Wunderground] Turkish translation available
-
Hello,
Thanks to info provided by Zurd, I was able to translate plugin to Turkish.
Usage:
Go to plugin options, uncheck “Cache forecast results”
Go to Plugins, Editor. Edit wunderground/wunderground.php & place the translation code after:
$label = $this->format_date($date, $todaylabel, $datelabel);
and before:
$tablehead .= “\n\t\t\t\t\t\t\t”.'<th scope=”col” width=”‘.$colwi….
Translation Code:
if ( $label == ‘Sunday’ ) { $label = ‘Pazar’; }
else if ( $label == ‘Monday’ ) { $label = ‘Pazartesi’; }
else if ( $label == ‘Tuesday’ ) { $label = ‘Sal?’; }
else if ( $label == ‘Wednesday’ ) { $label = ‘?ar?amba’; }
else if ( $label == ‘Thursday’ ) { $label = ‘Per?embe’; }
else if ( $label == ‘Friday’ ) { $label = ‘Cuma’; }
else if ( $label == ‘Saturday’ ) { $label = ‘Cumartesi’; }if ( $conditions == ‘Clear’ ) { $conditions = ‘A??k’; }
else if ( $conditions == ‘Partly Cloudy’ ) { $conditions = ‘Par?al? Bulutlu’; }
else if ( $conditions == ‘Overcast’ ) { $conditions = ‘Bulutlu’; }
else if ( $conditions == ‘Thunderstorm’ ) { $conditions = ‘G?kgürültülü Sa?anak Ya???l?’; }
else if ( $conditions == ‘Chance of a Thunderstorm’ ) { $conditions = ‘G?kgürültülü Sa?anak Ya??? ?htimali’; }
else if ( $conditions == ‘Chance of Rain’ ) { $conditions = ‘Ya?mur ?htimali’; }
else if ( $conditions == ‘Mostly Cloudy’ ) { $conditions = ‘?ok Bulutlu’; }
else if ( $conditions == ‘Scattered Clouds’ ) { $conditions = ‘Az Bulutlu’; }
else if ( $conditions == ‘Fog’ ) { $conditions = ‘Sisli’; }
- The topic ‘[Plugin: Weather Forecast – WP Wunderground] Turkish translation available’ is closed to new replies.