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
//to example of LCD CustomData:
UTC = +3
//0 = your Local time, -2 = minus 2 hours, +2 or 2 = plus two hours
o/
May be add into script the pseudo UTC support? Like below:
---8<------------------------------------------------------------------------------
//to class TextPanel:
int UTC;
//to func void LoadConfig():
case "UTC":
if (!(int.TryParse(v, out UTC)))
UTC = 0;
break;
//to func void Show(Action<string> f)
DateTime bbb = DateTime.Now.AddHours(UTC);
int Second = bbb.Second;
string Hour = bbb.ToString("HH");
string Minute = bbb.ToString("mm");
--------------------------------------------------------------------------------------
Thanx anyway! One more, urs programming skill is very cool! o/ from Russia ))