-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconst.go
145 lines (116 loc) · 2.54 KB
/
const.go
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
package main
const (
ANCHOR string = "ANCHOR"
CATEGORIES string = "CATEGORIES"
CATEGORY string = "CATEGORY"
CODES string = "CODES"
DESCRIPTION string = "DESCRIPTION"
EMOJIPEDIA string = "EMOJIPEDIA"
EMOJI string = "EMOJI"
IMAGE string = "IMAGE"
HREF string = "HREF"
KEYWORDS string = "KEYWORDS"
NUMBER string = "NUMBER"
SUBCATEGORIES string = "SUBCATEGORIES"
SUBCATEGORY string = "SUBCATEGORY"
UNICODE string = "UNICODE"
)
const (
A string = "-A"
)
const (
B string = "-B"
BUILD string = "BUILD"
)
const (
C string = "-C"
CC string = C + "C"
)
const (
D string = "-D"
)
const (
E string = "-E"
EE string = E + "E"
)
const (
G string = "-G"
GET string = "GET"
)
const (
H string = "-H"
HELP string = "HELP"
)
const (
I string = "-I"
)
const (
K string = "-K"
KEYS string = "KEYS"
)
const (
L string = "-L"
LIST string = "LIST"
)
const (
N string = "-N"
)
const (
P string = "-P"
POSITION string = "POSITION"
)
const (
R string = "-R"
REMOVE string = "REMOVE"
)
const (
S string = "-S"
SS string = S + "S"
)
const (
T string = "-T"
TABLE string = "TABLE"
)
const (
U string = "-U"
)
const (
param string = " [%s %s]\t%s"
)
const (
categoriesDescription string = "browse categorical insights"
)
const (
categoryDescription string = "access a specific category"
)
const (
emojiDescription string = "access a specific unicode emoji character"
)
const (
emojipediaDescription string = "explore the emoji catalogue"
)
const (
keywordsDescription string = "see emojis classified by keywords"
)
const (
subcategoriesDescription string = "browse subcategorical insights"
)
const (
subcategoryDescription string = "access a specific subcategory"
)
const (
errorCannotFind string = "cannot find dependency \"%s\". content either missing or not built"
errorCannotOpen string = "cannot open \"%s\"; encountered unexpected error \"%s\""
errorRemovePackage string = "cannot remove \"%s\"; encountered error \"%s\""
)
const (
statusBuildPackage string = "attempting to build \"%s\" package"
statusRemovePackage string = "attempting to remove \"%s\" package; deleting core packages can affect building!"
)
const (
successBuildPackage string = "success! program has built package \"%s\""
successRemovePackage string = "success! program has removed \"%s\"!"
)
const (
errorChoiceNotFound string = "Uh-oh. Cannot find content \"%s\" in choice \"$ emojipedia [%s|%s] <choice>\". Please check input and try again."
)