Hi Niko
I had already done that, well, for the cloud-height script and theres a few for the language
translations lower down, perhaps its somehow picking up from there even though it shouldnt
as i am only using English for both the Saratoga and the cloud height scipts, i think theres
something wrong somewhere?
// Wind rose directions --------------------------------------------------------
// will use language-??.txt files for translations if part of the Saratoga World Multilingual script templates
// otherwise if standalone then translate here (i.e. alter it here otherwise no need to)
if ($translateTo='de') { // German
$langWindDir = array(
"N", "NNO", "NO", "ONO",
"O", "OSO", "SO", "SSO",
"S", "SSW", "SW", "WSW",
"W", "WNW", "NW", "NNW");
} else
if ($translateTo='es') { // Spanish
$langWindDir = array(
"N", "NNE", "NE", "ENE",
"E", "ESE", "SE", "SSE",
"S", "SSO", "SO", "OSO",
"O", "ONO", "NO", "NNO");
} else
if ($translateTo='fi') { // Finnish
$langWindDir = array(
"P", "PKO", "KO", "IKO",
"I", "IKA", "KA", "EKA",
"E", "ELO", "LO", "LLO",
"L", "LLU", "LU", "PLU");
} else
if ($translateTo='nn' || $translateTo='no') { // Norwegian
$langWindDir = array(
"N", "NNØ", "NØ", "ØNØ",
"Ø", "ØSØ", "SØ", "SSØ",
"S", "SSV", "SV", "VSV",
"V", "VNV", "NV", "NNV");
} else
if ($translateTo='sv' || $translateTo='se') { // Swedish
$langWindDir = array(
"N", "NNO", "NO", "ONO",
"O", "OSO", "SO", "SSO",
"S", "SSV", "SV", "VSV",
"V", "VNV", "NV", "NNV");
} else { // English (default)
$langWindDir = array(
"N", "NNE", "NE", "ENE",
"E", "ESE", "SE", "SSE",
"S", "SSW", "SW", "WSW",
"W", "WNW", "NW", "NNW");
}
Could be any of those that are causing it?