ApplicationLocalize Method |
Localizes the specified text for the current locale, or provide alternative text for system supplied strings.
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public string Localize(
Object source,
string text
)
Public Function Localize (
source As Object,
text As String
) As String
member Localize :
source : Object *
text : string -> string
Parameters
- source
- Type: SystemObject
Source widget to localize for. - text
- Type: SystemString
English text to localize.
Return Value
Type:
StringThe localized text.
Remarks
This depends on your custom implementation for the
LocalizeString event.
You can provide your own localization for system-supplied strings or change the strings to your own liking.
See Also