This repository has been archived by the owner on Sep 15, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Info.plist
69 lines (68 loc) · 3.01 KB
/
Info.plist
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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleIconFile</key>
<string>icon.pdf</string>
<key>CFBundleIdentifier</key>
<string>com.ngochin.inputmethod.BoGo</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>BoGo</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.0</string>
<key>NSMainNibFile</key>
<string>MainMenu</string>
<key>NSPrincipalClass</key>
<string>NSApplication</string>
<!-- -->
<!-- -->
<!-- Begin the require entries for InputMethodKit based input methods -->
<!-- -->
<!-- -->
<!-- Input Methods are background only applications -->
<key>LSBackgroundOnly</key>
<string>1</string>
<!-- -->
<!-- An InputMethodConnectionName must be specified -->
<!-- This string names the connection through which you services as an input method are published. -->
<!-- The InputMethodKit will use this name to create an NSConnection that clients connect to in order -->
<!-- to deliver text input. -->
<!-- -->
<key>InputMethodConnectionName</key>
<string>Bogo_1_Connection</string>
<!-- -->
<!-- The next step is to specify an input controller class -->
<!-- The InputMethodKit searches your bundle for the key InputMethodServerControllerClass -->
<!-- -->
<key>InputMethodServerControllerClass</key>
<string>BogoController</string>
<!-- -->
<!-- Specify an icon file. This is used to display your input method in the International Preference Input Menu panel. -->
<!-- -->
<key>tsInputMethodIconFileKey</key>
<string>icon.pdf</string>
<!-- -->
<!-- The next required entry in the Info.plist XML file is your input method's character repertoire. -->
<!-- This is an array of ISO language codes -->
<!-- These codes help to categorize your input method to the user. -->
<key>tsInputMethodCharacterRepertoireKey</key>
<array>
<string>Latn</string>
</array>
<key>TISIntendedLanguage</key>
<string>vi</string>
<!-- -->
<!-- -->
<!-- End of required entries -->
<!-- -->
<!-- -->
</dict>
</plist>