-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo-overriding.monkey2
71 lines (44 loc) · 1.2 KB
/
demo-overriding.monkey2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
Namespace jentos.locale.demo.overriding
#Import "<std>"
#Import "<mojo>"
#Import "<mojox>"
#Import "Localization"
#Import "assets/"
Using std..
Using mojo..
Using mojox..
Using jentos.locale..
Function Main()
' we can load single file format
Locale.Load( "asset::translation.json","en" )
' or directory format
'Locale.Load( "asset::locale/","en" )
New AppInstance
New MyWindow
App.Run()
End
Class MyWindow Extends Window
Method New()
Super.New( "",640,480,WindowFlags.Resizable )
' let's override hint text for english lang
Locale.AddOverrided( "en","hint","HINT: press Enter bla-bla..." )
' update window title via lambda-binding
Localized( "app-title",Lambda( t:String )
Title=t
End )
_hint=New LocString( "hint" )
' all binded keys will be refreshed if 4th param is True (by default)
Locale.AddOverrided( "en","app-title","Overriding demo",True )
End
Method OnRender( canvas:Canvas ) Override
' use LocString as a plain string here
canvas.DrawText( _hint,20,120 )
If Keyboard.KeyHit( Key.Enter )
Local lang:=Locale.Lang="en" ? "ru" Else "en"
Locale.SetLang( lang )
Endif
RequestRender()
End
Private
Field _hint:LocString
End