forked from talkingmoose/jamf-manifests
-
Notifications
You must be signed in to change notification settings - Fork 3
/
macOS Automatic Text Corrections (.GlobalPreferences).json
67 lines (67 loc) · 2.54 KB
/
macOS Automatic Text Corrections (.GlobalPreferences).json
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
{
"title": "macOS Automatic Text Corrections (.GlobalPreferences)",
"description": "Preference settings for system-wide automatic text replacements: Correct spelling automatically, Capitalize words automatically, Add period with double-space, Touch Bar typing suggestions and Use smart quotes and dashes. Corresponds to System Preferences > Keyboard > Text tab.",
"__feedback": "[email protected]",
"properties": {
"NSAutomaticCapitalizationEnabled": {
"title": "Automatic Capitalization",
"description": "Capitalize words automatically.",
"property_order": 5,
"type": "integer",
"options": {
"enum_titles": ["On", "Off"]
},
"enum": [1,0]
},
"NSAutomaticDashSubstitutionEnabled": {
"title": "Automatic Dash Substitution",
"description": "Use smart dashes. Replace double-dashes with emdash.",
"property_order": 10,
"type": "integer",
"options": {
"enum_titles": ["On", "Off"]
},
"enum": [1,0]
},
"NSAutomaticPeriodSubstitutionEnabled": {
"title": "Automatic Period Substitution",
"description": "Convert double-space to period.",
"property_order": 15,
"type": "integer",
"options": {
"enum_titles": ["On", "Off"]
},
"enum": [1,0]
},
"NSAutomaticQuoteSubstitutionEnabled": {
"title": "Automatic Quote Substitution",
"description": "Use smart quotes. Replace straight quotes with curly quotes.",
"property_order": 20,
"type": "integer",
"options": {
"enum_titles": ["On", "Off"]
},
"enum": [1,0]
},
"NSAutomaticSpellingCorrectionEnabled": {
"title": "Automatic Spelling Correction",
"description": "Correct spelling automatically.",
"property_order": 25,
"type": "integer",
"options": {
"enum_titles": ["On", "Off"]
},
"enum": [1,0]
},
"NSAutomaticTextCompletionEnabled": {
"title": "Automatic Text Completion",
"description": "Suggest corrections and replace text automatically.",
"property_order": 30,
"type": "integer",
"options": {
"enum_titles": ["On", "Off"]
},
"enum": [1,0]
}
}
}