Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Open Wallpaper Engine, navigate to the wallpaper, right click > Open in Explorer > assets > js > custom.js (open with Notepad).
Ctrl-F "weather-text" and you'll see 3 places that need to be rounded in this line; "temp", "low", and "high". You need to wrap those with "Math.round(x)" where you fill in the x with temp, low, or high.
E.g. Math.round(temp) and Math.round(low) and Math.round(high)
Here's the full line you can copy/paste over the original line of javascript code:
$('#weather-text').html(main + ", " + Math.round(temp) + "°F" + (hilow ? " (↓ " + Math.round(low) + "°F, ↑ " + Math.round(high) + "°F)" : ""));
$('#weather-text').html(main + ", " + temp + "°C" + (hilow ? " (↓ " + low + "°C, ↑ " + high + "°C)" : ""));.
Make sure to change all the 'C's to 'F' in this line so that the temperature is displayed correctly. After this just save and restart Wallpaper Engine and it should now be in Fahrenheit!