Library to write an organised messages array, and script which uses it to rewrite...
[lhc/web/wiklou.git] / maintenance / language / messageTypes.inc
1 <?php
2 /**
3 * Several types of messages.
4 *
5 * @package MediaWiki
6 * @subpackage Maintenance
7 */
8
9 /** Ignored messages, which should be exist only in the English messages file. */
10 $wgIgnoredMessages = array(
11 'sidebar',
12 'addsection',
13 'anonnotice',
14 'catseparator',
15 'googlesearch',
16 'exif-make-value',
17 'exif-model-value',
18 'exif-software-value',
19 'history_copyright',
20 'licenses',
21 'loginend',
22 'loginlanguagelinks',
23 'markaspatrolledlink',
24 'newarticletextanon',
25 'noarticletextanon',
26 'number_of_watching_users_RCview',
27 'pagecategorieslink',
28 'pubmedurl',
29 'randompage-url',
30 'recentchanges-url',
31 'rfcurl',
32 'shareddescriptionfollows',
33 'signupend',
34 'sitenotice',
35 'sitesubtitle',
36 'sitetitle',
37 'talkpagetext',
38 'trackback',
39 'trackbackexcerpt',
40 'widthheight',
41 );
42
43 /** Optional messages, which may be translated only if changed in the other language. */
44 $wgOptionalMessages = array(
45 'imgmultigotopost',
46 'linkprefix',
47 'feed-atom',
48 'feed-rss',
49 'allpages-summary',
50 'booksources-summary',
51 'ipblocklist-summary',
52 'listusers-summary',
53 'longpages-summary',
54 'preferences-summary',
55 'specialpages-summary',
56 'whatlinkshere-summary',
57 'whatlinkshere-barrow',
58 'imagelist-summary',
59 'mimesearch-summary',
60 'listredirects-summary',
61 'uncategorizedpages-summary',
62 'uncategorizedcategories-summary',
63 'uncategorizedimages-summary',
64 'popularpages-summary',
65 'wantedcategories-summary',
66 'wantedpages-summary',
67 'mostlinked-summary',
68 'mostlinkedcategories-summary',
69 'mostcategories-summary',
70 'mostimages-summary',
71 'mostrevisions-summary',
72 'prefixindex-summary',
73 'shortpages-summary',
74 'newpages-summary',
75 'ancientpages-summary',
76 'newimages-summary',
77 'unwatchedpages-summary',
78 'userrights-summary',
79 'brokenredirects-summary',
80 'deadendpages-summary',
81 'disambiguations-summary',
82 'doubleredirects-summary',
83 'lonelypages-summary',
84 'unusedtemplates-summary',
85 'variantname-zh-cn',
86 'variantname-zh-tw',
87 'variantname-zh-hk',
88 'variantname-zh-sg',
89 'variantname-zh',
90 'variantname-sr-ec',
91 'variantname-sr-el',
92 'variantname-sr-jc',
93 'variantname-sr-jl',
94 'variantname-sr',
95 'variantname-kk-tr',
96 'variantname-kk-kz',
97 'variantname-kk-cn',
98 'variantname-kk',
99 );
100
101 /** EXIF messages, which may be set as optional in several checks, but are generally mandatory */
102 $wgEXIFMessages = array(
103 'exif-imagewidth',
104 'exif-imagelength',
105 'exif-bitspersample',
106 'exif-compression',
107 'exif-photometricinterpretation',
108 'exif-orientation',
109 'exif-samplesperpixel',
110 'exif-planarconfiguration',
111 'exif-ycbcrsubsampling',
112 'exif-ycbcrpositioning',
113 'exif-xresolution',
114 'exif-yresolution',
115 'exif-resolutionunit',
116 'exif-stripoffsets',
117 'exif-rowsperstrip',
118 'exif-stripbytecounts',
119 'exif-jpeginterchangeformat',
120 'exif-jpeginterchangeformatlength',
121 'exif-transferfunction',
122 'exif-whitepoint',
123 'exif-primarychromaticities',
124 'exif-ycbcrcoefficients',
125 'exif-referenceblackwhite',
126 'exif-datetime',
127 'exif-imagedescription',
128 'exif-make',
129 'exif-model',
130 'exif-software',
131 'exif-artist',
132 'exif-copyright',
133 'exif-exifversion',
134 'exif-flashpixversion',
135 'exif-colorspace',
136 'exif-componentsconfiguration',
137 'exif-compressedbitsperpixel',
138 'exif-pixelydimension',
139 'exif-pixelxdimension',
140 'exif-makernote',
141 'exif-usercomment',
142 'exif-relatedsoundfile',
143 'exif-datetimeoriginal',
144 'exif-datetimedigitized',
145 'exif-subsectime',
146 'exif-subsectimeoriginal',
147 'exif-subsectimedigitized',
148 'exif-exposuretime',
149 'exif-exposuretime-format',
150 'exif-fnumber',
151 'exif-fnumber-format',
152 'exif-exposureprogram',
153 'exif-spectralsensitivity',
154 'exif-isospeedratings',
155 'exif-oecf',
156 'exif-shutterspeedvalue',
157 'exif-aperturevalue',
158 'exif-brightnessvalue',
159 'exif-exposurebiasvalue',
160 'exif-maxaperturevalue',
161 'exif-subjectdistance',
162 'exif-meteringmode',
163 'exif-lightsource',
164 'exif-flash',
165 'exif-focallength',
166 'exif-focallength-format',
167 'exif-subjectarea',
168 'exif-flashenergy',
169 'exif-spatialfrequencyresponse',
170 'exif-focalplanexresolution',
171 'exif-focalplaneyresolution',
172 'exif-focalplaneresolutionunit',
173 'exif-subjectlocation',
174 'exif-exposureindex',
175 'exif-sensingmethod',
176 'exif-filesource',
177 'exif-scenetype',
178 'exif-cfapattern',
179 'exif-customrendered',
180 'exif-exposuremode',
181 'exif-whitebalance',
182 'exif-digitalzoomratio',
183 'exif-focallengthin35mmfilm',
184 'exif-scenecapturetype',
185 'exif-gaincontrol',
186 'exif-contrast',
187 'exif-saturation',
188 'exif-sharpness',
189 'exif-devicesettingdescription',
190 'exif-subjectdistancerange',
191 'exif-imageuniqueid',
192 'exif-gpsversionid',
193 'exif-gpslatituderef',
194 'exif-gpslatitude',
195 'exif-gpslongituderef',
196 'exif-gpslongitude',
197 'exif-gpsaltituderef',
198 'exif-gpsaltitude',
199 'exif-gpstimestamp',
200 'exif-gpssatellites',
201 'exif-gpsstatus',
202 'exif-gpsmeasuremode',
203 'exif-gpsdop',
204 'exif-gpsspeedref',
205 'exif-gpsspeed',
206 'exif-gpstrackref',
207 'exif-gpstrack',
208 'exif-gpsimgdirectionref',
209 'exif-gpsimgdirection',
210 'exif-gpsmapdatum',
211 'exif-gpsdestlatituderef',
212 'exif-gpsdestlatitude',
213 'exif-gpsdestlongituderef',
214 'exif-gpsdestlongitude',
215 'exif-gpsdestbearingref',
216 'exif-gpsdestbearing',
217 'exif-gpsdestdistanceref',
218 'exif-gpsdestdistance',
219 'exif-gpsprocessingmethod',
220 'exif-gpsareainformation',
221 'exif-gpsdatestamp',
222 'exif-gpsdifferential',
223 'exif-compression-1',
224 'exif-compression-6',
225 'exif-photometricinterpretation-2',
226 'exif-photometricinterpretation-6',
227 'exif-orientation-1',
228 'exif-orientation-2',
229 'exif-orientation-3',
230 'exif-orientation-4',
231 'exif-orientation-5',
232 'exif-orientation-6',
233 'exif-orientation-7',
234 'exif-orientation-8',
235 'exif-planarconfiguration-1',
236 'exif-planarconfiguration-2',
237 'exif-xyresolution-i',
238 'exif-xyresolution-c',
239 'exif-colorspace-1',
240 'exif-colorspace-ffff.h',
241 'exif-componentsconfiguration-0',
242 'exif-componentsconfiguration-1',
243 'exif-componentsconfiguration-2',
244 'exif-componentsconfiguration-3',
245 'exif-componentsconfiguration-4',
246 'exif-componentsconfiguration-5',
247 'exif-componentsconfiguration-6',
248 'exif-exposureprogram-0',
249 'exif-exposureprogram-1',
250 'exif-exposureprogram-2',
251 'exif-exposureprogram-3',
252 'exif-exposureprogram-4',
253 'exif-exposureprogram-5',
254 'exif-exposureprogram-6',
255 'exif-exposureprogram-7',
256 'exif-exposureprogram-8',
257 'exif-subjectdistance-value',
258 'exif-meteringmode-0',
259 'exif-meteringmode-1',
260 'exif-meteringmode-2',
261 'exif-meteringmode-3',
262 'exif-meteringmode-4',
263 'exif-meteringmode-5',
264 'exif-meteringmode-6',
265 'exif-meteringmode-255',
266 'exif-lightsource-0',
267 'exif-lightsource-1',
268 'exif-lightsource-2',
269 'exif-lightsource-3',
270 'exif-lightsource-4',
271 'exif-lightsource-9',
272 'exif-lightsource-10',
273 'exif-lightsource-11',
274 'exif-lightsource-12',
275 'exif-lightsource-13',
276 'exif-lightsource-14',
277 'exif-lightsource-15',
278 'exif-lightsource-17',
279 'exif-lightsource-18',
280 'exif-lightsource-19',
281 'exif-lightsource-20',
282 'exif-lightsource-21',
283 'exif-lightsource-22',
284 'exif-lightsource-23',
285 'exif-lightsource-24',
286 'exif-lightsource-255',
287 'exif-focalplaneresolutionunit-2',
288 'exif-sensingmethod-1',
289 'exif-sensingmethod-2',
290 'exif-sensingmethod-3',
291 'exif-sensingmethod-4',
292 'exif-sensingmethod-5',
293 'exif-sensingmethod-7',
294 'exif-sensingmethod-8',
295 'exif-filesource-3',
296 'exif-scenetype-1',
297 'exif-customrendered-0',
298 'exif-customrendered-1',
299 'exif-exposuremode-0',
300 'exif-exposuremode-1',
301 'exif-exposuremode-2',
302 'exif-whitebalance-0',
303 'exif-whitebalance-1',
304 'exif-scenecapturetype-0',
305 'exif-scenecapturetype-1',
306 'exif-scenecapturetype-2',
307 'exif-scenecapturetype-3',
308 'exif-gaincontrol-0',
309 'exif-gaincontrol-1',
310 'exif-gaincontrol-2',
311 'exif-gaincontrol-3',
312 'exif-gaincontrol-4',
313 'exif-contrast-0',
314 'exif-contrast-1',
315 'exif-contrast-2',
316 'exif-saturation-0',
317 'exif-saturation-1',
318 'exif-saturation-2',
319 'exif-sharpness-0',
320 'exif-sharpness-1',
321 'exif-sharpness-2',
322 'exif-subjectdistancerange-0',
323 'exif-subjectdistancerange-1',
324 'exif-subjectdistancerange-2',
325 'exif-subjectdistancerange-3',
326 'exif-gpslatitude-n',
327 'exif-gpslatitude-s',
328 'exif-gpslongitude-e',
329 'exif-gpslongitude-w',
330 'exif-gpsstatus-a',
331 'exif-gpsstatus-v',
332 'exif-gpsmeasuremode-2',
333 'exif-gpsmeasuremode-3',
334 'exif-gpsspeed-k',
335 'exif-gpsspeed-m',
336 'exif-gpsspeed-n',
337 'exif-gpsdirection-t',
338 'exif-gpsdirection-m',
339 );
340
341 ?>