Function Summary |
int |
Compare(string A, string B)
/// Compare two strings using locale-specific sorting.
|
string |
CurrencyToString(float Currency)
/// Convert a float number to a currency string using the locale's formatting instructions.
|
string |
DateToString(long T)
// Convert the date to a human-readable string, depending on the current locale.
|
string |
GetDisplayLanguage(string Language)
/// Returns the localized, human-readable display name of the ISO 3 language code Language.
native |
string |
GetLanguage()
/// Returns the currently active language's ISO 3 language code.
native |
string |
NumberToString(float Number)
/// Convert a float number to a string using the locale's formatting instructions.
|
string |
PercentToString(float Fraction)
/// Convert a fraction from 0.0-1.0 to a percentage string.
|
bool |
SetLanguage(string NewLanguage)
/// Set the current ISO 3 language. Causes all class' and objects' localized variables to be reloaded.
native |
string |
TimeToString(long T, bool Brief, bool Countdown)
/// Converts the time to a human-readable string, depending on the current locale.
|
string |
ToLower(string S)
/// Convert to locale-specific lowercase.
|
string |
ToUpper(string S)
/// Convert to locale-specific uppercase.
|