1package convert
2
3func getDefaultEnglish() []string {
4
5 return []string{
6 "a",
7 "about",
8 "above",
9 "above",
10 "across",
11 "after",
12 "afterwards",
13 "again",
14 "against",
15 "all",
16 "almost",
17 "alone",
18 "along",
19 "already",
20 "also",
21 "although",
22 "always",
23 "am",
24 "among",
25 "amongst",
26 "amount",
27 "an",
28 "and",
29 "another",
30 "any",
31 "anyhow",
32 "anyone",
33 "anything",
34 "anyway",
35 "anywhere",
36 "are",
37 "around",
38 "as",
39 "at",
40 "back",
41 "be",
42 "became",
43 "because",
44 "become",
45 "becomes",
46 "becoming",
47 "been",
48 "before",
49 "beforehand",
50 "behind",
51 "being",
52 "below",
53 "beside",
54 "besides",
55 "between",
56 "beyond",
57 "bill",
58 "both",
59 "bottom",
60 "but",
61 "by",
62 "call",
63 "can",
64 "cannot",
65 "cant",
66 "co",
67 "con",
68 "could",
69 "couldn't",
70 "cry",
71 "de",
72 "describe",
73 "detail",
74 "did",
75 "didn't",
76 "do",
77 "does",
78 "doesn't",
79 "done",
80 "don't",
81 "down",
82 "due",
83 "during",
84 "each",
85 "eg",
86 "eight",
87 "either",
88 "eleven",
89 "else",
90 "elsewhere",
91 "empty",
92 "enough",
93 "etc",
94 "even",
95 "ever",
96 "every",
97 "everyone",
98 "everything",
99 "everywhere",
100 "except",
101 "few",
102 "fifteen",
103 "fify",
104 "fill",
105 "find",
106 "fire",
107 "first",
108 "five",
109 "for",
110 "former",
111 "formerly",
112 "forty",
113 "found",
114 "four",
115 "from",
116 "front",
117 "full",
118 "further",
119 "get",
120 "give",
121 "go",
122 "had",
123 "has",
124 "hasnt",
125 "have",
126 "he",
127 "hence",
128 "her",
129 "here",
130 "hereafter",
131 "hereby",
132 "herein",
133 "hereupon",
134 "hers",
135 "herself",
136 "him",
137 "himself",
138 "his",
139 "how",
140 "however",
141 "hundred",
142 "i",
143 "ie",
144 "if",
145 "in",
146 "inc",
147 "indeed",
148 "interest",
149 "into",
150 "is",
151 "it",
152 "its",
153 "itself",
154 "keep",
155 "last",
156 "latter",
157 "latterly",
158 "least",
159 "less",
160 "ltd",
161 "made",
162 "many",
163 "may",
164 "me",
165 "meanwhile",
166 "might",
167 "mill",
168 "mine",
169 "more",
170 "moreover",
171 "most",
172 "mostly",
173 "move",
174 "much",
175 "must",
176 "my",
177 "myself",
178 "name",
179 "namely",
180 "neither",
181 "never",
182 "nevertheless",
183 "next",
184 "nine",
185 "no",
186 "nobody",
187 "none",
188 "noone",
189 "nor",
190 "not",
191 "nothing",
192 "now",
193 "nowhere",
194 "of",
195 "off",
196 "often",
197 "oh",
198 "on",
199 "once",
200 "one",
201 "only",
202 "onto",
203 "or",
204 "other",
205 "others",
206 "otherwise",
207 "our",
208 "ours",
209 "ourselves",
210 "out",
211 "over",
212 "own",
213 "part",
214 "per",
215 "perhaps",
216 "please",
217 "put",
218 "rather",
219 "re",
220 "same",
221 "see",
222 "seem",
223 "seemed",
224 "seeming",
225 "seems",
226 "serious",
227 "several",
228 "she",
229 "should",
230 "show",
231 "side",
232 "since",
233 "sincere",
234 "six",
235 "sixty",
236 "so",
237 "some",
238 "somehow",
239 "someone",
240 "something",
241 "sometime",
242 "sometimes",
243 "somewhere",
244 "still",
245 "such",
246 "system",
247 "take",
248 "ten",
249 "than",
250 "that",
251 "the",
252 "their",
253 "them",
254 "themselves",
255 "then",
256 "thence",
257 "there",
258 "thereafter",
259 "thereby",
260 "therefore",
261 "therein",
262 "thereupon",
263 "these",
264 "they",
265 "thickv",
266 "thin",
267 "third",
268 "this",
269 "those",
270 "though",
271 "three",
272 "through",
273 "throughout",
274 "thru",
275 "thus",
276 "to",
277 "together",
278 "too",
279 "top",
280 "toward",
281 "towards",
282 "twelve",
283 "twenty",
284 "two",
285 "un",
286 "under",
287 "until",
288 "up",
289 "upon",
290 "us",
291 "very",
292 "via",
293 "was",
294 "we",
295 "well",
296 "were",
297 "what",
298 "whatever",
299 "when",
300 "whence",
301 "whenever",
302 "where",
303 "whereafter",
304 "whereas",
305 "whereby",
306 "wherein",
307 "whereupon",
308 "wherever",
309 "whether",
310 "which",
311 "while",
312 "whither",
313 "who",
314 "whoever",
315 "whole",
316 "whom",
317 "whose",
318 "why",
319 "will",
320 "with",
321 "within",
322 "without",
323 "would",
324 "yes",
325 "yet",
326 "you",
327 "your",
328 "yours",
329 "yourself",
330 "yourselves",
331 }
332}