The translations used with the wxabout.php page are separate pages named wxabout-
LL.html
There is no 'magic' to automatically translate those paes -- each one has to be done individually with your own content.
I suppose that you could use Google translate on your English page to create the text for use in the wxabout-*.html pages for all languages you don't happen to speak

My guess is that you can easily do the Norwegian (and likely Spanish) pages yourself and use Google translate on the rest.
Also, I noticed you selected 'mb' instead of 'hPa' for the Barometer units in the PHP settings.
The ajaxCUwx.js script can be modified to display that also by changing
Code: Select all
if (useunits != 'E') { // set to metric
uomTemp = '°C';
uomWind = ' km/h';
uomBaro = ' hPa';
uomRain = ' mm';
uomHeight = ' m';
dpBaro = 1;
dpRain = 1;
dpWind = 1;
}
to
Code: Select all
if (useunits != 'E') { // set to metric
uomTemp = '°C';
uomWind = ' km/h';
uomBaro = ' mb';
uomRain = ' mm';
uomHeight = ' m';
dpBaro = 1;
dpRain = 1;
dpWind = 1;
}
then the display won't change from mb to hPa when the AJAX cuts in.
I do recommend you use the flyout-menu instead of the menubar-based menu .. there are other pages automatically enabled with Cumulus (and the trends page disabled) if you use the flyout-menu instead.
Best regards,
Ken