source: branches/posledni/forum/language/en/search_ignore_words.php

Last change on this file was 400, checked in by george, 16 years ago
  • Přidáno: Nové forum phpBB 3.
File size: 2.6 KB
Line 
1<?php
2/**
3*
4* search_ignore_words [English]
5*
6* @package language
7* @version $Id: search_ignore_words.php 8479 2008-03-29 00:22:48Z naderman $
8* @copyright (c) 2005 phpBB Group
9* @license http://opensource.org/licenses/gpl-license.php GNU Public License
10*
11*/
12
13if (!defined('IN_PHPBB'))
14{
15 exit;
16}
17
18$words = array(
19 'a',
20 'about',
21 'after',
22 'ago',
23 'all',
24 'almost',
25 'along',
26 'alot',
27 'also',
28 'am',
29 'an',
30 'and',
31 'answer',
32 'any',
33 'anybody',
34 'anybodys',
35 'anywhere',
36 'are',
37 'arent',
38 'around',
39 'as',
40 'ask',
41 'askd',
42 'at',
43 'bad',
44 'be',
45 'because',
46 'been',
47 'before',
48 'being',
49 'best',
50 'better',
51 'between',
52 'big',
53 'btw',
54 'but',
55 'by',
56 'can',
57 'cant',
58 'come',
59 'could',
60 'couldnt',
61 'day',
62 'days',
63 'days',
64 'did',
65 'didnt',
66 'do',
67 'does',
68 'doesnt',
69 'dont',
70 'down',
71 'each',
72 'etc',
73 'either',
74 'else',
75 'even',
76 'ever',
77 'every',
78 'everybody',
79 'everybodys',
80 'everyone',
81 'far',
82 'find',
83 'for',
84 'found',
85 'from',
86 'get',
87 'go',
88 'going',
89 'gone',
90 'good',
91 'got',
92 'gotten',
93 'had',
94 'has',
95 'have',
96 'havent',
97 'having',
98 'her',
99 'here',
100 'hers',
101 'him',
102 'his',
103 'home',
104 'how',
105 'hows',
106 'href',
107 'I',
108 'Ive',
109 'if',
110 'in',
111 'ini',
112 'into',
113 'is',
114 'isnt',
115 'it',
116 'its',
117 'its',
118 'just',
119 'know',
120 'large',
121 'less',
122 'like',
123 'liked',
124 'little',
125 'looking',
126 'look',
127 'looked',
128 'looking',
129 'lot',
130 'maybe',
131 'many',
132 'me',
133 'more',
134 'most',
135 'much',
136 'must',
137 'mustnt',
138 'my',
139 'near',
140 'need',
141 'never',
142 'new',
143 'news',
144 'no',
145 'none',
146 'not',
147 'nothing',
148 'now',
149 'of',
150 'off',
151 'often',
152 'old',
153 'on',
154 'once',
155 'only',
156 'oops',
157 'or',
158 'other',
159 'our',
160 'ours',
161 'out',
162 'over',
163 'page',
164 'please',
165 'put',
166 'question',
167 'questions',
168 'questioned',
169 'quote',
170 'rather',
171 'really',
172 'recent',
173 'said',
174 'saw',
175 'say',
176 'says',
177 'she',
178 'see',
179 'sees',
180 'should',
181 'sites',
182 'small',
183 'so',
184 'some',
185 'something',
186 'sometime',
187 'somewhere',
188 'soon',
189 'take',
190 'than',
191 'true',
192 'thank',
193 'that',
194 'thatd',
195 'thats',
196 'the',
197 'their',
198 'theirs',
199 'theres',
200 'theirs',
201 'them',
202 'then',
203 'there',
204 'these',
205 'they',
206 'theyll',
207 'theyd',
208 'theyre',
209 'this',
210 'those',
211 'though',
212 'through',
213 'thus',
214 'time',
215 'times',
216 'to',
217 'too',
218 'under',
219 'until',
220 'untrue',
221 'up',
222 'upon',
223 'use',
224 'users',
225 'version',
226 'very',
227 'via',
228 'want',
229 'was',
230 'way',
231 'we',
232 'well',
233 'went',
234 'were',
235 'werent',
236 'what',
237 'when',
238 'where',
239 'which',
240 'who',
241 'whom',
242 'whose',
243 'why',
244 'wide',
245 'will',
246 'with',
247 'within',
248 'without',
249 'wont',
250 'world',
251 'worse',
252 'worst',
253 'would',
254 'wrote',
255 'www',
256 'yes',
257 'yet',
258 'you',
259 'youd',
260 'youll',
261 'your',
262 'youre',
263 'yours',
264 'AFAIK',
265 'IIRC',
266 'LOL',
267 'ROTF',
268 'ROTFLMAO',
269 'YMMV',
270);
271
272?>
Note: See TracBrowser for help on using the repository browser.