自分用にカスタマイズしたshared-mime-infoのソース
修订版 | 1f39102dfb2e22b3fb441767efa06c19bc766426 (tree) |
---|---|
时间 | 2019-09-06 17:05:03 |
作者 | Valentin David <valentin.david@code...> |
Commiter | Bastien Nocera |
build: Use gettext instead of intltool
@@ -2,7 +2,7 @@ image: fedora:rawhide | ||
2 | 2 | |
3 | 3 | variables: |
4 | 4 | DEPENDENCIES: gcc gcc-c++ glibc-devel make libxml2-devel glib2-devel |
5 | - automake autoconf gettext intltool git xmlto findutils | |
5 | + automake autoconf gettext git itstool xmlto findutils gettext-devel | |
6 | 6 | |
7 | 7 | build: |
8 | 8 | before_script: |
@@ -1,4 +1,4 @@ | ||
1 | -SUBDIRS=. po | |
1 | +SUBDIRS=po . | |
2 | 2 | |
3 | 3 | AM_CPPFLAGS = $(ALL_CFLAGS) |
4 | 4 |
@@ -33,18 +33,29 @@ EXTRA_DIST = \ | ||
33 | 33 | HACKING \ |
34 | 34 | $(man_MANS) \ |
35 | 35 | shared-mime-info.pc.in \ |
36 | - po/shared-mime-info.pot | |
36 | + shared-mime-info.pot \ | |
37 | + mime-info.its | |
37 | 38 | |
38 | 39 | CLEANFILES = freedesktop.org.xml po/stamp-it |
39 | -DISTCLEANFILES = intltool-extract intltool-merge intltool-update | |
40 | +MAINTAINERCLEANFILES = shared-mime-info.pot | |
40 | 41 | |
41 | 42 | pkgconfigdir = $(datadir)/pkgconfig |
42 | 43 | pkgconfig_DATA = shared-mime-info.pc |
43 | 44 | |
44 | 45 | $(pkgconfig_DATA): config.status |
45 | 46 | |
46 | -@INTLTOOL_XML_RULE@ | |
47 | -@INTLTOOL_DESKTOP_RULE@ | |
47 | +all-recursive: shared-mime-info.pot | |
48 | + | |
49 | +shared-mime-info.pot: freedesktop.org.xml.in mime-info.its | |
50 | + $(AM_V_GEN)$(ITSTOOL) -i $(srcdir)/mime-info.its -o $@ $< | |
51 | + test "$(srcdir)" = . || cp shared-mime-info.pot $(srcdir)/shared-mime-info.pot | |
52 | + | |
53 | +po/shared-mime-info.pot: shared-mime-info.pot | |
54 | + $(MAKE) -C po shared-mime-info.pot | |
55 | + | |
56 | +freedesktop.org.xml: freedesktop.org.xml.in shared-mime-info.pot | |
57 | + $(MAKE) -C po update-gmo | |
58 | + $(AM_V_GEN)$(ITSTOOL) -j $< -o $@ $(top_srcdir)/po/*.gmo | |
48 | 59 | |
49 | 60 | if CROSS_COMPILING |
50 | 61 | update_mime_database=$(UPDATE_MIME_DATABASE) |
@@ -74,16 +85,11 @@ uninstall-hook: | ||
74 | 85 | rm -f "$(DESTDIR)$(datadir)/mime/types" |
75 | 86 | rm -f "$(DESTDIR)$(datadir)/mime/version" |
76 | 87 | |
77 | -defaultmakedeps=create-pot | |
78 | - | |
79 | 88 | all: $(defaultmakedeps) |
80 | 89 | |
81 | -create-pot: | |
82 | - $(AM_V_GEN) $(MAKE) -C po shared-mime-info.pot | |
83 | - | |
84 | 90 | XDGMIME_PATH=@XDGMIME_PATH@ |
85 | 91 | |
86 | -local-test: create-pot freedesktop.org.xml update-mime-database$(EXEEXT) | |
92 | +local-test: po/shared-mime-info.pot freedesktop.org.xml update-mime-database$(EXEEXT) | |
87 | 93 | if CROSS_COMPILING |
88 | 94 | @echo "Cross compiling: Skipping checks" |
89 | 95 | else |
@@ -102,7 +108,7 @@ else | ||
102 | 108 | fi |
103 | 109 | endif |
104 | 110 | |
105 | -check: create-pot freedesktop.org.xml update-mime-database$(EXEEXT) check-translations | |
111 | +check: po/shared-mime-info.pot freedesktop.org.xml update-mime-database$(EXEEXT) check-translations | |
106 | 112 | if CROSS_COMPILING |
107 | 113 | @echo "Cross compiling: Skipping checks" |
108 | 114 | else |
@@ -126,12 +132,6 @@ else | ||
126 | 132 | rm -rf "$(top_builddir)/temp-mime-dir/" ; \ |
127 | 133 | fi; \ |
128 | 134 | fi |
129 | - @if `grep comment $(srcdir)/freedesktop.org.xml.in | grep -v _comment | grep -q -v '<!'` ; then \ | |
130 | - echo "***************************************************************************" ; \ | |
131 | - echo "*** Some comments are not marked as translatable, fix before committing ***" ; \ | |
132 | - echo "***************************************************************************" ; \ | |
133 | - exit 1 ; \ | |
134 | - fi | |
135 | 135 | @if test x`grep '<mime-type' $(srcdir)/freedesktop.org.xml.in | tr -d '[:blank:]' | sort | uniq -d` != "x"; then \ |
136 | 136 | echo "*************************************************************" ; \ |
137 | 137 | echo "*** Some mime-types are duplicated, fix before committing ***" ; \ |
@@ -151,7 +151,7 @@ check-translations: | ||
151 | 151 | done; \ |
152 | 152 | if [ $$RET == 1 ] ; then exit 1; fi |
153 | 153 | |
154 | -update-translations: create-pot | |
154 | +update-translations: po/shared-mime-info.pot | |
155 | 155 | @tx pull --all --force --skip |
156 | 156 | @tx push --source |
157 | 157 |
@@ -165,3 +165,5 @@ dist: ChangeLog | ||
165 | 165 | |
166 | 166 | .PHONY: ChangeLog |
167 | 167 | |
168 | + | |
169 | +ACLOCAL_AMFLAGS = -I m4 |
@@ -5,8 +5,6 @@ srcdir=`dirname $0` | ||
5 | 5 | test -z "$srcdir" && srcdir=. |
6 | 6 | |
7 | 7 | pushd $srcdir |
8 | -echo "autogen.sh: running: intltoolize --force" | |
9 | -intltoolize --force || exit 1 | |
10 | 8 | autoreconf -vif || exit 1 |
11 | 9 | |
12 | 10 | popd |
@@ -14,11 +14,12 @@ dnl Checks for typedefs, structures, and compiler characteristics. | ||
14 | 14 | AC_C_CONST |
15 | 15 | AC_SYS_LARGEFILE |
16 | 16 | |
17 | -IT_PROG_INTLTOOL([0.35.0]) | |
18 | - | |
19 | -GETTEXT_PACKAGE=shared-mime-info | |
20 | -AC_SUBST(GETTEXT_PACKAGE) | |
21 | -AM_GLIB_GNU_GETTEXT | |
17 | +AM_GNU_GETTEXT_VERSION([0.19.8]) | |
18 | +AM_GNU_GETTEXT([external]) | |
19 | +AC_CHECK_PROGS([ITSTOOL], [itstool]) | |
20 | +if test x"${ITSTOOL}" = x; then | |
21 | + AC_MSG_ERROR([itstool is missing]) | |
22 | +fi | |
22 | 23 | |
23 | 24 | AC_CHECK_FUNCS(fdatasync) |
24 | 25 |
@@ -80,12 +80,12 @@ command to generate the output files. | ||
80 | 80 | |
81 | 81 | <mime-info xmlns="http://www.freedesktop.org/standards/shared-mime-info"> |
82 | 82 | <mime-type type="application/x-atari-2600-rom"> |
83 | - <_comment>Atari 2600 ROM</_comment> | |
83 | + <comment>Atari 2600 ROM</comment> | |
84 | 84 | <generic-icon name="application-x-executable"/> |
85 | 85 | <glob pattern="*.a26"/> |
86 | 86 | </mime-type> |
87 | 87 | <mime-type type="application/x-atari-7800-rom"> |
88 | - <_comment>Atari 7800 ROM</_comment> | |
88 | + <comment>Atari 7800 ROM</comment> | |
89 | 89 | <generic-icon name="application-x-executable"/> |
90 | 90 | <glob pattern="*.a78"/> |
91 | 91 | <magic> |
@@ -93,7 +93,7 @@ command to generate the output files. | ||
93 | 93 | </magic> |
94 | 94 | </mime-type> |
95 | 95 | <mime-type type="application/x-atari-lynx-rom"> |
96 | - <_comment>Atari Lynx ROM</_comment> | |
96 | + <comment>Atari Lynx ROM</comment> | |
97 | 97 | <generic-icon name="application-x-executable"/> |
98 | 98 | <glob pattern="*.lnx"/> |
99 | 99 | <magic> |
@@ -101,14 +101,14 @@ command to generate the output files. | ||
101 | 101 | </magic> |
102 | 102 | </mime-type> |
103 | 103 | <mime-type type="application/andrew-inset"> |
104 | - <_comment>ATK inset</_comment> | |
104 | + <comment>ATK inset</comment> | |
105 | 105 | <acronym>ATK</acronym> |
106 | 106 | <expanded-acronym>Andrew Toolkit</expanded-acronym> |
107 | 107 | <generic-icon name="x-office-document"/> |
108 | 108 | <glob pattern="*.ez"/> |
109 | 109 | </mime-type> |
110 | 110 | <mime-type type="application/epub+zip"> |
111 | - <_comment>electronic book document</_comment> | |
111 | + <comment>electronic book document</comment> | |
112 | 112 | <sub-class-of type="application/zip"/> |
113 | 113 | <generic-icon name="x-office-document"/> |
114 | 114 | <magic priority="70"> |
@@ -122,20 +122,20 @@ command to generate the output files. | ||
122 | 122 | <glob pattern="*.epub"/> |
123 | 123 | </mime-type> |
124 | 124 | <mime-type type="application/illustrator"> |
125 | - <_comment>Adobe Illustrator document</_comment> | |
125 | + <comment>Adobe Illustrator document</comment> | |
126 | 126 | <generic-icon name="image-x-generic"/> |
127 | 127 | <glob pattern="*.ai"/> |
128 | 128 | <alias type="application/vnd.adobe.illustrator"/> |
129 | 129 | </mime-type> |
130 | 130 | <mime-type type="application/mac-binhex40"> |
131 | - <_comment>Macintosh BinHex-encoded file</_comment> | |
131 | + <comment>Macintosh BinHex-encoded file</comment> | |
132 | 132 | <generic-icon name="package-x-generic"/> |
133 | 133 | <magic priority="50"> |
134 | 134 | <match type="string" value="must be converted with BinHex" offset="11"/> |
135 | 135 | </magic> |
136 | 136 | </mime-type> |
137 | 137 | <mime-type type="application/mathematica"> |
138 | - <_comment>Mathematica Notebook file</_comment> | |
138 | + <comment>Mathematica Notebook file</comment> | |
139 | 139 | <sub-class-of type="text/plain"/> |
140 | 140 | <generic-icon name="x-office-document"/> |
141 | 141 | <glob pattern="*.nb" /> |
@@ -150,7 +150,7 @@ command to generate the output files. | ||
150 | 150 | <alias type="application/x-mathematica"/> |
151 | 151 | </mime-type> |
152 | 152 | <mime-type type="application/mathml+xml"> |
153 | - <_comment>MathML document</_comment> | |
153 | + <comment>MathML document</comment> | |
154 | 154 | <acronym>MathML</acronym> |
155 | 155 | <expanded-acronym>Mathematical Markup Language</expanded-acronym> |
156 | 156 | <alias type="text/mathml"/> |
@@ -159,7 +159,7 @@ command to generate the output files. | ||
159 | 159 | <root-XML namespaceURI="http://www.w3.org/1998/Math/MathML" localName="math"/> |
160 | 160 | </mime-type> |
161 | 161 | <mime-type type="application/mbox"> |
162 | - <_comment>mailbox file</_comment> | |
162 | + <comment>mailbox file</comment> | |
163 | 163 | <generic-icon name="text-x-generic"/> |
164 | 164 | <sub-class-of type="text/plain"/> |
165 | 165 | <magic priority="20"> |
@@ -168,7 +168,7 @@ command to generate the output files. | ||
168 | 168 | <glob pattern="*.mbox"/> |
169 | 169 | </mime-type> |
170 | 170 | <mime-type type="application/metalink+xml"> |
171 | - <_comment>Metalink file</_comment> | |
171 | + <comment>Metalink file</comment> | |
172 | 172 | <sub-class-of type="application/xml"/> |
173 | 173 | <magic priority="50"> |
174 | 174 | <match type="string" value="<metalink version="3.0"" offset="0:256"/> |
@@ -177,7 +177,7 @@ command to generate the output files. | ||
177 | 177 | <root-XML namespaceURI="http://www.metalinker.org/" localName="metalink"/> |
178 | 178 | </mime-type> |
179 | 179 | <mime-type type="application/metalink4+xml"> |
180 | - <_comment>Metalink file</_comment> | |
180 | + <comment>Metalink file</comment> | |
181 | 181 | <sub-class-of type="application/xml"/> |
182 | 182 | <magic priority="50"> |
183 | 183 | <match type="string" value="<metalink xmlns="urn" offset="0:256"/> |
@@ -186,31 +186,31 @@ command to generate the output files. | ||
186 | 186 | <root-XML namespaceURI="urn:ietf:params:xml:ns:metalink" localName="metalink"/> |
187 | 187 | </mime-type> |
188 | 188 | <mime-type type="application/octet-stream"> |
189 | - <_comment>unknown</_comment> | |
189 | + <comment>unknown</comment> | |
190 | 190 | </mime-type> |
191 | 191 | <mime-type type="application/x-partial-download"> |
192 | - <_comment>Partially downloaded file</_comment> | |
192 | + <comment>Partially downloaded file</comment> | |
193 | 193 | <generic-icon name="package-x-generic"/> |
194 | 194 | <glob pattern="*.wkdownload"/> |
195 | 195 | <glob pattern="*.crdownload"/> |
196 | 196 | <glob pattern="*.part"/> |
197 | 197 | </mime-type> |
198 | 198 | <mime-type type="application/oda"> |
199 | - <_comment>ODA document</_comment> | |
199 | + <comment>ODA document</comment> | |
200 | 200 | <acronym>ODA</acronym> |
201 | 201 | <expanded-acronym>Office Document Architecture</expanded-acronym> |
202 | 202 | <generic-icon name="x-office-document"/> |
203 | 203 | <glob pattern="*.oda"/> |
204 | 204 | </mime-type> |
205 | 205 | <mime-type type="application/x-wwf"> |
206 | - <_comment>WWF document</_comment> | |
206 | + <comment>WWF document</comment> | |
207 | 207 | <generic-icon name="x-office-document"/> |
208 | 208 | <glob pattern="*.wwf"/> |
209 | 209 | <sub-class-of type="application/pdf"/> |
210 | 210 | <alias type="application/wwf"/> |
211 | 211 | </mime-type> |
212 | 212 | <mime-type type="application/pdf"> |
213 | - <_comment>PDF document</_comment> | |
213 | + <comment>PDF document</comment> | |
214 | 214 | <acronym>PDF</acronym> |
215 | 215 | <expanded-acronym>Portable Document Format</expanded-acronym> |
216 | 216 | <generic-icon name="x-office-document"/> |
@@ -224,7 +224,7 @@ command to generate the output files. | ||
224 | 224 | <alias type="application/nappdf"/> |
225 | 225 | </mime-type> |
226 | 226 | <mime-type type="application/xspf+xml"> |
227 | - <_comment>XSPF playlist</_comment> | |
227 | + <comment>XSPF playlist</comment> | |
228 | 228 | <acronym>XSPF</acronym> |
229 | 229 | <expanded-acronym>XML Shareable Playlist Format</expanded-acronym> |
230 | 230 | <sub-class-of type="application/xml"/> |
@@ -238,30 +238,30 @@ command to generate the output files. | ||
238 | 238 | <alias type="application/x-xspf+xml"/> |
239 | 239 | </mime-type> |
240 | 240 | <mime-type type="application/x-windows-themepack"> |
241 | - <_comment>Microsoft Windows theme pack</_comment> | |
241 | + <comment>Microsoft Windows theme pack</comment> | |
242 | 242 | <sub-class-of type="application/vnd.ms-cab-compressed"/> |
243 | 243 | <generic-icon name="package-x-generic"/> |
244 | 244 | <glob pattern="*.themepack"/> |
245 | 245 | </mime-type> |
246 | 246 | <mime-type type="audio/x-amzxml"> |
247 | - <_comment>AmazonMP3 download file</_comment> | |
247 | + <comment>AmazonMP3 download file</comment> | |
248 | 248 | <glob pattern="*.amz"/> |
249 | 249 | </mime-type> |
250 | 250 | <mime-type type="audio/x-gsm"> |
251 | - <_comment>GSM 06.10 audio</_comment> | |
251 | + <comment>GSM 06.10 audio</comment> | |
252 | 252 | <acronym>GSM</acronym> |
253 | 253 | <expanded-acronym>Global System for Mobile communications</expanded-acronym> |
254 | 254 | <glob pattern="*.gsm"/> |
255 | 255 | </mime-type> |
256 | 256 | <mime-type type="audio/x-iriver-pla"> |
257 | - <_comment>iRiver playlist</_comment> | |
257 | + <comment>iRiver playlist</comment> | |
258 | 258 | <magic priority="50"> |
259 | 259 | <match type="string" value="iriver UMS PLA" offset="4"/> |
260 | 260 | </magic> |
261 | 261 | <glob pattern="*.pla"/> |
262 | 262 | </mime-type> |
263 | 263 | <mime-type type="application/pgp-encrypted"> |
264 | - <_comment>PGP/MIME-encrypted message header</_comment> | |
264 | + <comment>PGP/MIME-encrypted message header</comment> | |
265 | 265 | <sub-class-of type="text/plain"/> |
266 | 266 | <generic-icon name="text-x-generic"/> |
267 | 267 | <magic priority="50"> |
@@ -273,7 +273,7 @@ command to generate the output files. | ||
273 | 273 | <alias type="application/pgp"/> |
274 | 274 | </mime-type> |
275 | 275 | <mime-type type="application/pgp-keys"> |
276 | - <_comment>PGP keys</_comment> | |
276 | + <comment>PGP keys</comment> | |
277 | 277 | <acronym>PGP</acronym> |
278 | 278 | <expanded-acronym>Pretty Good Privacy</expanded-acronym> |
279 | 279 | <sub-class-of type="text/plain"/> |
@@ -294,7 +294,7 @@ command to generate the output files. | ||
294 | 294 | <glob pattern="*.key"/> |
295 | 295 | </mime-type> |
296 | 296 | <mime-type type="application/pgp-signature"> |
297 | - <_comment>detached OpenPGP signature</_comment> | |
297 | + <comment>detached OpenPGP signature</comment> | |
298 | 298 | <sub-class-of type="text/plain"/> |
299 | 299 | <generic-icon name="text-x-generic"/> |
300 | 300 | <magic priority="50"> |
@@ -307,7 +307,7 @@ command to generate the output files. | ||
307 | 307 | </mime-type> |
308 | 308 | <!-- defined in RFC 2311 --> |
309 | 309 | <mime-type type="application/pkcs7-mime"> |
310 | - <_comment>PKCS#7 file</_comment> | |
310 | + <comment>PKCS#7 file</comment> | |
311 | 311 | <acronym>PKCS</acronym> |
312 | 312 | <expanded-acronym>Public-Key Cryptography Standards</expanded-acronym> |
313 | 313 | <generic-icon name="text-x-generic"/> |
@@ -315,7 +315,7 @@ command to generate the output files. | ||
315 | 315 | <glob pattern="*.p7m"/> |
316 | 316 | </mime-type> |
317 | 317 | <mime-type type="application/pkcs7-signature"> |
318 | - <_comment>detached S/MIME signature</_comment> | |
318 | + <comment>detached S/MIME signature</comment> | |
319 | 319 | <acronym>S/MIME</acronym> |
320 | 320 | <expanded-acronym>Secure/Multipurpose Internet Mail Extensions</expanded-acronym> |
321 | 321 | <sub-class-of type="text/plain"/> |
@@ -323,38 +323,38 @@ command to generate the output files. | ||
323 | 323 | <glob pattern="*.p7s"/> |
324 | 324 | </mime-type> |
325 | 325 | <mime-type type="application/pkcs8"> |
326 | - <_comment>PKCS#8 private key</_comment> | |
326 | + <comment>PKCS#8 private key</comment> | |
327 | 327 | <acronym>PKCS</acronym> |
328 | 328 | <expanded-acronym>Public-Key Cryptography Standards</expanded-acronym> |
329 | 329 | <glob pattern="*.p8"/> |
330 | 330 | </mime-type> |
331 | 331 | <mime-type type="application/pkcs8-encrypted"> |
332 | - <_comment>PKCS#8 private key (encrypted)</_comment> | |
332 | + <comment>PKCS#8 private key (encrypted)</comment> | |
333 | 333 | <acronym>PKCS</acronym> |
334 | 334 | <expanded-acronym>Public-Key Cryptography Standards</expanded-acronym> |
335 | 335 | <glob pattern="*.p8e"/> |
336 | 336 | </mime-type> |
337 | 337 | <mime-type type="application/pkcs10"> |
338 | - <_comment>PKCS#10 certification request</_comment> | |
338 | + <comment>PKCS#10 certification request</comment> | |
339 | 339 | <acronym>PKCS</acronym> |
340 | 340 | <expanded-acronym>Public-Key Cryptography Standards</expanded-acronym> |
341 | 341 | <generic-icon name="text-x-generic"/> |
342 | 342 | <glob pattern="*.p10"/> |
343 | 343 | </mime-type> |
344 | 344 | <mime-type type="application/pkix-cert"> |
345 | - <_comment>X.509 certificate</_comment> | |
345 | + <comment>X.509 certificate</comment> | |
346 | 346 | <glob pattern="*.cer"/> |
347 | 347 | </mime-type> |
348 | 348 | <mime-type type="application/pkix-crl"> |
349 | - <_comment>certificate revocation list</_comment> | |
349 | + <comment>certificate revocation list</comment> | |
350 | 350 | <glob pattern="*.crl"/> |
351 | 351 | </mime-type> |
352 | 352 | <mime-type type="application/pkix-pkipath"> |
353 | - <_comment>PkiPath certification path</_comment> | |
353 | + <comment>PkiPath certification path</comment> | |
354 | 354 | <glob pattern="*.pkipath"/> |
355 | 355 | </mime-type> |
356 | 356 | <mime-type type="application/postscript"> |
357 | - <_comment>PostScript document</_comment> | |
357 | + <comment>PostScript document</comment> | |
358 | 358 | <sub-class-of type="text/plain"/> |
359 | 359 | <generic-icon name="x-office-document"/> |
360 | 360 | <magic priority="50"> |
@@ -364,14 +364,14 @@ command to generate the output files. | ||
364 | 364 | <glob pattern="*.ps"/> |
365 | 365 | </mime-type> |
366 | 366 | <mime-type type="application/prs.plucker"> |
367 | - <_comment>Plucker document</_comment> | |
367 | + <comment>Plucker document</comment> | |
368 | 368 | <generic-icon name="x-office-document"/> |
369 | 369 | <magic priority="80"> |
370 | 370 | <match type="string" value="DataPlkr" offset="60"/> |
371 | 371 | </magic> |
372 | 372 | </mime-type> |
373 | 373 | <mime-type type="application/raml+yaml"> |
374 | - <_comment>RAML document</_comment> | |
374 | + <comment>RAML document</comment> | |
375 | 375 | <acronym>RAML</acronym> |
376 | 376 | <expanded-acronym>RESTful API Modeling Language</expanded-acronym> |
377 | 377 | <sub-class-of type="application/x-yaml"/> |
@@ -381,7 +381,7 @@ command to generate the output files. | ||
381 | 381 | <glob pattern="*.raml"/> |
382 | 382 | </mime-type> |
383 | 383 | <mime-type type="application/relax-ng-compact-syntax"> |
384 | - <_comment>RELAX NG XML schema</_comment> | |
384 | + <comment>RELAX NG XML schema</comment> | |
385 | 385 | <acronym>RELAX NG</acronym> |
386 | 386 | <expanded-acronym>REgular LAnguage for XML Next Generation</expanded-acronym> |
387 | 387 | <sub-class-of type="text/plain"/> |
@@ -390,7 +390,7 @@ command to generate the output files. | ||
390 | 390 | <alias type="application/x-rnc"/> |
391 | 391 | </mime-type> |
392 | 392 | <mime-type type="application/rtf"> |
393 | - <_comment>RTF document</_comment> | |
393 | + <comment>RTF document</comment> | |
394 | 394 | <acronym>RTF</acronym> |
395 | 395 | <expanded-acronym>Rich Text Format</expanded-acronym> |
396 | 396 | <sub-class-of type="text/plain"/> |
@@ -402,13 +402,13 @@ command to generate the output files. | ||
402 | 402 | <alias type="text/rtf"/> |
403 | 403 | </mime-type> |
404 | 404 | <mime-type type="application/sieve"> |
405 | - <_comment>Sieve mail filter script</_comment> | |
405 | + <comment>Sieve mail filter script</comment> | |
406 | 406 | <sub-class-of type="application/xml"/> |
407 | 407 | <generic-icon name="text-x-script"/> |
408 | 408 | <glob pattern="*.siv"/> |
409 | 409 | </mime-type> |
410 | 410 | <mime-type type="application/smil+xml"> |
411 | - <_comment>SMIL document</_comment> | |
411 | + <comment>SMIL document</comment> | |
412 | 412 | <acronym>SMIL</acronym> |
413 | 413 | <expanded-acronym>Synchronized Multimedia Integration Language</expanded-acronym> |
414 | 414 | <sub-class-of type="application/xml"/> |
@@ -426,7 +426,7 @@ command to generate the output files. | ||
426 | 426 | <root-XML namespaceURI="http://www.w3.org/ns/SMIL" localName="smil"/> |
427 | 427 | </mime-type> |
428 | 428 | <mime-type type="application/vnd.ms-wpl"> |
429 | - <_comment>WPL playlist</_comment> | |
429 | + <comment>WPL playlist</comment> | |
430 | 430 | <acronym>WPL</acronym> |
431 | 431 | <expanded-acronym>Windows Media Player Playlist</expanded-acronym> |
432 | 432 | <generic-icon name="video-x-generic"/> |
@@ -436,14 +436,14 @@ command to generate the output files. | ||
436 | 436 | </magic> |
437 | 437 | </mime-type> |
438 | 438 | <mime-type type="application/x-sqlite2"> |
439 | - <_comment>SQLite2 database</_comment> | |
439 | + <comment>SQLite2 database</comment> | |
440 | 440 | <glob pattern="*.sqlite2"/> |
441 | 441 | <magic> |
442 | 442 | <match type="string" value="** This file contains an SQLite" offset="0"/> |
443 | 443 | </magic> |
444 | 444 | </mime-type> |
445 | 445 | <mime-type type="application/vnd.sqlite3"> |
446 | - <_comment>SQLite3 database</_comment> | |
446 | + <comment>SQLite3 database</comment> | |
447 | 447 | <glob pattern="*.sqlite3"/> |
448 | 448 | <magic> |
449 | 449 | <match type="string" value="SQLite format 3" offset="0"/> |
@@ -451,7 +451,7 @@ command to generate the output files. | ||
451 | 451 | <alias type="application/x-sqlite3"/> |
452 | 452 | </mime-type> |
453 | 453 | <mime-type type="application/x-gedcom"> |
454 | - <_comment>GEDCOM family history</_comment> | |
454 | + <comment>GEDCOM family history</comment> | |
455 | 455 | <acronym>GEDCOM</acronym> |
456 | 456 | <expanded-acronym>GEnealogical Data COMmunication</expanded-acronym> |
457 | 457 | <generic-icon name="x-office-document"/> |
@@ -463,7 +463,7 @@ command to generate the output files. | ||
463 | 463 | <alias type="text/gedcom"/> |
464 | 464 | </mime-type> |
465 | 465 | <mime-type type="video/x-flv"> |
466 | - <_comment>Flash video</_comment> | |
466 | + <comment>Flash video</comment> | |
467 | 467 | <generic-icon name="video-x-generic"/> |
468 | 468 | <magic priority="50"> |
469 | 469 | <match type="string" value="FLV" offset="0"/> |
@@ -474,7 +474,7 @@ command to generate the output files. | ||
474 | 474 | <alias type="video/flv"/> |
475 | 475 | </mime-type> |
476 | 476 | <mime-type type="video/x-javafx"> |
477 | - <_comment>JavaFX video</_comment> | |
477 | + <comment>JavaFX video</comment> | |
478 | 478 | <generic-icon name="video-x-generic"/> |
479 | 479 | <magic priority="40"> |
480 | 480 | <match type="string" value="FLV" offset="0"/> |
@@ -486,7 +486,7 @@ command to generate the output files. | ||
486 | 486 | <!-- translators: a record is in this context a description of a board game |
487 | 487 | that has been played, and that can be played back again: |
488 | 488 | http://www.red-bean.com/sgf/ --> |
489 | - <_comment>SGF record</_comment> | |
489 | + <comment>SGF record</comment> | |
490 | 490 | <acronym>SGF</acronym> |
491 | 491 | <expanded-acronym>Smart Game Format</expanded-acronym> |
492 | 492 | <generic-icon name="text-x-generic"/> |
@@ -498,7 +498,7 @@ command to generate the output files. | ||
498 | 498 | </magic> |
499 | 499 | </mime-type> |
500 | 500 | <mime-type type="application/xliff+xml"> |
501 | - <_comment>XLIFF translation file</_comment> | |
501 | + <comment>XLIFF translation file</comment> | |
502 | 502 | <acronym>XLIFF</acronym> |
503 | 503 | <expanded-acronym>XML Localization Interchange File Format</expanded-acronym> |
504 | 504 | <sub-class-of type="application/xml"/> |
@@ -512,7 +512,7 @@ command to generate the output files. | ||
512 | 512 | <alias type="application/x-xliff"/> |
513 | 513 | </mime-type> |
514 | 514 | <mime-type type="application/x-yaml"> |
515 | - <_comment>YAML document</_comment> | |
515 | + <comment>YAML document</comment> | |
516 | 516 | <acronym>YAML</acronym> |
517 | 517 | <expanded-acronym>YAML Ain't Markup Language</expanded-acronym> |
518 | 518 | <sub-class-of type="text/plain"/> |
@@ -526,7 +526,7 @@ command to generate the output files. | ||
526 | 526 | <alias type="text/x-yaml"/> |
527 | 527 | </mime-type> |
528 | 528 | <mime-type type="application/vnd.corel-draw"> |
529 | - <_comment>Corel Draw drawing</_comment> | |
529 | + <comment>Corel Draw drawing</comment> | |
530 | 530 | <generic-icon name="image-x-generic"/> |
531 | 531 | <magic priority="80"> |
532 | 532 | <match type="string" value="CDRXvrsn" mask="0xffffff00ffffffff" offset="8"/> |
@@ -541,21 +541,21 @@ command to generate the output files. | ||
541 | 541 | <alias type="zz-application/zz-winassoc-cdr"/> |
542 | 542 | </mime-type> |
543 | 543 | <mime-type type="application/vnd.hp-hpgl"> |
544 | - <_comment>HPGL file</_comment> | |
544 | + <comment>HPGL file</comment> | |
545 | 545 | <acronym>HPGL</acronym> |
546 | 546 | <expanded-acronym>HP Graphics Language</expanded-acronym> |
547 | 547 | <generic-icon name="image-x-generic"/> |
548 | 548 | <glob pattern="*.hpgl"/> |
549 | 549 | </mime-type> |
550 | 550 | <mime-type type="application/vnd.hp-pcl"> |
551 | - <_comment>PCL file</_comment> | |
551 | + <comment>PCL file</comment> | |
552 | 552 | <acronym>PCL</acronym> |
553 | 553 | <expanded-acronym>HP Printer Control Language</expanded-acronym> |
554 | 554 | <generic-icon name="image-x-generic"/> |
555 | 555 | <glob pattern="*.pcl"/> |
556 | 556 | </mime-type> |
557 | 557 | <mime-type type="application/vnd.lotus-1-2-3"> |
558 | - <_comment>Lotus 1-2-3 spreadsheet</_comment> | |
558 | + <comment>Lotus 1-2-3 spreadsheet</comment> | |
559 | 559 | <generic-icon name="x-office-spreadsheet"/> |
560 | 560 | <magic priority="50"> |
561 | 561 | <match type="string" value="\x00\x00\x02\x00\x06\x04\x06\x00\x08\x00\x00\x00\x00\x00" offset="0"/> |
@@ -572,7 +572,7 @@ command to generate the output files. | ||
572 | 572 | <alias type="zz-application/zz-winassoc-123"/> |
573 | 573 | </mime-type> |
574 | 574 | <mime-type type="application/vnd.lotus-wordpro"> |
575 | - <_comment>Lotus Word Pro document</_comment> | |
575 | + <comment>Lotus Word Pro document</comment> | |
576 | 576 | <generic-icon name="x-office-document"/> |
577 | 577 | <magic priority="50"> |
578 | 578 | <match type="string" value="WordPro" offset="0"/> |
@@ -580,7 +580,7 @@ command to generate the output files. | ||
580 | 580 | <glob pattern="*.lwp"/> |
581 | 581 | </mime-type> |
582 | 582 | <mime-type type="application/vnd.ms-access"> |
583 | - <_comment>JET database</_comment> | |
583 | + <comment>JET database</comment> | |
584 | 584 | <acronym>JET</acronym> |
585 | 585 | <expanded-acronym>Joint Engine Technology</expanded-acronym> |
586 | 586 | <generic-icon name="x-office-document"/> |
@@ -597,7 +597,7 @@ command to generate the output files. | ||
597 | 597 | <alias type="zz-application/zz-winassoc-mdb"/> |
598 | 598 | </mime-type> |
599 | 599 | <mime-type type="application/vnd.ms-cab-compressed"> |
600 | - <_comment>Microsoft Cabinet archive</_comment> | |
600 | + <comment>Microsoft Cabinet archive</comment> | |
601 | 601 | <generic-icon name="package-x-generic"/> |
602 | 602 | <magic priority="60"> |
603 | 603 | <match offset="0" type="string" value="MSCF\0\0\0\0" /> |
@@ -606,7 +606,7 @@ command to generate the output files. | ||
606 | 606 | <alias type="zz-application/zz-winassoc-cab"/> |
607 | 607 | </mime-type> |
608 | 608 | <mime-type type="application/vnd.ms-excel"> |
609 | - <_comment>Excel spreadsheet</_comment> | |
609 | + <comment>Excel spreadsheet</comment> | |
610 | 610 | <generic-icon name="x-office-spreadsheet"/> |
611 | 611 | <magic priority="50"> |
612 | 612 | <match type="string" value="Microsoft Excel 5.0 Worksheet" offset="2080"/> |
@@ -624,31 +624,31 @@ command to generate the output files. | ||
624 | 624 | <alias type="zz-application/zz-winassoc-xls"/> |
625 | 625 | </mime-type> |
626 | 626 | <mime-type type="application/vnd.ms-excel.addin.macroEnabled.12"> |
627 | - <_comment>Excel add-in</_comment> | |
627 | + <comment>Excel add-in</comment> | |
628 | 628 | <generic-icon name="x-office-spreadsheet"/> |
629 | 629 | <glob pattern="*.xlam"/> |
630 | 630 | <sub-class-of type="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"/> |
631 | 631 | </mime-type> |
632 | 632 | <mime-type type="application/vnd.ms-excel.sheet.binary.macroEnabled.12"> |
633 | - <_comment>Excel 2007 binary spreadsheet</_comment> | |
633 | + <comment>Excel 2007 binary spreadsheet</comment> | |
634 | 634 | <generic-icon name="x-office-spreadsheet"/> |
635 | 635 | <glob pattern="*.xlsb"/> |
636 | 636 | <sub-class-of type="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"/> |
637 | 637 | </mime-type> |
638 | 638 | <mime-type type="application/vnd.ms-excel.sheet.macroEnabled.12"> |
639 | - <_comment>Excel spreadsheet</_comment> | |
639 | + <comment>Excel spreadsheet</comment> | |
640 | 640 | <generic-icon name="x-office-spreadsheet"/> |
641 | 641 | <glob pattern="*.xlsm"/> |
642 | 642 | <sub-class-of type="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"/> |
643 | 643 | </mime-type> |
644 | 644 | <mime-type type="application/vnd.ms-excel.template.macroEnabled.12"> |
645 | - <_comment>Excel spreadsheet template</_comment> | |
645 | + <comment>Excel spreadsheet template</comment> | |
646 | 646 | <generic-icon name="x-office-spreadsheet"/> |
647 | 647 | <glob pattern="*.xltm"/> |
648 | 648 | <sub-class-of type="application/vnd.openxmlformats-officedocument.spreadsheetml.template"/> |
649 | 649 | </mime-type> |
650 | 650 | <mime-type type="application/vnd.ms-powerpoint"> |
651 | - <_comment>PowerPoint presentation</_comment> | |
651 | + <comment>PowerPoint presentation</comment> | |
652 | 652 | <generic-icon name="x-office-presentation"/> |
653 | 653 | <glob pattern="*.ppz"/> |
654 | 654 | <glob pattern="*.ppt"/> |
@@ -659,84 +659,84 @@ command to generate the output files. | ||
659 | 659 | <alias type="application/x-mspowerpoint"/> |
660 | 660 | </mime-type> |
661 | 661 | <mime-type type="application/vnd.ms-powerpoint.addin.macroEnabled.12"> |
662 | - <_comment>PowerPoint add-in</_comment> | |
662 | + <comment>PowerPoint add-in</comment> | |
663 | 663 | <generic-icon name="x-office-presentation"/> |
664 | 664 | <glob pattern="*.ppam"/> |
665 | 665 | </mime-type> |
666 | 666 | <mime-type type="application/vnd.ms-powerpoint.presentation.macroEnabled.12"> |
667 | - <_comment>PowerPoint presentation</_comment> | |
667 | + <comment>PowerPoint presentation</comment> | |
668 | 668 | <generic-icon name="x-office-presentation"/> |
669 | 669 | <glob pattern="*.pptm"/> |
670 | 670 | <sub-class-of type="application/vnd.openxmlformats-officedocument.presentationml.presentation"/> |
671 | 671 | </mime-type> |
672 | 672 | <mime-type type="application/vnd.ms-powerpoint.slide.macroEnabled.12"> |
673 | - <_comment>PowerPoint slide</_comment> | |
673 | + <comment>PowerPoint slide</comment> | |
674 | 674 | <generic-icon name="x-office-presentation"/> |
675 | 675 | <glob pattern="*.sldm"/> |
676 | 676 | <sub-class-of type="application/vnd.openxmlformats-officedocument.presentationml.slide"/> |
677 | 677 | </mime-type> |
678 | 678 | <mime-type type="application/vnd.ms-powerpoint.slideshow.macroEnabled.12"> |
679 | - <_comment>PowerPoint presentation</_comment> | |
679 | + <comment>PowerPoint presentation</comment> | |
680 | 680 | <generic-icon name="x-office-presentation"/> |
681 | 681 | <glob pattern="*.ppsm"/> |
682 | 682 | <sub-class-of type="application/vnd.openxmlformats-officedocument.presentationml.slideshow"/> |
683 | 683 | </mime-type> |
684 | 684 | <mime-type type="application/vnd.ms-powerpoint.template.macroEnabled.12"> |
685 | - <_comment>PowerPoint presentation template</_comment> | |
685 | + <comment>PowerPoint presentation template</comment> | |
686 | 686 | <generic-icon name="x-office-presentation"/> |
687 | 687 | <glob pattern="*.potm"/> |
688 | 688 | <sub-class-of type="application/vnd.openxmlformats-officedocument.presentationml.template"/> |
689 | 689 | </mime-type> |
690 | 690 | <mime-type type="application/vnd.ms-visio.drawing.main+xml"> |
691 | - <_comment>Office Open XML Visio drawing</_comment> | |
691 | + <comment>Office Open XML Visio drawing</comment> | |
692 | 692 | <generic-icon name="image-x-generic"/> |
693 | 693 | <glob pattern="*.vsdx"/> |
694 | 694 | <sub-class-of type="application/zip"/> |
695 | 695 | </mime-type> |
696 | 696 | <mime-type type="application/vnd.ms-visio.template.main+xml"> |
697 | - <_comment>Office Open XML Visio template</_comment> | |
697 | + <comment>Office Open XML Visio template</comment> | |
698 | 698 | <generic-icon name="image-x-generic"/> |
699 | 699 | <glob pattern="*.vstx"/> |
700 | 700 | <sub-class-of type="application/zip"/> |
701 | 701 | </mime-type> |
702 | 702 | <mime-type type="application/vnd.ms-visio.stencil.main+xml"> |
703 | - <_comment>Office Open XML Visio stencil</_comment> | |
703 | + <comment>Office Open XML Visio stencil</comment> | |
704 | 704 | <generic-icon name="image-x-generic"/> |
705 | 705 | <glob pattern="*.vssx"/> |
706 | 706 | <sub-class-of type="application/zip"/> |
707 | 707 | </mime-type> |
708 | 708 | <mime-type type="application/vnd.ms-visio.drawing.macroEnabled.main+xml"> |
709 | - <_comment>Office Open XML Visio drawing</_comment> | |
709 | + <comment>Office Open XML Visio drawing</comment> | |
710 | 710 | <generic-icon name="image-x-generic"/> |
711 | 711 | <glob pattern="*.vsdm"/> |
712 | 712 | <sub-class-of type="application/zip"/> |
713 | 713 | </mime-type> |
714 | 714 | <mime-type type="application/vnd.ms-visio.template.macroEnabled.main+xml"> |
715 | - <_comment>Office Open XML Visio template</_comment> | |
715 | + <comment>Office Open XML Visio template</comment> | |
716 | 716 | <generic-icon name="image-x-generic"/> |
717 | 717 | <glob pattern="*.vstm"/> |
718 | 718 | <sub-class-of type="application/zip"/> |
719 | 719 | </mime-type> |
720 | 720 | <mime-type type="application/vnd.ms-visio.stencil.macroEnabled.main+xml"> |
721 | - <_comment>Office Open XML Visio stencil</_comment> | |
721 | + <comment>Office Open XML Visio stencil</comment> | |
722 | 722 | <generic-icon name="image-x-generic"/> |
723 | 723 | <glob pattern="*.vssm"/> |
724 | 724 | <sub-class-of type="application/zip"/> |
725 | 725 | </mime-type> |
726 | 726 | <mime-type type="application/vnd.ms-word.document.macroEnabled.12"> |
727 | - <_comment>Word document</_comment> | |
727 | + <comment>Word document</comment> | |
728 | 728 | <generic-icon name="x-office-document"/> |
729 | 729 | <glob pattern="*.docm"/> |
730 | 730 | <sub-class-of type="application/vnd.openxmlformats-officedocument.wordprocessingml.document"/> |
731 | 731 | </mime-type> |
732 | 732 | <mime-type type="application/vnd.ms-word.template.macroEnabled.12"> |
733 | - <_comment>Word document template</_comment> | |
733 | + <comment>Word document template</comment> | |
734 | 734 | <generic-icon name="x-office-document"/> |
735 | 735 | <glob pattern="*.dotm"/> |
736 | 736 | <sub-class-of type="application/vnd.openxmlformats-officedocument.wordprocessingml.template"/> |
737 | 737 | </mime-type> |
738 | 738 | <mime-type type="application/oxps"> |
739 | - <_comment>XPS document</_comment> | |
739 | + <comment>XPS document</comment> | |
740 | 740 | <acronym>XPS</acronym> |
741 | 741 | <expanded-acronym>Open XML Paper Specification</expanded-acronym> |
742 | 742 | <sub-class-of type="application/zip"/> |
@@ -747,7 +747,7 @@ command to generate the output files. | ||
747 | 747 | <alias type="application/xps"/> |
748 | 748 | </mime-type> |
749 | 749 | <mime-type type="application/vnd.ms-works"> |
750 | - <_comment>Microsoft Works document</_comment> | |
750 | + <comment>Microsoft Works document</comment> | |
751 | 751 | <sub-class-of type="application/x-ole-storage"/> |
752 | 752 | <generic-icon name="x-office-document"/> |
753 | 753 | <glob pattern="*.wcm"/> |
@@ -757,7 +757,7 @@ command to generate the output files. | ||
757 | 757 | <glob pattern="*.xlr"/> |
758 | 758 | </mime-type> |
759 | 759 | <mime-type type="application/vnd.visio"> |
760 | - <_comment>Microsoft Visio document</_comment> | |
760 | + <comment>Microsoft Visio document</comment> | |
761 | 761 | <sub-class-of type="application/x-ole-storage"/> |
762 | 762 | <generic-icon name="x-office-document"/> |
763 | 763 | <glob pattern="*.vsd"/> |
@@ -766,7 +766,7 @@ command to generate the output files. | ||
766 | 766 | <glob pattern="*.vss"/> |
767 | 767 | </mime-type> |
768 | 768 | <mime-type type="application/msword"> |
769 | - <_comment>Word document</_comment> | |
769 | + <comment>Word document</comment> | |
770 | 770 | <sub-class-of type="application/x-ole-storage"/> |
771 | 771 | <generic-icon name="x-office-document"/> |
772 | 772 | <magic priority="60"> |
@@ -786,13 +786,13 @@ command to generate the output files. | ||
786 | 786 | <alias type="zz-application/zz-winassoc-doc"/> |
787 | 787 | </mime-type> |
788 | 788 | <mime-type type="application/msword-template"> |
789 | - <_comment>Word template</_comment> | |
789 | + <comment>Word template</comment> | |
790 | 790 | <sub-class-of type="application/msword"/> |
791 | 791 | <generic-icon name="x-office-document"/> |
792 | 792 | <glob pattern="*.dot"/> |
793 | 793 | </mime-type> |
794 | 794 | <mime-type type="application/gml+xml"> |
795 | - <_comment>GML document</_comment> | |
795 | + <comment>GML document</comment> | |
796 | 796 | <acronym>GML</acronym> |
797 | 797 | <expanded-acronym>Geography Markup Language</expanded-acronym> |
798 | 798 | <glob pattern="*.gml"/> |
@@ -800,14 +800,14 @@ command to generate the output files. | ||
800 | 800 | <sub-class-of type="application/xml"/> |
801 | 801 | </mime-type> |
802 | 802 | <mime-type type="application/gnunet-directory"> |
803 | - <_comment>GNUnet search file</_comment> | |
803 | + <comment>GNUnet search file</comment> | |
804 | 804 | <magic priority="50"> |
805 | 805 | <match type="string" value="\211GND\r\n\032\n" offset="0"/> |
806 | 806 | </magic> |
807 | 807 | <glob pattern="*.gnd"/> |
808 | 808 | </mime-type> |
809 | 809 | <mime-type type="application/vnd.ms-tnef"> |
810 | - <_comment>TNEF message</_comment> | |
810 | + <comment>TNEF message</comment> | |
811 | 811 | <acronym>TNEF</acronym> |
812 | 812 | <expanded-acronym>Transport Neutral Encapsulation Format</expanded-acronym> |
813 | 813 | <magic priority="50"> |
@@ -819,37 +819,37 @@ command to generate the output files. | ||
819 | 819 | <alias type="application/ms-tnef"/> |
820 | 820 | </mime-type> |
821 | 821 | <mime-type type="application/vnd.stardivision.calc"> |
822 | - <_comment>StarCalc spreadsheet</_comment> | |
822 | + <comment>StarCalc spreadsheet</comment> | |
823 | 823 | <generic-icon name="x-office-spreadsheet"/> |
824 | 824 | <glob pattern="*.sdc"/> |
825 | 825 | </mime-type> |
826 | 826 | <mime-type type="application/vnd.stardivision.chart"> |
827 | - <_comment>StarChart chart</_comment> | |
827 | + <comment>StarChart chart</comment> | |
828 | 828 | <generic-icon name="x-office-spreadsheet"/> |
829 | 829 | <glob pattern="*.sds"/> |
830 | 830 | </mime-type> |
831 | 831 | <mime-type type="application/vnd.stardivision.draw"> |
832 | - <_comment>StarDraw drawing</_comment> | |
832 | + <comment>StarDraw drawing</comment> | |
833 | 833 | <generic-icon name="image-x-generic"/> |
834 | 834 | <glob pattern="*.sda"/> |
835 | 835 | </mime-type> |
836 | 836 | <mime-type type="application/vnd.stardivision.impress"> |
837 | - <_comment>StarImpress presentation</_comment> | |
837 | + <comment>StarImpress presentation</comment> | |
838 | 838 | <generic-icon name="x-office-presentation"/> |
839 | 839 | <glob pattern="*.sdd"/> |
840 | 840 | <glob pattern="*.sdp"/> |
841 | 841 | </mime-type> |
842 | 842 | <mime-type type="application/vnd.stardivision.mail"> |
843 | - <_comment>StarMail email</_comment> | |
843 | + <comment>StarMail email</comment> | |
844 | 844 | <glob pattern="*.smd"/> |
845 | 845 | </mime-type> |
846 | 846 | <mime-type type="application/vnd.stardivision.math"> |
847 | - <_comment>StarMath formula</_comment> | |
847 | + <comment>StarMath formula</comment> | |
848 | 848 | <generic-icon name="x-office-document"/> |
849 | 849 | <glob pattern="*.smf"/> |
850 | 850 | </mime-type> |
851 | 851 | <mime-type type="application/vnd.stardivision.writer"> |
852 | - <_comment>StarWriter document</_comment> | |
852 | + <comment>StarWriter document</comment> | |
853 | 853 | <generic-icon name="x-office-document"/> |
854 | 854 | <glob pattern="*.sdw"/> |
855 | 855 | <glob pattern="*.vor"/> |
@@ -860,7 +860,7 @@ command to generate the output files. | ||
860 | 860 | <alias type="application/vnd.stardivision.writer-global"/> |
861 | 861 | </mime-type> |
862 | 862 | <mime-type type="application/vnd.sun.xml.calc"> |
863 | - <_comment>OpenOffice Calc spreadsheet</_comment> | |
863 | + <comment>OpenOffice Calc spreadsheet</comment> | |
864 | 864 | <sub-class-of type="application/zip"/> |
865 | 865 | <generic-icon name="x-office-spreadsheet"/> |
866 | 866 | <magic priority="70"> |
@@ -873,7 +873,7 @@ command to generate the output files. | ||
873 | 873 | <glob pattern="*.sxc"/> |
874 | 874 | </mime-type> |
875 | 875 | <mime-type type="application/vnd.sun.xml.calc.template"> |
876 | - <_comment>OpenOffice Calc template</_comment> | |
876 | + <comment>OpenOffice Calc template</comment> | |
877 | 877 | <sub-class-of type="application/zip"/> |
878 | 878 | <generic-icon name="x-office-spreadsheet"/> |
879 | 879 | <magic priority="70"> |
@@ -886,7 +886,7 @@ command to generate the output files. | ||
886 | 886 | <glob pattern="*.stc"/> |
887 | 887 | </mime-type> |
888 | 888 | <mime-type type="application/vnd.sun.xml.draw"> |
889 | - <_comment>OpenOffice Draw drawing</_comment> | |
889 | + <comment>OpenOffice Draw drawing</comment> | |
890 | 890 | <sub-class-of type="application/zip"/> |
891 | 891 | <generic-icon name="image-x-generic"/> |
892 | 892 | <magic priority="70"> |
@@ -899,7 +899,7 @@ command to generate the output files. | ||
899 | 899 | <glob pattern="*.sxd"/> |
900 | 900 | </mime-type> |
901 | 901 | <mime-type type="application/vnd.sun.xml.draw.template"> |
902 | - <_comment>OpenOffice Draw template</_comment> | |
902 | + <comment>OpenOffice Draw template</comment> | |
903 | 903 | <sub-class-of type="application/zip"/> |
904 | 904 | <generic-icon name="image-x-generic"/> |
905 | 905 | <magic priority="70"> |
@@ -912,7 +912,7 @@ command to generate the output files. | ||
912 | 912 | <glob pattern="*.std"/> |
913 | 913 | </mime-type> |
914 | 914 | <mime-type type="application/vnd.sun.xml.impress"> |
915 | - <_comment>OpenOffice Impress presentation</_comment> | |
915 | + <comment>OpenOffice Impress presentation</comment> | |
916 | 916 | <sub-class-of type="application/zip"/> |
917 | 917 | <generic-icon name="x-office-presentation"/> |
918 | 918 | <magic priority="70"> |
@@ -925,7 +925,7 @@ command to generate the output files. | ||
925 | 925 | <glob pattern="*.sxi"/> |
926 | 926 | </mime-type> |
927 | 927 | <mime-type type="application/vnd.sun.xml.impress.template"> |
928 | - <_comment>OpenOffice Impress template</_comment> | |
928 | + <comment>OpenOffice Impress template</comment> | |
929 | 929 | <sub-class-of type="application/zip"/> |
930 | 930 | <generic-icon name="x-office-presentation"/> |
931 | 931 | <magic priority="70"> |
@@ -938,7 +938,7 @@ command to generate the output files. | ||
938 | 938 | <glob pattern="*.sti"/> |
939 | 939 | </mime-type> |
940 | 940 | <mime-type type="application/vnd.sun.xml.math"> |
941 | - <_comment>OpenOffice Math formula</_comment> | |
941 | + <comment>OpenOffice Math formula</comment> | |
942 | 942 | <sub-class-of type="application/zip"/> |
943 | 943 | <generic-icon name="x-office-document"/> |
944 | 944 | <magic priority="70"> |
@@ -951,7 +951,7 @@ command to generate the output files. | ||
951 | 951 | <glob pattern="*.sxm"/> |
952 | 952 | </mime-type> |
953 | 953 | <mime-type type="application/vnd.sun.xml.writer"> |
954 | - <_comment>OpenOffice Writer document</_comment> | |
954 | + <comment>OpenOffice Writer document</comment> | |
955 | 955 | <sub-class-of type="application/zip"/> |
956 | 956 | <generic-icon name="x-office-document"/> |
957 | 957 | <magic priority="70"> |
@@ -964,7 +964,7 @@ command to generate the output files. | ||
964 | 964 | <glob pattern="*.sxw"/> |
965 | 965 | </mime-type> |
966 | 966 | <mime-type type="application/vnd.sun.xml.writer.global"> |
967 | - <_comment>OpenOffice Writer global document</_comment> | |
967 | + <comment>OpenOffice Writer global document</comment> | |
968 | 968 | <sub-class-of type="application/zip"/> |
969 | 969 | <generic-icon name="x-office-document"/> |
970 | 970 | <magic priority="70"> |
@@ -977,7 +977,7 @@ command to generate the output files. | ||
977 | 977 | <glob pattern="*.sxg"/> |
978 | 978 | </mime-type> |
979 | 979 | <mime-type type="application/vnd.sun.xml.writer.template"> |
980 | - <_comment>OpenOffice Writer template</_comment> | |
980 | + <comment>OpenOffice Writer template</comment> | |
981 | 981 | <sub-class-of type="application/zip"/> |
982 | 982 | <generic-icon name="x-office-document"/> |
983 | 983 | <magic priority="70"> |
@@ -990,7 +990,7 @@ command to generate the output files. | ||
990 | 990 | <glob pattern="*.stw"/> |
991 | 991 | </mime-type> |
992 | 992 | <mime-type type="application/vnd.oasis.opendocument.text"> |
993 | - <_comment>ODT document</_comment> | |
993 | + <comment>ODT document</comment> | |
994 | 994 | <acronym>ODT</acronym> |
995 | 995 | <expanded-acronym>OpenDocument Text</expanded-acronym> |
996 | 996 | <sub-class-of type="application/zip"/> |
@@ -1005,7 +1005,7 @@ command to generate the output files. | ||
1005 | 1005 | <glob pattern="*.odt"/> |
1006 | 1006 | </mime-type> |
1007 | 1007 | <mime-type type="application/vnd.oasis.opendocument.text-flat-xml"> |
1008 | - <_comment>ODT document (Flat XML)</_comment> | |
1008 | + <comment>ODT document (Flat XML)</comment> | |
1009 | 1009 | <acronym>FODT</acronym> |
1010 | 1010 | <expanded-acronym>OpenDocument Text (Flat XML)</expanded-acronym> |
1011 | 1011 | <sub-class-of type="application/xml"/> |
@@ -1013,7 +1013,7 @@ command to generate the output files. | ||
1013 | 1013 | <glob pattern="*.fodt"/> |
1014 | 1014 | </mime-type> |
1015 | 1015 | <mime-type type="application/vnd.oasis.opendocument.text-template"> |
1016 | - <_comment>ODT template</_comment> | |
1016 | + <comment>ODT template</comment> | |
1017 | 1017 | <acronym>ODT</acronym> |
1018 | 1018 | <expanded-acronym>OpenDocument Text</expanded-acronym> |
1019 | 1019 | <sub-class-of type="application/zip"/> |
@@ -1028,7 +1028,7 @@ command to generate the output files. | ||
1028 | 1028 | <glob pattern="*.ott"/> |
1029 | 1029 | </mime-type> |
1030 | 1030 | <mime-type type="application/vnd.oasis.opendocument.text-web"> |
1031 | - <_comment>OTH template</_comment> | |
1031 | + <comment>OTH template</comment> | |
1032 | 1032 | <acronym>OTH</acronym> |
1033 | 1033 | <expanded-acronym>OpenDocument HTML</expanded-acronym> |
1034 | 1034 | <sub-class-of type="application/zip"/> |
@@ -1043,7 +1043,7 @@ command to generate the output files. | ||
1043 | 1043 | <glob pattern="*.oth"/> |
1044 | 1044 | </mime-type> |
1045 | 1045 | <mime-type type="application/vnd.oasis.opendocument.text-master"> |
1046 | - <_comment>ODM document</_comment> | |
1046 | + <comment>ODM document</comment> | |
1047 | 1047 | <acronym>ODM</acronym> |
1048 | 1048 | <expanded-acronym>OpenDocument Master</expanded-acronym> |
1049 | 1049 | <sub-class-of type="application/zip"/> |
@@ -1058,7 +1058,7 @@ command to generate the output files. | ||
1058 | 1058 | <glob pattern="*.odm"/> |
1059 | 1059 | </mime-type> |
1060 | 1060 | <mime-type type="application/vnd.oasis.opendocument.graphics"> |
1061 | - <_comment>ODG drawing</_comment> | |
1061 | + <comment>ODG drawing</comment> | |
1062 | 1062 | <acronym>ODG</acronym> |
1063 | 1063 | <expanded-acronym>OpenDocument Drawing</expanded-acronym> |
1064 | 1064 | <sub-class-of type="application/zip"/> |
@@ -1073,7 +1073,7 @@ command to generate the output files. | ||
1073 | 1073 | <glob pattern="*.odg"/> |
1074 | 1074 | </mime-type> |
1075 | 1075 | <mime-type type="application/vnd.oasis.opendocument.graphics-flat-xml"> |
1076 | - <_comment>ODG drawing (Flat XML)</_comment> | |
1076 | + <comment>ODG drawing (Flat XML)</comment> | |
1077 | 1077 | <acronym>FODG</acronym> |
1078 | 1078 | <expanded-acronym>OpenDocument Drawing (Flat XML)</expanded-acronym> |
1079 | 1079 | <sub-class-of type="application/xml"/> |
@@ -1081,7 +1081,7 @@ command to generate the output files. | ||
1081 | 1081 | <glob pattern="*.fodg"/> |
1082 | 1082 | </mime-type> |
1083 | 1083 | <mime-type type="application/vnd.oasis.opendocument.graphics-template"> |
1084 | - <_comment>ODG template</_comment> | |
1084 | + <comment>ODG template</comment> | |
1085 | 1085 | <acronym>ODG</acronym> |
1086 | 1086 | <expanded-acronym>OpenDocument Drawing</expanded-acronym> |
1087 | 1087 | <sub-class-of type="application/zip"/> |
@@ -1096,7 +1096,7 @@ command to generate the output files. | ||
1096 | 1096 | <glob pattern="*.otg"/> |
1097 | 1097 | </mime-type> |
1098 | 1098 | <mime-type type="application/vnd.oasis.opendocument.presentation"> |
1099 | - <_comment>ODP presentation</_comment> | |
1099 | + <comment>ODP presentation</comment> | |
1100 | 1100 | <acronym>ODP</acronym> |
1101 | 1101 | <expanded-acronym>OpenDocument Presentation</expanded-acronym> |
1102 | 1102 | <sub-class-of type="application/zip"/> |
@@ -1111,7 +1111,7 @@ command to generate the output files. | ||
1111 | 1111 | <glob pattern="*.odp"/> |
1112 | 1112 | </mime-type> |
1113 | 1113 | <mime-type type="application/vnd.oasis.opendocument.presentation-flat-xml"> |
1114 | - <_comment>ODP presentation (Flat XML)</_comment> | |
1114 | + <comment>ODP presentation (Flat XML)</comment> | |
1115 | 1115 | <acronym>FODP</acronym> |
1116 | 1116 | <expanded-acronym>OpenDocument Presentation (Flat XML)</expanded-acronym> |
1117 | 1117 | <sub-class-of type="application/xml"/> |
@@ -1119,7 +1119,7 @@ command to generate the output files. | ||
1119 | 1119 | <glob pattern="*.fodp"/> |
1120 | 1120 | </mime-type> |
1121 | 1121 | <mime-type type="application/vnd.oasis.opendocument.presentation-template"> |
1122 | - <_comment>ODP template</_comment> | |
1122 | + <comment>ODP template</comment> | |
1123 | 1123 | <acronym>ODP</acronym> |
1124 | 1124 | <expanded-acronym>OpenDocument Presentation</expanded-acronym> |
1125 | 1125 | <sub-class-of type="application/zip"/> |
@@ -1134,7 +1134,7 @@ command to generate the output files. | ||
1134 | 1134 | <glob pattern="*.otp"/> |
1135 | 1135 | </mime-type> |
1136 | 1136 | <mime-type type="application/vnd.oasis.opendocument.spreadsheet"> |
1137 | - <_comment>ODS spreadsheet</_comment> | |
1137 | + <comment>ODS spreadsheet</comment> | |
1138 | 1138 | <acronym>ODS</acronym> |
1139 | 1139 | <expanded-acronym>OpenDocument Spreadsheet</expanded-acronym> |
1140 | 1140 | <sub-class-of type="application/zip"/> |
@@ -1149,7 +1149,7 @@ command to generate the output files. | ||
1149 | 1149 | <glob pattern="*.ods"/> |
1150 | 1150 | </mime-type> |
1151 | 1151 | <mime-type type="application/vnd.oasis.opendocument.spreadsheet-flat-xml"> |
1152 | - <_comment>ODS spreadsheet (Flat XML)</_comment> | |
1152 | + <comment>ODS spreadsheet (Flat XML)</comment> | |
1153 | 1153 | <acronym>FODS</acronym> |
1154 | 1154 | <expanded-acronym>OpenDocument Spreadsheet (Flat XML)</expanded-acronym> |
1155 | 1155 | <sub-class-of type="application/xml"/> |
@@ -1157,7 +1157,7 @@ command to generate the output files. | ||
1157 | 1157 | <glob pattern="*.fods"/> |
1158 | 1158 | </mime-type> |
1159 | 1159 | <mime-type type="application/vnd.oasis.opendocument.spreadsheet-template"> |
1160 | - <_comment>ODS template</_comment> | |
1160 | + <comment>ODS template</comment> | |
1161 | 1161 | <acronym>ODS</acronym> |
1162 | 1162 | <expanded-acronym>OpenDocument Spreadsheet</expanded-acronym> |
1163 | 1163 | <sub-class-of type="application/zip"/> |
@@ -1172,7 +1172,7 @@ command to generate the output files. | ||
1172 | 1172 | <glob pattern="*.ots"/> |
1173 | 1173 | </mime-type> |
1174 | 1174 | <mime-type type="application/vnd.oasis.opendocument.chart"> |
1175 | - <_comment>ODC chart</_comment> | |
1175 | + <comment>ODC chart</comment> | |
1176 | 1176 | <acronym>ODC</acronym> |
1177 | 1177 | <expanded-acronym>OpenDocument Chart</expanded-acronym> |
1178 | 1178 | <sub-class-of type="application/zip"/> |
@@ -1187,7 +1187,7 @@ command to generate the output files. | ||
1187 | 1187 | <glob pattern="*.odc"/> |
1188 | 1188 | </mime-type> |
1189 | 1189 | <mime-type type="application/vnd.oasis.opendocument.chart-template"> |
1190 | - <_comment>ODC template</_comment> | |
1190 | + <comment>ODC template</comment> | |
1191 | 1191 | <acronym>ODC</acronym> |
1192 | 1192 | <expanded-acronym>OpenDocument Chart</expanded-acronym> |
1193 | 1193 | <sub-class-of type="application/zip"/> |
@@ -1202,7 +1202,7 @@ command to generate the output files. | ||
1202 | 1202 | <glob pattern="*.otc"/> |
1203 | 1203 | </mime-type> |
1204 | 1204 | <mime-type type="application/vnd.oasis.opendocument.formula"> |
1205 | - <_comment>ODF formula</_comment> | |
1205 | + <comment>ODF formula</comment> | |
1206 | 1206 | <acronym>ODF</acronym> |
1207 | 1207 | <expanded-acronym>OpenDocument Formula</expanded-acronym> |
1208 | 1208 | <sub-class-of type="application/zip"/> |
@@ -1217,7 +1217,7 @@ command to generate the output files. | ||
1217 | 1217 | <glob pattern="*.odf"/> |
1218 | 1218 | </mime-type> |
1219 | 1219 | <mime-type type="application/vnd.oasis.opendocument.formula-template"> |
1220 | - <_comment>ODF template</_comment> | |
1220 | + <comment>ODF template</comment> | |
1221 | 1221 | <acronym>ODF</acronym> |
1222 | 1222 | <expanded-acronym>OpenDocument Formula</expanded-acronym> |
1223 | 1223 | <sub-class-of type="application/zip"/> |
@@ -1232,7 +1232,7 @@ command to generate the output files. | ||
1232 | 1232 | <glob pattern="*.otf"/> |
1233 | 1233 | </mime-type> |
1234 | 1234 | <mime-type type="application/vnd.oasis.opendocument.database"> |
1235 | - <_comment>ODB database</_comment> | |
1235 | + <comment>ODB database</comment> | |
1236 | 1236 | <acronym>ODB</acronym> |
1237 | 1237 | <expanded-acronym>OpenDocument Database</expanded-acronym> |
1238 | 1238 | <sub-class-of type="application/zip"/> |
@@ -1248,7 +1248,7 @@ command to generate the output files. | ||
1248 | 1248 | <alias type="application/vnd.sun.xml.base"/> |
1249 | 1249 | </mime-type> |
1250 | 1250 | <mime-type type="application/vnd.oasis.opendocument.image"> |
1251 | - <_comment>ODI image</_comment> | |
1251 | + <comment>ODI image</comment> | |
1252 | 1252 | <acronym>ODI</acronym> |
1253 | 1253 | <expanded-acronym>OpenDocument Image</expanded-acronym> |
1254 | 1254 | <sub-class-of type="application/zip"/> |
@@ -1263,18 +1263,18 @@ command to generate the output files. | ||
1263 | 1263 | <glob pattern="*.odi"/> |
1264 | 1264 | </mime-type> |
1265 | 1265 | <mime-type type="application/vnd.openofficeorg.extension"> |
1266 | - <_comment>OpenOffice.org extension</_comment> | |
1266 | + <comment>OpenOffice.org extension</comment> | |
1267 | 1267 | <sub-class-of type="application/zip"/> |
1268 | 1268 | <generic-icon name="x-office-document"/> |
1269 | 1269 | <glob pattern="*.oxt" /> |
1270 | 1270 | </mime-type> |
1271 | 1271 | <mime-type type="application/vnd.android.package-archive"> |
1272 | - <_comment>Android package</_comment> | |
1272 | + <comment>Android package</comment> | |
1273 | 1273 | <sub-class-of type="application/x-java-archive"/> |
1274 | 1274 | <glob pattern="*.apk"/> |
1275 | 1275 | </mime-type> |
1276 | 1276 | <mime-type type="application/vnd.symbian.install"> |
1277 | - <_comment>SIS package</_comment> | |
1277 | + <comment>SIS package</comment> | |
1278 | 1278 | <acronym>SIS</acronym> |
1279 | 1279 | <expanded-acronym>Symbian Installation File</expanded-acronym> |
1280 | 1280 | <generic-icon name="package-x-generic"/> |
@@ -1284,7 +1284,7 @@ command to generate the output files. | ||
1284 | 1284 | <glob pattern="*.sis"/> |
1285 | 1285 | </mime-type> |
1286 | 1286 | <mime-type type="x-epoc/x-sisx-app"> |
1287 | - <_comment>SISX package</_comment> | |
1287 | + <comment>SISX package</comment> | |
1288 | 1288 | <acronym>SIS</acronym> |
1289 | 1289 | <expanded-acronym>Symbian Installation File</expanded-acronym> |
1290 | 1290 | <generic-icon name="package-x-generic"/> |
@@ -1294,7 +1294,7 @@ command to generate the output files. | ||
1294 | 1294 | <glob pattern="*.sisx"/> |
1295 | 1295 | </mime-type> |
1296 | 1296 | <mime-type type="application/vnd.tcpdump.pcap"> |
1297 | - <_comment>network packet capture</_comment> | |
1297 | + <comment>network packet capture</comment> | |
1298 | 1298 | <magic priority="50"> |
1299 | 1299 | <match type="host32" value="0xa1b2c3d4" offset="0"/> |
1300 | 1300 | <match type="host32" value="0xd4c3b2a1" offset="0"/> |
@@ -1306,7 +1306,7 @@ command to generate the output files. | ||
1306 | 1306 | <alias type="application/pcap"/> |
1307 | 1307 | </mime-type> |
1308 | 1308 | <mime-type type="application/vnd.wordperfect"> |
1309 | - <_comment>WordPerfect document</_comment> | |
1309 | + <comment>WordPerfect document</comment> | |
1310 | 1310 | <alias type="application/x-wordperfect"/> |
1311 | 1311 | <alias type="application/wordperfect"/> |
1312 | 1312 | <generic-icon name="x-office-document"/> |
@@ -1322,13 +1322,13 @@ command to generate the output files. | ||
1322 | 1322 | <glob pattern="*.wpp"/> |
1323 | 1323 | </mime-type> |
1324 | 1324 | <mime-type type="application/vnd.youtube.yt"> |
1325 | - <_comment>YouTube media archive</_comment> | |
1325 | + <comment>YouTube media archive</comment> | |
1326 | 1326 | <generic-icon name="video-x-generic"/> |
1327 | 1327 | <glob pattern="*.yt"/> |
1328 | 1328 | <sub-class-of type="application/zip"/> |
1329 | 1329 | </mime-type> |
1330 | 1330 | <mime-type type="application/x-spss-por"> |
1331 | - <_comment>SPSS portable data file</_comment> | |
1331 | + <comment>SPSS portable data file</comment> | |
1332 | 1332 | <acronym>SPSS</acronym> |
1333 | 1333 | <expanded-acronym>Statistical Package for the Social Sciences</expanded-acronym> |
1334 | 1334 | <magic priority="50"> |
@@ -1337,7 +1337,7 @@ command to generate the output files. | ||
1337 | 1337 | <glob pattern="*.por"/> |
1338 | 1338 | </mime-type> |
1339 | 1339 | <mime-type type="application/x-spss-sav"> |
1340 | - <_comment>SPSS data file</_comment> | |
1340 | + <comment>SPSS data file</comment> | |
1341 | 1341 | <acronym>SPSS</acronym> |
1342 | 1342 | <expanded-acronym>Statistical Package for the Social Sciences</expanded-acronym> |
1343 | 1343 | <alias type="application/x-spss-savefile"/> |
@@ -1349,7 +1349,7 @@ command to generate the output files. | ||
1349 | 1349 | <glob pattern="*.zsav"/> |
1350 | 1350 | </mime-type> |
1351 | 1351 | <mime-type type="application/x-xbel"> |
1352 | - <_comment>XBEL bookmarks</_comment> | |
1352 | + <comment>XBEL bookmarks</comment> | |
1353 | 1353 | <acronym>XBEL</acronym> |
1354 | 1354 | <expanded-acronym>XML Bookmark Exchange Language</expanded-acronym> |
1355 | 1355 | <sub-class-of type="application/xml"/> |
@@ -1360,7 +1360,7 @@ command to generate the output files. | ||
1360 | 1360 | <glob pattern="*.xbel"/> |
1361 | 1361 | </mime-type> |
1362 | 1362 | <mime-type type="application/x-7z-compressed"> |
1363 | - <_comment>7-zip archive</_comment> | |
1363 | + <comment>7-zip archive</comment> | |
1364 | 1364 | <generic-icon name="package-x-generic"/> |
1365 | 1365 | <magic priority="60"> |
1366 | 1366 | <match type="string" value="7z\274\257\047\034" offset="0"/> |
@@ -1368,7 +1368,7 @@ command to generate the output files. | ||
1368 | 1368 | <glob pattern="*.7z"/> |
1369 | 1369 | </mime-type> |
1370 | 1370 | <mime-type type="application/x-abiword"> |
1371 | - <_comment>AbiWord document</_comment> | |
1371 | + <comment>AbiWord document</comment> | |
1372 | 1372 | <sub-class-of type="application/xml"/> |
1373 | 1373 | <generic-icon name="x-office-document"/> |
1374 | 1374 | <magic priority="50"> |
@@ -1382,18 +1382,18 @@ command to generate the output files. | ||
1382 | 1382 | <root-XML namespaceURI="http://www.abisource.com/awml.dtd" localName="abiword"/> |
1383 | 1383 | </mime-type> |
1384 | 1384 | <mime-type type="application/x-cue"> |
1385 | - <_comment>CD image cuesheet</_comment> | |
1385 | + <comment>CD image cuesheet</comment> | |
1386 | 1386 | <sub-class-of type="text/plain"/> |
1387 | 1387 | <generic-icon name="text-x-generic"/> |
1388 | 1388 | <glob pattern="*.cue"/> |
1389 | 1389 | </mime-type> |
1390 | 1390 | <mime-type type="application/x-amipro"> |
1391 | - <_comment>Lotus AmiPro document</_comment> | |
1391 | + <comment>Lotus AmiPro document</comment> | |
1392 | 1392 | <generic-icon name="x-office-document"/> |
1393 | 1393 | <glob pattern="*.sam"/> |
1394 | 1394 | </mime-type> |
1395 | 1395 | <mime-type type="application/x-aportisdoc"> |
1396 | - <_comment>AportisDoc document</_comment> | |
1396 | + <comment>AportisDoc document</comment> | |
1397 | 1397 | <sub-class-of type="application/vnd.palm"/> |
1398 | 1398 | <generic-icon name="x-office-document"/> |
1399 | 1399 | <magic priority="50"> |
@@ -1404,7 +1404,7 @@ command to generate the output files. | ||
1404 | 1404 | <glob pattern="*.pdc"/> |
1405 | 1405 | </mime-type> |
1406 | 1406 | <mime-type type="application/x-applix-spreadsheet"> |
1407 | - <_comment>Applix Spreadsheets spreadsheet</_comment> | |
1407 | + <comment>Applix Spreadsheets spreadsheet</comment> | |
1408 | 1408 | <generic-icon name="x-office-spreadsheet"/> |
1409 | 1409 | <magic priority="50"> |
1410 | 1410 | <match type="string" value="*BEGIN SPREADSHEETS" offset="0"/> |
@@ -1415,7 +1415,7 @@ command to generate the output files. | ||
1415 | 1415 | <glob pattern="*.as"/> |
1416 | 1416 | </mime-type> |
1417 | 1417 | <mime-type type="application/x-applix-word"> |
1418 | - <_comment>Applix Words document</_comment> | |
1418 | + <comment>Applix Words document</comment> | |
1419 | 1419 | <generic-icon name="x-office-document"/> |
1420 | 1420 | <magic priority="50"> |
1421 | 1421 | <match type="string" value="*BEGIN" offset="0"> |
@@ -1425,7 +1425,7 @@ command to generate the output files. | ||
1425 | 1425 | <glob pattern="*.aw"/> |
1426 | 1426 | </mime-type> |
1427 | 1427 | <mime-type type="application/x-arc"> |
1428 | - <_comment>ARC archive</_comment> | |
1428 | + <comment>ARC archive</comment> | |
1429 | 1429 | <generic-icon name="package-x-generic"/> |
1430 | 1430 | <magic priority="60"> |
1431 | 1431 | <match type="little32" mask="0x8080ffff" value="0x0000081a" offset="0"/> |
@@ -1437,7 +1437,7 @@ command to generate the output files. | ||
1437 | 1437 | </magic> |
1438 | 1438 | </mime-type> |
1439 | 1439 | <mime-type type="application/x-archive"> |
1440 | - <_comment>AR archive</_comment> | |
1440 | + <comment>AR archive</comment> | |
1441 | 1441 | <generic-icon name="package-x-generic"/> |
1442 | 1442 | <magic priority="45"> |
1443 | 1443 | <match type="string" value="<ar>" offset="0"/> |
@@ -1447,7 +1447,7 @@ command to generate the output files. | ||
1447 | 1447 | <glob pattern="*.ar"/> |
1448 | 1448 | </mime-type> |
1449 | 1449 | <mime-type type="application/x-arj"> |
1450 | - <_comment>ARJ archive</_comment> | |
1450 | + <comment>ARJ archive</comment> | |
1451 | 1451 | <acronym>ARJ</acronym> |
1452 | 1452 | <expanded-acronym>Archived by Robert Jung</expanded-acronym> |
1453 | 1453 | <generic-icon name="package-x-generic"/> |
@@ -1457,7 +1457,7 @@ command to generate the output files. | ||
1457 | 1457 | <glob pattern="*.arj"/> |
1458 | 1458 | </mime-type> |
1459 | 1459 | <mime-type type="application/x-asp"> |
1460 | - <_comment>ASP page</_comment> | |
1460 | + <comment>ASP page</comment> | |
1461 | 1461 | <acronym>ASP</acronym> |
1462 | 1462 | <expanded-acronym>Active Server Page</expanded-acronym> |
1463 | 1463 | <sub-class-of type="text/plain"/> |
@@ -1465,7 +1465,7 @@ command to generate the output files. | ||
1465 | 1465 | <glob pattern="*.asp"/> |
1466 | 1466 | </mime-type> |
1467 | 1467 | <mime-type type="application/x-awk"> |
1468 | - <_comment>AWK script</_comment> | |
1468 | + <comment>AWK script</comment> | |
1469 | 1469 | <sub-class-of type="application/x-executable"/> |
1470 | 1470 | <sub-class-of type="text/plain"/> |
1471 | 1471 | <generic-icon name="text-x-script"/> |
@@ -1484,21 +1484,21 @@ command to generate the output files. | ||
1484 | 1484 | <glob pattern="*.awk"/> |
1485 | 1485 | </mime-type> |
1486 | 1486 | <mime-type type="application/x-bcpio"> |
1487 | - <_comment>BCPIO document</_comment> | |
1487 | + <comment>BCPIO document</comment> | |
1488 | 1488 | <acronym>BCPIO</acronym> |
1489 | 1489 | <expanded-acronym>Binary CPIO</expanded-acronym> |
1490 | 1490 | <generic-icon name="package-x-generic"/> |
1491 | 1491 | <glob pattern="*.bcpio"/> |
1492 | 1492 | </mime-type> |
1493 | 1493 | <mime-type type="application/x-bittorrent"> |
1494 | - <_comment>BitTorrent seed file</_comment> | |
1494 | + <comment>BitTorrent seed file</comment> | |
1495 | 1495 | <magic priority="50"> |
1496 | 1496 | <match type="string" value="d8:announce" offset="0"/> |
1497 | 1497 | </magic> |
1498 | 1498 | <glob pattern="*.torrent"/> |
1499 | 1499 | </mime-type> |
1500 | 1500 | <mime-type type="application/x-blender"> |
1501 | - <_comment>Blender scene</_comment> | |
1501 | + <comment>Blender scene</comment> | |
1502 | 1502 | <generic-icon name="image-x-generic"/> |
1503 | 1503 | <glob pattern="*.blender"/> |
1504 | 1504 | <glob pattern="*.blend"/> |
@@ -1508,13 +1508,13 @@ command to generate the output files. | ||
1508 | 1508 | </magic> |
1509 | 1509 | </mime-type> |
1510 | 1510 | <mime-type type="application/x-bzdvi"> |
1511 | - <_comment>TeX DVI document (bzip-compressed)</_comment> | |
1511 | + <comment>TeX DVI document (bzip-compressed)</comment> | |
1512 | 1512 | <sub-class-of type="application/x-bzip"/> |
1513 | 1513 | <generic-icon name="x-office-document"/> |
1514 | 1514 | <glob pattern="*.dvi.bz2"/> |
1515 | 1515 | </mime-type> |
1516 | 1516 | <mime-type type="application/x-bzip"> |
1517 | - <_comment>Bzip archive</_comment> | |
1517 | + <comment>Bzip archive</comment> | |
1518 | 1518 | <generic-icon name="package-x-generic"/> |
1519 | 1519 | <magic priority="50"> |
1520 | 1520 | <match type="string" value="BZh" offset="0"/> |
@@ -1524,7 +1524,7 @@ command to generate the output files. | ||
1524 | 1524 | <alias type="application/x-bzip2"/> |
1525 | 1525 | </mime-type> |
1526 | 1526 | <mime-type type="application/x-bzip-compressed-tar"> |
1527 | - <_comment>Tar archive (bzip-compressed)</_comment> | |
1527 | + <comment>Tar archive (bzip-compressed)</comment> | |
1528 | 1528 | <generic-icon name="package-x-generic"/> |
1529 | 1529 | <sub-class-of type="application/x-bzip"/> |
1530 | 1530 | <glob pattern="*.tar.bz2"/> |
@@ -1534,45 +1534,45 @@ command to generate the output files. | ||
1534 | 1534 | <glob pattern="*.tb2"/> |
1535 | 1535 | </mime-type> |
1536 | 1536 | <mime-type type="application/x-bzpdf"> |
1537 | - <_comment>PDF document (bzip-compressed)</_comment> | |
1537 | + <comment>PDF document (bzip-compressed)</comment> | |
1538 | 1538 | <sub-class-of type="application/x-bzip"/> |
1539 | 1539 | <generic-icon name="x-office-document"/> |
1540 | 1540 | <glob pattern="*.pdf.bz2"/> |
1541 | 1541 | </mime-type> |
1542 | 1542 | <mime-type type="application/x-bzpostscript"> |
1543 | - <_comment>PostScript document (bzip-compressed)</_comment> | |
1543 | + <comment>PostScript document (bzip-compressed)</comment> | |
1544 | 1544 | <sub-class-of type="application/x-bzip"/> |
1545 | 1545 | <generic-icon name="x-office-document"/> |
1546 | 1546 | <glob pattern="*.ps.bz2"/> |
1547 | 1547 | </mime-type> |
1548 | 1548 | <mime-type type="application/vnd.comicbook-rar"> |
1549 | - <_comment>comic book archive</_comment> | |
1549 | + <comment>comic book archive</comment> | |
1550 | 1550 | <sub-class-of type="application/vnd.rar"/> |
1551 | 1551 | <generic-icon name="x-office-document"/> |
1552 | 1552 | <glob pattern="*.cbr"/> |
1553 | 1553 | <alias type="application/x-cbr"/> |
1554 | 1554 | </mime-type> |
1555 | 1555 | <mime-type type="application/x-cb7"> |
1556 | - <_comment>comic book archive</_comment> | |
1556 | + <comment>comic book archive</comment> | |
1557 | 1557 | <sub-class-of type="application/x-7z-compressed"/> |
1558 | 1558 | <generic-icon name="x-office-document"/> |
1559 | 1559 | <glob pattern="*.cb7"/> |
1560 | 1560 | </mime-type> |
1561 | 1561 | <mime-type type="application/x-cbt"> |
1562 | - <_comment>comic book archive</_comment> | |
1562 | + <comment>comic book archive</comment> | |
1563 | 1563 | <sub-class-of type="application/x-tar"/> |
1564 | 1564 | <generic-icon name="x-office-document"/> |
1565 | 1565 | <glob pattern="*.cbt"/> |
1566 | 1566 | </mime-type> |
1567 | 1567 | <mime-type type="application/vnd.comicbook+zip"> |
1568 | - <_comment>comic book archive</_comment> | |
1568 | + <comment>comic book archive</comment> | |
1569 | 1569 | <sub-class-of type="application/zip"/> |
1570 | 1570 | <generic-icon name="x-office-document"/> |
1571 | 1571 | <glob pattern="*.cbz"/> |
1572 | 1572 | <alias type="application/x-cbz"/> |
1573 | 1573 | </mime-type> |
1574 | 1574 | <mime-type type="application/x-lrzip"> |
1575 | - <_comment>Lrzip archive</_comment> | |
1575 | + <comment>Lrzip archive</comment> | |
1576 | 1576 | <generic-icon name="package-x-generic"/> |
1577 | 1577 | <magic priority="60"> |
1578 | 1578 | <match type="string" value="LRZI" offset="0"/> |
@@ -1580,36 +1580,36 @@ command to generate the output files. | ||
1580 | 1580 | <glob pattern="*.lrz"/> |
1581 | 1581 | </mime-type> |
1582 | 1582 | <mime-type type="application/x-lrzip-compressed-tar"> |
1583 | - <_comment>Tar archive (lrzip-compressed)</_comment> | |
1583 | + <comment>Tar archive (lrzip-compressed)</comment> | |
1584 | 1584 | <generic-icon name="package-x-generic"/> |
1585 | 1585 | <sub-class-of type="application/x-lrzip"/> |
1586 | 1586 | <glob pattern="*.tar.lrz"/> |
1587 | 1587 | <glob pattern="*.tlrz"/> |
1588 | 1588 | </mime-type> |
1589 | 1589 | <mime-type type="application/x-apple-diskimage"> |
1590 | - <_comment>Apple disk image</_comment> | |
1590 | + <comment>Apple disk image</comment> | |
1591 | 1591 | <glob pattern="*.dmg"/> |
1592 | 1592 | </mime-type> |
1593 | 1593 | <mime-type type="application/x-raw-disk-image"> |
1594 | - <_comment>Raw disk image</_comment> | |
1594 | + <comment>Raw disk image</comment> | |
1595 | 1595 | <glob pattern="*.raw-disk-image"/> |
1596 | 1596 | <glob pattern="*.img"/> |
1597 | 1597 | </mime-type> |
1598 | 1598 | <mime-type type="application/x-raw-floppy-disk-image"> |
1599 | - <_comment>Floppy disk image</_comment> | |
1599 | + <comment>Floppy disk image</comment> | |
1600 | 1600 | <sub-class-of type="application/x-raw-disk-image"/> |
1601 | 1601 | <alias type="application/x-fd-file"/> |
1602 | 1602 | <glob pattern="*.fd"/> |
1603 | 1603 | <glob pattern="*.qd"/> |
1604 | 1604 | </mime-type> |
1605 | 1605 | <mime-type type="application/x-raw-disk-image-xz-compressed"> |
1606 | - <_comment>Raw disk image (XZ-compressed)</_comment> | |
1606 | + <comment>Raw disk image (XZ-compressed)</comment> | |
1607 | 1607 | <sub-class-of type="application/x-xz"/> |
1608 | 1608 | <glob pattern="*.raw-disk-image.xz"/> |
1609 | 1609 | <glob pattern="*.img.xz"/> |
1610 | 1610 | </mime-type> |
1611 | 1611 | <mime-type type="application/x-cd-image"> |
1612 | - <_comment>raw CD image</_comment> | |
1612 | + <comment>raw CD image</comment> | |
1613 | 1613 | <sub-class-of type="application/x-raw-disk-image"/> |
1614 | 1614 | <alias type="application/x-iso9660-image"/> |
1615 | 1615 | <!-- No magic, see https://bugs.freedesktop.org/show_bug.cgi?id=10049 --> |
@@ -1617,7 +1617,7 @@ command to generate the output files. | ||
1617 | 1617 | <glob pattern="*.iso9660"/> |
1618 | 1618 | </mime-type> |
1619 | 1619 | <mime-type type="application/x-iso9660-appimage"> |
1620 | - <_comment>AppImage application bundle</_comment> | |
1620 | + <comment>AppImage application bundle</comment> | |
1621 | 1621 | <sub-class-of type="application/x-executable"/> |
1622 | 1622 | <sub-class-of type="application/x-iso9660-image"/> |
1623 | 1623 | <generic-icon name="application-x-executable"/> |
@@ -1633,7 +1633,7 @@ command to generate the output files. | ||
1633 | 1633 | <glob pattern="*.appimage"/> |
1634 | 1634 | </mime-type> |
1635 | 1635 | <mime-type type="application/x-cdrdao-toc"> |
1636 | - <_comment>CD Table Of Contents</_comment> | |
1636 | + <comment>CD Table Of Contents</comment> | |
1637 | 1637 | <sub-class-of type="text/plain"/> |
1638 | 1638 | <generic-icon name="text-x-generic"/> |
1639 | 1639 | <magic priority="50"> |
@@ -1648,7 +1648,7 @@ command to generate the output files. | ||
1648 | 1648 | <glob pattern="*.toc"/> |
1649 | 1649 | </mime-type> |
1650 | 1650 | <mime-type type="application/vnd.chess-pgn"> |
1651 | - <_comment>PGN chess game notation</_comment> | |
1651 | + <comment>PGN chess game notation</comment> | |
1652 | 1652 | <acronym>PGN</acronym> |
1653 | 1653 | <expanded-acronym>Portable Game Notation</expanded-acronym> |
1654 | 1654 | <generic-icon name="text-x-generic"/> |
@@ -1660,7 +1660,7 @@ command to generate the output files. | ||
1660 | 1660 | <alias type="application/x-chess-pgn"/> |
1661 | 1661 | </mime-type> |
1662 | 1662 | <mime-type type="application/vnd.ms-htmlhelp"> |
1663 | - <_comment>CHM document</_comment> | |
1663 | + <comment>CHM document</comment> | |
1664 | 1664 | <acronym>CHM</acronym> |
1665 | 1665 | <expanded-acronym>Compiled Help Modules</expanded-acronym> |
1666 | 1666 | <generic-icon name="x-office-document"/> |
@@ -1668,10 +1668,10 @@ command to generate the output files. | ||
1668 | 1668 | <alias type="application/x-chm"/> |
1669 | 1669 | </mime-type> |
1670 | 1670 | <mime-type type="application/x-class-file"> |
1671 | - <_comment>Java byte code</_comment> | |
1671 | + <comment>Java byte code</comment> | |
1672 | 1672 | </mime-type> |
1673 | 1673 | <mime-type type="application/x-compress"> |
1674 | - <_comment>UNIX-compressed file</_comment> | |
1674 | + <comment>UNIX-compressed file</comment> | |
1675 | 1675 | <generic-icon name="package-x-generic"/> |
1676 | 1676 | <magic priority="50"> |
1677 | 1677 | <match type="string" value="\037\235" offset="0"/> |
@@ -1679,14 +1679,14 @@ command to generate the output files. | ||
1679 | 1679 | <glob pattern="*.Z"/> |
1680 | 1680 | </mime-type> |
1681 | 1681 | <mime-type type="application/x-compressed-tar"> |
1682 | - <_comment>Tar archive (gzip-compressed)</_comment> | |
1682 | + <comment>Tar archive (gzip-compressed)</comment> | |
1683 | 1683 | <sub-class-of type="application/gzip"/> |
1684 | 1684 | <generic-icon name="package-x-generic"/> |
1685 | 1685 | <glob pattern="*.tar.gz"/> |
1686 | 1686 | <glob pattern="*.tgz"/> |
1687 | 1687 | </mime-type> |
1688 | 1688 | <mime-type type="application/x-core"> |
1689 | - <_comment>program crash data</_comment> | |
1689 | + <comment>program crash data</comment> | |
1690 | 1690 | <magic priority="50"> |
1691 | 1691 | <match type="string" mask="0xffffffff000000000000000000000000ff" value="\177ELF \004" offset="0"/> |
1692 | 1692 | <match type="string" value="\177ELF" offset="0"> |
@@ -1705,7 +1705,7 @@ command to generate the output files. | ||
1705 | 1705 | <glob pattern="core" case-sensitive="true"/> |
1706 | 1706 | </mime-type> |
1707 | 1707 | <mime-type type="application/x-cpio"> |
1708 | - <_comment>CPIO archive</_comment> | |
1708 | + <comment>CPIO archive</comment> | |
1709 | 1709 | <generic-icon name="package-x-generic"/> |
1710 | 1710 | <magic priority="60"> |
1711 | 1711 | <match type="host16" value="070707" offset="0"/> |
@@ -1716,13 +1716,13 @@ command to generate the output files. | ||
1716 | 1716 | <glob pattern="*.cpio"/> |
1717 | 1717 | </mime-type> |
1718 | 1718 | <mime-type type="application/x-cpio-compressed"> |
1719 | - <_comment>CPIO archive (gzip-compressed)</_comment> | |
1719 | + <comment>CPIO archive (gzip-compressed)</comment> | |
1720 | 1720 | <sub-class-of type="application/gzip"/> |
1721 | 1721 | <generic-icon name="package-x-generic"/> |
1722 | 1722 | <glob pattern="*.cpio.gz"/> |
1723 | 1723 | </mime-type> |
1724 | 1724 | <mime-type type="application/x-csh"> |
1725 | - <_comment>C shell script</_comment> | |
1725 | + <comment>C shell script</comment> | |
1726 | 1726 | <sub-class-of type="application/x-shellscript"/> |
1727 | 1727 | <sub-class-of type="text/plain"/> |
1728 | 1728 | <generic-icon name="text-x-script"/> |
@@ -1735,7 +1735,7 @@ command to generate the output files. | ||
1735 | 1735 | <glob pattern="*.csh"/> |
1736 | 1736 | </mime-type> |
1737 | 1737 | <mime-type type="application/x-dbf"> |
1738 | - <_comment>Xbase document</_comment> | |
1738 | + <comment>Xbase document</comment> | |
1739 | 1739 | <generic-icon name="x-office-document"/> |
1740 | 1740 | <glob pattern="*.dbf"/> |
1741 | 1741 | <alias type="application/x-dbase"/> |
@@ -1743,7 +1743,7 @@ command to generate the output files. | ||
1743 | 1743 | <alias type="application/dbase"/> |
1744 | 1744 | </mime-type> |
1745 | 1745 | <mime-type type="application/ecmascript"> |
1746 | - <_comment>ECMAScript program</_comment> | |
1746 | + <comment>ECMAScript program</comment> | |
1747 | 1747 | <alias type="text/ecmascript"/> |
1748 | 1748 | <sub-class-of type='application/x-executable'/> |
1749 | 1749 | <sub-class-of type="text/plain"/> |
@@ -1753,7 +1753,7 @@ command to generate the output files. | ||
1753 | 1753 | <mime-type type="application/x-sega-cd-rom"> |
1754 | 1754 | <!-- Translate this to Mega-CD if the console was known as such in your locale |
1755 | 1755 | Should be Mega-CD in all but en_US, Mexico, Canada and Brazil: https://en.wikipedia.org/wiki/Sega_CD --> |
1756 | - <_comment>Sega CD disc image</_comment> | |
1756 | + <comment>Sega CD disc image</comment> | |
1757 | 1757 | <generic-icon name="application-x-executable"/> |
1758 | 1758 | <!-- Also matches the application/x-genesis-rom magic values, hence the higher priority --> |
1759 | 1759 | <magic priority="60"> |
@@ -1769,14 +1769,14 @@ command to generate the output files. | ||
1769 | 1769 | <mime-type type="application/x-sega-pico-rom"> |
1770 | 1770 | <!-- Translate this to Kids Computer Pico if the console was known as such in your locale |
1771 | 1771 | Should be Sega Pico in all but Japan: https://en.wikipedia.org/wiki/Sega_Pico --> |
1772 | - <_comment>Sega Pico ROM</_comment> | |
1772 | + <comment>Sega Pico ROM</comment> | |
1773 | 1773 | <generic-icon name="application-x-executable"/> |
1774 | 1774 | <magic priority="50"> |
1775 | 1775 | <match type="string" value="SEGA PICO" offset="256"/> |
1776 | 1776 | </magic> |
1777 | 1777 | </mime-type> |
1778 | 1778 | <mime-type type="application/x-saturn-rom"> |
1779 | - <_comment>Sega Saturn disc image</_comment> | |
1779 | + <comment>Sega Saturn disc image</comment> | |
1780 | 1780 | <generic-icon name="application-x-executable"/> |
1781 | 1781 | <magic priority="50"> |
1782 | 1782 | <match type="string" value="SEGA SEGASATURN" offset="0"/> |
@@ -1785,22 +1785,22 @@ command to generate the output files. | ||
1785 | 1785 | <glob pattern="*.iso"/> |
1786 | 1786 | </mime-type> |
1787 | 1787 | <mime-type type="application/x-dc-rom"> |
1788 | - <_comment>Dreamcast disc image</_comment> | |
1788 | + <comment>Dreamcast disc image</comment> | |
1789 | 1789 | <generic-icon name="application-x-executable"/> |
1790 | 1790 | <glob pattern="*.dc"/> |
1791 | 1791 | </mime-type> |
1792 | 1792 | <mime-type type="application/x-nintendo-ds-rom"> |
1793 | - <_comment>Nintendo DS ROM</_comment> | |
1793 | + <comment>Nintendo DS ROM</comment> | |
1794 | 1794 | <generic-icon name="application-x-executable"/> |
1795 | 1795 | <glob pattern="*.nds"/> |
1796 | 1796 | </mime-type> |
1797 | 1797 | <mime-type type="application/x-pc-engine-rom"> |
1798 | - <_comment>PC Engine ROM</_comment> | |
1798 | + <comment>PC Engine ROM</comment> | |
1799 | 1799 | <generic-icon name="application-x-executable"/> |
1800 | 1800 | <glob pattern="*.pce"/> |
1801 | 1801 | </mime-type> |
1802 | 1802 | <mime-type type="application/x-wii-rom"> |
1803 | - <_comment>Wii disc image</_comment> | |
1803 | + <comment>Wii disc image</comment> | |
1804 | 1804 | <alias type="application/x-wii-iso-image"/> |
1805 | 1805 | <alias type="application/x-wbfs"/> |
1806 | 1806 | <alias type="application/x-wia"/> |
@@ -1813,7 +1813,7 @@ command to generate the output files. | ||
1813 | 1813 | </magic> |
1814 | 1814 | </mime-type> |
1815 | 1815 | <mime-type type="application/x-wii-wad"> |
1816 | - <_comment>WiiWare bundle</_comment> | |
1816 | + <comment>WiiWare bundle</comment> | |
1817 | 1817 | <generic-icon name="application-x-executable"/> |
1818 | 1818 | <magic priority="50"> |
1819 | 1819 | <match type="string" value="Is\0\0" offset="4"/> |
@@ -1823,7 +1823,7 @@ command to generate the output files. | ||
1823 | 1823 | <glob pattern="*.wad"/> |
1824 | 1824 | </mime-type> |
1825 | 1825 | <mime-type type="application/x-gamecube-rom"> |
1826 | - <_comment>GameCube disc image</_comment> | |
1826 | + <comment>GameCube disc image</comment> | |
1827 | 1827 | <generic-icon name="application-x-executable"/> |
1828 | 1828 | <alias type="application/x-gamecube-iso-image"/> |
1829 | 1829 | <glob pattern="*.iso"/> |
@@ -1832,17 +1832,17 @@ command to generate the output files. | ||
1832 | 1832 | </magic> |
1833 | 1833 | </mime-type> |
1834 | 1834 | <mime-type type="application/x-thomson-cartridge-memo7"> |
1835 | - <_comment>Thomson Mémo7 cartridge</_comment> | |
1835 | + <comment>Thomson Mémo7 cartridge</comment> | |
1836 | 1836 | <generic-icon name="application-x-executable"/> |
1837 | 1837 | <glob pattern="*.m7"/> |
1838 | 1838 | </mime-type> |
1839 | 1839 | <mime-type type="application/x-thomson-cassette"> |
1840 | - <_comment>Thomson cassette</_comment> | |
1840 | + <comment>Thomson cassette</comment> | |
1841 | 1841 | <generic-icon name="application-x-executable"/> |
1842 | 1842 | <glob pattern="*.k7"/> |
1843 | 1843 | </mime-type> |
1844 | 1844 | <mime-type type="application/x-hfe-floppy-image"> |
1845 | - <_comment>HFE floppy disk image</_comment> | |
1845 | + <comment>HFE floppy disk image</comment> | |
1846 | 1846 | <acronym>HFE</acronym> |
1847 | 1847 | <expanded-acronym>HxC Floppy Emulator</expanded-acronym> |
1848 | 1848 | <generic-icon name="application-x-executable"/> |
@@ -1853,7 +1853,7 @@ command to generate the output files. | ||
1853 | 1853 | <alias type="application/x-hfe-file"/> |
1854 | 1854 | </mime-type> |
1855 | 1855 | <mime-type type="application/x-thomson-sap-image"> |
1856 | - <_comment>SAP Thomson floppy disk image</_comment> | |
1856 | + <comment>SAP Thomson floppy disk image</comment> | |
1857 | 1857 | <acronym>SAP</acronym> |
1858 | 1858 | <expanded-acronym>Système d'Archivage Pukall</expanded-acronym> |
1859 | 1859 | <generic-icon name="application-x-executable"/> |
@@ -1864,7 +1864,7 @@ command to generate the output files. | ||
1864 | 1864 | <alias type="application/x-sap-file"/> |
1865 | 1865 | </mime-type> |
1866 | 1866 | <mime-type type="application/vnd.debian.binary-package"> |
1867 | - <_comment>Debian package</_comment> | |
1867 | + <comment>Debian package</comment> | |
1868 | 1868 | <alias type="application/x-deb"/> |
1869 | 1869 | <alias type="application/x-debian-package"/> |
1870 | 1870 | <generic-icon name="package-x-generic"/> |
@@ -1877,7 +1877,7 @@ command to generate the output files. | ||
1877 | 1877 | <glob pattern="*.udeb"/> |
1878 | 1878 | </mime-type> |
1879 | 1879 | <mime-type type="application/x-designer"> |
1880 | - <_comment>Qt Designer interface document</_comment> | |
1880 | + <comment>Qt Designer interface document</comment> | |
1881 | 1881 | <generic-icon name="x-office-document"/> |
1882 | 1882 | <sub-class-of type="application/xml"/> |
1883 | 1883 | <magic> |
@@ -1887,7 +1887,7 @@ command to generate the output files. | ||
1887 | 1887 | <glob pattern="*.ui"/> |
1888 | 1888 | </mime-type> |
1889 | 1889 | <mime-type type="text/x-qml"> |
1890 | - <_comment>Qt Markup Language file</_comment> | |
1890 | + <comment>Qt Markup Language file</comment> | |
1891 | 1891 | <magic priority="80"> |
1892 | 1892 | <match type="string" value="/bin/env qml" offset="2:16"/> |
1893 | 1893 | <match type="string" value="import Qt" offset="0:3000"> |
@@ -1902,7 +1902,7 @@ command to generate the output files. | ||
1902 | 1902 | <glob pattern="*.qmlproject"/> |
1903 | 1903 | </mime-type> |
1904 | 1904 | <mime-type type="application/x-desktop"> |
1905 | - <_comment>desktop configuration file</_comment> | |
1905 | + <comment>desktop configuration file</comment> | |
1906 | 1906 | <sub-class-of type="text/plain"/> |
1907 | 1907 | <generic-icon name="text-x-generic"/> |
1908 | 1908 | <magic priority="50"> |
@@ -1917,7 +1917,7 @@ command to generate the output files. | ||
1917 | 1917 | <alias type="application/x-gnome-app-info"/> |
1918 | 1918 | </mime-type> |
1919 | 1919 | <mime-type type="application/x-fictionbook+xml"> |
1920 | - <_comment>FictionBook document</_comment> | |
1920 | + <comment>FictionBook document</comment> | |
1921 | 1921 | <sub-class-of type="application/xml"/> |
1922 | 1922 | <glob pattern="*.fb2"/> |
1923 | 1923 | <magic priority="80"> |
@@ -1927,7 +1927,7 @@ command to generate the output files. | ||
1927 | 1927 | <root-XML namespaceURI="http://www.gribuser.ru/xml/fictionbook/2.0" localName="FictionBook"/> |
1928 | 1928 | </mime-type> |
1929 | 1929 | <mime-type type="application/x-zip-compressed-fb2"> |
1930 | - <_comment>Compressed FictionBook document</_comment> | |
1930 | + <comment>Compressed FictionBook document</comment> | |
1931 | 1931 | <sub-class-of type="application/zip"/> |
1932 | 1932 | <glob pattern="*.fb2.zip"/> |
1933 | 1933 | <magic priority="70"> |
@@ -1938,7 +1938,7 @@ command to generate the output files. | ||
1938 | 1938 | </magic> |
1939 | 1939 | </mime-type> |
1940 | 1940 | <mime-type type="application/x-dia-diagram"> |
1941 | - <_comment>Dia diagram</_comment> | |
1941 | + <comment>Dia diagram</comment> | |
1942 | 1942 | <generic-icon name="image-x-generic"/> |
1943 | 1943 | <sub-class-of type="application/xml"/> |
1944 | 1944 | <glob pattern="*.dia"/> |
@@ -1948,7 +1948,7 @@ command to generate the output files. | ||
1948 | 1948 | <root-XML namespaceURI="http://www.lysator.liu.se/~alla/dia/" localName="diagram"/> |
1949 | 1949 | </mime-type> |
1950 | 1950 | <mime-type type="application/x-dia-shape"> |
1951 | - <_comment>Dia shape</_comment> | |
1951 | + <comment>Dia shape</comment> | |
1952 | 1952 | <generic-icon name="image-x-generic"/> |
1953 | 1953 | <sub-class-of type="application/xml"/> |
1954 | 1954 | <glob pattern="*.shape"/> |
@@ -1958,7 +1958,7 @@ command to generate the output files. | ||
1958 | 1958 | <root-XML namespaceURI="http://www.daa.com.au/~james/dia-shape-ns" localName="shape"/> |
1959 | 1959 | </mime-type> |
1960 | 1960 | <mime-type type="application/x-dvi"> |
1961 | - <_comment>TeX DVI document</_comment> | |
1961 | + <comment>TeX DVI document</comment> | |
1962 | 1962 | <acronym>DVI</acronym> |
1963 | 1963 | <expanded-acronym>Device independent file format</expanded-acronym> |
1964 | 1964 | <generic-icon name="x-office-document"/> |
@@ -1968,16 +1968,16 @@ command to generate the output files. | ||
1968 | 1968 | <glob pattern="*.dvi"/> |
1969 | 1969 | </mime-type> |
1970 | 1970 | <mime-type type="application/x-e-theme"> |
1971 | - <_comment>Enlightenment theme</_comment> | |
1971 | + <comment>Enlightenment theme</comment> | |
1972 | 1972 | <glob pattern="*.etheme"/> |
1973 | 1973 | </mime-type> |
1974 | 1974 | <mime-type type="application/x-egon"> |
1975 | - <_comment>Egon Animator animation</_comment> | |
1975 | + <comment>Egon Animator animation</comment> | |
1976 | 1976 | <generic-icon name="image-x-generic"/> |
1977 | 1977 | <glob pattern="*.egon"/> |
1978 | 1978 | </mime-type> |
1979 | 1979 | <mime-type type="application/x-executable"> |
1980 | - <_comment>executable</_comment> | |
1980 | + <comment>executable</comment> | |
1981 | 1981 | <generic-icon name="application-x-executable"/> |
1982 | 1982 | <magic priority="40"> |
1983 | 1983 | <match type="string" value="\177ELF" offset="0"> |
@@ -1998,7 +1998,7 @@ command to generate the output files. | ||
1998 | 1998 | </magic> |
1999 | 1999 | </mime-type> |
2000 | 2000 | <mime-type type="application/x-fluid"> |
2001 | - <_comment>FLTK Fluid file</_comment> | |
2001 | + <comment>FLTK Fluid file</comment> | |
2002 | 2002 | <acronym>FLTK</acronym> |
2003 | 2003 | <expanded-acronym>Fast Light Toolkit</expanded-acronym> |
2004 | 2004 | <sub-class-of type="text/plain"/> |
@@ -2009,7 +2009,7 @@ command to generate the output files. | ||
2009 | 2009 | <glob pattern="*.fl"/> |
2010 | 2010 | </mime-type> |
2011 | 2011 | <mime-type type="font/woff"> |
2012 | - <_comment>WOFF font</_comment> | |
2012 | + <comment>WOFF font</comment> | |
2013 | 2013 | <acronym>WOFF</acronym> |
2014 | 2014 | <expanded-acronym>Web Open Font Format</expanded-acronym> |
2015 | 2015 | <generic-icon name="font-x-generic"/> |
@@ -2020,7 +2020,7 @@ command to generate the output files. | ||
2020 | 2020 | <alias type="application/font-woff"/> |
2021 | 2021 | </mime-type> |
2022 | 2022 | <mime-type type="font/woff2"> |
2023 | - <_comment>WOFF2 font</_comment> | |
2023 | + <comment>WOFF2 font</comment> | |
2024 | 2024 | <acronym>WOFF2</acronym> |
2025 | 2025 | <expanded-acronym>Web Open Font Format 2.0</expanded-acronym> |
2026 | 2026 | <generic-icon name="font-x-generic"/> |
@@ -2030,7 +2030,7 @@ command to generate the output files. | ||
2030 | 2030 | <glob pattern="*.woff2"/> |
2031 | 2031 | </mime-type> |
2032 | 2032 | <mime-type type="application/x-font-type1"> |
2033 | - <_comment>PostScript type-1 font</_comment> | |
2033 | + <comment>PostScript type-1 font</comment> | |
2034 | 2034 | <sub-class-of type="application/postscript"/> |
2035 | 2035 | <generic-icon name="font-x-generic"/> |
2036 | 2036 | <magic priority="60"> |
@@ -2046,12 +2046,12 @@ command to generate the output files. | ||
2046 | 2046 | <glob pattern="*.gsf"/> |
2047 | 2047 | </mime-type> |
2048 | 2048 | <mime-type type="application/x-font-afm"> |
2049 | - <_comment>Adobe font metrics</_comment> | |
2049 | + <comment>Adobe font metrics</comment> | |
2050 | 2050 | <generic-icon name="font-x-generic"/> |
2051 | 2051 | <glob pattern="*.afm"/> |
2052 | 2052 | </mime-type> |
2053 | 2053 | <mime-type type="application/x-font-bdf"> |
2054 | - <_comment>BDF font</_comment> | |
2054 | + <comment>BDF font</comment> | |
2055 | 2055 | <generic-icon name="font-x-generic"/> |
2056 | 2056 | <magic priority="50"> |
2057 | 2057 | <match type="string" value="STARTFONT\040" offset="0"/> |
@@ -2059,7 +2059,7 @@ command to generate the output files. | ||
2059 | 2059 | <glob pattern="*.bdf"/> |
2060 | 2060 | </mime-type> |
2061 | 2061 | <mime-type type="application/x-font-dos"> |
2062 | - <_comment>DOS font</_comment> | |
2062 | + <comment>DOS font</comment> | |
2063 | 2063 | <generic-icon name="font-x-generic"/> |
2064 | 2064 | <magic priority="50"> |
2065 | 2065 | <match type="string" value="\xff\x46\x4f\x4e" offset="0"/> |
@@ -2068,21 +2068,21 @@ command to generate the output files. | ||
2068 | 2068 | </magic> |
2069 | 2069 | </mime-type> |
2070 | 2070 | <mime-type type="application/x-font-framemaker"> |
2071 | - <_comment>Adobe FrameMaker font</_comment> | |
2071 | + <comment>Adobe FrameMaker font</comment> | |
2072 | 2072 | <generic-icon name="font-x-generic"/> |
2073 | 2073 | <magic priority="50"> |
2074 | 2074 | <match type="string" value="<MakerScreenFont" offset="0"/> |
2075 | 2075 | </magic> |
2076 | 2076 | </mime-type> |
2077 | 2077 | <mime-type type="application/x-font-libgrx"> |
2078 | - <_comment>LIBGRX font</_comment> | |
2078 | + <comment>LIBGRX font</comment> | |
2079 | 2079 | <generic-icon name="font-x-generic"/> |
2080 | 2080 | <magic priority="50"> |
2081 | 2081 | <match type="string" value="\x14\x02\x59\x19" offset="0"/> |
2082 | 2082 | </magic> |
2083 | 2083 | </mime-type> |
2084 | 2084 | <mime-type type="application/x-font-linux-psf"> |
2085 | - <_comment>Linux PSF console font</_comment> | |
2085 | + <comment>Linux PSF console font</comment> | |
2086 | 2086 | <generic-icon name="font-x-generic"/> |
2087 | 2087 | <magic priority="50"> |
2088 | 2088 | <match type="string" value="\x36\x04" offset="0"/> |
@@ -2090,13 +2090,13 @@ command to generate the output files. | ||
2090 | 2090 | <glob pattern="*.psf"/> |
2091 | 2091 | </mime-type> |
2092 | 2092 | <mime-type type="application/x-gz-font-linux-psf"> |
2093 | - <_comment>Linux PSF console font (gzip-compressed)</_comment> | |
2093 | + <comment>Linux PSF console font (gzip-compressed)</comment> | |
2094 | 2094 | <sub-class-of type="application/gzip"/> |
2095 | 2095 | <generic-icon name="font-x-generic"/> |
2096 | 2096 | <glob pattern="*.psf.gz"/> |
2097 | 2097 | </mime-type> |
2098 | 2098 | <mime-type type="application/x-font-pcf"> |
2099 | - <_comment>PCF font</_comment> | |
2099 | + <comment>PCF font</comment> | |
2100 | 2100 | <generic-icon name="font-x-generic"/> |
2101 | 2101 | <magic priority="50"> |
2102 | 2102 | <match type="string" value="\001fcp" offset="0"/> |
@@ -2106,7 +2106,7 @@ command to generate the output files. | ||
2106 | 2106 | <glob pattern="*.pcf.gz"/> |
2107 | 2107 | </mime-type> |
2108 | 2108 | <mime-type type="font/otf"> |
2109 | - <_comment>OpenType font</_comment> | |
2109 | + <comment>OpenType font</comment> | |
2110 | 2110 | <sub-class-of type="font/ttf"/> |
2111 | 2111 | <generic-icon name="font-x-generic"/> |
2112 | 2112 | <magic priority="50"> |
@@ -2116,7 +2116,7 @@ command to generate the output files. | ||
2116 | 2116 | <alias type="application/x-font-otf"/> |
2117 | 2117 | </mime-type> |
2118 | 2118 | <mime-type type="application/x-font-speedo"> |
2119 | - <_comment>Speedo font</_comment> | |
2119 | + <comment>Speedo font</comment> | |
2120 | 2120 | <generic-icon name="font-x-generic"/> |
2121 | 2121 | <magic priority="50"> |
2122 | 2122 | <match type="string" value="D1.0\015" offset="0"/> |
@@ -2124,7 +2124,7 @@ command to generate the output files. | ||
2124 | 2124 | <glob pattern="*.spd"/> |
2125 | 2125 | </mime-type> |
2126 | 2126 | <mime-type type="application/x-font-sunos-news"> |
2127 | - <_comment>SunOS News font</_comment> | |
2127 | + <comment>SunOS News font</comment> | |
2128 | 2128 | <generic-icon name="font-x-generic"/> |
2129 | 2129 | <magic priority="50"> |
2130 | 2130 | <match type="string" value="StartFont" offset="0"/> |
@@ -2133,7 +2133,7 @@ command to generate the output files. | ||
2133 | 2133 | </magic> |
2134 | 2134 | </mime-type> |
2135 | 2135 | <mime-type type="application/x-font-tex"> |
2136 | - <_comment>TeX font</_comment> | |
2136 | + <comment>TeX font</comment> | |
2137 | 2137 | <generic-icon name="font-x-generic"/> |
2138 | 2138 | <magic priority="50"> |
2139 | 2139 | <match type="string" value="\367\203" offset="0"/> |
@@ -2142,7 +2142,7 @@ command to generate the output files. | ||
2142 | 2142 | </magic> |
2143 | 2143 | </mime-type> |
2144 | 2144 | <mime-type type="application/x-font-tex-tfm"> |
2145 | - <_comment>TeX font metrics</_comment> | |
2145 | + <comment>TeX font metrics</comment> | |
2146 | 2146 | <generic-icon name="font-x-generic"/> |
2147 | 2147 | <magic priority="50"> |
2148 | 2148 | <match type="string" value="\000\021" offset="2"/> |
@@ -2150,7 +2150,7 @@ command to generate the output files. | ||
2150 | 2150 | </magic> |
2151 | 2151 | </mime-type> |
2152 | 2152 | <mime-type type="font/ttf"> |
2153 | - <_comment>TrueType font</_comment> | |
2153 | + <comment>TrueType font</comment> | |
2154 | 2154 | <generic-icon name="font-x-generic"/> |
2155 | 2155 | <magic priority="50"> |
2156 | 2156 | <match type="string" value="FFIL" offset="0"/> |
@@ -2161,12 +2161,12 @@ command to generate the output files. | ||
2161 | 2161 | <alias type="application/x-font-ttf"/> |
2162 | 2162 | </mime-type> |
2163 | 2163 | <mime-type type="font/collection"> |
2164 | - <_comment>Font collection</_comment> | |
2164 | + <comment>Font collection</comment> | |
2165 | 2165 | <generic-icon name="font-x-generic"/> |
2166 | 2166 | <glob pattern="*.ttc"/> |
2167 | 2167 | </mime-type> |
2168 | 2168 | <mime-type type="application/x-font-ttx"> |
2169 | - <_comment>TrueType XML font</_comment> | |
2169 | + <comment>TrueType XML font</comment> | |
2170 | 2170 | <sub-class-of type="application/xml"/> |
2171 | 2171 | <generic-icon name="font-x-generic"/> |
2172 | 2172 | <magic priority="50"> |
@@ -2175,14 +2175,14 @@ command to generate the output files. | ||
2175 | 2175 | <glob pattern="*.ttx"/> |
2176 | 2176 | </mime-type> |
2177 | 2177 | <mime-type type="application/x-font-vfont"> |
2178 | - <_comment>V font</_comment> | |
2178 | + <comment>V font</comment> | |
2179 | 2179 | <generic-icon name="font-x-generic"/> |
2180 | 2180 | <magic priority="50"> |
2181 | 2181 | <match type="string" value="FONT" offset="0"/> |
2182 | 2182 | </magic> |
2183 | 2183 | </mime-type> |
2184 | 2184 | <mime-type type="application/vnd.framemaker"> |
2185 | - <_comment>Adobe FrameMaker document</_comment> | |
2185 | + <comment>Adobe FrameMaker document</comment> | |
2186 | 2186 | <generic-icon name="x-office-document"/> |
2187 | 2187 | <magic priority="50"> |
2188 | 2188 | <match type="string" value="<MakerFile" offset="0"/> |
@@ -2197,7 +2197,7 @@ command to generate the output files. | ||
2197 | 2197 | <alias type="application/x-frame"/> |
2198 | 2198 | </mime-type> |
2199 | 2199 | <mime-type type="application/x-gameboy-rom"> |
2200 | - <_comment>Game Boy ROM</_comment> | |
2200 | + <comment>Game Boy ROM</comment> | |
2201 | 2201 | <generic-icon name="application-x-executable"/> |
2202 | 2202 | <magic priority="50"> |
2203 | 2203 | <match type="string" value="\xce\xed\x66\x66\xcc\x0d\x00\x0b\x03\x73\x00\x83\x00\x0c\x00\x0d\x00\x08\x11\x1f\x88\x89\x00\x0e" offset="260"> |
@@ -2208,7 +2208,7 @@ command to generate the output files. | ||
2208 | 2208 | <glob pattern="*.sgb"/> |
2209 | 2209 | </mime-type> |
2210 | 2210 | <mime-type type="application/x-gameboy-color-rom"> |
2211 | - <_comment>Game Boy Color ROM</_comment> | |
2211 | + <comment>Game Boy Color ROM</comment> | |
2212 | 2212 | <generic-icon name="application-x-executable"/> |
2213 | 2213 | <magic priority="50"> |
2214 | 2214 | <match type="string" value="\xce\xed\x66\x66\xcc\x0d\x00\x0b\x03\x73\x00\x83\x00\x0c\x00\x0d\x00\x08" offset="260"> |
@@ -2219,18 +2219,18 @@ command to generate the output files. | ||
2219 | 2219 | <glob pattern="*.cgb"/> |
2220 | 2220 | </mime-type> |
2221 | 2221 | <mime-type type="application/x-gba-rom"> |
2222 | - <_comment>Game Boy Advance ROM</_comment> | |
2222 | + <comment>Game Boy Advance ROM</comment> | |
2223 | 2223 | <generic-icon name="application-x-executable"/> |
2224 | 2224 | <glob pattern="*.gba"/> |
2225 | 2225 | <glob pattern="*.agb"/> |
2226 | 2226 | </mime-type> |
2227 | 2227 | <mime-type type="application/x-virtual-boy-rom"> |
2228 | - <_comment>Virtual Boy ROM</_comment> | |
2228 | + <comment>Virtual Boy ROM</comment> | |
2229 | 2229 | <generic-icon name="application-x-executable"/> |
2230 | 2230 | <glob pattern="*.vb"/> |
2231 | 2231 | </mime-type> |
2232 | 2232 | <mime-type type="application/x-gdbm"> |
2233 | - <_comment>GDBM database</_comment> | |
2233 | + <comment>GDBM database</comment> | |
2234 | 2234 | <acronym>GDBM</acronym> |
2235 | 2235 | <expanded-acronym>GNU Database Manager</expanded-acronym> |
2236 | 2236 | <magic priority="50"> |
@@ -2242,7 +2242,7 @@ command to generate the output files. | ||
2242 | 2242 | <mime-type type="application/x-genesis-rom"> |
2243 | 2243 | <!-- Translate this to Mega Drive if the console was known as such in your locale |
2244 | 2244 | Should be Mega Drive in all but en_US, Mexico and Canada: https://en.wikipedia.org/wiki/Sega_Genesis#History --> |
2245 | - <_comment>Genesis ROM</_comment> | |
2245 | + <comment>Genesis ROM</comment> | |
2246 | 2246 | <generic-icon name="application-x-executable"/> |
2247 | 2247 | <magic priority="50"> |
2248 | 2248 | <match type="string" value="SEGA GENESIS" offset="256"/> |
@@ -2257,7 +2257,7 @@ command to generate the output files. | ||
2257 | 2257 | <mime-type type="application/x-genesis-32x-rom"> |
2258 | 2258 | <!-- Translate this to Super 32X, Mega Drive 32X or Mega 32X if the system was known as such in your locale |
2259 | 2259 | Should be Super 32X in Japan, Mega Drive 32X in PAL region and Mega 32X in Brazil: https://en.wikipedia.org/wiki/32X --> |
2260 | - <_comment>Genesis 32X ROM</_comment> | |
2260 | + <comment>Genesis 32X ROM</comment> | |
2261 | 2261 | <generic-icon name="application-x-executable"/> |
2262 | 2262 | <magic priority="50"> |
2263 | 2263 | <match type="string" value="SEGA 32X" offset="256"/> |
@@ -2266,7 +2266,7 @@ command to generate the output files. | ||
2266 | 2266 | <glob pattern="*.mdx"/> |
2267 | 2267 | </mime-type> |
2268 | 2268 | <mime-type type="application/x-gettext-translation"> |
2269 | - <_comment>translated messages (machine-readable)</_comment> | |
2269 | + <comment>translated messages (machine-readable)</comment> | |
2270 | 2270 | <magic priority="50"> |
2271 | 2271 | <match type="string" value="\336\22\4\225" offset="0"/> |
2272 | 2272 | <match type="string" value="\225\4\22\336" offset="0"/> |
@@ -2275,7 +2275,7 @@ command to generate the output files. | ||
2275 | 2275 | <glob pattern="*.mo"/> |
2276 | 2276 | </mime-type> |
2277 | 2277 | <mime-type type="application/x-gtk-builder"> |
2278 | - <_comment>GTK+ Builder interface document</_comment> | |
2278 | + <comment>GTK+ Builder interface document</comment> | |
2279 | 2279 | <sub-class-of type="application/xml"/> |
2280 | 2280 | <generic-icon name="x-office-document"/> |
2281 | 2281 | <glob pattern="*.ui"/> |
@@ -2284,7 +2284,7 @@ command to generate the output files. | ||
2284 | 2284 | </magic> |
2285 | 2285 | </mime-type> |
2286 | 2286 | <mime-type type="application/x-glade"> |
2287 | - <_comment>Glade project</_comment> | |
2287 | + <comment>Glade project</comment> | |
2288 | 2288 | <sub-class-of type="application/xml"/> |
2289 | 2289 | <generic-icon name="x-office-document"/> |
2290 | 2290 | <glob pattern="*.glade"/> |
@@ -2293,14 +2293,14 @@ command to generate the output files. | ||
2293 | 2293 | </magic> |
2294 | 2294 | </mime-type> |
2295 | 2295 | <mime-type type="application/x-gnucash"> |
2296 | - <_comment>GnuCash financial data</_comment> | |
2296 | + <comment>GnuCash financial data</comment> | |
2297 | 2297 | <generic-icon name="x-office-spreadsheet"/> |
2298 | 2298 | <glob pattern="*.gnucash"/> |
2299 | 2299 | <glob pattern="*.gnc"/> |
2300 | 2300 | <glob pattern="*.xac"/> |
2301 | 2301 | </mime-type> |
2302 | 2302 | <mime-type type="application/x-gnumeric"> |
2303 | - <_comment>Gnumeric spreadsheet</_comment> | |
2303 | + <comment>Gnumeric spreadsheet</comment> | |
2304 | 2304 | <generic-icon name="x-office-spreadsheet"/> |
2305 | 2305 | <magic priority="50"> |
2306 | 2306 | <match type="string" value="gmr:Workbook" offset="0:64"/> |
@@ -2309,7 +2309,7 @@ command to generate the output files. | ||
2309 | 2309 | <glob pattern="*.gnumeric"/> |
2310 | 2310 | </mime-type> |
2311 | 2311 | <mime-type type="application/x-gnuplot"> |
2312 | - <_comment>Gnuplot document</_comment> | |
2312 | + <comment>Gnuplot document</comment> | |
2313 | 2313 | <sub-class-of type="text/plain"/> |
2314 | 2314 | <generic-icon name="x-office-document"/> |
2315 | 2315 | <glob pattern="*.gp"/> |
@@ -2317,25 +2317,25 @@ command to generate the output files. | ||
2317 | 2317 | <glob pattern="*.gnuplot"/> |
2318 | 2318 | </mime-type> |
2319 | 2319 | <mime-type type="application/x-graphite"> |
2320 | - <_comment>Graphite scientific graph</_comment> | |
2320 | + <comment>Graphite scientific graph</comment> | |
2321 | 2321 | <generic-icon name="x-office-document"/> |
2322 | 2322 | <glob pattern="*.gra"/> |
2323 | 2323 | </mime-type> |
2324 | 2324 | <mime-type type="application/x-gtktalog"> |
2325 | - <_comment>GTKtalog catalog</_comment> | |
2325 | + <comment>GTKtalog catalog</comment> | |
2326 | 2326 | <generic-icon name="x-office-document"/> |
2327 | 2327 | <magic priority="50"> |
2328 | 2328 | <match type="string" value="gtktalog " offset="4"/> |
2329 | 2329 | </magic> |
2330 | 2330 | </mime-type> |
2331 | 2331 | <mime-type type="application/x-gzdvi"> |
2332 | - <_comment>TeX DVI document (gzip-compressed)</_comment> | |
2332 | + <comment>TeX DVI document (gzip-compressed)</comment> | |
2333 | 2333 | <sub-class-of type="application/gzip"/> |
2334 | 2334 | <generic-icon name="x-office-document"/> |
2335 | 2335 | <glob pattern="*.dvi.gz"/> |
2336 | 2336 | </mime-type> |
2337 | 2337 | <mime-type type="application/gzip"> |
2338 | - <_comment>Gzip archive</_comment> | |
2338 | + <comment>Gzip archive</comment> | |
2339 | 2339 | <generic-icon name="package-x-generic"/> |
2340 | 2340 | <magic priority="50"> |
2341 | 2341 | <match type="string" value="\037\213" offset="0"/> |
@@ -2344,19 +2344,19 @@ command to generate the output files. | ||
2344 | 2344 | <alias type="application/x-gzip"/> |
2345 | 2345 | </mime-type> |
2346 | 2346 | <mime-type type="application/x-gzpdf"> |
2347 | - <_comment>PDF document (gzip-compressed)</_comment> | |
2347 | + <comment>PDF document (gzip-compressed)</comment> | |
2348 | 2348 | <sub-class-of type="application/gzip"/> |
2349 | 2349 | <generic-icon name="x-office-document"/> |
2350 | 2350 | <glob pattern="*.pdf.gz"/> |
2351 | 2351 | </mime-type> |
2352 | 2352 | <mime-type type="application/x-gzpostscript"> |
2353 | - <_comment>PostScript document (gzip-compressed)</_comment> | |
2353 | + <comment>PostScript document (gzip-compressed)</comment> | |
2354 | 2354 | <sub-class-of type="application/gzip"/> |
2355 | 2355 | <generic-icon name="x-office-document"/> |
2356 | 2356 | <glob pattern="*.ps.gz"/> |
2357 | 2357 | </mime-type> |
2358 | 2358 | <mime-type type="application/x-hdf"> |
2359 | - <_comment>HDF document</_comment> | |
2359 | + <comment>HDF document</comment> | |
2360 | 2360 | <acronym>HDF</acronym> |
2361 | 2361 | <expanded-acronym>Hierarchical Data Format</expanded-acronym> |
2362 | 2362 | <generic-icon name="x-office-document"/> |
@@ -2371,7 +2371,7 @@ command to generate the output files. | ||
2371 | 2371 | <glob pattern="*.h5"/> |
2372 | 2372 | </mime-type> |
2373 | 2373 | <mime-type type="application/x-iff"> |
2374 | - <_comment>IFF file</_comment> | |
2374 | + <comment>IFF file</comment> | |
2375 | 2375 | <acronym>IFF</acronym> |
2376 | 2376 | <expanded-acronym>Interchange File Format</expanded-acronym> |
2377 | 2377 | <magic priority="40"> |
@@ -2379,13 +2379,13 @@ command to generate the output files. | ||
2379 | 2379 | </magic> |
2380 | 2380 | </mime-type> |
2381 | 2381 | <mime-type type="application/x-ipod-firmware"> |
2382 | - <_comment>iPod firmware</_comment> | |
2382 | + <comment>iPod firmware</comment> | |
2383 | 2383 | <magic priority="50"> |
2384 | 2384 | <match type="string" value="S T O P" offset="0"/> |
2385 | 2385 | </magic> |
2386 | 2386 | </mime-type> |
2387 | 2387 | <mime-type type="application/x-java-archive"> |
2388 | - <_comment>Java archive</_comment> | |
2388 | + <comment>Java archive</comment> | |
2389 | 2389 | <sub-class-of type="application/zip"/> |
2390 | 2390 | <generic-icon name="package-x-generic"/> |
2391 | 2391 | <alias type="application/x-jar"/> |
@@ -2393,7 +2393,7 @@ command to generate the output files. | ||
2393 | 2393 | <glob pattern="*.jar"/> |
2394 | 2394 | </mime-type> |
2395 | 2395 | <mime-type type="application/x-java"> |
2396 | - <_comment>Java class</_comment> | |
2396 | + <comment>Java class</comment> | |
2397 | 2397 | <magic priority="50"> |
2398 | 2398 | <match type="big32" value="0xcafebabe" offset="0"/> |
2399 | 2399 | </magic> |
@@ -2405,7 +2405,7 @@ command to generate the output files. | ||
2405 | 2405 | <glob pattern="*.class"/> |
2406 | 2406 | </mime-type> |
2407 | 2407 | <mime-type type="text/x-groovy"> |
2408 | - <_comment>Groovy source code</_comment> | |
2408 | + <comment>Groovy source code</comment> | |
2409 | 2409 | <sub-class-of type="text/x-csrc"/> |
2410 | 2410 | <generic-icon name="text-x-script"/> |
2411 | 2411 | <glob pattern="*.groovy"/> |
@@ -2414,12 +2414,12 @@ command to generate the output files. | ||
2414 | 2414 | <glob pattern="*.gsh"/> |
2415 | 2415 | </mime-type> |
2416 | 2416 | <mime-type type="text/x-gradle"> |
2417 | - <_comment>Gradle scripts</_comment> | |
2417 | + <comment>Gradle scripts</comment> | |
2418 | 2418 | <sub-class-of type="text/x-groovy"/> |
2419 | 2419 | <glob pattern="*.gradle"/> |
2420 | 2420 | </mime-type> |
2421 | 2421 | <mime-type type="application/x-java-jnlp-file"> |
2422 | - <_comment>JNLP file</_comment> | |
2422 | + <comment>JNLP file</comment> | |
2423 | 2423 | <acronym>JNLP</acronym> |
2424 | 2424 | <expanded-acronym>Java Network Launching Protocol</expanded-acronym> |
2425 | 2425 | <sub-class-of type="application/xml"/> |
@@ -2430,7 +2430,7 @@ command to generate the output files. | ||
2430 | 2430 | </magic> |
2431 | 2431 | </mime-type> |
2432 | 2432 | <mime-type type="application/x-java-keystore"> |
2433 | - <_comment>Java keystore</_comment> | |
2433 | + <comment>Java keystore</comment> | |
2434 | 2434 | <magic priority="50"> |
2435 | 2435 | <match type="big32" value="0xfeedfeed" offset="0"/> |
2436 | 2436 | </magic> |
@@ -2439,7 +2439,7 @@ command to generate the output files. | ||
2439 | 2439 | <glob pattern="cacerts"/> |
2440 | 2440 | </mime-type> |
2441 | 2441 | <mime-type type="application/x-java-jce-keystore"> |
2442 | - <_comment>Java JCE keystore</_comment> | |
2442 | + <comment>Java JCE keystore</comment> | |
2443 | 2443 | <acronym>JCE</acronym> |
2444 | 2444 | <expanded-acronym>Java Cryptography Extension</expanded-acronym> |
2445 | 2445 | <magic priority="50"> |
@@ -2448,7 +2448,7 @@ command to generate the output files. | ||
2448 | 2448 | <glob pattern="*.jceks"/> |
2449 | 2449 | </mime-type> |
2450 | 2450 | <mime-type type="application/x-java-pack200"> |
2451 | - <_comment>Pack200 Java archive</_comment> | |
2451 | + <comment>Pack200 Java archive</comment> | |
2452 | 2452 | <generic-icon name="package-x-generic"/> |
2453 | 2453 | <magic priority="60"> |
2454 | 2454 | <match type="big32" value="0xcafed00d" offset="0"/> |
@@ -2456,7 +2456,7 @@ command to generate the output files. | ||
2456 | 2456 | <glob pattern="*.pack"/> |
2457 | 2457 | </mime-type> |
2458 | 2458 | <mime-type type="application/javascript"> |
2459 | - <_comment>JavaScript program</_comment> | |
2459 | + <comment>JavaScript program</comment> | |
2460 | 2460 | <alias type="application/x-javascript"/> |
2461 | 2461 | <alias type="text/javascript"/> |
2462 | 2462 | <sub-class-of type="application/ecmascript"/> |
@@ -2478,7 +2478,7 @@ command to generate the output files. | ||
2478 | 2478 | <glob pattern="*.mjs"/> |
2479 | 2479 | </mime-type> |
2480 | 2480 | <mime-type type="application/json"> |
2481 | - <_comment>JSON document</_comment> | |
2481 | + <comment>JSON document</comment> | |
2482 | 2482 | <acronym>JSON</acronym> |
2483 | 2483 | <expanded-acronym>JavaScript Object Notation</expanded-acronym> |
2484 | 2484 | <sub-class-of type="application/javascript"/> |
@@ -2486,7 +2486,7 @@ command to generate the output files. | ||
2486 | 2486 | <glob pattern="*.json"/> |
2487 | 2487 | </mime-type> |
2488 | 2488 | <mime-type type="application/jrd+json"> |
2489 | - <_comment>JRD document</_comment> | |
2489 | + <comment>JRD document</comment> | |
2490 | 2490 | <acronym>JRD</acronym> |
2491 | 2491 | <expanded-acronym>JSON Resource Descriptor</expanded-acronym> |
2492 | 2492 | <sub-class-of type="application/json"/> |
@@ -2494,7 +2494,7 @@ command to generate the output files. | ||
2494 | 2494 | <glob pattern="*.jrd"/> |
2495 | 2495 | </mime-type> |
2496 | 2496 | <mime-type type="application/json-patch+json"> |
2497 | - <_comment>JSON patch</_comment> | |
2497 | + <comment>JSON patch</comment> | |
2498 | 2498 | <acronym>JSON</acronym> |
2499 | 2499 | <expanded-acronym>JavaScript Object Notation</expanded-acronym> |
2500 | 2500 | <sub-class-of type="application/json"/> |
@@ -2502,7 +2502,7 @@ command to generate the output files. | ||
2502 | 2502 | <glob pattern="*.json-patch"/> |
2503 | 2503 | </mime-type> |
2504 | 2504 | <mime-type type="application/ld+json"> |
2505 | - <_comment>JSON-LD document</_comment> | |
2505 | + <comment>JSON-LD document</comment> | |
2506 | 2506 | <acronym>JSON-LD</acronym> |
2507 | 2507 | <expanded-acronym>JavaScript Object Notation for Linked Data</expanded-acronym> |
2508 | 2508 | <sub-class-of type="application/json"/> |
@@ -2510,7 +2510,7 @@ command to generate the output files. | ||
2510 | 2510 | <glob pattern="*.jsonld"/> |
2511 | 2511 | </mime-type> |
2512 | 2512 | <mime-type type="application/x-ipynb+json"> |
2513 | - <_comment>Jupyter notebook document</_comment> | |
2513 | + <comment>Jupyter notebook document</comment> | |
2514 | 2514 | <sub-class-of type="application/json"/> |
2515 | 2515 | <generic-icon name="x-office-document"/> |
2516 | 2516 | <magic priority="50"> |
@@ -2521,19 +2521,19 @@ command to generate the output files. | ||
2521 | 2521 | <glob pattern="*.ipynb"/> |
2522 | 2522 | </mime-type> |
2523 | 2523 | <mime-type type="application/vnd.coffeescript"> |
2524 | - <_comment>CoffeeScript document</_comment> | |
2524 | + <comment>CoffeeScript document</comment> | |
2525 | 2525 | <sub-class-of type="text/plain"/> |
2526 | 2526 | <generic-icon name="text-x-script"/> |
2527 | 2527 | <glob pattern="*.coffee"/> |
2528 | 2528 | </mime-type> |
2529 | 2529 | <mime-type type="application/x-jbuilder-project"> |
2530 | - <_comment>JBuilder project</_comment> | |
2530 | + <comment>JBuilder project</comment> | |
2531 | 2531 | <generic-icon name="x-office-document"/> |
2532 | 2532 | <glob pattern="*.jpr"/> |
2533 | 2533 | <glob pattern="*.jpx"/> |
2534 | 2534 | </mime-type> |
2535 | 2535 | <mime-type type="application/x-karbon"> |
2536 | - <_comment>Karbon14 drawing</_comment> | |
2536 | + <comment>Karbon14 drawing</comment> | |
2537 | 2537 | <generic-icon name="image-x-generic"/> |
2538 | 2538 | <magic priority="60"> |
2539 | 2539 | <match type="string" value="\037\213" offset="0"> |
@@ -2550,7 +2550,7 @@ command to generate the output files. | ||
2550 | 2550 | <glob pattern="*.karbon"/> |
2551 | 2551 | </mime-type> |
2552 | 2552 | <mime-type type="application/x-kchart"> |
2553 | - <_comment>KChart chart</_comment> | |
2553 | + <comment>KChart chart</comment> | |
2554 | 2554 | <generic-icon name="x-office-spreadsheet"/> |
2555 | 2555 | <magic priority="60"> |
2556 | 2556 | <match type="string" value="\037\213" offset="0"> |
@@ -2567,27 +2567,27 @@ command to generate the output files. | ||
2567 | 2567 | <glob pattern="*.chrt"/> |
2568 | 2568 | </mime-type> |
2569 | 2569 | <mime-type type="application/x-kexi-connectiondata"> |
2570 | - <_comment>Kexi settings</_comment> | |
2570 | + <comment>Kexi settings</comment> | |
2571 | 2571 | <glob pattern="*.kexic"/> |
2572 | 2572 | </mime-type> |
2573 | 2573 | <mime-type type="application/x-kexiproject-shortcut"> |
2574 | - <_comment>Kexi shortcut</_comment> | |
2574 | + <comment>Kexi shortcut</comment> | |
2575 | 2575 | <glob pattern="*.kexis"/> |
2576 | 2576 | </mime-type> |
2577 | 2577 | <mime-type type="application/x-kexiproject-sqlite2"> |
2578 | - <_comment>Kexi database file</_comment> | |
2578 | + <comment>Kexi database file</comment> | |
2579 | 2579 | <sub-class-of type="application/x-sqlite2"/> |
2580 | 2580 | <glob pattern="*.kexi"/> |
2581 | 2581 | </mime-type> |
2582 | 2582 | <mime-type type="application/x-kexiproject-sqlite3"> |
2583 | - <_comment>Kexi database file</_comment> | |
2583 | + <comment>Kexi database file</comment> | |
2584 | 2584 | <sub-class-of type="application/x-sqlite3"/> |
2585 | 2585 | <glob pattern="*.kexi"/> |
2586 | 2586 | <alias type="application/x-vnd.kde.kexi"/> |
2587 | 2587 | <alias type="application/x-kexiproject-sqlite"/> |
2588 | 2588 | </mime-type> |
2589 | 2589 | <mime-type type="application/x-kformula"> |
2590 | - <_comment>KFormula formula</_comment> | |
2590 | + <comment>KFormula formula</comment> | |
2591 | 2591 | <generic-icon name="x-office-document"/> |
2592 | 2592 | <magic priority="60"> |
2593 | 2593 | <match type="string" value="\037\213" offset="0"> |
@@ -2604,7 +2604,7 @@ command to generate the output files. | ||
2604 | 2604 | <glob pattern="*.kfo"/> |
2605 | 2605 | </mime-type> |
2606 | 2606 | <mime-type type="application/x-killustrator"> |
2607 | - <_comment>KIllustrator drawing</_comment> | |
2607 | + <comment>KIllustrator drawing</comment> | |
2608 | 2608 | <generic-icon name="image-x-generic"/> |
2609 | 2609 | <magic priority="60"> |
2610 | 2610 | <match type="string" value="\037\213" offset="0"> |
@@ -2616,7 +2616,7 @@ command to generate the output files. | ||
2616 | 2616 | <glob pattern="*.kil"/> |
2617 | 2617 | </mime-type> |
2618 | 2618 | <mime-type type="application/x-kivio"> |
2619 | - <_comment>Kivio flowchart</_comment> | |
2619 | + <comment>Kivio flowchart</comment> | |
2620 | 2620 | <generic-icon name="x-office-document"/> |
2621 | 2621 | <magic priority="60"> |
2622 | 2622 | <match type="string" value="\037\213" offset="0"> |
@@ -2633,7 +2633,7 @@ command to generate the output files. | ||
2633 | 2633 | <glob pattern="*.flw"/> |
2634 | 2634 | </mime-type> |
2635 | 2635 | <mime-type type="application/x-kontour"> |
2636 | - <_comment>Kontour drawing</_comment> | |
2636 | + <comment>Kontour drawing</comment> | |
2637 | 2637 | <generic-icon name="image-x-generic"/> |
2638 | 2638 | <magic priority="60"> |
2639 | 2639 | <match type="string" value="\037\213" offset="0"> |
@@ -2650,12 +2650,12 @@ command to generate the output files. | ||
2650 | 2650 | <glob pattern="*.kon"/> |
2651 | 2651 | </mime-type> |
2652 | 2652 | <mime-type type="application/x-kpovmodeler"> |
2653 | - <_comment>KPovModeler scene</_comment> | |
2653 | + <comment>KPovModeler scene</comment> | |
2654 | 2654 | <generic-icon name="image-x-generic"/> |
2655 | 2655 | <glob pattern="*.kpm"/> |
2656 | 2656 | </mime-type> |
2657 | 2657 | <mime-type type="application/x-kpresenter"> |
2658 | - <_comment>KPresenter presentation</_comment> | |
2658 | + <comment>KPresenter presentation</comment> | |
2659 | 2659 | <generic-icon name="x-office-presentation"/> |
2660 | 2660 | <magic priority="60"> |
2661 | 2661 | <match type="string" value="\037\213" offset="0"> |
@@ -2673,7 +2673,7 @@ command to generate the output files. | ||
2673 | 2673 | <glob pattern="*.kpt"/> |
2674 | 2674 | </mime-type> |
2675 | 2675 | <mime-type type="application/x-krita"> |
2676 | - <_comment>Krita document</_comment> | |
2676 | + <comment>Krita document</comment> | |
2677 | 2677 | <generic-icon name="x-office-document"/> |
2678 | 2678 | <magic priority="60"> |
2679 | 2679 | <match type="string" value="\037\213" offset="0"> |
@@ -2690,7 +2690,7 @@ command to generate the output files. | ||
2690 | 2690 | <glob pattern="*.kra"/> |
2691 | 2691 | </mime-type> |
2692 | 2692 | <mime-type type="application/x-kspread"> |
2693 | - <_comment>KSpread spreadsheet</_comment> | |
2693 | + <comment>KSpread spreadsheet</comment> | |
2694 | 2694 | <generic-icon name="x-office-spreadsheet"/> |
2695 | 2695 | <magic priority="60"> |
2696 | 2696 | <match type="string" value="\037\213" offset="0"> |
@@ -2707,14 +2707,14 @@ command to generate the output files. | ||
2707 | 2707 | <glob pattern="*.ksp"/> |
2708 | 2708 | </mime-type> |
2709 | 2709 | <mime-type type="application/x-kspread-crypt"> |
2710 | - <_comment>KSpread spreadsheet (encrypted)</_comment> | |
2710 | + <comment>KSpread spreadsheet (encrypted)</comment> | |
2711 | 2711 | <generic-icon name="x-office-spreadsheet"/> |
2712 | 2712 | <magic priority="50"> |
2713 | 2713 | <match type="big32" value="0x0d1a2702" offset="0"/> |
2714 | 2714 | </magic> |
2715 | 2715 | </mime-type> |
2716 | 2716 | <mime-type type="application/x-ksysv-package"> |
2717 | - <_comment>KSysV init package</_comment> | |
2717 | + <comment>KSysV init package</comment> | |
2718 | 2718 | <generic-icon name="package-x-generic"/> |
2719 | 2719 | <magic priority="50"> |
2720 | 2720 | <match type="string" value="KSysV" offset="4"> |
@@ -2723,12 +2723,12 @@ command to generate the output files. | ||
2723 | 2723 | </magic> |
2724 | 2724 | </mime-type> |
2725 | 2725 | <mime-type type="application/x-kugar"> |
2726 | - <_comment>Kugar document</_comment> | |
2726 | + <comment>Kugar document</comment> | |
2727 | 2727 | <generic-icon name="x-office-document"/> |
2728 | 2728 | <glob pattern="*.kud"/> |
2729 | 2729 | </mime-type> |
2730 | 2730 | <mime-type type="application/x-kword"> |
2731 | - <_comment>KWord document</_comment> | |
2731 | + <comment>KWord document</comment> | |
2732 | 2732 | <generic-icon name="x-office-document"/> |
2733 | 2733 | <magic priority="60"> |
2734 | 2734 | <match type="string" value="\037\213" offset="0"> |
@@ -2746,14 +2746,14 @@ command to generate the output files. | ||
2746 | 2746 | <glob pattern="*.kwt"/> |
2747 | 2747 | </mime-type> |
2748 | 2748 | <mime-type type="application/x-kword-crypt"> |
2749 | - <_comment>KWord document (encrypted)</_comment> | |
2749 | + <comment>KWord document (encrypted)</comment> | |
2750 | 2750 | <generic-icon name="x-office-document"/> |
2751 | 2751 | <magic priority="50"> |
2752 | 2752 | <match type="big32" value="0x0d1a2701" offset="0"/> |
2753 | 2753 | </magic> |
2754 | 2754 | </mime-type> |
2755 | 2755 | <mime-type type="application/x-lha"> |
2756 | - <_comment>LHA archive</_comment> | |
2756 | + <comment>LHA archive</comment> | |
2757 | 2757 | <generic-icon name="package-x-generic"/> |
2758 | 2758 | <magic priority="60"> |
2759 | 2759 | <match type="string" value="-lh -" offset="2"/> |
@@ -2774,12 +2774,12 @@ command to generate the output files. | ||
2774 | 2774 | <alias type="application/x-lzh-compressed"/> |
2775 | 2775 | </mime-type> |
2776 | 2776 | <mime-type type="application/x-lhz"> |
2777 | - <_comment>LHZ archive</_comment> | |
2777 | + <comment>LHZ archive</comment> | |
2778 | 2778 | <generic-icon name="package-x-generic"/> |
2779 | 2779 | <glob pattern="*.lhz"/> |
2780 | 2780 | </mime-type> |
2781 | 2781 | <mime-type type="text/vnd.qt.linguist"> |
2782 | - <_comment>message catalog</_comment> | |
2782 | + <comment>message catalog</comment> | |
2783 | 2783 | <sub-class-of type="application/xml"/> |
2784 | 2784 | <magic> |
2785 | 2785 | <match type="string" value="<TS" offset="0:256"/> |
@@ -2789,7 +2789,7 @@ command to generate the output files. | ||
2789 | 2789 | <alias type="text/vnd.trolltech.linguist"/> |
2790 | 2790 | </mime-type> |
2791 | 2791 | <mime-type type="application/x-lyx"> |
2792 | - <_comment>LyX document</_comment> | |
2792 | + <comment>LyX document</comment> | |
2793 | 2793 | <sub-class-of type="text/plain"/> |
2794 | 2794 | <generic-icon name="x-office-document"/> |
2795 | 2795 | <magic priority="50"> |
@@ -2799,7 +2799,7 @@ command to generate the output files. | ||
2799 | 2799 | <alias type="text/x-lyx"/> |
2800 | 2800 | </mime-type> |
2801 | 2801 | <mime-type type="application/x-lz4"> |
2802 | - <_comment>LZ4 archive</_comment> | |
2802 | + <comment>LZ4 archive</comment> | |
2803 | 2803 | <generic-icon name="package-x-generic"/> |
2804 | 2804 | <magic priority="60"> |
2805 | 2805 | <match type="little32" value="0x184d2204" offset="0"/> |
@@ -2808,13 +2808,13 @@ command to generate the output files. | ||
2808 | 2808 | <glob pattern="*.lz4"/> |
2809 | 2809 | </mime-type> |
2810 | 2810 | <mime-type type="application/x-lz4-compressed-tar"> |
2811 | - <_comment>Tar archive (LZ4-compressed)</_comment> | |
2811 | + <comment>Tar archive (LZ4-compressed)</comment> | |
2812 | 2812 | <generic-icon name="package-x-generic"/> |
2813 | 2813 | <sub-class-of type="application/x-lz4"/> |
2814 | 2814 | <glob pattern="*.tar.lz4"/> |
2815 | 2815 | </mime-type> |
2816 | 2816 | <mime-type type="application/x-lzip"> |
2817 | - <_comment>Lzip archive</_comment> | |
2817 | + <comment>Lzip archive</comment> | |
2818 | 2818 | <generic-icon name="package-x-generic"/> |
2819 | 2819 | <magic priority="60"> |
2820 | 2820 | <match type="string" value="LZIP" offset="0"/> |
@@ -2822,33 +2822,33 @@ command to generate the output files. | ||
2822 | 2822 | <glob pattern="*.lz"/> |
2823 | 2823 | </mime-type> |
2824 | 2824 | <mime-type type="application/x-lzip-compressed-tar"> |
2825 | - <_comment>Tar archive (lzip-compressed)</_comment> | |
2825 | + <comment>Tar archive (lzip-compressed)</comment> | |
2826 | 2826 | <generic-icon name="package-x-generic"/> |
2827 | 2827 | <sub-class-of type="application/x-lzip"/> |
2828 | 2828 | <glob pattern="*.tar.lz"/> |
2829 | 2829 | </mime-type> |
2830 | 2830 | <mime-type type="application/x-lzpdf"> |
2831 | - <_comment>PDF document (lzip-compressed)</_comment> | |
2831 | + <comment>PDF document (lzip-compressed)</comment> | |
2832 | 2832 | <sub-class-of type="application/x-lzip"/> |
2833 | 2833 | <generic-icon name="x-office-document"/> |
2834 | 2834 | <glob pattern="*.pdf.lz"/> |
2835 | 2835 | </mime-type> |
2836 | 2836 | <mime-type type="application/x-lzma"> |
2837 | - <_comment>LZMA archive</_comment> | |
2837 | + <comment>LZMA archive</comment> | |
2838 | 2838 | <acronym>LZMA</acronym> |
2839 | 2839 | <expanded-acronym>Lempel-Ziv-Markov chain-Algorithm</expanded-acronym> |
2840 | 2840 | <generic-icon name="package-x-generic"/> |
2841 | 2841 | <glob pattern="*.lzma"/> |
2842 | 2842 | </mime-type> |
2843 | 2843 | <mime-type type="application/x-lzma-compressed-tar"> |
2844 | - <_comment>Tar archive (LZMA-compressed)</_comment> | |
2844 | + <comment>Tar archive (LZMA-compressed)</comment> | |
2845 | 2845 | <sub-class-of type="application/x-lzma"/> |
2846 | 2846 | <generic-icon name="package-x-generic"/> |
2847 | 2847 | <glob pattern="*.tar.lzma"/> |
2848 | 2848 | <glob pattern="*.tlz"/> |
2849 | 2849 | </mime-type> |
2850 | 2850 | <mime-type type="application/x-lzop"> |
2851 | - <_comment>LZO archive</_comment> | |
2851 | + <comment>LZO archive</comment> | |
2852 | 2852 | <acronym>LZO</acronym> |
2853 | 2853 | <expanded-acronym>Lempel-Ziv-Oberhumer</expanded-acronym> |
2854 | 2854 | <generic-icon name="package-x-generic"/> |
@@ -2858,7 +2858,7 @@ command to generate the output files. | ||
2858 | 2858 | <glob pattern="*.lzo"/> |
2859 | 2859 | </mime-type> |
2860 | 2860 | <mime-type type="application/x-qpress"> |
2861 | - <_comment>Qpress archive</_comment> | |
2861 | + <comment>Qpress archive</comment> | |
2862 | 2862 | <generic-icon name="package-x-generic"/> |
2863 | 2863 | <magic priority="60"> |
2864 | 2864 | <match type="string" value="qpress10" offset="0"/> |
@@ -2866,7 +2866,7 @@ command to generate the output files. | ||
2866 | 2866 | <glob pattern="*.qp"/> |
2867 | 2867 | </mime-type> |
2868 | 2868 | <mime-type type="application/x-xar"> |
2869 | - <_comment>XAR archive</_comment> | |
2869 | + <comment>XAR archive</comment> | |
2870 | 2870 | <acronym>XAR</acronym> |
2871 | 2871 | <expanded-acronym>eXtensible ARchive</expanded-acronym> |
2872 | 2872 | <generic-icon name="package-x-generic"/> |
@@ -2878,25 +2878,25 @@ command to generate the output files. | ||
2878 | 2878 | <glob pattern="*.pkg"/> |
2879 | 2879 | </mime-type> |
2880 | 2880 | <mime-type type="application/zlib"> |
2881 | - <_comment>Zlib archive</_comment> | |
2881 | + <comment>Zlib archive</comment> | |
2882 | 2882 | <generic-icon name="package-x-generic"/> |
2883 | 2883 | <glob pattern="*.zz"/> |
2884 | 2884 | </mime-type> |
2885 | 2885 | <mime-type type="application/x-magicpoint"> |
2886 | - <_comment>MagicPoint presentation</_comment> | |
2886 | + <comment>MagicPoint presentation</comment> | |
2887 | 2887 | <sub-class-of type="text/plain"/> |
2888 | 2888 | <generic-icon name="x-office-presentation"/> |
2889 | 2889 | <glob pattern="*.mgp"/> |
2890 | 2890 | </mime-type> |
2891 | 2891 | <mime-type type="application/x-macbinary"> |
2892 | - <_comment>Macintosh MacBinary file</_comment> | |
2892 | + <comment>Macintosh MacBinary file</comment> | |
2893 | 2893 | <generic-icon name="package-x-generic"/> |
2894 | 2894 | <magic priority="50"> |
2895 | 2895 | <match type="string" value="mBIN" offset="102"/> |
2896 | 2896 | </magic> |
2897 | 2897 | </mime-type> |
2898 | 2898 | <mime-type type="application/x-matroska"> |
2899 | - <_comment>Matroska stream</_comment> | |
2899 | + <comment>Matroska stream</comment> | |
2900 | 2900 | <generic-icon name="video-x-generic"/> |
2901 | 2901 | <magic priority="50"> |
2902 | 2902 | <!-- EBML ID --> |
@@ -2910,22 +2910,22 @@ command to generate the output files. | ||
2910 | 2910 | </magic> |
2911 | 2911 | </mime-type> |
2912 | 2912 | <mime-type type="video/x-matroska"> |
2913 | - <_comment>Matroska video</_comment> | |
2913 | + <comment>Matroska video</comment> | |
2914 | 2914 | <glob pattern="*.mkv"/> |
2915 | 2915 | <sub-class-of type="application/x-matroska"/> |
2916 | 2916 | </mime-type> |
2917 | 2917 | <mime-type type="video/x-matroska-3d"> |
2918 | - <_comment>Matroska 3D video</_comment> | |
2918 | + <comment>Matroska 3D video</comment> | |
2919 | 2919 | <glob pattern="*.mk3d"/> |
2920 | 2920 | <sub-class-of type="application/x-matroska"/> |
2921 | 2921 | </mime-type> |
2922 | 2922 | <mime-type type="audio/x-matroska"> |
2923 | - <_comment>Matroska audio</_comment> | |
2923 | + <comment>Matroska audio</comment> | |
2924 | 2924 | <glob pattern="*.mka"/> |
2925 | 2925 | <sub-class-of type="application/x-matroska"/> |
2926 | 2926 | </mime-type> |
2927 | 2927 | <mime-type type="video/webm"> |
2928 | - <_comment>WebM video</_comment> | |
2928 | + <comment>WebM video</comment> | |
2929 | 2929 | <glob pattern="*.webm"/> |
2930 | 2930 | <magic priority="50"> |
2931 | 2931 | <!-- EBML ID --> |
@@ -2939,11 +2939,11 @@ command to generate the output files. | ||
2939 | 2939 | </magic> |
2940 | 2940 | </mime-type> |
2941 | 2941 | <mime-type type="audio/webm"> |
2942 | - <_comment>WebM audio</_comment> | |
2942 | + <comment>WebM audio</comment> | |
2943 | 2943 | <sub-class-of type="video/webm"/> |
2944 | 2944 | </mime-type> |
2945 | 2945 | <mime-type type="application/x-mimearchive"> |
2946 | - <_comment>MHTML web archive</_comment> | |
2946 | + <comment>MHTML web archive</comment> | |
2947 | 2947 | <acronym>MHTML</acronym> |
2948 | 2948 | <expanded-acronym>MIME HTML</expanded-acronym> |
2949 | 2949 | <glob pattern="*.mhtml"/> |
@@ -2951,7 +2951,7 @@ command to generate the output files. | ||
2951 | 2951 | <sub-class-of type="multipart/related"/> |
2952 | 2952 | </mime-type> |
2953 | 2953 | <mime-type type="application/mxf"> |
2954 | - <_comment>MXF video</_comment> | |
2954 | + <comment>MXF video</comment> | |
2955 | 2955 | <acronym>MXF</acronym> |
2956 | 2956 | <expanded-acronym>Material Exchange Format</expanded-acronym> |
2957 | 2957 | <generic-icon name="video-x-generic"/> |
@@ -2961,14 +2961,14 @@ command to generate the output files. | ||
2961 | 2961 | <glob pattern="*.mxf"/> |
2962 | 2962 | </mime-type> |
2963 | 2963 | <mime-type type="text/x-ocl"> |
2964 | - <_comment>OCL file</_comment> | |
2964 | + <comment>OCL file</comment> | |
2965 | 2965 | <acronym>OCL</acronym> |
2966 | 2966 | <expanded-acronym>Object Constraint Language</expanded-acronym> |
2967 | 2967 | <sub-class-of type="text/plain"/> |
2968 | 2968 | <glob pattern="*.ocl"/> |
2969 | 2969 | </mime-type> |
2970 | 2970 | <mime-type type="text/x-cobol"> |
2971 | - <_comment>COBOL source code</_comment> | |
2971 | + <comment>COBOL source code</comment> | |
2972 | 2972 | <acronym>COBOL</acronym> |
2973 | 2973 | <expanded-acronym>COmmon Business Oriented Language</expanded-acronym> |
2974 | 2974 | <sub-class-of type="text/plain"/> |
@@ -2976,7 +2976,7 @@ command to generate the output files. | ||
2976 | 2976 | <glob pattern="*.cob"/> |
2977 | 2977 | </mime-type> |
2978 | 2978 | <mime-type type="application/x-mobipocket-ebook"> |
2979 | - <_comment>Mobipocket e-book</_comment> | |
2979 | + <comment>Mobipocket e-book</comment> | |
2980 | 2980 | <sub-class-of type="application/vnd.palm"/> |
2981 | 2981 | <generic-icon name="x-office-document"/> |
2982 | 2982 | <glob pattern="*.mobi"/> |
@@ -2990,11 +2990,11 @@ command to generate the output files. | ||
2990 | 2990 | </magic> |
2991 | 2991 | </mime-type> |
2992 | 2992 | <mime-type type="application/x-mif"> |
2993 | - <_comment>Adobe FrameMaker MIF document</_comment> | |
2993 | + <comment>Adobe FrameMaker MIF document</comment> | |
2994 | 2994 | <glob pattern="*.mif"/> |
2995 | 2995 | </mime-type> |
2996 | 2996 | <mime-type type="application/x-mozilla-bookmarks"> |
2997 | - <_comment>Mozilla bookmarks</_comment> | |
2997 | + <comment>Mozilla bookmarks</comment> | |
2998 | 2998 | <sub-class-of type="text/html"/> |
2999 | 2999 | <generic-icon name="text-html"/> |
3000 | 3000 | <magic priority="80"> |
@@ -3003,7 +3003,7 @@ command to generate the output files. | ||
3003 | 3003 | <alias type="application/x-netscape-bookmarks"/> |
3004 | 3004 | </mime-type> |
3005 | 3005 | <mime-type type="application/x-ms-dos-executable"> |
3006 | - <_comment>DOS/Windows executable</_comment> | |
3006 | + <comment>DOS/Windows executable</comment> | |
3007 | 3007 | <generic-icon name="application-x-executable"/> |
3008 | 3008 | <magic priority="50"> |
3009 | 3009 | <match type="string" value="MZ" offset="0"/> |
@@ -3011,7 +3011,7 @@ command to generate the output files. | ||
3011 | 3011 | <glob pattern="*.exe"/> |
3012 | 3012 | </mime-type> |
3013 | 3013 | <mime-type type="application/x-mswinurl"> |
3014 | - <_comment>Internet shortcut</_comment> | |
3014 | + <comment>Internet shortcut</comment> | |
3015 | 3015 | <magic priority="50"> |
3016 | 3016 | <match type="string" value="InternetShortcut" offset="1"/> |
3017 | 3017 | <match type="string" value="DEFAULT" offset="1"> |
@@ -3021,23 +3021,23 @@ command to generate the output files. | ||
3021 | 3021 | <glob pattern="*.url"/> |
3022 | 3022 | </mime-type> |
3023 | 3023 | <mime-type type="application/x-mswrite"> |
3024 | - <_comment>WRI document</_comment> | |
3024 | + <comment>WRI document</comment> | |
3025 | 3025 | <generic-icon name="x-office-document"/> |
3026 | 3026 | <glob pattern="*.wri"/> |
3027 | 3027 | </mime-type> |
3028 | 3028 | <mime-type type="application/x-msx-rom"> |
3029 | - <_comment>MSX ROM</_comment> | |
3029 | + <comment>MSX ROM</comment> | |
3030 | 3030 | <generic-icon name="application-x-executable"/> |
3031 | 3031 | <glob pattern="*.msx"/> |
3032 | 3032 | </mime-type> |
3033 | 3033 | <mime-type type="application/x-m4"> |
3034 | - <_comment>M4 macro</_comment> | |
3034 | + <comment>M4 macro</comment> | |
3035 | 3035 | <sub-class-of type="text/plain"/> |
3036 | 3036 | <generic-icon name="text-x-script"/> |
3037 | 3037 | <glob pattern="*.m4"/> |
3038 | 3038 | </mime-type> |
3039 | 3039 | <mime-type type="application/x-n64-rom"> |
3040 | - <_comment>Nintendo64 ROM</_comment> | |
3040 | + <comment>Nintendo64 ROM</comment> | |
3041 | 3041 | <generic-icon name="application-x-executable"/> |
3042 | 3042 | <glob pattern="*.n64"/> |
3043 | 3043 | <glob pattern="*.z64"/> |
@@ -3052,7 +3052,7 @@ command to generate the output files. | ||
3052 | 3052 | </magic> |
3053 | 3053 | </mime-type> |
3054 | 3054 | <mime-type type="application/x-nautilus-link"> |
3055 | - <_comment>Nautilus link</_comment> | |
3055 | + <comment>Nautilus link</comment> | |
3056 | 3056 | <sub-class-of type="text/plain"/> |
3057 | 3057 | <generic-icon name="text-x-generic"/> |
3058 | 3058 | <magic priority="50"> |
@@ -3060,7 +3060,7 @@ command to generate the output files. | ||
3060 | 3060 | </magic> |
3061 | 3061 | </mime-type> |
3062 | 3062 | <mime-type type="application/x-neo-geo-pocket-rom"> |
3063 | - <_comment>Neo-Geo Pocket ROM</_comment> | |
3063 | + <comment>Neo-Geo Pocket ROM</comment> | |
3064 | 3064 | <generic-icon name="application-x-executable"/> |
3065 | 3065 | <glob pattern="*.ngp"/> |
3066 | 3066 | <magic> |
@@ -3071,7 +3071,7 @@ command to generate the output files. | ||
3071 | 3071 | </magic> |
3072 | 3072 | </mime-type> |
3073 | 3073 | <mime-type type="application/x-neo-geo-pocket-color-rom"> |
3074 | - <_comment>Neo-Geo Pocket Color ROM</_comment> | |
3074 | + <comment>Neo-Geo Pocket Color ROM</comment> | |
3075 | 3075 | <generic-icon name="application-x-executable"/> |
3076 | 3076 | <glob pattern="*.ngc"/> |
3077 | 3077 | <magic> |
@@ -3083,7 +3083,7 @@ command to generate the output files. | ||
3083 | 3083 | </mime-type> |
3084 | 3084 | <mime-type type="application/x-nes-rom"> |
3085 | 3085 | <!-- Translate this to Famicom if the console was known as such in your locale --> |
3086 | - <_comment>NES ROM</_comment> | |
3086 | + <comment>NES ROM</comment> | |
3087 | 3087 | <generic-icon name="application-x-executable"/> |
3088 | 3088 | <glob pattern="*.nes"/> |
3089 | 3089 | <glob pattern="*.nez"/> |
@@ -3091,7 +3091,7 @@ command to generate the output files. | ||
3091 | 3091 | <glob pattern="*.unif"/> |
3092 | 3092 | </mime-type> |
3093 | 3093 | <mime-type type="application/x-netcdf"> |
3094 | - <_comment>Unidata NetCDF document</_comment> | |
3094 | + <comment>Unidata NetCDF document</comment> | |
3095 | 3095 | <acronym>NetCDF</acronym> |
3096 | 3096 | <expanded-acronym>Network Common Data Form</expanded-acronym> |
3097 | 3097 | <generic-icon name="x-office-document"/> |
@@ -3099,7 +3099,7 @@ command to generate the output files. | ||
3099 | 3099 | <glob pattern="*.nc"/> |
3100 | 3100 | </mime-type> |
3101 | 3101 | <mime-type type="application/x-nzb"> |
3102 | - <_comment>NewzBin usenet index</_comment> | |
3102 | + <comment>NewzBin usenet index</comment> | |
3103 | 3103 | <sub-class-of type="application/xml"/> |
3104 | 3104 | <magic priority="80"> |
3105 | 3105 | <match type="string" value="<nzb" offset="0:256"/> |
@@ -3107,7 +3107,7 @@ command to generate the output files. | ||
3107 | 3107 | <glob pattern="*.nzb"/> |
3108 | 3108 | </mime-type> |
3109 | 3109 | <mime-type type="application/x-object"> |
3110 | - <_comment>object code</_comment> | |
3110 | + <comment>object code</comment> | |
3111 | 3111 | <generic-icon name="x-office-document"/> |
3112 | 3112 | <magic priority="50"> |
3113 | 3113 | <match type="string" value="\177ELF" offset="0"> |
@@ -3124,7 +3124,7 @@ command to generate the output files. | ||
3124 | 3124 | <glob pattern="*.o"/> |
3125 | 3125 | </mime-type> |
3126 | 3126 | <mime-type type="application/annodex"> |
3127 | - <_comment>Annodex exchange format</_comment> | |
3127 | + <comment>Annodex exchange format</comment> | |
3128 | 3128 | <generic-icon name="video-x-generic"/> |
3129 | 3129 | <magic priority="50"> |
3130 | 3130 | <match type="string" value="OggS" offset="0"> |
@@ -3137,7 +3137,7 @@ command to generate the output files. | ||
3137 | 3137 | <alias type="application/x-annodex"/> |
3138 | 3138 | </mime-type> |
3139 | 3139 | <mime-type type="video/annodex"> |
3140 | - <_comment>Annodex video</_comment> | |
3140 | + <comment>Annodex video</comment> | |
3141 | 3141 | <sub-class-of type="application/annodex"/> |
3142 | 3142 | <magic priority="50"> |
3143 | 3143 | <match type="string" value="OggS" offset="0"> |
@@ -3150,7 +3150,7 @@ command to generate the output files. | ||
3150 | 3150 | <alias type="video/x-annodex"/> |
3151 | 3151 | </mime-type> |
3152 | 3152 | <mime-type type="audio/annodex"> |
3153 | - <_comment>Annodex audio</_comment> | |
3153 | + <comment>Annodex audio</comment> | |
3154 | 3154 | <sub-class-of type="application/annodex"/> |
3155 | 3155 | <magic priority="50"> |
3156 | 3156 | <match type="string" value="OggS" offset="0"> |
@@ -3163,7 +3163,7 @@ command to generate the output files. | ||
3163 | 3163 | <alias type="audio/x-annodex"/> |
3164 | 3164 | </mime-type> |
3165 | 3165 | <mime-type type="application/ogg"> |
3166 | - <_comment>Ogg multimedia file</_comment> | |
3166 | + <comment>Ogg multimedia file</comment> | |
3167 | 3167 | <generic-icon name="video-x-generic"/> |
3168 | 3168 | <alias type="application/x-ogg"/> |
3169 | 3169 | <magic priority="50"> |
@@ -3172,7 +3172,7 @@ command to generate the output files. | ||
3172 | 3172 | <glob pattern="*.ogx"/> |
3173 | 3173 | </mime-type> |
3174 | 3174 | <mime-type type="audio/ogg"> |
3175 | - <_comment>Ogg audio</_comment> | |
3175 | + <comment>Ogg audio</comment> | |
3176 | 3176 | <sub-class-of type="application/ogg"/> |
3177 | 3177 | <magic priority="50"> |
3178 | 3178 | <match type="string" value="OggS" offset="0"/> |
@@ -3183,7 +3183,7 @@ command to generate the output files. | ||
3183 | 3183 | <alias type="audio/x-ogg"/> |
3184 | 3184 | </mime-type> |
3185 | 3185 | <mime-type type="video/ogg"> |
3186 | - <_comment>Ogg video</_comment> | |
3186 | + <comment>Ogg video</comment> | |
3187 | 3187 | <sub-class-of type="application/ogg"/> |
3188 | 3188 | <magic priority="50"> |
3189 | 3189 | <match type="string" value="OggS" offset="0"/> |
@@ -3193,7 +3193,7 @@ command to generate the output files. | ||
3193 | 3193 | <alias type="video/x-ogg"/> |
3194 | 3194 | </mime-type> |
3195 | 3195 | <mime-type type="audio/x-vorbis+ogg"> |
3196 | - <_comment>Ogg Vorbis audio</_comment> | |
3196 | + <comment>Ogg Vorbis audio</comment> | |
3197 | 3197 | <sub-class-of type="audio/ogg"/> |
3198 | 3198 | <alias type="audio/vorbis"/> |
3199 | 3199 | <alias type="audio/x-vorbis"/> |
@@ -3206,7 +3206,7 @@ command to generate the output files. | ||
3206 | 3206 | <glob pattern="*.ogg"/> |
3207 | 3207 | </mime-type> |
3208 | 3208 | <mime-type type="audio/x-flac+ogg"> |
3209 | - <_comment>Ogg FLAC audio</_comment> | |
3209 | + <comment>Ogg FLAC audio</comment> | |
3210 | 3210 | <sub-class-of type="audio/ogg"/> |
3211 | 3211 | <alias type="audio/x-oggflac"/> |
3212 | 3212 | <magic priority="80"> |
@@ -3221,7 +3221,7 @@ command to generate the output files. | ||
3221 | 3221 | <glob pattern="*.ogg"/> |
3222 | 3222 | </mime-type> |
3223 | 3223 | <mime-type type="audio/x-opus+ogg"> |
3224 | - <_comment>Opus audio</_comment> | |
3224 | + <comment>Opus audio</comment> | |
3225 | 3225 | <sub-class-of type="audio/ogg"/> |
3226 | 3226 | <magic priority="80"> |
3227 | 3227 | <match type="string" value="OggS" offset="0"> |
@@ -3231,7 +3231,7 @@ command to generate the output files. | ||
3231 | 3231 | <glob pattern="*.opus"/> |
3232 | 3232 | </mime-type> |
3233 | 3233 | <mime-type type="audio/x-speex+ogg"> |
3234 | - <_comment>Ogg Speex audio</_comment> | |
3234 | + <comment>Ogg Speex audio</comment> | |
3235 | 3235 | <sub-class-of type="audio/ogg"/> |
3236 | 3236 | <magic priority="80"> |
3237 | 3237 | <match type="string" value="OggS" offset="0"> |
@@ -3242,14 +3242,14 @@ command to generate the output files. | ||
3242 | 3242 | <glob pattern="*.ogg"/> |
3243 | 3243 | </mime-type> |
3244 | 3244 | <mime-type type="audio/x-speex"> |
3245 | - <_comment>Speex audio</_comment> | |
3245 | + <comment>Speex audio</comment> | |
3246 | 3246 | <magic priority="50"> |
3247 | 3247 | <match type="string" value="Speex" offset="0"/> |
3248 | 3248 | </magic> |
3249 | 3249 | <glob pattern="*.spx"/> |
3250 | 3250 | </mime-type> |
3251 | 3251 | <mime-type type="video/x-theora+ogg"> |
3252 | - <_comment>Ogg Theora video</_comment> | |
3252 | + <comment>Ogg Theora video</comment> | |
3253 | 3253 | <sub-class-of type="video/ogg"/> |
3254 | 3254 | <alias type="video/x-theora"/> |
3255 | 3255 | <magic priority="80"> |
@@ -3260,7 +3260,7 @@ command to generate the output files. | ||
3260 | 3260 | <glob pattern="*.ogg"/> |
3261 | 3261 | </mime-type> |
3262 | 3262 | <mime-type type="video/x-ogm+ogg"> |
3263 | - <_comment>OGM video</_comment> | |
3263 | + <comment>OGM video</comment> | |
3264 | 3264 | <sub-class-of type="video/ogg"/> |
3265 | 3265 | <alias type="video/x-ogm"/> |
3266 | 3266 | <magic priority="80"> |
@@ -3273,7 +3273,7 @@ command to generate the output files. | ||
3273 | 3273 | <!-- These are typically compount document of various types, so prefer |
3274 | 3274 | extensions for these --> |
3275 | 3275 | <mime-type type="application/x-ole-storage"> |
3276 | - <_comment>OLE2 compound document storage</_comment> | |
3276 | + <comment>OLE2 compound document storage</comment> | |
3277 | 3277 | <generic-icon name="x-office-document"/> |
3278 | 3278 | <magic priority="50"> |
3279 | 3279 | <match type="string" value="\320\317\021\340\241\261\032\341" offset="0"/> |
@@ -3281,17 +3281,17 @@ command to generate the output files. | ||
3281 | 3281 | </magic> |
3282 | 3282 | </mime-type> |
3283 | 3283 | <mime-type type="application/vnd.ms-publisher"> |
3284 | - <_comment>Microsoft Publisher document</_comment> | |
3284 | + <comment>Microsoft Publisher document</comment> | |
3285 | 3285 | <sub-class-of type="application/x-ole-storage"/> |
3286 | 3286 | <glob pattern="*.pub"/> |
3287 | 3287 | </mime-type> |
3288 | 3288 | <mime-type type="application/x-msi"> |
3289 | - <_comment>Windows Installer package</_comment> | |
3289 | + <comment>Windows Installer package</comment> | |
3290 | 3290 | <sub-class-of type="application/x-ole-storage"/> |
3291 | 3291 | <glob pattern="*.msi"/> |
3292 | 3292 | </mime-type> |
3293 | 3293 | <mime-type type="application/x-oleo"> |
3294 | - <_comment>GNU Oleo spreadsheet</_comment> | |
3294 | + <comment>GNU Oleo spreadsheet</comment> | |
3295 | 3295 | <generic-icon name="x-office-spreadsheet"/> |
3296 | 3296 | <magic priority="50"> |
3297 | 3297 | <match type="string" value="Oleo" offset="31"/> |
@@ -3299,7 +3299,7 @@ command to generate the output files. | ||
3299 | 3299 | <glob pattern="*.oleo"/> |
3300 | 3300 | </mime-type> |
3301 | 3301 | <mime-type type="application/x-pak"> |
3302 | - <_comment>PAK archive</_comment> | |
3302 | + <comment>PAK archive</comment> | |
3303 | 3303 | <generic-icon name="package-x-generic"/> |
3304 | 3304 | <magic priority="80"> |
3305 | 3305 | <match offset="0" type="string" value="PACK" /> |
@@ -3307,7 +3307,7 @@ command to generate the output files. | ||
3307 | 3307 | <glob pattern="*.pak" /> |
3308 | 3308 | </mime-type> |
3309 | 3309 | <mime-type type="application/vnd.palm"> |
3310 | - <_comment>Palm OS database</_comment> | |
3310 | + <comment>Palm OS database</comment> | |
3311 | 3311 | <glob pattern="*.prc"/> |
3312 | 3312 | <glob pattern="*.pdb"/> |
3313 | 3313 | <glob pattern="*.pqa"/> |
@@ -3315,7 +3315,7 @@ command to generate the output files. | ||
3315 | 3315 | <alias type="application/x-palm-database"/> |
3316 | 3316 | </mime-type> |
3317 | 3317 | <mime-type type="application/x-par2"> |
3318 | - <_comment>Parchive archive</_comment> | |
3318 | + <comment>Parchive archive</comment> | |
3319 | 3319 | <acronym>Parchive</acronym> |
3320 | 3320 | <expanded-acronym>Parity Volume Set Archive</expanded-acronym> |
3321 | 3321 | <generic-icon name="package-x-generic"/> |
@@ -3326,14 +3326,14 @@ command to generate the output files. | ||
3326 | 3326 | <glob pattern="*.par2" /> |
3327 | 3327 | </mime-type> |
3328 | 3328 | <mime-type type="application/x-pef-executable"> |
3329 | - <_comment>PEF executable</_comment> | |
3329 | + <comment>PEF executable</comment> | |
3330 | 3330 | <generic-icon name="application-x-executable"/> |
3331 | 3331 | <magic priority="50"> |
3332 | 3332 | <match type="string" value="Joy!" offset="0"/> |
3333 | 3333 | </magic> |
3334 | 3334 | </mime-type> |
3335 | 3335 | <mime-type type="application/x-perl"> |
3336 | - <_comment>Perl script</_comment> | |
3336 | + <comment>Perl script</comment> | |
3337 | 3337 | <sub-class-of type="application/x-executable"/> |
3338 | 3338 | <sub-class-of type="text/plain"/> |
3339 | 3339 | <generic-icon name="text-x-script"/> |
@@ -3362,7 +3362,7 @@ command to generate the output files. | ||
3362 | 3362 | <glob pattern="*.t" weight="10"/><!-- CPAN-style Perl test script --> |
3363 | 3363 | </mime-type> |
3364 | 3364 | <mime-type type="application/x-php"> |
3365 | - <_comment>PHP script</_comment> | |
3365 | + <comment>PHP script</comment> | |
3366 | 3366 | <sub-class-of type="text/plain"/> |
3367 | 3367 | <generic-icon name="text-x-script"/> |
3368 | 3368 | <magic priority="80"> |
@@ -3375,14 +3375,14 @@ command to generate the output files. | ||
3375 | 3375 | <glob pattern="*.phps"/> |
3376 | 3376 | </mime-type> |
3377 | 3377 | <mime-type type="application/x-pkcs7-certificates"> |
3378 | - <_comment>PKCS#7 certificate bundle</_comment> | |
3378 | + <comment>PKCS#7 certificate bundle</comment> | |
3379 | 3379 | <acronym>PKCS</acronym> |
3380 | 3380 | <expanded-acronym>Public-Key Cryptography Standards</expanded-acronym> |
3381 | 3381 | <glob pattern="*.p7b"/> |
3382 | 3382 | <glob pattern="*.spc"/> |
3383 | 3383 | </mime-type> |
3384 | 3384 | <mime-type type="application/pkcs12"> |
3385 | - <_comment>PKCS#12 certificate bundle</_comment> | |
3385 | + <comment>PKCS#12 certificate bundle</comment> | |
3386 | 3386 | <acronym>PKCS</acronym> |
3387 | 3387 | <expanded-acronym>Public-Key Cryptography Standards</expanded-acronym> |
3388 | 3388 | <glob pattern="*.p12"/> |
@@ -3390,12 +3390,12 @@ command to generate the output files. | ||
3390 | 3390 | <alias type="application/x-pkcs12"/> |
3391 | 3391 | </mime-type> |
3392 | 3392 | <mime-type type="application/x-planperfect"> |
3393 | - <_comment>PlanPerfect spreadsheet</_comment> | |
3393 | + <comment>PlanPerfect spreadsheet</comment> | |
3394 | 3394 | <generic-icon name="x-office-spreadsheet"/> |
3395 | 3395 | <glob pattern="*.pln"/> |
3396 | 3396 | </mime-type> |
3397 | 3397 | <mime-type type="application/x-pocket-word"> |
3398 | - <_comment>Pocket Word document</_comment> | |
3398 | + <comment>Pocket Word document</comment> | |
3399 | 3399 | <generic-icon name="x-office-document"/> |
3400 | 3400 | <magic priority="50"> |
3401 | 3401 | <match type="string" value="{\\pwi" offset="0"/> |
@@ -3403,18 +3403,18 @@ command to generate the output files. | ||
3403 | 3403 | <glob pattern="*.psw"/> |
3404 | 3404 | </mime-type> |
3405 | 3405 | <mime-type type="application/x-profile"> |
3406 | - <_comment>profiler results</_comment> | |
3406 | + <comment>profiler results</comment> | |
3407 | 3407 | <sub-class-of type="text/plain"/> |
3408 | 3408 | <generic-icon name="text-x-generic"/> |
3409 | 3409 | <glob pattern="gmon.out"/> |
3410 | 3410 | </mime-type> |
3411 | 3411 | <mime-type type="application/x-pw"> |
3412 | - <_comment>Pathetic Writer document</_comment> | |
3412 | + <comment>Pathetic Writer document</comment> | |
3413 | 3413 | <generic-icon name="x-office-document"/> |
3414 | 3414 | <glob pattern="*.pw"/> |
3415 | 3415 | </mime-type> |
3416 | 3416 | <mime-type type="application/x-python-bytecode"> |
3417 | - <_comment>Python bytecode</_comment> | |
3417 | + <comment>Python bytecode</comment> | |
3418 | 3418 | <magic priority="50"> |
3419 | 3419 | <match type="big32" value="0x994e0d0a" offset="0"/> |
3420 | 3420 | </magic> |
@@ -3422,7 +3422,7 @@ command to generate the output files. | ||
3422 | 3422 | <glob pattern="*.pyo"/> |
3423 | 3423 | </mime-type> |
3424 | 3424 | <mime-type type="application/x-qtiplot"> |
3425 | - <_comment>QtiPlot document</_comment> | |
3425 | + <comment>QtiPlot document</comment> | |
3426 | 3426 | <sub-class-of type="text/plain"/> |
3427 | 3427 | <generic-icon name="x-office-document"/> |
3428 | 3428 | <magic priority="50"> |
@@ -3432,14 +3432,14 @@ command to generate the output files. | ||
3432 | 3432 | <glob pattern="*.qti.gz"/> |
3433 | 3433 | </mime-type> |
3434 | 3434 | <mime-type type="application/x-quattropro"> |
3435 | - <_comment>Quattro Pro spreadsheet</_comment> | |
3435 | + <comment>Quattro Pro spreadsheet</comment> | |
3436 | 3436 | <generic-icon name="x-office-spreadsheet"/> |
3437 | 3437 | <glob pattern="*.wb1"/> |
3438 | 3438 | <glob pattern="*.wb2"/> |
3439 | 3439 | <glob pattern="*.wb3"/> |
3440 | 3440 | </mime-type> |
3441 | 3441 | <mime-type type="application/x-quicktime-media-link"> |
3442 | - <_comment>QuickTime playlist</_comment> | |
3442 | + <comment>QuickTime playlist</comment> | |
3443 | 3443 | <generic-icon name="video-x-generic"/> |
3444 | 3444 | <sub-class-of type="video/quicktime"/> |
3445 | 3445 | <alias type="application/x-quicktimeplayer"/> |
@@ -3454,12 +3454,12 @@ command to generate the output files. | ||
3454 | 3454 | <glob pattern="*.qtl"/> |
3455 | 3455 | </mime-type> |
3456 | 3456 | <mime-type type="application/x-qw"> |
3457 | - <_comment>Quicken document</_comment> | |
3457 | + <comment>Quicken document</comment> | |
3458 | 3458 | <generic-icon name="x-office-spreadsheet"/> |
3459 | 3459 | <glob pattern="*.qif"/> |
3460 | 3460 | </mime-type> |
3461 | 3461 | <mime-type type="application/vnd.rar"> |
3462 | - <_comment>RAR archive</_comment> | |
3462 | + <comment>RAR archive</comment> | |
3463 | 3463 | <acronym>RAR</acronym> |
3464 | 3464 | <expanded-acronym>Roshal ARchive</expanded-acronym> |
3465 | 3465 | <alias type="application/x-rar"/> |
@@ -3471,7 +3471,7 @@ command to generate the output files. | ||
3471 | 3471 | <glob pattern="*.rar"/> |
3472 | 3472 | </mime-type> |
3473 | 3473 | <mime-type type="application/x-dar"> |
3474 | - <_comment>DAR archive</_comment> | |
3474 | + <comment>DAR archive</comment> | |
3475 | 3475 | <generic-icon name="package-x-generic"/> |
3476 | 3476 | <magic> |
3477 | 3477 | <match type="big32" value="123" offset="0"/> |
@@ -3479,7 +3479,7 @@ command to generate the output files. | ||
3479 | 3479 | <glob pattern="*.dar"/> |
3480 | 3480 | </mime-type> |
3481 | 3481 | <mime-type type="application/x-alz"> |
3482 | - <_comment>Alzip archive</_comment> | |
3482 | + <comment>Alzip archive</comment> | |
3483 | 3483 | <generic-icon name="package-x-generic"/> |
3484 | 3484 | <magic priority="50"> |
3485 | 3485 | <match type="string" value="ALZ" offset="0"/> |
@@ -3487,14 +3487,14 @@ command to generate the output files. | ||
3487 | 3487 | <glob pattern="*.alz"/> |
3488 | 3488 | </mime-type> |
3489 | 3489 | <mime-type type="text/x-reject"> |
3490 | - <_comment>rejected patch</_comment> | |
3490 | + <comment>rejected patch</comment> | |
3491 | 3491 | <sub-class-of type="text/plain"/> |
3492 | 3492 | <generic-icon name="text-x-generic"/> |
3493 | 3493 | <alias type="application/x-reject"/> |
3494 | 3494 | <glob pattern="*.rej"/> |
3495 | 3495 | </mime-type> |
3496 | 3496 | <mime-type type="application/x-rpm"> |
3497 | - <_comment>RPM package</_comment> | |
3497 | + <comment>RPM package</comment> | |
3498 | 3498 | <generic-icon name="package-x-generic"/> |
3499 | 3499 | <alias type="application/x-redhat-package-manager" /> |
3500 | 3500 | <magic priority="50"> |
@@ -3503,14 +3503,14 @@ command to generate the output files. | ||
3503 | 3503 | <glob pattern="*.rpm"/> |
3504 | 3504 | </mime-type> |
3505 | 3505 | <mime-type type="application/x-source-rpm"> |
3506 | - <_comment>Source RPM package</_comment> | |
3506 | + <comment>Source RPM package</comment> | |
3507 | 3507 | <generic-icon name="package-x-generic"/> |
3508 | 3508 | <sub-class-of type="application/x-rpm"/> |
3509 | 3509 | <glob pattern="*.src.rpm"/> |
3510 | 3510 | <glob pattern="*.spm"/> |
3511 | 3511 | </mime-type> |
3512 | 3512 | <mime-type type="application/x-ruby"> |
3513 | - <_comment>Ruby script</_comment> | |
3513 | + <comment>Ruby script</comment> | |
3514 | 3514 | <sub-class-of type="application/x-executable"/> |
3515 | 3515 | <sub-class-of type="text/plain"/> |
3516 | 3516 | <generic-icon name="text-x-script"/> |
@@ -3521,36 +3521,36 @@ command to generate the output files. | ||
3521 | 3521 | <glob pattern="*.rb"/> |
3522 | 3522 | </mime-type> |
3523 | 3523 | <mime-type type="application/x-markaby"> |
3524 | - <_comment>Markaby script</_comment> | |
3524 | + <comment>Markaby script</comment> | |
3525 | 3525 | <sub-class-of type="application/x-ruby"/> |
3526 | 3526 | <generic-icon name="text-x-script"/> |
3527 | 3527 | <glob pattern="*.mab"/> |
3528 | 3528 | </mime-type> |
3529 | 3529 | <mime-type type="text/rust"> |
3530 | - <_comment>Rust source code</_comment> | |
3530 | + <comment>Rust source code</comment> | |
3531 | 3531 | <sub-class-of type="text/plain"/> |
3532 | 3532 | <glob pattern="*.rs"/> |
3533 | 3533 | </mime-type> |
3534 | 3534 | <mime-type type="application/x-sc"> |
3535 | - <_comment>SC/Xspread spreadsheet</_comment> | |
3535 | + <comment>SC/Xspread spreadsheet</comment> | |
3536 | 3536 | <generic-icon name="x-office-spreadsheet"/> |
3537 | 3537 | <magic priority="50"> |
3538 | 3538 | <match type="string" value="Spreadsheet" offset="38"/> |
3539 | 3539 | </magic> |
3540 | 3540 | </mime-type> |
3541 | 3541 | <mime-type type="application/x-shar"> |
3542 | - <_comment>shell archive</_comment> | |
3542 | + <comment>shell archive</comment> | |
3543 | 3543 | <generic-icon name="package-x-generic"/> |
3544 | 3544 | <glob pattern="*.shar"/> |
3545 | 3545 | </mime-type> |
3546 | 3546 | <mime-type type="application/x-shared-library-la"> |
3547 | - <_comment>libtool shared library</_comment> | |
3547 | + <comment>libtool shared library</comment> | |
3548 | 3548 | <sub-class-of type="text/plain"/> |
3549 | 3549 | <generic-icon name="text-x-script"/> |
3550 | 3550 | <glob pattern="*.la"/> |
3551 | 3551 | </mime-type> |
3552 | 3552 | <mime-type type="application/x-sharedlib"> |
3553 | - <_comment>shared library</_comment> | |
3553 | + <comment>shared library</comment> | |
3554 | 3554 | <magic priority="50"> |
3555 | 3555 | <match type="string" value="\177ELF" offset="0"> |
3556 | 3556 | <match type="byte" value="1" offset="5"> |
@@ -3570,7 +3570,7 @@ command to generate the output files. | ||
3570 | 3570 | <glob pattern="*.so"/> |
3571 | 3571 | </mime-type> |
3572 | 3572 | <mime-type type="application/x-shellscript"> |
3573 | - <_comment>shell script</_comment> | |
3573 | + <comment>shell script</comment> | |
3574 | 3574 | <sub-class-of type="application/x-executable"/> |
3575 | 3575 | <sub-class-of type="text/plain"/> |
3576 | 3576 | <alias type="text/x-sh"/> |
@@ -3591,7 +3591,7 @@ command to generate the output files. | ||
3591 | 3591 | <glob pattern="*.sh"/> |
3592 | 3592 | </mime-type> |
3593 | 3593 | <mime-type type="application/vnd.adobe.flash.movie"> |
3594 | - <_comment>Shockwave Flash file</_comment> | |
3594 | + <comment>Shockwave Flash file</comment> | |
3595 | 3595 | <alias type="application/x-shockwave-flash"/> |
3596 | 3596 | <alias type="application/futuresplash"/> |
3597 | 3597 | <generic-icon name="video-x-generic"/> |
@@ -3604,7 +3604,7 @@ command to generate the output files. | ||
3604 | 3604 | </mime-type> |
3605 | 3605 | <mime-type type="application/x-shorten"> |
3606 | 3606 | <!-- translators: "Shorten" is the name of an audio codec --> |
3607 | - <_comment>Shorten audio</_comment> | |
3607 | + <comment>Shorten audio</comment> | |
3608 | 3608 | <generic-icon name="audio-x-generic"/> |
3609 | 3609 | <magic priority="50"> |
3610 | 3610 | <match type="string" value="ajkg" offset="0"/> |
@@ -3613,12 +3613,12 @@ command to generate the output files. | ||
3613 | 3613 | <alias type="audio/x-shorten"/> |
3614 | 3614 | </mime-type> |
3615 | 3615 | <mime-type type="application/x-siag"> |
3616 | - <_comment>Siag spreadsheet</_comment> | |
3616 | + <comment>Siag spreadsheet</comment> | |
3617 | 3617 | <generic-icon name="x-office-spreadsheet"/> |
3618 | 3618 | <glob pattern="*.siag"/> |
3619 | 3619 | </mime-type> |
3620 | 3620 | <mime-type type="image/x-skencil"> |
3621 | - <_comment>Skencil document</_comment> | |
3621 | + <comment>Skencil document</comment> | |
3622 | 3622 | <glob pattern="*.sk"/> |
3623 | 3623 | <glob pattern="*.sk1"/> |
3624 | 3624 | <magic priority="50"> |
@@ -3626,17 +3626,17 @@ command to generate the output files. | ||
3626 | 3626 | </magic> |
3627 | 3627 | </mime-type> |
3628 | 3628 | <mime-type type="application/x-slp"> |
3629 | - <_comment>Stampede package</_comment> | |
3629 | + <comment>Stampede package</comment> | |
3630 | 3630 | <generic-icon name="package-x-generic"/> |
3631 | 3631 | </mime-type> |
3632 | 3632 | <mime-type type="application/x-sg1000-rom"> |
3633 | - <_comment>SG-1000 ROM</_comment> | |
3633 | + <comment>SG-1000 ROM</comment> | |
3634 | 3634 | <generic-icon name="application-x-executable"/> |
3635 | 3635 | <glob pattern="*.sg"/> |
3636 | 3636 | </mime-type> |
3637 | 3637 | <mime-type type="application/x-sms-rom"> |
3638 | 3638 | <!-- Translate this to "Master System/Mark III" if the console was known as such in your locale (probably only in Japan) --> |
3639 | - <_comment>Master System ROM</_comment> | |
3639 | + <comment>Master System ROM</comment> | |
3640 | 3640 | <generic-icon name="application-x-executable"/> |
3641 | 3641 | <!-- Disabled, the magic would be too far into the file |
3642 | 3642 | <magic> |
@@ -3648,7 +3648,7 @@ command to generate the output files. | ||
3648 | 3648 | <glob pattern="*.sms"/> |
3649 | 3649 | </mime-type> |
3650 | 3650 | <mime-type type="application/x-gamegear-rom"> |
3651 | - <_comment>Game Gear ROM</_comment> | |
3651 | + <comment>Game Gear ROM</comment> | |
3652 | 3652 | <generic-icon name="application-x-executable"/> |
3653 | 3653 | <!-- Disabled, the magic would be too far into the file |
3654 | 3654 | <magic> |
@@ -3662,14 +3662,14 @@ command to generate the output files. | ||
3662 | 3662 | </mime-type> |
3663 | 3663 | <mime-type type="application/vnd.nintendo.snes.rom"> |
3664 | 3664 | <!-- Translate this as Super Famicom (in Far East Asia) or Super Nintendo (in Europe) if the console was known as such in your locale --> |
3665 | - <_comment>Super NES ROM</_comment> | |
3665 | + <comment>Super NES ROM</comment> | |
3666 | 3666 | <generic-icon name="application-x-executable"/> |
3667 | 3667 | <alias type="application/x-snes-rom"/> |
3668 | 3668 | <glob pattern="*.sfc"/> |
3669 | 3669 | <glob pattern="*.smc"/> |
3670 | 3670 | </mime-type> |
3671 | 3671 | <mime-type type="application/x-stuffit"> |
3672 | - <_comment>StuffIt archive</_comment> | |
3672 | + <comment>StuffIt archive</comment> | |
3673 | 3673 | <generic-icon name="package-x-generic"/> |
3674 | 3674 | <alias type="application/stuffit"/> |
3675 | 3675 | <alias type="application/x-sit"/> |
@@ -3680,7 +3680,7 @@ command to generate the output files. | ||
3680 | 3680 | <glob pattern="*.sit"/> |
3681 | 3681 | </mime-type> |
3682 | 3682 | <mime-type type="application/x-subrip"> |
3683 | - <_comment>SubRip subtitles</_comment> | |
3683 | + <comment>SubRip subtitles</comment> | |
3684 | 3684 | <alias type="application/x-srt"/> |
3685 | 3685 | <sub-class-of type="text/plain"/> |
3686 | 3686 | <generic-icon name="text-x-generic"/> |
@@ -3692,7 +3692,7 @@ command to generate the output files. | ||
3692 | 3692 | <glob pattern="*.srt"/> |
3693 | 3693 | </mime-type> |
3694 | 3694 | <mime-type type="text/vtt"> |
3695 | - <_comment>WebVTT subtitles</_comment> | |
3695 | + <comment>WebVTT subtitles</comment> | |
3696 | 3696 | <acronym>VTT</acronym> |
3697 | 3697 | <expanded-acronym>Video Text Tracks</expanded-acronym> |
3698 | 3698 | <sub-class-of type="text/plain"/> |
@@ -3703,7 +3703,7 @@ command to generate the output files. | ||
3703 | 3703 | <glob pattern="*.vtt"/> |
3704 | 3704 | </mime-type> |
3705 | 3705 | <mime-type type="application/x-sami"> |
3706 | - <_comment>SAMI subtitles</_comment> | |
3706 | + <comment>SAMI subtitles</comment> | |
3707 | 3707 | <acronym>SAMI</acronym> |
3708 | 3708 | <expanded-acronym>Synchronized Accessible Media Interchange</expanded-acronym> |
3709 | 3709 | <sub-class-of type="text/plain"/> |
@@ -3715,7 +3715,7 @@ command to generate the output files. | ||
3715 | 3715 | <glob pattern="*.sami"/> |
3716 | 3716 | </mime-type> |
3717 | 3717 | <mime-type type="text/x-microdvd"> |
3718 | - <_comment>MicroDVD subtitles</_comment> | |
3718 | + <comment>MicroDVD subtitles</comment> | |
3719 | 3719 | <sub-class-of type="text/plain"/> |
3720 | 3720 | <magic priority="50"> |
3721 | 3721 | <match type="string" value="{1}" offset="0"/> |
@@ -3725,7 +3725,7 @@ command to generate the output files. | ||
3725 | 3725 | <glob pattern="*.sub"/> |
3726 | 3726 | </mime-type> |
3727 | 3727 | <mime-type type="text/x-mpsub"> |
3728 | - <_comment>MPSub subtitles</_comment> | |
3728 | + <comment>MPSub subtitles</comment> | |
3729 | 3729 | <acronym>MPSub</acronym> |
3730 | 3730 | <expanded-acronym>MPlayer Subtitle</expanded-acronym> |
3731 | 3731 | <sub-class-of type="text/plain"/> |
@@ -3735,7 +3735,7 @@ command to generate the output files. | ||
3735 | 3735 | <glob pattern="*.sub"/> |
3736 | 3736 | </mime-type> |
3737 | 3737 | <mime-type type="text/x-ssa"> |
3738 | - <_comment>SSA subtitles</_comment> | |
3738 | + <comment>SSA subtitles</comment> | |
3739 | 3739 | <acronym>SSA</acronym> |
3740 | 3740 | <expanded-acronym>SubStation Alpha</expanded-acronym> |
3741 | 3741 | <sub-class-of type="text/plain"/> |
@@ -3747,7 +3747,7 @@ command to generate the output files. | ||
3747 | 3747 | <glob pattern="*.ass"/> |
3748 | 3748 | </mime-type> |
3749 | 3749 | <mime-type type="text/x-subviewer"> |
3750 | - <_comment>SubViewer subtitles</_comment> | |
3750 | + <comment>SubViewer subtitles</comment> | |
3751 | 3751 | <sub-class-of type="text/plain"/> |
3752 | 3752 | <magic priority="50"> |
3753 | 3753 | <match type="string" value="[INFORMATION]" offset="0"/> |
@@ -3755,7 +3755,7 @@ command to generate the output files. | ||
3755 | 3755 | <glob pattern="*.sub"/> |
3756 | 3756 | </mime-type> |
3757 | 3757 | <mime-type type="text/x-iMelody"> |
3758 | - <_comment>iMelody ringtone</_comment> | |
3758 | + <comment>iMelody ringtone</comment> | |
3759 | 3759 | <magic priority="50"> |
3760 | 3760 | <match type="string" value="BEGIN:IMELODY" offset="0"/> |
3761 | 3761 | </magic> |
@@ -3765,7 +3765,7 @@ command to generate the output files. | ||
3765 | 3765 | <alias type="audio/iMelody" /> |
3766 | 3766 | </mime-type> |
3767 | 3767 | <mime-type type="application/x-smaf"> |
3768 | - <_comment>SMAF audio</_comment> | |
3768 | + <comment>SMAF audio</comment> | |
3769 | 3769 | <acronym>SMAF</acronym> |
3770 | 3770 | <expanded-acronym>Synthetic music Mobile Application Format</expanded-acronym> |
3771 | 3771 | <generic-icon name="audio-x-generic"/> |
@@ -3777,7 +3777,7 @@ command to generate the output files. | ||
3777 | 3777 | <alias type="application/vnd.smaf"/> |
3778 | 3778 | </mime-type> |
3779 | 3779 | <mime-type type="text/x-mrml"> |
3780 | - <_comment>MRML playlist</_comment> | |
3780 | + <comment>MRML playlist</comment> | |
3781 | 3781 | <acronym>MRML</acronym> |
3782 | 3782 | <expanded-acronym>Multimedia Retrieval Markup Language</expanded-acronym> |
3783 | 3783 | <magic priority="50"> |
@@ -3787,7 +3787,7 @@ command to generate the output files. | ||
3787 | 3787 | <glob pattern="*.mrl"/> |
3788 | 3788 | </mime-type> |
3789 | 3789 | <mime-type type="audio/x-xmf"> |
3790 | - <_comment>XMF audio</_comment> | |
3790 | + <comment>XMF audio</comment> | |
3791 | 3791 | <acronym>XMF</acronym> |
3792 | 3792 | <expanded-acronym>eXtensible Music Format</expanded-acronym> |
3793 | 3793 | <magic priority="50"> |
@@ -3799,17 +3799,17 @@ command to generate the output files. | ||
3799 | 3799 | <alias type="audio/mobile-xmf"/> |
3800 | 3800 | </mime-type> |
3801 | 3801 | <mime-type type="application/x-sv4cpio"> |
3802 | - <_comment>SV4 CPIO archive</_comment> | |
3802 | + <comment>SV4 CPIO archive</comment> | |
3803 | 3803 | <generic-icon name="package-x-generic"/> |
3804 | 3804 | <glob pattern="*.sv4cpio"/> |
3805 | 3805 | </mime-type> |
3806 | 3806 | <mime-type type="application/x-sv4crc"> |
3807 | - <_comment>SV4 CPIO archive (with CRC)</_comment> | |
3807 | + <comment>SV4 CPIO archive (with CRC)</comment> | |
3808 | 3808 | <generic-icon name="package-x-generic"/> |
3809 | 3809 | <glob pattern="*.sv4crc"/> |
3810 | 3810 | </mime-type> |
3811 | 3811 | <mime-type type="application/x-tar"> |
3812 | - <_comment>Tar archive</_comment> | |
3812 | + <comment>Tar archive</comment> | |
3813 | 3813 | <generic-icon name="package-x-generic"/> |
3814 | 3814 | <alias type="application/x-gtar"/> |
3815 | 3815 | <magic priority="60"> |
@@ -3821,24 +3821,24 @@ command to generate the output files. | ||
3821 | 3821 | <glob pattern="*.gem"/> |
3822 | 3822 | </mime-type> |
3823 | 3823 | <mime-type type="application/x-tarz"> |
3824 | - <_comment>Tar archive (compressed)</_comment> | |
3824 | + <comment>Tar archive (compressed)</comment> | |
3825 | 3825 | <sub-class-of type="application/x-compress"/> |
3826 | 3826 | <generic-icon name="package-x-generic"/> |
3827 | 3827 | <glob pattern="*.tar.Z"/> |
3828 | 3828 | <glob pattern="*.taz"/> |
3829 | 3829 | </mime-type> |
3830 | 3830 | <mime-type type="application/x-tex-gf"> |
3831 | - <_comment>generic font file</_comment> | |
3831 | + <comment>generic font file</comment> | |
3832 | 3832 | <generic-icon name="font-x-generic"/> |
3833 | 3833 | <glob pattern="*.gf"/> |
3834 | 3834 | </mime-type> |
3835 | 3835 | <mime-type type="application/x-tex-pk"> |
3836 | - <_comment>packed font file</_comment> | |
3836 | + <comment>packed font file</comment> | |
3837 | 3837 | <generic-icon name="font-x-generic"/> |
3838 | 3838 | <glob pattern="*.pk"/> |
3839 | 3839 | </mime-type> |
3840 | 3840 | <mime-type type="application/x-tgif"> |
3841 | - <_comment>TGIF document</_comment> | |
3841 | + <comment>TGIF document</comment> | |
3842 | 3842 | <generic-icon name="x-office-document"/> |
3843 | 3843 | <magic priority="50"> |
3844 | 3844 | <match type="string" value="%TGIF" offset="0"/> |
@@ -3846,17 +3846,17 @@ command to generate the output files. | ||
3846 | 3846 | <glob pattern="*.obj"/> |
3847 | 3847 | </mime-type> |
3848 | 3848 | <mime-type type="application/x-theme"> |
3849 | - <_comment>theme</_comment> | |
3849 | + <comment>theme</comment> | |
3850 | 3850 | <sub-class-of type="application/x-desktop"/> |
3851 | 3851 | <generic-icon name="package-x-generic"/> |
3852 | 3852 | <glob pattern="*.theme"/> |
3853 | 3853 | </mime-type> |
3854 | 3854 | <mime-type type="application/x-toutdoux"> |
3855 | - <_comment>ToutDoux document</_comment> | |
3855 | + <comment>ToutDoux document</comment> | |
3856 | 3856 | <generic-icon name="x-office-document"/> |
3857 | 3857 | </mime-type> |
3858 | 3858 | <mime-type type="application/x-trash"> |
3859 | - <_comment>backup file</_comment> | |
3859 | + <comment>backup file</comment> | |
3860 | 3860 | <glob pattern="*~"/> |
3861 | 3861 | <glob pattern="*%"/> |
3862 | 3862 | <glob pattern="*.bak"/> |
@@ -3864,7 +3864,7 @@ command to generate the output files. | ||
3864 | 3864 | <glob pattern="*.sik"/> |
3865 | 3865 | </mime-type> |
3866 | 3866 | <mime-type type="text/troff"> |
3867 | - <_comment>Troff document</_comment> | |
3867 | + <comment>Troff document</comment> | |
3868 | 3868 | <sub-class-of type="text/plain"/> |
3869 | 3869 | <alias type="application/x-troff"/> |
3870 | 3870 | <alias type="text/x-troff"/> |
@@ -3879,24 +3879,24 @@ command to generate the output files. | ||
3879 | 3879 | <glob weight="10" pattern="*.t"/> |
3880 | 3880 | </mime-type> |
3881 | 3881 | <mime-type type="application/x-troff-man"> |
3882 | - <_comment>Manpage manual document</_comment> | |
3882 | + <comment>Manpage manual document</comment> | |
3883 | 3883 | <sub-class-of type="text/plain"/> |
3884 | 3884 | <generic-icon name="text-x-generic"/> |
3885 | 3885 | <glob pattern="*.man"/> |
3886 | 3886 | </mime-type> |
3887 | 3887 | <mime-type type="application/x-troff-man-compressed"> |
3888 | - <_comment>manual page (compressed)</_comment> | |
3888 | + <comment>manual page (compressed)</comment> | |
3889 | 3889 | <generic-icon name="text-x-generic"/> |
3890 | 3890 | </mime-type> |
3891 | 3891 | <mime-type type="application/x-tzo"> |
3892 | - <_comment>Tar archive (LZO-compressed)</_comment> | |
3892 | + <comment>Tar archive (LZO-compressed)</comment> | |
3893 | 3893 | <sub-class-of type="application/x-lzop"/> |
3894 | 3894 | <generic-icon name="package-x-generic"/> |
3895 | 3895 | <glob pattern="*.tar.lzo"/> |
3896 | 3896 | <glob pattern="*.tzo"/> |
3897 | 3897 | </mime-type> |
3898 | 3898 | <mime-type type="application/x-xz"> |
3899 | - <_comment>XZ archive</_comment> | |
3899 | + <comment>XZ archive</comment> | |
3900 | 3900 | <generic-icon name="package-x-generic"/> |
3901 | 3901 | <magic priority="60"> |
3902 | 3902 | <match type="string" value="\xfd\x37\x7a\x58\x5a\x00" offset="0"/> |
@@ -3904,14 +3904,14 @@ command to generate the output files. | ||
3904 | 3904 | <glob pattern="*.xz"/> |
3905 | 3905 | </mime-type> |
3906 | 3906 | <mime-type type="application/x-xz-compressed-tar"> |
3907 | - <_comment>Tar archive (XZ-compressed)</_comment> | |
3907 | + <comment>Tar archive (XZ-compressed)</comment> | |
3908 | 3908 | <sub-class-of type="application/x-xz"/> |
3909 | 3909 | <generic-icon name="package-x-generic"/> |
3910 | 3910 | <glob pattern="*.tar.xz"/> |
3911 | 3911 | <glob pattern="*.txz"/> |
3912 | 3912 | </mime-type> |
3913 | 3913 | <mime-type type="application/zstd"> |
3914 | - <_comment>Zstandard archive</_comment> | |
3914 | + <comment>Zstandard archive</comment> | |
3915 | 3915 | <generic-icon name="package-x-generic"/> |
3916 | 3916 | <magic priority="60"> |
3917 | 3917 | <match type="little32" value="0xFD2FB528" offset="0"/> |
@@ -3919,46 +3919,46 @@ command to generate the output files. | ||
3919 | 3919 | <glob pattern="*.zst"/> |
3920 | 3920 | </mime-type> |
3921 | 3921 | <mime-type type="application/x-zstd-compressed-tar"> |
3922 | - <_comment>Tar archive (Zstandard-compressed)</_comment> | |
3922 | + <comment>Tar archive (Zstandard-compressed)</comment> | |
3923 | 3923 | <generic-icon name="package-x-generic"/> |
3924 | 3924 | <sub-class-of type="application/zstd"/> |
3925 | 3925 | <glob pattern="*.tar.zst"/> |
3926 | 3926 | <glob pattern="*.tzst"/> |
3927 | 3927 | </mime-type> |
3928 | 3928 | <mime-type type="application/x-xzpdf"> |
3929 | - <_comment>PDF document (XZ-compressed)</_comment> | |
3929 | + <comment>PDF document (XZ-compressed)</comment> | |
3930 | 3930 | <sub-class-of type="application/x-xz"/> |
3931 | 3931 | <generic-icon name="x-office-document"/> |
3932 | 3932 | <glob pattern="*.pdf.xz"/> |
3933 | 3933 | </mime-type> |
3934 | 3934 | <mime-type type="application/x-ustar"> |
3935 | - <_comment>Ustar archive</_comment> | |
3935 | + <comment>Ustar archive</comment> | |
3936 | 3936 | <generic-icon name="package-x-generic"/> |
3937 | 3937 | <glob pattern="*.ustar"/> |
3938 | 3938 | </mime-type> |
3939 | 3939 | <mime-type type="application/x-wais-source"> |
3940 | - <_comment>WAIS source code</_comment> | |
3940 | + <comment>WAIS source code</comment> | |
3941 | 3941 | <sub-class-of type="text/plain"/> |
3942 | 3942 | <generic-icon name="text-x-generic"/> |
3943 | 3943 | <glob pattern="*.src"/> |
3944 | 3944 | </mime-type> |
3945 | 3945 | <mime-type type="application/x-wpg"> |
3946 | - <_comment>WordPerfect/Drawperfect image</_comment> | |
3946 | + <comment>WordPerfect/Drawperfect image</comment> | |
3947 | 3947 | <generic-icon name="image-x-generic"/> |
3948 | 3948 | <glob pattern="*.wpg"/> |
3949 | 3949 | </mime-type> |
3950 | 3950 | <mime-type type="application/x-wonderswan-rom"> |
3951 | - <_comment>Bandai WonderSwan ROM</_comment> | |
3951 | + <comment>Bandai WonderSwan ROM</comment> | |
3952 | 3952 | <generic-icon name="application-x-executable"/> |
3953 | 3953 | <glob pattern="*.ws"/> |
3954 | 3954 | </mime-type> |
3955 | 3955 | <mime-type type="application/x-wonderswan-color-rom"> |
3956 | - <_comment>Bandai WonderSwan Color ROM</_comment> | |
3956 | + <comment>Bandai WonderSwan Color ROM</comment> | |
3957 | 3957 | <generic-icon name="application-x-executable"/> |
3958 | 3958 | <glob pattern="*.wsc"/> |
3959 | 3959 | </mime-type> |
3960 | 3960 | <mime-type type="application/x-x509-ca-cert"> |
3961 | - <_comment>DER/PEM/Netscape-encoded X.509 certificate</_comment> | |
3961 | + <comment>DER/PEM/Netscape-encoded X.509 certificate</comment> | |
3962 | 3962 | <generic-icon name="text-x-generic"/> |
3963 | 3963 | <glob pattern="*.der"/> |
3964 | 3964 | <glob pattern="*.crt"/> |
@@ -3966,10 +3966,10 @@ command to generate the output files. | ||
3966 | 3966 | <glob pattern="*.pem"/> |
3967 | 3967 | </mime-type> |
3968 | 3968 | <mime-type type="application/x-zerosize"> |
3969 | - <_comment>empty document</_comment> | |
3969 | + <comment>empty document</comment> | |
3970 | 3970 | </mime-type> |
3971 | 3971 | <mime-type type="application/x-zoo"> |
3972 | - <_comment>Zoo archive</_comment> | |
3972 | + <comment>Zoo archive</comment> | |
3973 | 3973 | <generic-icon name="package-x-generic"/> |
3974 | 3974 | <magic priority="60"> |
3975 | 3975 | <match type="little32" value="0xfdc4a7dc" offset="20"/> |
@@ -3977,7 +3977,7 @@ command to generate the output files. | ||
3977 | 3977 | <glob pattern="*.zoo"/> |
3978 | 3978 | </mime-type> |
3979 | 3979 | <mime-type type="application/xhtml+xml"> |
3980 | - <_comment>XHTML page</_comment> | |
3980 | + <comment>XHTML page</comment> | |
3981 | 3981 | <acronym>XHTML</acronym> |
3982 | 3982 | <expanded-acronym>Extensible HyperText Markup Language</expanded-acronym> |
3983 | 3983 | <sub-class-of type="application/xml"/> |
@@ -3995,7 +3995,7 @@ command to generate the output files. | ||
3995 | 3995 | <root-XML namespaceURI='http://www.w3.org/1999/xhtml' localName='html'/> |
3996 | 3996 | </mime-type> |
3997 | 3997 | <mime-type type="application/zip"> |
3998 | - <_comment>Zip archive</_comment> | |
3998 | + <comment>Zip archive</comment> | |
3999 | 3999 | <alias type="application/x-zip-compressed"/> |
4000 | 4000 | <alias type="application/x-zip"/> |
4001 | 4001 | <generic-icon name="package-x-generic"/> |
@@ -4005,7 +4005,7 @@ command to generate the output files. | ||
4005 | 4005 | <glob pattern="*.zip"/> |
4006 | 4006 | </mime-type> |
4007 | 4007 | <mime-type type="application/x-ms-wim"> |
4008 | - <_comment>WIM disk image</_comment> | |
4008 | + <comment>WIM disk image</comment> | |
4009 | 4009 | <acronym>WIM</acronym> |
4010 | 4010 | <expanded-acronym>Windows Imaging Format</expanded-acronym> |
4011 | 4011 | <magic> |
@@ -4015,14 +4015,14 @@ command to generate the output files. | ||
4015 | 4015 | <glob pattern="*.swm"/> |
4016 | 4016 | </mime-type> |
4017 | 4017 | <mime-type type="audio/ac3"> |
4018 | - <_comment>Dolby Digital audio</_comment> | |
4018 | + <comment>Dolby Digital audio</comment> | |
4019 | 4019 | <magic priority="50"> |
4020 | 4020 | <match type="big16" value="0x0b77" offset="0"/> |
4021 | 4021 | </magic> |
4022 | 4022 | <glob pattern="*.ac3"/> |
4023 | 4023 | </mime-type> |
4024 | 4024 | <mime-type type="audio/vnd.dts"> |
4025 | - <_comment>DTS audio</_comment> | |
4025 | + <comment>DTS audio</comment> | |
4026 | 4026 | <magic priority="50"> |
4027 | 4027 | <match type="big32" value="0x7FFE8001" offset="0"/> <!-- 16bits core be --> |
4028 | 4028 | <match type="little32" value="0xFE7F0180" offset="0"/> <!-- 16bits core le --> |
@@ -4033,7 +4033,7 @@ command to generate the output files. | ||
4033 | 4033 | <glob pattern="*.dts"/> |
4034 | 4034 | </mime-type> |
4035 | 4035 | <mime-type type="audio/vnd.dts.hd"> |
4036 | - <_comment>DTSHD audio</_comment> | |
4036 | + <comment>DTSHD audio</comment> | |
4037 | 4037 | <sub-class-of type="audio/vnd.dts"/> |
4038 | 4038 | <magic priority="60"> |
4039 | 4039 | <match type="big32" value="0x64582025" offset="0:18725"/> <!-- 16bits HD be --> |
@@ -4042,7 +4042,7 @@ command to generate the output files. | ||
4042 | 4042 | <glob pattern="*.dtshd"/> |
4043 | 4043 | </mime-type> |
4044 | 4044 | <mime-type type="audio/AMR"> |
4045 | - <_comment>AMR audio</_comment> | |
4045 | + <comment>AMR audio</comment> | |
4046 | 4046 | <acronym>AMR</acronym> |
4047 | 4047 | <expanded-acronym>Adaptive Multi-Rate</expanded-acronym> |
4048 | 4048 | <magic priority="50"> |
@@ -4053,7 +4053,7 @@ command to generate the output files. | ||
4053 | 4053 | <alias type="audio/amr-encrypted"/> |
4054 | 4054 | </mime-type> |
4055 | 4055 | <mime-type type="audio/AMR-WB"> |
4056 | - <_comment>AMR-WB audio</_comment> | |
4056 | + <comment>AMR-WB audio</comment> | |
4057 | 4057 | <acronym>AMR-WB</acronym> |
4058 | 4058 | <expanded-acronym>Adaptive Multi-Rate Wideband</expanded-acronym> |
4059 | 4059 | <magic priority="50"> |
@@ -4064,7 +4064,7 @@ command to generate the output files. | ||
4064 | 4064 | <alias type="audio/amr-wb-encrypted"/> |
4065 | 4065 | </mime-type> |
4066 | 4066 | <mime-type type="audio/basic"> |
4067 | - <_comment>ULAW (Sun) audio</_comment> | |
4067 | + <comment>ULAW (Sun) audio</comment> | |
4068 | 4068 | <magic priority="40"> |
4069 | 4069 | <match type="string" value=".snd" offset="0"/> |
4070 | 4070 | </magic> |
@@ -4072,7 +4072,7 @@ command to generate the output files. | ||
4072 | 4072 | <glob pattern="*.snd"/> |
4073 | 4073 | </mime-type> |
4074 | 4074 | <mime-type type="audio/prs.sid"> |
4075 | - <_comment>Commodore 64 audio</_comment> | |
4075 | + <comment>Commodore 64 audio</comment> | |
4076 | 4076 | <magic priority="50"> |
4077 | 4077 | <match type="string" value="PSID" offset="0"/> |
4078 | 4078 | </magic> |
@@ -4080,7 +4080,7 @@ command to generate the output files. | ||
4080 | 4080 | <glob pattern="*.psid"/> |
4081 | 4081 | </mime-type> |
4082 | 4082 | <mime-type type="audio/x-adpcm"> |
4083 | - <_comment>PCM audio</_comment> | |
4083 | + <comment>PCM audio</comment> | |
4084 | 4084 | <magic priority="50"> |
4085 | 4085 | <match type="string" value=".snd" offset="0"> |
4086 | 4086 | <match type="big32" value="23" offset="12"/> |
@@ -4098,7 +4098,7 @@ command to generate the output files. | ||
4098 | 4098 | </magic> |
4099 | 4099 | </mime-type> |
4100 | 4100 | <mime-type type="audio/x-aifc"> |
4101 | - <_comment>AIFC audio</_comment> | |
4101 | + <comment>AIFC audio</comment> | |
4102 | 4102 | <acronym>AIFC</acronym> |
4103 | 4103 | <expanded-acronym>Audio Interchange File format Compressed</expanded-acronym> |
4104 | 4104 | <sub-class-of type="application/x-iff"/> |
@@ -4110,7 +4110,7 @@ command to generate the output files. | ||
4110 | 4110 | <alias type="audio/x-aiffc"/> |
4111 | 4111 | </mime-type> |
4112 | 4112 | <mime-type type="audio/x-aiff"> |
4113 | - <_comment>AIFF/Amiga/Mac audio</_comment> | |
4113 | + <comment>AIFF/Amiga/Mac audio</comment> | |
4114 | 4114 | <acronym>AIFF</acronym> |
4115 | 4115 | <expanded-acronym>Audio Interchange File Format</expanded-acronym> |
4116 | 4116 | <sub-class-of type="application/x-iff"/> |
@@ -4122,14 +4122,14 @@ command to generate the output files. | ||
4122 | 4122 | <glob pattern="*.aif"/> |
4123 | 4123 | </mime-type> |
4124 | 4124 | <mime-type type="audio/x-ape"> |
4125 | - <_comment>Monkey's audio</_comment> | |
4125 | + <comment>Monkey's audio</comment> | |
4126 | 4126 | <magic priority="50"> |
4127 | 4127 | <match type="string" value="MAC " offset="0"/> |
4128 | 4128 | </magic> |
4129 | 4129 | <glob pattern="*.ape"/> |
4130 | 4130 | </mime-type> |
4131 | 4131 | <mime-type type="audio/x-pn-audibleaudio"> |
4132 | - <_comment>Audible.Com audio</_comment> | |
4132 | + <comment>Audible.Com audio</comment> | |
4133 | 4133 | <magic priority="50"> |
4134 | 4134 | <!-- https://github.com/FFmpeg/FFmpeg/blob/master/libavformat/aadec.c#L33 --> |
4135 | 4135 | <match type="big32" value="1469084982" offset="4"/> |
@@ -4141,14 +4141,14 @@ command to generate the output files. | ||
4141 | 4141 | <alias type="audio/vnd.audible.aax"/> |
4142 | 4142 | </mime-type> |
4143 | 4143 | <mime-type type="audio/x-it"> |
4144 | - <_comment>Impulse Tracker audio</_comment> | |
4144 | + <comment>Impulse Tracker audio</comment> | |
4145 | 4145 | <magic priority="50"> |
4146 | 4146 | <match type="string" value="IMPM" offset="0"/> |
4147 | 4147 | </magic> |
4148 | 4148 | <glob pattern="*.it"/> |
4149 | 4149 | </mime-type> |
4150 | 4150 | <mime-type type="audio/flac"> |
4151 | - <_comment>FLAC audio</_comment> | |
4151 | + <comment>FLAC audio</comment> | |
4152 | 4152 | <magic priority="50"> |
4153 | 4153 | <match value="fLaC" type="string" offset="0"/> |
4154 | 4154 | </magic> |
@@ -4156,7 +4156,7 @@ command to generate the output files. | ||
4156 | 4156 | <alias type="audio/x-flac"/> |
4157 | 4157 | </mime-type> |
4158 | 4158 | <mime-type type="audio/x-wavpack"> |
4159 | - <_comment>WavPack audio</_comment> | |
4159 | + <comment>WavPack audio</comment> | |
4160 | 4160 | <magic priority="50"> |
4161 | 4161 | <match type="string" value="wvpk" offset="0"/> |
4162 | 4162 | </magic> |
@@ -4164,14 +4164,14 @@ command to generate the output files. | ||
4164 | 4164 | <glob pattern="*.wvp"/> |
4165 | 4165 | </mime-type> |
4166 | 4166 | <mime-type type="audio/x-wavpack-correction"> |
4167 | - <_comment>WavPack audio correction file</_comment> | |
4167 | + <comment>WavPack audio correction file</comment> | |
4168 | 4168 | <magic priority="50"> |
4169 | 4169 | <match type="string" value="wvpk" offset="0"/> |
4170 | 4170 | </magic> |
4171 | 4171 | <glob pattern="*.wvc"/> |
4172 | 4172 | </mime-type> |
4173 | 4173 | <mime-type type="audio/midi"> |
4174 | - <_comment>MIDI audio</_comment> | |
4174 | + <comment>MIDI audio</comment> | |
4175 | 4175 | <alias type="audio/x-midi"/> |
4176 | 4176 | <magic priority="50"> |
4177 | 4177 | <match type="string" value="MThd" offset="0"/> |
@@ -4181,14 +4181,14 @@ command to generate the output files. | ||
4181 | 4181 | <glob pattern="*.kar"/> |
4182 | 4182 | </mime-type> |
4183 | 4183 | <mime-type type="audio/x-mo3"> |
4184 | - <_comment>compressed Tracker audio</_comment> | |
4184 | + <comment>compressed Tracker audio</comment> | |
4185 | 4185 | <magic priority="50"> |
4186 | 4186 | <match type="string" value="MO3" offset="0"/> |
4187 | 4187 | </magic> |
4188 | 4188 | <glob pattern="*.mo3"/> |
4189 | 4189 | </mime-type> |
4190 | 4190 | <mime-type type="audio/aac"> |
4191 | - <_comment>AAC audio</_comment> | |
4191 | + <comment>AAC audio</comment> | |
4192 | 4192 | <acronym>AAC</acronym> |
4193 | 4193 | <expanded-acronym>Advanced Audio Coding</expanded-acronym> |
4194 | 4194 | <magic priority="50"> |
@@ -4201,14 +4201,14 @@ command to generate the output files. | ||
4201 | 4201 | <alias type="audio/x-aac"/> |
4202 | 4202 | </mime-type> |
4203 | 4203 | <mime-type type="audio/usac"> |
4204 | - <_comment>USAC audio</_comment> | |
4204 | + <comment>USAC audio</comment> | |
4205 | 4205 | <acronym>USAC</acronym> |
4206 | 4206 | <expanded-acronym>Unified Speech and Audio Coding</expanded-acronym> |
4207 | 4207 | <glob pattern="*.loas"/> |
4208 | 4208 | <glob pattern="*.xhe"/> |
4209 | 4209 | </mime-type> |
4210 | 4210 | <mime-type type="audio/mp4"> |
4211 | - <_comment>MPEG-4 audio</_comment> | |
4211 | + <comment>MPEG-4 audio</comment> | |
4212 | 4212 | <alias type="audio/x-m4a"/> |
4213 | 4213 | <alias type="audio/m4a"/> |
4214 | 4214 | <magic priority="50"> |
@@ -4218,12 +4218,12 @@ command to generate the output files. | ||
4218 | 4218 | <glob pattern="*.f4a"/> |
4219 | 4219 | </mime-type> |
4220 | 4220 | <mime-type type="audio/x-m4r"> |
4221 | - <_comment>MPEG-4 ringtone</_comment> | |
4221 | + <comment>MPEG-4 ringtone</comment> | |
4222 | 4222 | <glob pattern="*.m4r"/> |
4223 | 4223 | <sub-class-of type="video/mp4"/> |
4224 | 4224 | </mime-type> |
4225 | 4225 | <mime-type type="video/mp4"> |
4226 | - <_comment>MPEG-4 video</_comment> | |
4226 | + <comment>MPEG-4 video</comment> | |
4227 | 4227 | <alias type="video/mp4v-es"/> |
4228 | 4228 | <magic priority="50"> |
4229 | 4229 | <match type="string" value="ftypisom" offset="4"/> |
@@ -4240,7 +4240,7 @@ command to generate the output files. | ||
4240 | 4240 | <alias type="video/x-m4v"/> |
4241 | 4241 | </mime-type> |
4242 | 4242 | <mime-type type="audio/x-m4b"> |
4243 | - <_comment>MPEG-4 audio book</_comment> | |
4243 | + <comment>MPEG-4 audio book</comment> | |
4244 | 4244 | <sub-class-of type="audio/mp4"/> |
4245 | 4245 | <magic priority="50"> |
4246 | 4246 | <match type="string" value="ftypM4B" offset="4"/> |
@@ -4249,7 +4249,7 @@ command to generate the output files. | ||
4249 | 4249 | <glob pattern="*.f4b"/> |
4250 | 4250 | </mime-type> |
4251 | 4251 | <mime-type type="video/3gpp"> |
4252 | - <_comment>3GPP multimedia file</_comment> | |
4252 | + <comment>3GPP multimedia file</comment> | |
4253 | 4253 | <acronym>3GPP</acronym> |
4254 | 4254 | <expanded-acronym>3rd Generation Partnership Project</expanded-acronym> |
4255 | 4255 | <sub-class-of type="video/mp4"/> |
@@ -4272,7 +4272,7 @@ command to generate the output files. | ||
4272 | 4272 | <alias type="audio/x-rn-3gpp-amr-wb-encrypted"/> |
4273 | 4273 | </mime-type> |
4274 | 4274 | <mime-type type="video/3gpp2"> |
4275 | - <_comment>3GPP2 multimedia file</_comment> | |
4275 | + <comment>3GPP2 multimedia file</comment> | |
4276 | 4276 | <acronym>3GPP2</acronym> |
4277 | 4277 | <expanded-acronym>3rd Generation Partnership Project 2</expanded-acronym> |
4278 | 4278 | <sub-class-of type="video/mp4"/> |
@@ -4285,7 +4285,7 @@ command to generate the output files. | ||
4285 | 4285 | <alias type="audio/3gpp2"/> |
4286 | 4286 | </mime-type> |
4287 | 4287 | <mime-type type="audio/x-mod"> |
4288 | - <_comment>Amiga SoundTracker audio</_comment> | |
4288 | + <comment>Amiga SoundTracker audio</comment> | |
4289 | 4289 | <magic priority="40"> |
4290 | 4290 | <match type="string" value="MTM" offset="0"/> |
4291 | 4291 | <match type="string" value="MMD0" offset="0"/> |
@@ -4329,12 +4329,12 @@ command to generate the output files. | ||
4329 | 4329 | <glob pattern="*.med"/> |
4330 | 4330 | </mime-type> |
4331 | 4331 | <mime-type type="audio/mp2"> |
4332 | - <_comment>MP2 audio</_comment> | |
4332 | + <comment>MP2 audio</comment> | |
4333 | 4333 | <alias type="audio/x-mp2"/> |
4334 | 4334 | <glob pattern="*.mp2"/> |
4335 | 4335 | </mime-type> |
4336 | 4336 | <mime-type type="audio/mpeg"> |
4337 | - <_comment>MP3 audio</_comment> | |
4337 | + <comment>MP3 audio</comment> | |
4338 | 4338 | <alias type="audio/x-mp3" /> |
4339 | 4339 | <alias type="audio/x-mpg"/> |
4340 | 4340 | <alias type="audio/x-mpeg"/> |
@@ -4347,7 +4347,7 @@ command to generate the output files. | ||
4347 | 4347 | <glob pattern="*.mpga"/> |
4348 | 4348 | </mime-type> |
4349 | 4349 | <mime-type type="audio/x-mpegurl"> |
4350 | - <_comment>MP3 audio (streamed)</_comment> | |
4350 | + <comment>MP3 audio (streamed)</comment> | |
4351 | 4351 | <sub-class-of type="text/plain"/> |
4352 | 4352 | <alias type="audio/mpegurl" /> |
4353 | 4353 | <alias type="application/m3u"/> |
@@ -4362,7 +4362,7 @@ command to generate the output files. | ||
4362 | 4362 | </magic> |
4363 | 4363 | </mime-type> |
4364 | 4364 | <mime-type type="application/vnd.apple.mpegurl"> |
4365 | - <_comment>HTTP Live Streaming playlist</_comment> | |
4365 | + <comment>HTTP Live Streaming playlist</comment> | |
4366 | 4366 | <sub-class-of type="text/plain"/> |
4367 | 4367 | <glob pattern="*.m3u"/> |
4368 | 4368 | <glob pattern="*.m3u8"/> |
@@ -4374,7 +4374,7 @@ command to generate the output files. | ||
4374 | 4374 | </magic> |
4375 | 4375 | </mime-type> |
4376 | 4376 | <mime-type type="audio/x-ms-asx"> |
4377 | - <_comment>Microsoft ASX playlist</_comment> | |
4377 | + <comment>Microsoft ASX playlist</comment> | |
4378 | 4378 | <alias type="video/x-ms-wvx"/> |
4379 | 4379 | <alias type="video/x-ms-wax"/> |
4380 | 4380 | <alias type="video/x-ms-wmx"/> |
@@ -4391,7 +4391,7 @@ command to generate the output files. | ||
4391 | 4391 | </magic> |
4392 | 4392 | </mime-type> |
4393 | 4393 | <mime-type type="audio/x-psf"> |
4394 | - <_comment>PSF audio</_comment> | |
4394 | + <comment>PSF audio</comment> | |
4395 | 4395 | <acronym>PSF</acronym> |
4396 | 4396 | <expanded-acronym>Portable Sound Format</expanded-acronym> |
4397 | 4397 | <magic priority="50"> |
@@ -4400,27 +4400,27 @@ command to generate the output files. | ||
4400 | 4400 | <glob pattern="*.psf"/> |
4401 | 4401 | </mime-type> |
4402 | 4402 | <mime-type type="audio/x-minipsf"> |
4403 | - <_comment>MiniPSF audio</_comment> | |
4403 | + <comment>MiniPSF audio</comment> | |
4404 | 4404 | <acronym>MiniPSF</acronym> |
4405 | 4405 | <expanded-acronym>Miniature Portable Sound Format</expanded-acronym> |
4406 | 4406 | <sub-class-of type="audio/x-psf"/> |
4407 | 4407 | <glob pattern="*.minipsf"/> |
4408 | 4408 | </mime-type> |
4409 | 4409 | <mime-type type="audio/x-psflib"> |
4410 | - <_comment>PSFlib audio library</_comment> | |
4410 | + <comment>PSFlib audio library</comment> | |
4411 | 4411 | <acronym>PSFlib</acronym> |
4412 | 4412 | <expanded-acronym>Portable Sound Format Library</expanded-acronym> |
4413 | 4413 | <sub-class-of type="audio/x-psf"/> |
4414 | 4414 | <glob pattern="*.psflib"/> |
4415 | 4415 | </mime-type> |
4416 | 4416 | <mime-type type="audio/x-ms-wma"> |
4417 | - <_comment>Windows Media audio</_comment> | |
4417 | + <comment>Windows Media audio</comment> | |
4418 | 4418 | <sub-class-of type="application/vnd.ms-asf"/> |
4419 | 4419 | <glob pattern="*.wma"/> |
4420 | 4420 | <alias type="audio/wma"/> |
4421 | 4421 | </mime-type> |
4422 | 4422 | <mime-type type="audio/x-musepack"> |
4423 | - <_comment>Musepack audio</_comment> | |
4423 | + <comment>Musepack audio</comment> | |
4424 | 4424 | <magic priority="50"> |
4425 | 4425 | <match type="string" value="MP+" offset="0"/> |
4426 | 4426 | </magic> |
@@ -4429,24 +4429,24 @@ command to generate the output files. | ||
4429 | 4429 | <glob pattern="*.mp+"/> |
4430 | 4430 | </mime-type> |
4431 | 4431 | <mime-type type="audio/vnd.rn-realaudio"> |
4432 | - <_comment>RealAudio document</_comment> | |
4432 | + <comment>RealAudio document</comment> | |
4433 | 4433 | <glob pattern="*.ra"/> |
4434 | 4434 | <glob pattern="*.rax"/> |
4435 | 4435 | <alias type="audio/x-pn-realaudio"/> |
4436 | 4436 | <alias type="audio/vnd.m-realaudio"/> |
4437 | 4437 | </mime-type> |
4438 | 4438 | <mime-type type="application/ram"> |
4439 | - <_comment>RealMedia playlist</_comment> | |
4439 | + <comment>RealMedia playlist</comment> | |
4440 | 4440 | <glob pattern="*.ram" /> |
4441 | 4441 | </mime-type> |
4442 | 4442 | <mime-type type="video/vnd.rn-realvideo"> |
4443 | - <_comment>RealVideo document</_comment> | |
4443 | + <comment>RealVideo document</comment> | |
4444 | 4444 | <glob pattern="*.rv"/> |
4445 | 4445 | <glob pattern="*.rvx"/> |
4446 | 4446 | <alias type="video/x-real-video"/> |
4447 | 4447 | </mime-type> |
4448 | 4448 | <mime-type type="application/vnd.rn-realmedia"> |
4449 | - <_comment>RealMedia document</_comment> | |
4449 | + <comment>RealMedia document</comment> | |
4450 | 4450 | <generic-icon name="video-x-generic"/> |
4451 | 4451 | <magic priority="50"> |
4452 | 4452 | <match type="string" value=".RMF" offset="0"/> |
@@ -4460,32 +4460,32 @@ command to generate the output files. | ||
4460 | 4460 | <alias type="application/vnd.rn-realmedia-vbr"/> |
4461 | 4461 | </mime-type> |
4462 | 4462 | <mime-type type="image/vnd.rn-realpix"> |
4463 | - <_comment>RealPix document</_comment> | |
4463 | + <comment>RealPix document</comment> | |
4464 | 4464 | <glob pattern="*.rp"/> |
4465 | 4465 | </mime-type> |
4466 | 4466 | <mime-type type="text/vnd.rn-realtext"> |
4467 | - <_comment>RealText document</_comment> | |
4467 | + <comment>RealText document</comment> | |
4468 | 4468 | <glob pattern="*.rt"/> |
4469 | 4469 | </mime-type> |
4470 | 4470 | <mime-type type="audio/x-riff"> |
4471 | - <_comment>RIFF audio</_comment> | |
4471 | + <comment>RIFF audio</comment> | |
4472 | 4472 | </mime-type> |
4473 | 4473 | <mime-type type="application/x-riff"> |
4474 | - <_comment>RIFF container</_comment> | |
4474 | + <comment>RIFF container</comment> | |
4475 | 4475 | <!-- need to be lower prio than avi --> |
4476 | 4476 | <magic priority="45"> |
4477 | 4477 | <match type="string" value="RIFF" offset="0"/> |
4478 | 4478 | </magic> |
4479 | 4479 | </mime-type> |
4480 | 4480 | <mime-type type="audio/x-s3m"> |
4481 | - <_comment>Scream Tracker 3 audio</_comment> | |
4481 | + <comment>Scream Tracker 3 audio</comment> | |
4482 | 4482 | <magic priority="50"> |
4483 | 4483 | <match value="SCRM" type="string" offset="44"/> |
4484 | 4484 | </magic> |
4485 | 4485 | <glob pattern="*.s3m"/> |
4486 | 4486 | </mime-type> |
4487 | 4487 | <mime-type type="audio/x-scpls"> |
4488 | - <_comment>MP3 ShoutCast playlist</_comment> | |
4488 | + <comment>MP3 ShoutCast playlist</comment> | |
4489 | 4489 | <alias type="application/pls"/> |
4490 | 4490 | <alias type="audio/scpls"/> |
4491 | 4491 | <magic priority="50"> |
@@ -4496,7 +4496,7 @@ command to generate the output files. | ||
4496 | 4496 | <glob pattern="*.pls"/> |
4497 | 4497 | </mime-type> |
4498 | 4498 | <mime-type type="audio/x-stm"> |
4499 | - <_comment>Scream Tracker audio</_comment> | |
4499 | + <comment>Scream Tracker audio</comment> | |
4500 | 4500 | <magic> |
4501 | 4501 | <match type="string" value="!Scream!\x1A" offset="20"/> |
4502 | 4502 | <match type="string" value="!SCREAM!\x1A" offset="20"/> |
@@ -4505,11 +4505,11 @@ command to generate the output files. | ||
4505 | 4505 | <glob pattern="*.stm"/> |
4506 | 4506 | </mime-type> |
4507 | 4507 | <mime-type type="audio/x-voc"> |
4508 | - <_comment>VOC audio</_comment> | |
4508 | + <comment>VOC audio</comment> | |
4509 | 4509 | <glob pattern="*.voc"/> |
4510 | 4510 | </mime-type> |
4511 | 4511 | <mime-type type="audio/x-wav"> |
4512 | - <_comment>WAV audio</_comment> | |
4512 | + <comment>WAV audio</comment> | |
4513 | 4513 | <alias type="audio/wav"/> |
4514 | 4514 | <alias type="audio/vnd.wave"/> |
4515 | 4515 | <magic priority="50"> |
@@ -4519,21 +4519,21 @@ command to generate the output files. | ||
4519 | 4519 | <glob pattern="*.wav"/> |
4520 | 4520 | </mime-type> |
4521 | 4521 | <mime-type type="audio/x-xi"> |
4522 | - <_comment>Scream Tracker instrument</_comment> | |
4522 | + <comment>Scream Tracker instrument</comment> | |
4523 | 4523 | <magic priority="50"> |
4524 | 4524 | <match value="Extended Instrument:" type="string" offset="0"/> |
4525 | 4525 | </magic> |
4526 | 4526 | <glob pattern="*.xi"/> |
4527 | 4527 | </mime-type> |
4528 | 4528 | <mime-type type="audio/x-xm"> |
4529 | - <_comment>FastTracker II audio</_comment> | |
4529 | + <comment>FastTracker II audio</comment> | |
4530 | 4530 | <magic priority="50"> |
4531 | 4531 | <match value="Extended Module:" type="string" offset="0"/> |
4532 | 4532 | </magic> |
4533 | 4533 | <glob pattern="*.xm"/> |
4534 | 4534 | </mime-type> |
4535 | 4535 | <mime-type type="audio/x-tta"> |
4536 | - <_comment>TrueAudio audio</_comment> | |
4536 | + <comment>TrueAudio audio</comment> | |
4537 | 4537 | <alias type="audio/tta"/> |
4538 | 4538 | <magic priority="50"> |
4539 | 4539 | <match value="TTA1" type="string" offset="0"/> |
@@ -4541,7 +4541,7 @@ command to generate the output files. | ||
4541 | 4541 | <glob pattern="*.tta"/> |
4542 | 4542 | </mime-type> |
4543 | 4543 | <mime-type type="image/bmp"> |
4544 | - <_comment>Windows BMP image</_comment> | |
4544 | + <comment>Windows BMP image</comment> | |
4545 | 4545 | <magic priority="50"> |
4546 | 4546 | <match type="string" mask="0xffff00000000ffff" value="BMxxxx\000\000" offset="0"/> |
4547 | 4547 | <match type="string" value="BM" offset="0"> |
@@ -4556,31 +4556,31 @@ command to generate the output files. | ||
4556 | 4556 | <alias type="image/x-MS-bmp"/> |
4557 | 4557 | </mime-type> |
4558 | 4558 | <mime-type type="image/vnd.wap.wbmp"> |
4559 | - <_comment>WBMP image</_comment> | |
4559 | + <comment>WBMP image</comment> | |
4560 | 4560 | <acronym>WBMP</acronym> |
4561 | 4561 | <expanded-acronym>WAP bitmap</expanded-acronym> |
4562 | 4562 | <glob pattern="*.wbmp"/> |
4563 | 4563 | </mime-type> |
4564 | 4564 | <mime-type type="image/cgm"> |
4565 | - <_comment>CGM image</_comment> | |
4565 | + <comment>CGM image</comment> | |
4566 | 4566 | <acronym>CGM</acronym> |
4567 | 4567 | <expanded-acronym>Computer Graphics Metafile</expanded-acronym> |
4568 | 4568 | <glob pattern="*.cgm"/> |
4569 | 4569 | </mime-type> |
4570 | 4570 | <mime-type type="image/fax-g3"> |
4571 | - <_comment>CCITT G3 fax image</_comment> | |
4571 | + <comment>CCITT G3 fax image</comment> | |
4572 | 4572 | <glob pattern="*.g3"/> |
4573 | 4573 | <alias type="image/g3fax"/> |
4574 | 4574 | </mime-type> |
4575 | 4575 | <mime-type type="image/gif"> |
4576 | - <_comment>GIF image</_comment> | |
4576 | + <comment>GIF image</comment> | |
4577 | 4577 | <magic priority="50"> |
4578 | 4578 | <match type="string" value="GIF8" offset="0"/> |
4579 | 4579 | </magic> |
4580 | 4580 | <glob pattern="*.gif"/> |
4581 | 4581 | </mime-type> |
4582 | 4582 | <mime-type type="image/heif"> |
4583 | - <_comment>HEIF image</_comment> | |
4583 | + <comment>HEIF image</comment> | |
4584 | 4584 | <acronym>HEIF</acronym> |
4585 | 4585 | <expanded-acronym>High Efficiency Image File</expanded-acronym> |
4586 | 4586 | <glob pattern="*.heic"/> |
@@ -4590,11 +4590,11 @@ command to generate the output files. | ||
4590 | 4590 | <alias type="image/heif-sequence"/> |
4591 | 4591 | </mime-type> |
4592 | 4592 | <mime-type type="image/ief"> |
4593 | - <_comment>IEF image</_comment> | |
4593 | + <comment>IEF image</comment> | |
4594 | 4594 | <glob pattern="*.ief"/> |
4595 | 4595 | </mime-type> |
4596 | 4596 | <mime-type type="image/jpeg"> |
4597 | - <_comment>JPEG image</_comment> | |
4597 | + <comment>JPEG image</comment> | |
4598 | 4598 | <magic priority="50"> |
4599 | 4599 | <match type="string" value="\377\330\377" offset="0"/> |
4600 | 4600 | <match type="big16" value="0xffd8" offset="0"/> |
@@ -4605,7 +4605,7 @@ command to generate the output files. | ||
4605 | 4605 | <alias type="image/pjpeg"/> |
4606 | 4606 | </mime-type> |
4607 | 4607 | <mime-type type="video/x-mjpeg"> |
4608 | - <_comment>MJPEG video stream</_comment> | |
4608 | + <comment>MJPEG video stream</comment> | |
4609 | 4609 | <acronym>MJPEG</acronym> |
4610 | 4610 | <expanded-acronym>Motion JPEG</expanded-acronym> |
4611 | 4611 | <sub-class-of type="image/jpeg"/> |
@@ -4613,7 +4613,7 @@ command to generate the output files. | ||
4613 | 4613 | <glob pattern="*.mjpg"/> |
4614 | 4614 | </mime-type> |
4615 | 4615 | <mime-type type="image/x-jp2-codestream"> |
4616 | - <_comment>JPEG-2000 codestream</_comment> | |
4616 | + <comment>JPEG-2000 codestream</comment> | |
4617 | 4617 | <magic priority="50"> |
4618 | 4618 | <match type="big32" value="0xff4fff51" offset="0"/> |
4619 | 4619 | </magic> |
@@ -4622,7 +4622,7 @@ command to generate the output files. | ||
4622 | 4622 | <glob pattern="*.jpc"/> |
4623 | 4623 | </mime-type> |
4624 | 4624 | <mime-type type="image/jp2"> |
4625 | - <_comment>JPEG-2000 JP2 image</_comment> | |
4625 | + <comment>JPEG-2000 JP2 image</comment> | |
4626 | 4626 | <acronym>JP2</acronym> |
4627 | 4627 | <expanded-acronym>JPEG-2000</expanded-acronym> |
4628 | 4628 | <alias type="image/jpeg2000"/> |
@@ -4635,7 +4635,7 @@ command to generate the output files. | ||
4635 | 4635 | <glob pattern="*.jpg2"/> |
4636 | 4636 | </mime-type> |
4637 | 4637 | <mime-type type="image/jpx"> |
4638 | - <_comment>JPEG-2000 JPX image</_comment> | |
4638 | + <comment>JPEG-2000 JPX image</comment> | |
4639 | 4639 | <acronym>JPX</acronym> |
4640 | 4640 | <expanded-acronym>JPEG-2000 eXtended</expanded-acronym> |
4641 | 4641 | <magic priority="50"> |
@@ -4645,7 +4645,7 @@ command to generate the output files. | ||
4645 | 4645 | <glob pattern="*.jpx"/> |
4646 | 4646 | </mime-type> |
4647 | 4647 | <mime-type type="image/jpm"> |
4648 | - <_comment>JPEG-2000 JPM image</_comment> | |
4648 | + <comment>JPEG-2000 JPM image</comment> | |
4649 | 4649 | <acronym>JPM</acronym> |
4650 | 4650 | <expanded-acronym>JPEG-2000 Mixed</expanded-acronym> |
4651 | 4651 | <magic priority="50"> |
@@ -4655,7 +4655,7 @@ command to generate the output files. | ||
4655 | 4655 | <glob pattern="*.jpgm"/> |
4656 | 4656 | </mime-type> |
4657 | 4657 | <mime-type type="video/mj2"> |
4658 | - <_comment>JPEG-2000 MJ2 video</_comment> | |
4658 | + <comment>JPEG-2000 MJ2 video</comment> | |
4659 | 4659 | <acronym>MJ2</acronym> |
4660 | 4660 | <expanded-acronym>Motion JPEG-2000</expanded-acronym> |
4661 | 4661 | <magic priority="50"> |
@@ -4665,7 +4665,7 @@ command to generate the output files. | ||
4665 | 4665 | <glob pattern="*.mjp2"/> |
4666 | 4666 | </mime-type> |
4667 | 4667 | <mime-type type="image/openraster"> |
4668 | - <_comment>OpenRaster image</_comment> | |
4668 | + <comment>OpenRaster image</comment> | |
4669 | 4669 | <sub-class-of type="application/zip"/> |
4670 | 4670 | <magic priority="70"> |
4671 | 4671 | <match type="string" value="PK\003\004" offset="0"> |
@@ -4677,27 +4677,27 @@ command to generate the output files. | ||
4677 | 4677 | <glob pattern="*.ora"/> |
4678 | 4678 | </mime-type> |
4679 | 4679 | <mime-type type="image/x-dds"> |
4680 | - <_comment>DirectDraw surface</_comment> | |
4680 | + <comment>DirectDraw surface</comment> | |
4681 | 4681 | <magic priority="50"> |
4682 | 4682 | <match value="DDS" type="string" offset="0"/> |
4683 | 4683 | </magic> |
4684 | 4684 | <glob pattern="*.dds"/> |
4685 | 4685 | </mime-type> |
4686 | 4686 | <mime-type type="image/x-xcursor"> |
4687 | - <_comment>X11 cursor</_comment> | |
4687 | + <comment>X11 cursor</comment> | |
4688 | 4688 | <magic priority="50"> |
4689 | 4689 | <match type="string" value="Xcur" offset="0"/> |
4690 | 4690 | </magic> |
4691 | 4691 | </mime-type> |
4692 | 4692 | <mime-type type="image/x-exr"> |
4693 | - <_comment>EXR image</_comment> | |
4693 | + <comment>EXR image</comment> | |
4694 | 4694 | <magic priority="50"> |
4695 | 4695 | <match type="little32" value="20000630" offset="0"/> |
4696 | 4696 | </magic> |
4697 | 4697 | <glob pattern="*.exr"/> |
4698 | 4698 | </mime-type> |
4699 | 4699 | <mime-type type="image/x-pict"> |
4700 | - <_comment>Macintosh Quickdraw/PICT drawing</_comment> | |
4700 | + <comment>Macintosh Quickdraw/PICT drawing</comment> | |
4701 | 4701 | <magic priority="50"> |
4702 | 4702 | <match type="big16" value="0x0011" offset="10"> |
4703 | 4703 | <match type="big16" value="0x02FF" offset="12"> |
@@ -4722,7 +4722,7 @@ command to generate the output files. | ||
4722 | 4722 | <glob pattern="*.pict2"/> |
4723 | 4723 | </mime-type> |
4724 | 4724 | <mime-type type="application/x-ufraw"> |
4725 | - <_comment>UFRaw ID image</_comment> | |
4725 | + <comment>UFRaw ID image</comment> | |
4726 | 4726 | <acronym>UFRaw</acronym> |
4727 | 4727 | <expanded-acronym>Unidentified Flying Raw</expanded-acronym> |
4728 | 4728 | <sub-class-of type="application/xml"/> |
@@ -4730,10 +4730,10 @@ command to generate the output files. | ||
4730 | 4730 | <glob pattern="*.ufraw"/> |
4731 | 4731 | </mime-type> |
4732 | 4732 | <mime-type type="image/x-dcraw"> |
4733 | - <_comment>digital raw image</_comment> | |
4733 | + <comment>digital raw image</comment> | |
4734 | 4734 | </mime-type> |
4735 | 4735 | <mime-type type="image/x-adobe-dng"> |
4736 | - <_comment>Adobe DNG negative</_comment> | |
4736 | + <comment>Adobe DNG negative</comment> | |
4737 | 4737 | <acronym>DNG</acronym> |
4738 | 4738 | <expanded-acronym>Digital Negative</expanded-acronym> |
4739 | 4739 | <sub-class-of type="image/x-dcraw"/> |
@@ -4743,7 +4743,7 @@ command to generate the output files. | ||
4743 | 4743 | <!-- Canon has 2 format: CRW and CR2 !--> |
4744 | 4744 | <!-- CRW is easy !--> |
4745 | 4745 | <mime-type type="image/x-canon-crw"> |
4746 | - <_comment>Canon CRW raw image</_comment> | |
4746 | + <comment>Canon CRW raw image</comment> | |
4747 | 4747 | <acronym>CRW</acronym> |
4748 | 4748 | <expanded-acronym>Canon RaW</expanded-acronym> |
4749 | 4749 | <sub-class-of type="image/x-dcraw"/> |
@@ -4754,7 +4754,7 @@ command to generate the output files. | ||
4754 | 4754 | </mime-type> |
4755 | 4755 | <!-- CR2 is a TIFF !--> |
4756 | 4756 | <mime-type type="image/x-canon-cr2"> |
4757 | - <_comment>Canon CR2 raw image</_comment> | |
4757 | + <comment>Canon CR2 raw image</comment> | |
4758 | 4758 | <acronym>CR2</acronym> |
4759 | 4759 | <expanded-acronym>Canon Raw 2</expanded-acronym> |
4760 | 4760 | <sub-class-of type="image/x-dcraw"/> |
@@ -4762,7 +4762,7 @@ command to generate the output files. | ||
4762 | 4762 | <glob pattern="*.cr2"/> |
4763 | 4763 | </mime-type> |
4764 | 4764 | <mime-type type="image/x-fuji-raf"> |
4765 | - <_comment>Fuji RAF raw image</_comment> | |
4765 | + <comment>Fuji RAF raw image</comment> | |
4766 | 4766 | <acronym>RAF</acronym> |
4767 | 4767 | <expanded-acronym>RAw Format</expanded-acronym> |
4768 | 4768 | <sub-class-of type="image/x-dcraw"/> |
@@ -4772,7 +4772,7 @@ command to generate the output files. | ||
4772 | 4772 | <glob pattern="*.raf"/> |
4773 | 4773 | </mime-type> |
4774 | 4774 | <mime-type type="image/x-kodak-dcr"> |
4775 | - <_comment>Kodak DCR raw image</_comment> | |
4775 | + <comment>Kodak DCR raw image</comment> | |
4776 | 4776 | <acronym>DCR</acronym> |
4777 | 4777 | <expanded-acronym>Digital Camera Raw</expanded-acronym> |
4778 | 4778 | <sub-class-of type="image/x-dcraw"/> |
@@ -4780,7 +4780,7 @@ command to generate the output files. | ||
4780 | 4780 | <glob pattern="*.dcr"/> |
4781 | 4781 | </mime-type> |
4782 | 4782 | <mime-type type="image/x-kodak-k25"> |
4783 | - <_comment>Kodak K25 raw image</_comment> | |
4783 | + <comment>Kodak K25 raw image</comment> | |
4784 | 4784 | <acronym>K25</acronym> |
4785 | 4785 | <expanded-acronym>Kodak DC25</expanded-acronym> |
4786 | 4786 | <sub-class-of type="image/x-dcraw"/> |
@@ -4788,7 +4788,7 @@ command to generate the output files. | ||
4788 | 4788 | <glob pattern="*.k25"/> |
4789 | 4789 | </mime-type> |
4790 | 4790 | <mime-type type="image/x-kodak-kdc"> |
4791 | - <_comment>Kodak KDC raw image</_comment> | |
4791 | + <comment>Kodak KDC raw image</comment> | |
4792 | 4792 | <acronym>KDC</acronym> |
4793 | 4793 | <expanded-acronym>Kodak Digital Camera</expanded-acronym> |
4794 | 4794 | <sub-class-of type="image/x-dcraw"/> |
@@ -4799,7 +4799,7 @@ command to generate the output files. | ||
4799 | 4799 | <glob pattern="*.kdc"/> |
4800 | 4800 | </mime-type> |
4801 | 4801 | <mime-type type="image/x-minolta-mrw"> |
4802 | - <_comment>Minolta MRW raw image</_comment> | |
4802 | + <comment>Minolta MRW raw image</comment> | |
4803 | 4803 | <acronym>MRW</acronym> |
4804 | 4804 | <expanded-acronym>Minolta RaW</expanded-acronym> |
4805 | 4805 | <sub-class-of type="image/x-dcraw"/> |
@@ -4809,7 +4809,7 @@ command to generate the output files. | ||
4809 | 4809 | <glob pattern="*.mrw" /> |
4810 | 4810 | </mime-type> |
4811 | 4811 | <mime-type type="image/x-nikon-nef"> |
4812 | - <_comment>Nikon NEF raw image</_comment> | |
4812 | + <comment>Nikon NEF raw image</comment> | |
4813 | 4813 | <acronym>NEF</acronym> |
4814 | 4814 | <expanded-acronym>Nikon Electronic Format</expanded-acronym> |
4815 | 4815 | <sub-class-of type="image/x-dcraw"/> |
@@ -4817,7 +4817,7 @@ command to generate the output files. | ||
4817 | 4817 | <glob pattern="*.nef"/> |
4818 | 4818 | </mime-type> |
4819 | 4819 | <mime-type type="image/x-olympus-orf"> |
4820 | - <_comment>Olympus ORF raw image</_comment> | |
4820 | + <comment>Olympus ORF raw image</comment> | |
4821 | 4821 | <acronym>ORF</acronym> |
4822 | 4822 | <expanded-acronym>Olympus Raw Format</expanded-acronym> |
4823 | 4823 | <sub-class-of type="image/x-dcraw"/> |
@@ -4832,7 +4832,7 @@ command to generate the output files. | ||
4832 | 4832 | <glob pattern="*.orf"/> |
4833 | 4833 | </mime-type> |
4834 | 4834 | <mime-type type="image/x-panasonic-rw"> |
4835 | - <_comment>Panasonic raw image</_comment> | |
4835 | + <comment>Panasonic raw image</comment> | |
4836 | 4836 | <sub-class-of type="image/x-dcraw"/> |
4837 | 4837 | <magic priority="50"> |
4838 | 4838 | <!-- Some kind of TIFF file with a non-standard version in prefix !--> |
@@ -4842,7 +4842,7 @@ command to generate the output files. | ||
4842 | 4842 | <alias type="image/x-panasonic-raw"/> |
4843 | 4843 | </mime-type> |
4844 | 4844 | <mime-type type="image/x-panasonic-rw2"> |
4845 | - <_comment>Panasonic raw image</_comment> | |
4845 | + <comment>Panasonic raw image</comment> | |
4846 | 4846 | <sub-class-of type="image/x-dcraw"/> |
4847 | 4847 | <magic priority="50"> |
4848 | 4848 | <!-- Some kind of TIFF file with a non-standard version in prefix !--> |
@@ -4852,7 +4852,7 @@ command to generate the output files. | ||
4852 | 4852 | <alias type="image/x-panasonic-raw2"/> |
4853 | 4853 | </mime-type> |
4854 | 4854 | <mime-type type="image/x-pentax-pef"> |
4855 | - <_comment>Pentax PEF raw image</_comment> | |
4855 | + <comment>Pentax PEF raw image</comment> | |
4856 | 4856 | <acronym>PEF</acronym> |
4857 | 4857 | <expanded-acronym>Pentax Electronic Format</expanded-acronym> |
4858 | 4858 | <sub-class-of type="image/x-dcraw"/> |
@@ -4860,7 +4860,7 @@ command to generate the output files. | ||
4860 | 4860 | <glob pattern="*.pef"/> |
4861 | 4861 | </mime-type> |
4862 | 4862 | <mime-type type="image/x-sigma-x3f"> |
4863 | - <_comment>Sigma X3F raw image</_comment> | |
4863 | + <comment>Sigma X3F raw image</comment> | |
4864 | 4864 | <acronym>X3F</acronym> |
4865 | 4865 | <expanded-acronym>X3 Foveon</expanded-acronym> |
4866 | 4866 | <sub-class-of type="image/x-dcraw"/> |
@@ -4874,7 +4874,7 @@ command to generate the output files. | ||
4874 | 4874 | <glob pattern="*.x3f"/> |
4875 | 4875 | </mime-type> |
4876 | 4876 | <mime-type type="image/x-sony-srf"> |
4877 | - <_comment>Sony SRF raw image</_comment> | |
4877 | + <comment>Sony SRF raw image</comment> | |
4878 | 4878 | <acronym>SRF</acronym> |
4879 | 4879 | <expanded-acronym>Sony Raw Format</expanded-acronym> |
4880 | 4880 | <sub-class-of type="image/x-dcraw"/> |
@@ -4882,7 +4882,7 @@ command to generate the output files. | ||
4882 | 4882 | <glob pattern="*.srf"/> |
4883 | 4883 | </mime-type> |
4884 | 4884 | <mime-type type="image/x-sony-sr2"> |
4885 | - <_comment>Sony SR2 raw image</_comment> | |
4885 | + <comment>Sony SR2 raw image</comment> | |
4886 | 4886 | <acronym>SR2</acronym> |
4887 | 4887 | <expanded-acronym>Sony Raw format 2</expanded-acronym> |
4888 | 4888 | <sub-class-of type="image/x-dcraw"/> |
@@ -4890,7 +4890,7 @@ command to generate the output files. | ||
4890 | 4890 | <glob pattern="*.sr2"/> |
4891 | 4891 | </mime-type> |
4892 | 4892 | <mime-type type="image/x-sony-arw"> |
4893 | - <_comment>Sony ARW raw image</_comment> | |
4893 | + <comment>Sony ARW raw image</comment> | |
4894 | 4894 | <acronym>ARW</acronym> |
4895 | 4895 | <expanded-acronym>Alpha Raw format</expanded-acronym> |
4896 | 4896 | <sub-class-of type="image/x-dcraw"/> |
@@ -4898,20 +4898,20 @@ command to generate the output files. | ||
4898 | 4898 | <glob pattern="*.arw"/> |
4899 | 4899 | </mime-type> |
4900 | 4900 | <mime-type type="image/png"> |
4901 | - <_comment>PNG image</_comment> | |
4901 | + <comment>PNG image</comment> | |
4902 | 4902 | <magic priority="50"> |
4903 | 4903 | <match type="string" value="\x89PNG" offset="0"/> |
4904 | 4904 | </magic> |
4905 | 4905 | <glob pattern="*.png"/> |
4906 | 4906 | </mime-type> |
4907 | 4907 | <mime-type type="image/rle"> |
4908 | - <_comment>RLE bitmap image</_comment> | |
4908 | + <comment>RLE bitmap image</comment> | |
4909 | 4909 | <acronym>RLE</acronym> |
4910 | 4910 | <expanded-acronym>Run Length Encoded</expanded-acronym> |
4911 | 4911 | <glob pattern="*.rle"/> |
4912 | 4912 | </mime-type> |
4913 | 4913 | <mime-type type="image/svg+xml"> |
4914 | - <_comment>SVG image</_comment> | |
4914 | + <comment>SVG image</comment> | |
4915 | 4915 | <acronym>SVG</acronym> |
4916 | 4916 | <expanded-acronym>Scalable Vector Graphics</expanded-acronym> |
4917 | 4917 | <sub-class-of type="application/xml"/> |
@@ -4923,14 +4923,14 @@ command to generate the output files. | ||
4923 | 4923 | <root-XML namespaceURI="http://www.w3.org/2000/svg" localName="svg"/> |
4924 | 4924 | </mime-type> |
4925 | 4925 | <mime-type type="image/svg+xml-compressed"> |
4926 | - <_comment>compressed SVG image</_comment> | |
4926 | + <comment>compressed SVG image</comment> | |
4927 | 4927 | <acronym>SVG</acronym> |
4928 | 4928 | <expanded-acronym>Scalable Vector Graphics</expanded-acronym> |
4929 | 4929 | <sub-class-of type="application/gzip"/> |
4930 | 4930 | <glob pattern="*.svgz"/> |
4931 | 4931 | </mime-type> |
4932 | 4932 | <mime-type type="image/tiff"> |
4933 | - <_comment>TIFF image</_comment> | |
4933 | + <comment>TIFF image</comment> | |
4934 | 4934 | <acronym>TIFF</acronym> |
4935 | 4935 | <expanded-acronym>Tagged Image File Format</expanded-acronym> |
4936 | 4936 | <magic priority="50"> |
@@ -4941,17 +4941,17 @@ command to generate the output files. | ||
4941 | 4941 | <glob pattern="*.tiff"/> |
4942 | 4942 | </mime-type> |
4943 | 4943 | <mime-type type="image/x-tiff-multipage"> |
4944 | - <_comment>Multi-page TIFF image</_comment> | |
4944 | + <comment>Multi-page TIFF image</comment> | |
4945 | 4945 | <acronym>TIFF</acronym> |
4946 | 4946 | <expanded-acronym>Tagged Image File Format</expanded-acronym> |
4947 | 4947 | <sub-class-of type="image/tiff"/> |
4948 | 4948 | </mime-type> |
4949 | 4949 | <mime-type type="image/vnd.dwg"> |
4950 | - <_comment>AutoCAD image</_comment> | |
4950 | + <comment>AutoCAD image</comment> | |
4951 | 4951 | <glob pattern="*.dwg"/> |
4952 | 4952 | </mime-type> |
4953 | 4953 | <mime-type type="image/vnd.dxf"> |
4954 | - <_comment>DXF vector image</_comment> | |
4954 | + <comment>DXF vector image</comment> | |
4955 | 4955 | <glob pattern="*.dxf"/> |
4956 | 4956 | <magic priority="50"> |
4957 | 4957 | <match type="string" value="\nHEADER\n" offset="0:64"/> |
@@ -4959,7 +4959,7 @@ command to generate the output files. | ||
4959 | 4959 | </magic> |
4960 | 4960 | </mime-type> |
4961 | 4961 | <mime-type type="image/vnd.ms-modi"> |
4962 | - <_comment>MDI image</_comment> | |
4962 | + <comment>MDI image</comment> | |
4963 | 4963 | <acronym>MDI</acronym> |
4964 | 4964 | <expanded-acronym>Microsoft Document Imaging</expanded-acronym> |
4965 | 4965 | <glob pattern="*.mdi"/> |
@@ -4968,7 +4968,7 @@ command to generate the output files. | ||
4968 | 4968 | </magic> |
4969 | 4969 | </mime-type> |
4970 | 4970 | <mime-type type="image/webp"> |
4971 | - <_comment>WebP image</_comment> | |
4971 | + <comment>WebP image</comment> | |
4972 | 4972 | <magic priority="50"> |
4973 | 4973 | <match type="string" value="RIFF" offset="0"> |
4974 | 4974 | <match type="string" value="WEBP" offset="8"/> |
@@ -4977,11 +4977,11 @@ command to generate the output files. | ||
4977 | 4977 | <glob pattern="*.webp"/> |
4978 | 4978 | </mime-type> |
4979 | 4979 | <mime-type type="image/x-3ds"> |
4980 | - <_comment>3D Studio image</_comment> | |
4980 | + <comment>3D Studio image</comment> | |
4981 | 4981 | <glob pattern="*.3ds"/> |
4982 | 4982 | </mime-type> |
4983 | 4983 | <mime-type type="image/x-applix-graphics"> |
4984 | - <_comment>Applix Graphics image</_comment> | |
4984 | + <comment>Applix Graphics image</comment> | |
4985 | 4985 | <magic priority="50"> |
4986 | 4986 | <match type="string" value="*BEGIN" offset="0"> |
4987 | 4987 | <match type="string" value="GRAPHICS" offset="7"/> |
@@ -4990,23 +4990,23 @@ command to generate the output files. | ||
4990 | 4990 | <glob pattern="*.ag"/> |
4991 | 4991 | </mime-type> |
4992 | 4992 | <mime-type type="image/x-bzeps"> |
4993 | - <_comment>EPS image (bzip-compressed)</_comment> | |
4993 | + <comment>EPS image (bzip-compressed)</comment> | |
4994 | 4994 | <sub-class-of type="application/x-bzip"/> |
4995 | 4995 | <glob pattern="*.eps.bz2"/> |
4996 | 4996 | <glob pattern="*.epsi.bz2"/> |
4997 | 4997 | <glob pattern="*.epsf.bz2"/> |
4998 | 4998 | </mime-type> |
4999 | 4999 | <mime-type type="image/x-cmu-raster"> |
5000 | - <_comment>CMU raster image</_comment> | |
5000 | + <comment>CMU raster image</comment> | |
5001 | 5001 | <glob pattern="*.ras"/> |
5002 | 5002 | </mime-type> |
5003 | 5003 | <mime-type type="image/x-compressed-xcf"> |
5004 | - <_comment>compressed GIMP image</_comment> | |
5004 | + <comment>compressed GIMP image</comment> | |
5005 | 5005 | <glob pattern="*.xcf.gz"/> |
5006 | 5006 | <glob pattern="*.xcf.bz2"/> |
5007 | 5007 | </mime-type> |
5008 | 5008 | <mime-type type="application/dicom"> |
5009 | - <_comment>DICOM image</_comment> | |
5009 | + <comment>DICOM image</comment> | |
5010 | 5010 | <acronym>DICOM</acronym> |
5011 | 5011 | <expanded-acronym>Digital Imaging and Communications in Medicine</expanded-acronym> |
5012 | 5012 | <generic-icon name="image-x-generic"/> |
@@ -5017,7 +5017,7 @@ command to generate the output files. | ||
5017 | 5017 | </magic> |
5018 | 5018 | </mime-type> |
5019 | 5019 | <mime-type type="application/x-docbook+xml"> |
5020 | - <_comment>DocBook document</_comment> | |
5020 | + <comment>DocBook document</comment> | |
5021 | 5021 | <sub-class-of type="application/xml"/> |
5022 | 5022 | <generic-icon name="x-office-document"/> |
5023 | 5023 | <magic priority="90"> |
@@ -5032,7 +5032,7 @@ command to generate the output files. | ||
5032 | 5032 | <alias type="application/vnd.oasis.docbook+xml"/> |
5033 | 5033 | </mime-type> |
5034 | 5034 | <mime-type type="image/x-dib"> |
5035 | - <_comment>DIB image</_comment> | |
5035 | + <comment>DIB image</comment> | |
5036 | 5036 | <acronym>DIB</acronym> |
5037 | 5037 | <expanded-acronym>Device Independent Bitmap</expanded-acronym> |
5038 | 5038 | <magic priority="50"> |
@@ -5040,7 +5040,7 @@ command to generate the output files. | ||
5040 | 5040 | </magic> |
5041 | 5041 | </mime-type> |
5042 | 5042 | <mime-type type="image/vnd.djvu"> |
5043 | - <_comment>DjVu image</_comment> | |
5043 | + <comment>DjVu image</comment> | |
5044 | 5044 | <alias type="image/x-djvu"/> |
5045 | 5045 | <alias type="image/x.djvu"/> |
5046 | 5046 | <magic priority="80"> |
@@ -5055,7 +5055,7 @@ command to generate the output files. | ||
5055 | 5055 | <glob pattern="*.djv"/> |
5056 | 5056 | </mime-type> |
5057 | 5057 | <mime-type type="image/vnd.djvu+multipage"> |
5058 | - <_comment>DjVu document</_comment> | |
5058 | + <comment>DjVu document</comment> | |
5059 | 5059 | <generic-icon name="x-office-document"/> |
5060 | 5060 | <magic priority="80"> |
5061 | 5061 | <match type="string" offset="0" value="AT&TFORM"> |
@@ -5070,7 +5070,7 @@ command to generate the output files. | ||
5070 | 5070 | <glob pattern="*.djv"/> |
5071 | 5071 | </mime-type> |
5072 | 5072 | <mime-type type="image/dpx"> |
5073 | - <_comment>DPX image</_comment> | |
5073 | + <comment>DPX image</comment> | |
5074 | 5074 | <acronym>DPX</acronym> |
5075 | 5075 | <expanded-acronym>Digital Moving Picture Exchange</expanded-acronym> |
5076 | 5076 | <magic priority="50"> |
@@ -5078,7 +5078,7 @@ command to generate the output files. | ||
5078 | 5078 | </magic> |
5079 | 5079 | </mime-type> |
5080 | 5080 | <mime-type type="image/x-eps"> |
5081 | - <_comment>EPS image</_comment> | |
5081 | + <comment>EPS image</comment> | |
5082 | 5082 | <acronym>EPS</acronym> |
5083 | 5083 | <expanded-acronym>Encapsulated PostScript</expanded-acronym> |
5084 | 5084 | <sub-class-of type="application/postscript"/> |
@@ -5096,7 +5096,7 @@ command to generate the output files. | ||
5096 | 5096 | <glob pattern="*.epsf"/> |
5097 | 5097 | </mime-type> |
5098 | 5098 | <mime-type type="image/fits"> |
5099 | - <_comment>FITS document</_comment> | |
5099 | + <comment>FITS document</comment> | |
5100 | 5100 | <acronym>FITS</acronym> |
5101 | 5101 | <expanded-acronym>Flexible Image Transport System</expanded-acronym> |
5102 | 5102 | <magic priority="50"> |
@@ -5106,7 +5106,7 @@ command to generate the output files. | ||
5106 | 5106 | <alias type="image/x-fits"/> |
5107 | 5107 | </mime-type> |
5108 | 5108 | <mime-type type="image/x-fpx"> |
5109 | - <_comment>FPX image</_comment> | |
5109 | + <comment>FPX image</comment> | |
5110 | 5110 | <acronym>FPX</acronym> |
5111 | 5111 | <expanded-acronym>FlashPiX</expanded-acronym> |
5112 | 5112 | <magic priority="50"> |
@@ -5114,14 +5114,14 @@ command to generate the output files. | ||
5114 | 5114 | </magic> |
5115 | 5115 | </mime-type> |
5116 | 5116 | <mime-type type="image/x-gzeps"> |
5117 | - <_comment>EPS image (gzip-compressed)</_comment> | |
5117 | + <comment>EPS image (gzip-compressed)</comment> | |
5118 | 5118 | <sub-class-of type="application/gzip"/> |
5119 | 5119 | <glob pattern="*.eps.gz"/> |
5120 | 5120 | <glob pattern="*.epsi.gz"/> |
5121 | 5121 | <glob pattern="*.epsf.gz"/> |
5122 | 5122 | </mime-type> |
5123 | 5123 | <mime-type type="image/vnd.microsoft.icon"> |
5124 | - <_comment>Windows icon</_comment> | |
5124 | + <comment>Windows icon</comment> | |
5125 | 5125 | <magic priority="50"> |
5126 | 5126 | <match type="string" value="\0\0\1\0" offset="0"> |
5127 | 5127 | <match type="string" value="\0" offset="5"/> |
@@ -5136,14 +5136,14 @@ command to generate the output files. | ||
5136 | 5136 | <alias type="text/ico"/> |
5137 | 5137 | </mime-type> |
5138 | 5138 | <mime-type type="image/x-icns"> |
5139 | - <_comment>MacOS X icon</_comment> | |
5139 | + <comment>MacOS X icon</comment> | |
5140 | 5140 | <glob pattern="*.icns"/> |
5141 | 5141 | <magic priority="50"> |
5142 | 5142 | <match type="string" value="icns" offset="0"/> |
5143 | 5143 | </magic> |
5144 | 5144 | </mime-type> |
5145 | 5145 | <mime-type type="image/x-ilbm"> |
5146 | - <_comment>ILBM image</_comment> | |
5146 | + <comment>ILBM image</comment> | |
5147 | 5147 | <acronym>ILBM</acronym> |
5148 | 5148 | <expanded-acronym>InterLeaved BitMap</expanded-acronym> |
5149 | 5149 | <sub-class-of type="application/x-iff"/> |
@@ -5157,36 +5157,36 @@ command to generate the output files. | ||
5157 | 5157 | <alias type="image/x-iff"/> |
5158 | 5158 | </mime-type> |
5159 | 5159 | <mime-type type="image/x-jng"> |
5160 | - <_comment>JNG image</_comment> | |
5160 | + <comment>JNG image</comment> | |
5161 | 5161 | <acronym>JNG</acronym> |
5162 | 5162 | <expanded-acronym>JPEG Network Graphics</expanded-acronym> |
5163 | 5163 | <glob pattern="*.jng"/> |
5164 | 5164 | </mime-type> |
5165 | 5165 | <mime-type type="image/x-lwo"> |
5166 | - <_comment>LightWave object</_comment> | |
5166 | + <comment>LightWave object</comment> | |
5167 | 5167 | <glob pattern="*.lwo"/> |
5168 | 5168 | <glob pattern="*.lwob"/> |
5169 | 5169 | </mime-type> |
5170 | 5170 | <mime-type type="image/x-lws"> |
5171 | - <_comment>LightWave scene</_comment> | |
5171 | + <comment>LightWave scene</comment> | |
5172 | 5172 | <glob pattern="*.lws"/> |
5173 | 5173 | </mime-type> |
5174 | 5174 | <mime-type type="image/x-macpaint"> |
5175 | - <_comment>MacPaint Bitmap image</_comment> | |
5175 | + <comment>MacPaint Bitmap image</comment> | |
5176 | 5176 | <glob pattern="*.pntg"/> |
5177 | 5177 | </mime-type> |
5178 | 5178 | <mime-type type="image/x-msod"> |
5179 | - <_comment>Office drawing</_comment> | |
5179 | + <comment>Office drawing</comment> | |
5180 | 5180 | <glob pattern="*.msod"/> |
5181 | 5181 | </mime-type> |
5182 | 5182 | <mime-type type="image/x-niff"> |
5183 | - <_comment>NIFF image</_comment> | |
5183 | + <comment>NIFF image</comment> | |
5184 | 5184 | <magic priority="80"> |
5185 | 5185 | <match type="string" value="IIN1" offset="0"/> |
5186 | 5186 | </magic> |
5187 | 5187 | </mime-type> |
5188 | 5188 | <mime-type type="image/vnd.zbrush.pcx"> |
5189 | - <_comment>PCX image</_comment> | |
5189 | + <comment>PCX image</comment> | |
5190 | 5190 | <acronym>PCX</acronym> |
5191 | 5191 | <expanded-acronym>PiCture eXchange</expanded-acronym> |
5192 | 5192 | <magic priority="50"> |
@@ -5201,17 +5201,17 @@ command to generate the output files. | ||
5201 | 5201 | <alias type="image/x-pcx"/> |
5202 | 5202 | </mime-type> |
5203 | 5203 | <mime-type type="image/x-photo-cd"> |
5204 | - <_comment>PCD image</_comment> | |
5204 | + <comment>PCD image</comment> | |
5205 | 5205 | <acronym>PCD</acronym> |
5206 | 5206 | <expanded-acronym>PhotoCD</expanded-acronym> |
5207 | 5207 | <glob pattern="*.pcd"/> |
5208 | 5208 | </mime-type> |
5209 | 5209 | <mime-type type="image/x-portable-anymap"> |
5210 | - <_comment>PNM image</_comment> | |
5210 | + <comment>PNM image</comment> | |
5211 | 5211 | <glob pattern="*.pnm"/> |
5212 | 5212 | </mime-type> |
5213 | 5213 | <mime-type type="image/x-portable-bitmap"> |
5214 | - <_comment>PBM image</_comment> | |
5214 | + <comment>PBM image</comment> | |
5215 | 5215 | <acronym>PBM</acronym> |
5216 | 5216 | <expanded-acronym>Portable BitMap</expanded-acronym> |
5217 | 5217 | <sub-class-of type="image/x-portable-anymap"/> |
@@ -5232,7 +5232,7 @@ command to generate the output files. | ||
5232 | 5232 | <glob pattern="*.pbm"/> |
5233 | 5233 | </mime-type> |
5234 | 5234 | <mime-type type="image/x-portable-graymap"> |
5235 | - <_comment>PGM image</_comment> | |
5235 | + <comment>PGM image</comment> | |
5236 | 5236 | <acronym>PGM</acronym> |
5237 | 5237 | <expanded-acronym>Portable GrayMap</expanded-acronym> |
5238 | 5238 | <sub-class-of type="image/x-portable-anymap"/> |
@@ -5253,7 +5253,7 @@ command to generate the output files. | ||
5253 | 5253 | <glob pattern="*.pgm"/> |
5254 | 5254 | </mime-type> |
5255 | 5255 | <mime-type type="image/x-portable-pixmap"> |
5256 | - <_comment>PPM image</_comment> | |
5256 | + <comment>PPM image</comment> | |
5257 | 5257 | <acronym>PPM</acronym> |
5258 | 5258 | <expanded-acronym>Portable PixMap</expanded-acronym> |
5259 | 5259 | <sub-class-of type="image/x-portable-anymap"/> |
@@ -5274,7 +5274,7 @@ command to generate the output files. | ||
5274 | 5274 | <glob pattern="*.ppm"/> |
5275 | 5275 | </mime-type> |
5276 | 5276 | <mime-type type="image/vnd.adobe.photoshop"> |
5277 | - <_comment>Photoshop image</_comment> | |
5277 | + <comment>Photoshop image</comment> | |
5278 | 5278 | <magic priority="50"> |
5279 | 5279 | <match type="string" mask="0xffffffff0000ffffffff" value="8BPS \000\000\000\000" offset="0"/> |
5280 | 5280 | </magic> |
@@ -5287,22 +5287,22 @@ command to generate the output files. | ||
5287 | 5287 | <alias type="application/x-photoshop"/> |
5288 | 5288 | </mime-type> |
5289 | 5289 | <mime-type type="image/x-rgb"> |
5290 | - <_comment>RGB image</_comment> | |
5290 | + <comment>RGB image</comment> | |
5291 | 5291 | <glob pattern="*.rgb"/> |
5292 | 5292 | </mime-type> |
5293 | 5293 | <mime-type type="image/x-sgi"> |
5294 | - <_comment>SGI image</_comment> | |
5294 | + <comment>SGI image</comment> | |
5295 | 5295 | <glob pattern="*.sgi"/> |
5296 | 5296 | </mime-type> |
5297 | 5297 | <mime-type type="image/x-sun-raster"> |
5298 | - <_comment>Sun raster image</_comment> | |
5298 | + <comment>Sun raster image</comment> | |
5299 | 5299 | <magic priority="50"> |
5300 | 5300 | <match type="big32" value="0x59a66a95" offset="0"/> |
5301 | 5301 | </magic> |
5302 | 5302 | <glob pattern="*.sun"/> |
5303 | 5303 | </mime-type> |
5304 | 5304 | <mime-type type="image/x-tga"> |
5305 | - <_comment>TGA image</_comment> | |
5305 | + <comment>TGA image</comment> | |
5306 | 5306 | <acronym>TGA</acronym> |
5307 | 5307 | <expanded-acronym>Truevision Graphics Adapter</expanded-acronym> |
5308 | 5308 | <magic priority="10"> |
@@ -5328,7 +5328,7 @@ command to generate the output files. | ||
5328 | 5328 | <alias type="image/x-icb"/> |
5329 | 5329 | </mime-type> |
5330 | 5330 | <mime-type type="image/x-win-bitmap"> |
5331 | - <_comment>Windows cursor</_comment> | |
5331 | + <comment>Windows cursor</comment> | |
5332 | 5332 | <magic priority="50"> |
5333 | 5333 | <match type="string" value="\0\0\2\0" offset="0"> |
5334 | 5334 | <match type="string" value="\0" offset="5"/> |
@@ -5337,7 +5337,7 @@ command to generate the output files. | ||
5337 | 5337 | <glob pattern="*.cur"/> |
5338 | 5338 | </mime-type> |
5339 | 5339 | <mime-type type="application/x-navi-animation"> |
5340 | - <_comment>Windows animated cursor</_comment> | |
5340 | + <comment>Windows animated cursor</comment> | |
5341 | 5341 | <magic priority="50"> |
5342 | 5342 | <match type="string" value="RIFF" offset="0"> |
5343 | 5343 | <match type="string" value="ACON" offset="8"/> |
@@ -5346,7 +5346,7 @@ command to generate the output files. | ||
5346 | 5346 | <glob pattern="*.ani"/> |
5347 | 5347 | </mime-type> |
5348 | 5348 | <mime-type type="image/emf"> |
5349 | - <_comment>EMF image</_comment> | |
5349 | + <comment>EMF image</comment> | |
5350 | 5350 | <acronym>EMF</acronym> |
5351 | 5351 | <expanded-acronym>Enhanced MetaFile</expanded-acronym> |
5352 | 5352 | <glob pattern="*.emf"/> |
@@ -5364,7 +5364,7 @@ command to generate the output files. | ||
5364 | 5364 | </magic> |
5365 | 5365 | </mime-type> |
5366 | 5366 | <mime-type type="image/wmf"> |
5367 | - <_comment>WMF image</_comment> | |
5367 | + <comment>WMF image</comment> | |
5368 | 5368 | <acronym>WMF</acronym> |
5369 | 5369 | <expanded-acronym>Windows Metafile</expanded-acronym> |
5370 | 5370 | <magic priority="50"> |
@@ -5388,13 +5388,13 @@ command to generate the output files. | ||
5388 | 5388 | <alias type="application/x-msmetafile"/> |
5389 | 5389 | </mime-type> |
5390 | 5390 | <mime-type type="image/x-xbitmap"> |
5391 | - <_comment>XBM image</_comment> | |
5391 | + <comment>XBM image</comment> | |
5392 | 5392 | <acronym>XBM</acronym> |
5393 | 5393 | <expanded-acronym>X BitMap</expanded-acronym> |
5394 | 5394 | <glob pattern="*.xbm"/> |
5395 | 5395 | </mime-type> |
5396 | 5396 | <mime-type type="image/x-xcf"> |
5397 | - <_comment>GIMP image</_comment> | |
5397 | + <comment>GIMP image</comment> | |
5398 | 5398 | <glob pattern="*.xcf"/> |
5399 | 5399 | <magic priority="50"> |
5400 | 5400 | <match type="string" value="gimp xcf file" offset="0"/> |
@@ -5402,32 +5402,32 @@ command to generate the output files. | ||
5402 | 5402 | </magic> |
5403 | 5403 | </mime-type> |
5404 | 5404 | <mime-type type="image/x-gimp-gbr"> |
5405 | - <_comment>GIMP brush</_comment> | |
5405 | + <comment>GIMP brush</comment> | |
5406 | 5406 | <glob pattern="*.gbr"/> |
5407 | 5407 | <magic priority="50"> |
5408 | 5408 | <match type="string" value="GIMP" offset="20"/> |
5409 | 5409 | </magic> |
5410 | 5410 | </mime-type> |
5411 | 5411 | <mime-type type="image/x-gimp-gih"> |
5412 | - <_comment>GIMP brush pipe</_comment> | |
5412 | + <comment>GIMP brush pipe</comment> | |
5413 | 5413 | <glob pattern="*.gih"/> |
5414 | 5414 | </mime-type> |
5415 | 5415 | <mime-type type="image/x-gimp-pat"> |
5416 | - <_comment>GIMP pattern</_comment> | |
5416 | + <comment>GIMP pattern</comment> | |
5417 | 5417 | <glob pattern="*.pat"/> |
5418 | 5418 | <magic priority="50"> |
5419 | 5419 | <match type="string" value="GPAT" offset="20"/> |
5420 | 5420 | </magic> |
5421 | 5421 | </mime-type> |
5422 | 5422 | <mime-type type="image/x-xfig"> |
5423 | - <_comment>XFig image</_comment> | |
5423 | + <comment>XFig image</comment> | |
5424 | 5424 | <glob pattern="*.fig"/> |
5425 | 5425 | <magic priority="50"> |
5426 | 5426 | <match type="string" value="#FIG" offset="0"/> |
5427 | 5427 | </magic> |
5428 | 5428 | </mime-type> |
5429 | 5429 | <mime-type type="image/x-xpixmap"> |
5430 | - <_comment>XPM image</_comment> | |
5430 | + <comment>XPM image</comment> | |
5431 | 5431 | <acronym>XPM</acronym> |
5432 | 5432 | <expanded-acronym>X PixMap</expanded-acronym> |
5433 | 5433 | <magic priority="50"> |
@@ -5437,49 +5437,49 @@ command to generate the output files. | ||
5437 | 5437 | <alias type="image/x-xpm"/> |
5438 | 5438 | </mime-type> |
5439 | 5439 | <mime-type type="image/x-xwindowdump"> |
5440 | - <_comment>X window image</_comment> | |
5440 | + <comment>X window image</comment> | |
5441 | 5441 | <glob pattern="*.xwd"/> |
5442 | 5442 | </mime-type> |
5443 | 5443 | <mime-type type="inode/blockdevice"> |
5444 | - <_comment>block device</_comment> | |
5444 | + <comment>block device</comment> | |
5445 | 5445 | </mime-type> |
5446 | 5446 | <mime-type type="inode/chardevice"> |
5447 | - <_comment>character device</_comment> | |
5447 | + <comment>character device</comment> | |
5448 | 5448 | </mime-type> |
5449 | 5449 | <mime-type type="inode/directory"> |
5450 | - <_comment>folder</_comment> | |
5450 | + <comment>folder</comment> | |
5451 | 5451 | <generic-icon name="folder"/> |
5452 | 5452 | <alias type="x-directory/normal"/> |
5453 | 5453 | </mime-type> |
5454 | 5454 | <mime-type type="inode/fifo"> |
5455 | - <_comment>pipe</_comment> | |
5455 | + <comment>pipe</comment> | |
5456 | 5456 | </mime-type> |
5457 | 5457 | <mime-type type="inode/mount-point"> |
5458 | - <_comment>mount point</_comment> | |
5458 | + <comment>mount point</comment> | |
5459 | 5459 | <sub-class-of type="inode/directory"/> |
5460 | 5460 | </mime-type> |
5461 | 5461 | <mime-type type="inode/socket"> |
5462 | - <_comment>socket</_comment> | |
5462 | + <comment>socket</comment> | |
5463 | 5463 | </mime-type> |
5464 | 5464 | <mime-type type="inode/symlink"> |
5465 | - <_comment>symbolic link</_comment> | |
5465 | + <comment>symbolic link</comment> | |
5466 | 5466 | </mime-type> |
5467 | 5467 | <mime-type type="message/delivery-status"> |
5468 | - <_comment>mail delivery report</_comment> | |
5468 | + <comment>mail delivery report</comment> | |
5469 | 5469 | <generic-icon name="text-x-generic"/> |
5470 | 5470 | <sub-class-of type="text/plain"/> |
5471 | 5471 | </mime-type> |
5472 | 5472 | <mime-type type="message/disposition-notification"> |
5473 | - <_comment>mail disposition report</_comment> | |
5473 | + <comment>mail disposition report</comment> | |
5474 | 5474 | <generic-icon name="text-x-generic"/> |
5475 | 5475 | <sub-class-of type="text/plain"/> |
5476 | 5476 | </mime-type> |
5477 | 5477 | <mime-type type="message/external-body"> |
5478 | - <_comment>reference to remote file</_comment> | |
5478 | + <comment>reference to remote file</comment> | |
5479 | 5479 | <generic-icon name="text-x-generic"/> |
5480 | 5480 | </mime-type> |
5481 | 5481 | <mime-type type="message/news"> |
5482 | - <_comment>Usenet news message</_comment> | |
5482 | + <comment>Usenet news message</comment> | |
5483 | 5483 | <generic-icon name="text-x-generic"/> |
5484 | 5484 | <sub-class-of type="text/plain"/> |
5485 | 5485 | <magic priority="50"> |
@@ -5489,12 +5489,12 @@ command to generate the output files. | ||
5489 | 5489 | </magic> |
5490 | 5490 | </mime-type> |
5491 | 5491 | <mime-type type="message/partial"> |
5492 | - <_comment>partial email message</_comment> | |
5492 | + <comment>partial email message</comment> | |
5493 | 5493 | <generic-icon name="text-x-generic"/> |
5494 | 5494 | <sub-class-of type="text/plain"/> |
5495 | 5495 | </mime-type> |
5496 | 5496 | <mime-type type="message/rfc822"> |
5497 | - <_comment>email message</_comment> | |
5497 | + <comment>email message</comment> | |
5498 | 5498 | <generic-icon name="text-x-generic"/> |
5499 | 5499 | <sub-class-of type="text/plain"/> |
5500 | 5500 | <magic priority="50"> |
@@ -5512,12 +5512,12 @@ command to generate the output files. | ||
5512 | 5512 | <glob pattern="*.eml"/> |
5513 | 5513 | </mime-type> |
5514 | 5514 | <mime-type type="message/x-gnu-rmail"> |
5515 | - <_comment>GNU mail message</_comment> | |
5515 | + <comment>GNU mail message</comment> | |
5516 | 5516 | <generic-icon name="text-x-generic"/> |
5517 | 5517 | <glob pattern="RMAIL"/> |
5518 | 5518 | </mime-type> |
5519 | 5519 | <mime-type type="model/iges"> |
5520 | - <_comment>IGES document</_comment> | |
5520 | + <comment>IGES document</comment> | |
5521 | 5521 | <acronym>IGES</acronym> |
5522 | 5522 | <expanded-acronym>Initial Graphics Exchange Specification</expanded-acronym> |
5523 | 5523 | <generic-icon name="x-office-document"/> |
@@ -5530,7 +5530,7 @@ command to generate the output files. | ||
5530 | 5530 | <glob pattern="*.iges"/> |
5531 | 5531 | </mime-type> |
5532 | 5532 | <mime-type type="model/vrml"> |
5533 | - <_comment>VRML document</_comment> | |
5533 | + <comment>VRML document</comment> | |
5534 | 5534 | <acronym>VRML</acronym> |
5535 | 5535 | <expanded-acronym>Virtual Reality Modeling Language</expanded-acronym> |
5536 | 5536 | <generic-icon name="x-office-document"/> |
@@ -5543,34 +5543,34 @@ command to generate the output files. | ||
5543 | 5543 | <glob pattern="*.wrl"/> |
5544 | 5544 | </mime-type> |
5545 | 5545 | <mime-type type="multipart/alternative"> |
5546 | - <_comment>message in several formats</_comment> | |
5546 | + <comment>message in several formats</comment> | |
5547 | 5547 | </mime-type> |
5548 | 5548 | <mime-type type="multipart/appledouble"> |
5549 | - <_comment>Macintosh AppleDouble-encoded file</_comment> | |
5549 | + <comment>Macintosh AppleDouble-encoded file</comment> | |
5550 | 5550 | </mime-type> |
5551 | 5551 | <mime-type type="multipart/digest"> |
5552 | - <_comment>message digest</_comment> | |
5552 | + <comment>message digest</comment> | |
5553 | 5553 | </mime-type> |
5554 | 5554 | <mime-type type="multipart/encrypted"> |
5555 | - <_comment>encrypted message</_comment> | |
5555 | + <comment>encrypted message</comment> | |
5556 | 5556 | </mime-type> |
5557 | 5557 | <mime-type type="multipart/mixed"> |
5558 | - <_comment>compound documents</_comment> | |
5558 | + <comment>compound documents</comment> | |
5559 | 5559 | </mime-type> |
5560 | 5560 | <mime-type type="multipart/related"> |
5561 | - <_comment>compound document</_comment> | |
5561 | + <comment>compound document</comment> | |
5562 | 5562 | </mime-type> |
5563 | 5563 | <mime-type type="multipart/report"> |
5564 | - <_comment>mail system report</_comment> | |
5564 | + <comment>mail system report</comment> | |
5565 | 5565 | </mime-type> |
5566 | 5566 | <mime-type type="multipart/signed"> |
5567 | - <_comment>signed message</_comment> | |
5567 | + <comment>signed message</comment> | |
5568 | 5568 | </mime-type> |
5569 | 5569 | <mime-type type="multipart/x-mixed-replace"> |
5570 | - <_comment>stream of data (server push)</_comment> | |
5570 | + <comment>stream of data (server push)</comment> | |
5571 | 5571 | </mime-type> |
5572 | 5572 | <mime-type type="text/calendar"> |
5573 | - <_comment>VCS/ICS calendar</_comment> | |
5573 | + <comment>VCS/ICS calendar</comment> | |
5574 | 5574 | <acronym>VCS/ICS</acronym> |
5575 | 5575 | <expanded-acronym>vCalendar/iCalendar</expanded-acronym> |
5576 | 5576 | <sub-class-of type="text/plain"/> |
@@ -5584,14 +5584,14 @@ command to generate the output files. | ||
5584 | 5584 | <glob pattern="*.ics"/> |
5585 | 5585 | </mime-type> |
5586 | 5586 | <mime-type type="text/css"> |
5587 | - <_comment>CSS stylesheet</_comment> | |
5587 | + <comment>CSS stylesheet</comment> | |
5588 | 5588 | <acronym>CSS</acronym> |
5589 | 5589 | <expanded-acronym>Cascading Style Sheets</expanded-acronym> |
5590 | 5590 | <sub-class-of type="text/plain"/> |
5591 | 5591 | <glob pattern="*.css"/> |
5592 | 5592 | </mime-type> |
5593 | 5593 | <mime-type type="text/vcard"> |
5594 | - <_comment>electronic business card</_comment> | |
5594 | + <comment>electronic business card</comment> | |
5595 | 5595 | <alias type="text/directory"/> |
5596 | 5596 | <alias type="text/x-vcard"/> |
5597 | 5597 | <sub-class-of type="text/plain"/> |
@@ -5605,12 +5605,12 @@ command to generate the output files. | ||
5605 | 5605 | <glob pattern="*.gcrd"/> |
5606 | 5606 | </mime-type> |
5607 | 5607 | <mime-type type="text/turtle"> |
5608 | - <_comment>Turtle document</_comment> | |
5608 | + <comment>Turtle document</comment> | |
5609 | 5609 | <glob pattern="*.ttl"/> |
5610 | 5610 | <sub-class-of type="text/plain"/> |
5611 | 5611 | </mime-type> |
5612 | 5612 | <mime-type type="text/x-txt2tags"> |
5613 | - <_comment>txt2tags document</_comment> | |
5613 | + <comment>txt2tags document</comment> | |
5614 | 5614 | <sub-class-of type="text/plain"/> |
5615 | 5615 | <magic priority="60"> |
5616 | 5616 | <match type="string" value="%!postproc" offset="0"/> |
@@ -5619,22 +5619,22 @@ command to generate the output files. | ||
5619 | 5619 | <glob pattern="*.t2t"/> |
5620 | 5620 | </mime-type> |
5621 | 5621 | <mime-type type="text/x-verilog"> |
5622 | - <_comment>Verilog source code</_comment> | |
5622 | + <comment>Verilog source code</comment> | |
5623 | 5623 | <sub-class-of type="text/plain"/> |
5624 | 5624 | <glob pattern="*.v"/> |
5625 | 5625 | </mime-type> |
5626 | 5626 | <mime-type type="text/x-svhdr"> |
5627 | - <_comment>SystemVerilog header</_comment> | |
5627 | + <comment>SystemVerilog header</comment> | |
5628 | 5628 | <sub-class-of type="text/x-verilog"/> |
5629 | 5629 | <glob pattern="*.svh"/> |
5630 | 5630 | </mime-type> |
5631 | 5631 | <mime-type type="text/x-svsrc"> |
5632 | - <_comment>SystemVerilog source code</_comment> | |
5632 | + <comment>SystemVerilog source code</comment> | |
5633 | 5633 | <sub-class-of type="text/x-verilog"/> |
5634 | 5634 | <glob pattern="*.sv"/> |
5635 | 5635 | </mime-type> |
5636 | 5636 | <mime-type type="text/x-vhdl"> |
5637 | - <_comment>VHDL source code</_comment> | |
5637 | + <comment>VHDL source code</comment> | |
5638 | 5638 | <acronym>VHDL</acronym> |
5639 | 5639 | <expanded-acronym>Very-High-Speed Integrated Circuit Hardware Description Language</expanded-acronym> |
5640 | 5640 | <sub-class-of type="text/plain"/> |
@@ -5642,15 +5642,15 @@ command to generate the output files. | ||
5642 | 5642 | <glob pattern="*.vhdl"/> |
5643 | 5643 | </mime-type> |
5644 | 5644 | <mime-type type="text/enriched"> |
5645 | - <_comment>enriched text document</_comment> | |
5645 | + <comment>enriched text document</comment> | |
5646 | 5646 | <sub-class-of type="text/plain"/> |
5647 | 5647 | </mime-type> |
5648 | 5648 | <mime-type type="text/htmlh"> |
5649 | - <_comment>help page</_comment> | |
5649 | + <comment>help page</comment> | |
5650 | 5650 | <sub-class-of type="text/plain"/> |
5651 | 5651 | </mime-type> |
5652 | 5652 | <mime-type type="text/plain"> |
5653 | - <_comment>plain text document</_comment> | |
5653 | + <comment>plain text document</comment> | |
5654 | 5654 | <magic priority="50"> |
5655 | 5655 | <match type="string" value="This is TeX," offset="0"/> |
5656 | 5656 | <match type="string" value="This is METAFONT," offset="0"/> |
@@ -5660,7 +5660,7 @@ command to generate the output files. | ||
5660 | 5660 | <glob pattern="*,v"/> |
5661 | 5661 | </mime-type> |
5662 | 5662 | <mime-type type="application/rdf+xml"> |
5663 | - <_comment>RDF file</_comment> | |
5663 | + <comment>RDF file</comment> | |
5664 | 5664 | <acronym>RDF</acronym> |
5665 | 5665 | <expanded-acronym>Resource Description Framework</expanded-acronym> |
5666 | 5666 | <alias type="text/rdf"/> |
@@ -5671,12 +5671,12 @@ command to generate the output files. | ||
5671 | 5671 | <root-XML namespaceURI="http://www.w3.org/1999/02/22-rdf-syntax-ns#" localName="RDF"/> |
5672 | 5672 | </mime-type> |
5673 | 5673 | <mime-type type="text/x-rst"> |
5674 | - <_comment>reStructuredText document</_comment> | |
5674 | + <comment>reStructuredText document</comment> | |
5675 | 5675 | <sub-class-of type="text/plain"/> |
5676 | 5676 | <glob pattern="*.rst"/> |
5677 | 5677 | </mime-type> |
5678 | 5678 | <mime-type type="application/owl+xml"> |
5679 | - <_comment>OWL XML file</_comment> | |
5679 | + <comment>OWL XML file</comment> | |
5680 | 5680 | <acronym>OWL</acronym> |
5681 | 5681 | <expanded-acronym>Web Ontology Language</expanded-acronym> |
5682 | 5682 | <sub-class-of type="application/xml"/> |
@@ -5687,16 +5687,16 @@ command to generate the output files. | ||
5687 | 5687 | <root-XML namespaceURI="http://www.w3.org/2002/07/owl#" localName="Ontology"/> |
5688 | 5688 | </mime-type> |
5689 | 5689 | <mime-type type="text/rfc822-headers"> |
5690 | - <_comment>email headers</_comment> | |
5690 | + <comment>email headers</comment> | |
5691 | 5691 | <sub-class-of type="text/plain"/> |
5692 | 5692 | </mime-type> |
5693 | 5693 | <mime-type type="text/richtext"> |
5694 | - <_comment>rich text document</_comment> | |
5694 | + <comment>rich text document</comment> | |
5695 | 5695 | <sub-class-of type="text/plain"/> |
5696 | 5696 | <glob pattern="*.rtx"/> |
5697 | 5697 | </mime-type> |
5698 | 5698 | <mime-type type="application/rss+xml"> |
5699 | - <_comment>RSS summary</_comment> | |
5699 | + <comment>RSS summary</comment> | |
5700 | 5700 | <acronym>RSS</acronym> |
5701 | 5701 | <expanded-acronym>RDF Site Summary</expanded-acronym> |
5702 | 5702 | <alias type="text/rss"/> |
@@ -5709,7 +5709,7 @@ command to generate the output files. | ||
5709 | 5709 | </magic> |
5710 | 5710 | </mime-type> |
5711 | 5711 | <mime-type type="application/atom+xml"> |
5712 | - <_comment>Atom syndication feed</_comment> | |
5712 | + <comment>Atom syndication feed</comment> | |
5713 | 5713 | <sub-class-of type="application/xml"/> |
5714 | 5714 | <generic-icon name="text-html"/> |
5715 | 5715 | <glob pattern="*.atom"/> |
@@ -5719,7 +5719,7 @@ command to generate the output files. | ||
5719 | 5719 | <root-XML namespaceURI="http://www.w3.org/2005/Atom" localName="feed"/> |
5720 | 5720 | </mime-type> |
5721 | 5721 | <mime-type type="text/x-opml+xml"> |
5722 | - <_comment>OPML syndication feed</_comment> | |
5722 | + <comment>OPML syndication feed</comment> | |
5723 | 5723 | <sub-class-of type="application/xml"/> |
5724 | 5724 | <alias type="text/x-opml"/> |
5725 | 5725 | <generic-icon name="text-html"/> |
@@ -5729,7 +5729,7 @@ command to generate the output files. | ||
5729 | 5729 | </magic> |
5730 | 5730 | </mime-type> |
5731 | 5731 | <mime-type type="text/sgml"> |
5732 | - <_comment>SGML document</_comment> | |
5732 | + <comment>SGML document</comment> | |
5733 | 5733 | <acronym>SGML</acronym> |
5734 | 5734 | <expanded-acronym>Standard Generalized Markup Language</expanded-acronym> |
5735 | 5735 | <sub-class-of type="text/plain"/> |
@@ -5737,7 +5737,7 @@ command to generate the output files. | ||
5737 | 5737 | <glob pattern="*.sgm"/> |
5738 | 5738 | </mime-type> |
5739 | 5739 | <mime-type type="text/spreadsheet"> |
5740 | - <_comment>spreadsheet interchange document</_comment> | |
5740 | + <comment>spreadsheet interchange document</comment> | |
5741 | 5741 | <sub-class-of type="text/plain"/> |
5742 | 5742 | <magic priority="50"> |
5743 | 5743 | <match type="string" value="ID;" offset="0"/> |
@@ -5746,14 +5746,14 @@ command to generate the output files. | ||
5746 | 5746 | <glob pattern="*.slk"/> |
5747 | 5747 | </mime-type> |
5748 | 5748 | <mime-type type="text/tab-separated-values"> |
5749 | - <_comment>TSV document</_comment> | |
5749 | + <comment>TSV document</comment> | |
5750 | 5750 | <acronym>TSV</acronym> |
5751 | 5751 | <expanded-acronym>Tab Separated Values</expanded-acronym> |
5752 | 5752 | <sub-class-of type="text/plain"/> |
5753 | 5753 | <glob pattern="*.tsv"/> |
5754 | 5754 | </mime-type> |
5755 | 5755 | <mime-type type="text/vnd.graphviz"> |
5756 | - <_comment>Graphviz DOT graph</_comment> | |
5756 | + <comment>Graphviz DOT graph</comment> | |
5757 | 5757 | <generic-icon name="x-office-document"/> |
5758 | 5758 | <magic priority="50"> |
5759 | 5759 | <match type="string" value="digraph " offset="0"/> |
@@ -5765,7 +5765,7 @@ command to generate the output files. | ||
5765 | 5765 | <glob pattern="*.dot"/> |
5766 | 5766 | </mime-type> |
5767 | 5767 | <mime-type type="text/vnd.sun.j2me.app-descriptor"> |
5768 | - <_comment>JAD document</_comment> | |
5768 | + <comment>JAD document</comment> | |
5769 | 5769 | <acronym>JAD</acronym> |
5770 | 5770 | <expanded-acronym>Java Application Descriptor</expanded-acronym> |
5771 | 5771 | <magic priority="50"> |
@@ -5774,23 +5774,23 @@ command to generate the output files. | ||
5774 | 5774 | <glob pattern="*.jad"/> |
5775 | 5775 | </mime-type> |
5776 | 5776 | <mime-type type="text/vnd.wap.wml"> |
5777 | - <_comment>WML document</_comment> | |
5777 | + <comment>WML document</comment> | |
5778 | 5778 | <acronym>WML</acronym> |
5779 | 5779 | <expanded-acronym>Wireless Markup Language</expanded-acronym> |
5780 | 5780 | <sub-class-of type="application/xml"/> |
5781 | 5781 | <glob pattern="*.wml"/> |
5782 | 5782 | </mime-type> |
5783 | 5783 | <mime-type type="text/vnd.wap.wmlscript"> |
5784 | - <_comment>WMLScript program</_comment> | |
5784 | + <comment>WMLScript program</comment> | |
5785 | 5785 | <glob pattern="*.wmls"/> |
5786 | 5786 | </mime-type> |
5787 | 5787 | <mime-type type="text/vnd.senx.warpscript"> |
5788 | - <_comment>WarpScript source code</_comment> | |
5788 | + <comment>WarpScript source code</comment> | |
5789 | 5789 | <sub-class-of type="text/plain"/> |
5790 | 5790 | <glob pattern="*.mc2"/> |
5791 | 5791 | </mime-type> |
5792 | 5792 | <mime-type type="application/x-ace"> |
5793 | - <_comment>ACE archive</_comment> | |
5793 | + <comment>ACE archive</comment> | |
5794 | 5794 | <generic-icon name="package-x-generic"/> |
5795 | 5795 | <magic priority="60"> |
5796 | 5796 | <match type="string" value="**ACE**" offset="7"/> |
@@ -5798,18 +5798,18 @@ command to generate the output files. | ||
5798 | 5798 | <glob pattern="*.ace"/> |
5799 | 5799 | </mime-type> |
5800 | 5800 | <mime-type type="text/x-adasrc"> |
5801 | - <_comment>Ada source code</_comment> | |
5801 | + <comment>Ada source code</comment> | |
5802 | 5802 | <sub-class-of type="text/plain"/> |
5803 | 5803 | <glob pattern="*.adb"/> |
5804 | 5804 | <glob pattern="*.ads"/> |
5805 | 5805 | </mime-type> |
5806 | 5806 | <mime-type type="text/x-authors"> |
5807 | - <_comment>author list</_comment> | |
5807 | + <comment>author list</comment> | |
5808 | 5808 | <sub-class-of type="text/plain"/> |
5809 | 5809 | <glob pattern="AUTHORS"/> |
5810 | 5810 | </mime-type> |
5811 | 5811 | <mime-type type="text/x-bibtex"> |
5812 | - <_comment>BibTeX document</_comment> | |
5812 | + <comment>BibTeX document</comment> | |
5813 | 5813 | <sub-class-of type="text/plain"/> |
5814 | 5814 | <magic> |
5815 | 5815 | <match type="string" value="% This file was created with JabRef" offset="0"/> |
@@ -5817,7 +5817,7 @@ command to generate the output files. | ||
5817 | 5817 | <glob pattern="*.bib"/> |
5818 | 5818 | </mime-type> |
5819 | 5819 | <mime-type type="text/x-c++hdr"> |
5820 | - <_comment>C++ header</_comment> | |
5820 | + <comment>C++ header</comment> | |
5821 | 5821 | <sub-class-of type="text/x-chdr"/> |
5822 | 5822 | <glob pattern="*.hh"/> |
5823 | 5823 | <glob pattern="*.hp"/> |
@@ -5826,7 +5826,7 @@ command to generate the output files. | ||
5826 | 5826 | <glob pattern="*.hxx"/> |
5827 | 5827 | </mime-type> |
5828 | 5828 | <mime-type type="text/x-c++src"> |
5829 | - <_comment>C++ source code</_comment> | |
5829 | + <comment>C++ source code</comment> | |
5830 | 5830 | <sub-class-of type="text/x-csrc"/> |
5831 | 5831 | <glob pattern="*.cpp"/> |
5832 | 5832 | <glob pattern="*.cxx"/> |
@@ -5835,23 +5835,23 @@ command to generate the output files. | ||
5835 | 5835 | <glob pattern="*.c++"/> |
5836 | 5836 | </mime-type> |
5837 | 5837 | <mime-type type="text/x-changelog"> |
5838 | - <_comment>ChangeLog document</_comment> | |
5838 | + <comment>ChangeLog document</comment> | |
5839 | 5839 | <sub-class-of type="text/plain"/> |
5840 | 5840 | <glob pattern="ChangeLog"/> |
5841 | 5841 | </mime-type> |
5842 | 5842 | <mime-type type="text/x-chdr"> |
5843 | - <_comment>C header</_comment> | |
5843 | + <comment>C header</comment> | |
5844 | 5844 | <sub-class-of type="text/x-csrc"/> |
5845 | 5845 | <glob pattern="*.h"/> |
5846 | 5846 | </mime-type> |
5847 | 5847 | <mime-type type="text/x-cmake"> |
5848 | - <_comment>CMake source code</_comment> | |
5848 | + <comment>CMake source code</comment> | |
5849 | 5849 | <glob pattern="*.cmake"/> |
5850 | 5850 | <glob pattern="CMakeLists.txt"/> |
5851 | 5851 | <sub-class-of type="text/plain"/> |
5852 | 5852 | </mime-type> |
5853 | 5853 | <mime-type type="text/csv"> |
5854 | - <_comment>CSV document</_comment> | |
5854 | + <comment>CSV document</comment> | |
5855 | 5855 | <acronym>CSV</acronym> |
5856 | 5856 | <expanded-acronym>Comma Separated Values</expanded-acronym> |
5857 | 5857 | <alias type="text/x-comma-separated-values"/> |
@@ -5860,24 +5860,24 @@ command to generate the output files. | ||
5860 | 5860 | <glob pattern="*.csv"/> |
5861 | 5861 | </mime-type> |
5862 | 5862 | <mime-type type="text/csv-schema"> |
5863 | - <_comment>CSV Schema document</_comment> | |
5863 | + <comment>CSV Schema document</comment> | |
5864 | 5864 | <acronym>CSV</acronym> |
5865 | 5865 | <expanded-acronym>Comma Separated Values</expanded-acronym> |
5866 | 5866 | <sub-class-of type="text/plain"/> |
5867 | 5867 | <glob pattern="*.csvs"/> |
5868 | 5868 | </mime-type> |
5869 | 5869 | <mime-type type="text/x-copying"> |
5870 | - <_comment>license terms</_comment> | |
5870 | + <comment>license terms</comment> | |
5871 | 5871 | <sub-class-of type="text/plain"/> |
5872 | 5872 | <glob pattern="COPYING"/> |
5873 | 5873 | </mime-type> |
5874 | 5874 | <mime-type type="text/x-credits"> |
5875 | - <_comment>author credits</_comment> | |
5875 | + <comment>author credits</comment> | |
5876 | 5876 | <sub-class-of type="text/plain"/> |
5877 | 5877 | <glob pattern="CREDITS"/> |
5878 | 5878 | </mime-type> |
5879 | 5879 | <mime-type type="text/x-csrc"> |
5880 | - <_comment>C source code</_comment> | |
5880 | + <comment>C source code</comment> | |
5881 | 5881 | <sub-class-of type="text/plain"/> |
5882 | 5882 | <alias type="text/x-c"/> |
5883 | 5883 | <glob pattern="*.c" case-sensitive="true"/> |
@@ -5888,45 +5888,45 @@ command to generate the output files. | ||
5888 | 5888 | </magic> |
5889 | 5889 | </mime-type> |
5890 | 5890 | <mime-type type="text/x-csharp"> |
5891 | - <_comment>C# source code</_comment> | |
5891 | + <comment>C# source code</comment> | |
5892 | 5892 | <sub-class-of type="text/x-csrc"/> |
5893 | 5893 | <glob pattern="*.cs"/> |
5894 | 5894 | </mime-type> |
5895 | 5895 | <mime-type type="text/x-vala"> |
5896 | - <_comment>Vala source code</_comment> | |
5896 | + <comment>Vala source code</comment> | |
5897 | 5897 | <sub-class-of type="text/x-csrc"/> |
5898 | 5898 | <glob pattern="*.vala"/> |
5899 | 5899 | <glob pattern="*.vapi"/> |
5900 | 5900 | </mime-type> |
5901 | 5901 | <mime-type type="text/x-ooc"> |
5902 | - <_comment>OOC source code</_comment> | |
5902 | + <comment>OOC source code</comment> | |
5903 | 5903 | <acronym>OOC</acronym> |
5904 | 5904 | <expanded-acronym>Out Of Class</expanded-acronym> |
5905 | 5905 | <sub-class-of type="text/x-csrc"/> |
5906 | 5906 | <glob pattern="*.ooc"/> |
5907 | 5907 | </mime-type> |
5908 | 5908 | <mime-type type="text/x-dcl"> |
5909 | - <_comment>DCL script</_comment> | |
5909 | + <comment>DCL script</comment> | |
5910 | 5910 | <acronym>DCL</acronym> |
5911 | 5911 | <expanded-acronym>Data Conversion Laboratory</expanded-acronym> |
5912 | 5912 | <sub-class-of type="text/plain"/> |
5913 | 5913 | <glob pattern="*.dcl"/> |
5914 | 5914 | </mime-type> |
5915 | 5915 | <mime-type type="text/x-dsl"> |
5916 | - <_comment>DSSSL document</_comment> | |
5916 | + <comment>DSSSL document</comment> | |
5917 | 5917 | <acronym>DSSSL</acronym> |
5918 | 5918 | <expanded-acronym>Document Style Semantics and Specification Language</expanded-acronym> |
5919 | 5919 | <sub-class-of type="text/plain"/> |
5920 | 5920 | <glob pattern="*.dsl"/> |
5921 | 5921 | </mime-type> |
5922 | 5922 | <mime-type type="text/x-dsrc"> |
5923 | - <_comment>D source code</_comment> | |
5923 | + <comment>D source code</comment> | |
5924 | 5924 | <sub-class-of type="text/x-csrc"/> |
5925 | 5925 | <glob pattern="*.d"/> |
5926 | 5926 | <glob pattern="*.di"/> |
5927 | 5927 | </mime-type> |
5928 | 5928 | <mime-type type="application/xml-dtd"> |
5929 | - <_comment>DTD file</_comment> | |
5929 | + <comment>DTD file</comment> | |
5930 | 5930 | <acronym>DTD</acronym> |
5931 | 5931 | <expanded-acronym>Document Type Definition</expanded-acronym> |
5932 | 5932 | <sub-class-of type="text/plain"/> |
@@ -5935,13 +5935,13 @@ command to generate the output files. | ||
5935 | 5935 | <alias type="text/x-dtd"/> |
5936 | 5936 | </mime-type> |
5937 | 5937 | <mime-type type="text/x-eiffel"> |
5938 | - <_comment>Eiffel source code</_comment> | |
5938 | + <comment>Eiffel source code</comment> | |
5939 | 5939 | <sub-class-of type="text/plain"/> |
5940 | 5940 | <glob pattern="*.e"/> |
5941 | 5941 | <glob pattern="*.eif"/> |
5942 | 5942 | </mime-type> |
5943 | 5943 | <mime-type type="text/x-emacs-lisp"> |
5944 | - <_comment>Emacs Lisp source code</_comment> | |
5944 | + <comment>Emacs Lisp source code</comment> | |
5945 | 5945 | <sub-class-of type="text/plain"/> |
5946 | 5946 | <magic priority="50"> |
5947 | 5947 | <match type="string" value="\012(" offset="0"/> |
@@ -5950,12 +5950,12 @@ command to generate the output files. | ||
5950 | 5950 | <glob pattern="*.el"/> |
5951 | 5951 | </mime-type> |
5952 | 5952 | <mime-type type="text/x-erlang"> |
5953 | - <_comment>Erlang source code</_comment> | |
5953 | + <comment>Erlang source code</comment> | |
5954 | 5954 | <sub-class-of type="text/plain"/> |
5955 | 5955 | <glob pattern="*.erl"/> |
5956 | 5956 | </mime-type> |
5957 | 5957 | <mime-type type="text/x-fortran"> |
5958 | - <_comment>Fortran source code</_comment> | |
5958 | + <comment>Fortran source code</comment> | |
5959 | 5959 | <sub-class-of type="text/plain"/> |
5960 | 5960 | <glob pattern="*.f"/> |
5961 | 5961 | <glob pattern="*.f90"/> |
@@ -5963,20 +5963,20 @@ command to generate the output files. | ||
5963 | 5963 | <glob pattern="*.for"/> |
5964 | 5964 | </mime-type> |
5965 | 5965 | <mime-type type="text/x-genie"> |
5966 | - <_comment>Genie source code</_comment> | |
5966 | + <comment>Genie source code</comment> | |
5967 | 5967 | <sub-class-of type="text/plain"/> |
5968 | 5968 | <glob pattern="*.gs" case-sensitive="true"/> |
5969 | 5969 | <generic-icon name="text-x-generic"/> |
5970 | 5970 | </mime-type> |
5971 | 5971 | <mime-type type="text/x-gettext-translation"> |
5972 | - <_comment>translation file</_comment> | |
5972 | + <comment>translation file</comment> | |
5973 | 5973 | <sub-class-of type="text/plain"/> |
5974 | 5974 | <glob pattern="*.po"/> |
5975 | 5975 | <alias type="text/x-po"/> |
5976 | 5976 | <alias type="application/x-gettext"/> |
5977 | 5977 | </mime-type> |
5978 | 5978 | <mime-type type="text/x-gettext-translation-template"> |
5979 | - <_comment>translation template</_comment> | |
5979 | + <comment>translation template</comment> | |
5980 | 5980 | <sub-class-of type="text/plain"/> |
5981 | 5981 | <glob pattern="*.pot"/> |
5982 | 5982 | <alias type="text/x-pot"/> |
@@ -5985,12 +5985,12 @@ command to generate the output files. | ||
5985 | 5985 | </magic> |
5986 | 5986 | </mime-type> |
5987 | 5987 | <mime-type type="text/x-gherkin"> |
5988 | - <_comment>Gherkin document</_comment> | |
5988 | + <comment>Gherkin document</comment> | |
5989 | 5989 | <sub-class-of type="text/plain"/> |
5990 | 5990 | <glob pattern="*.feature"/> |
5991 | 5991 | </mime-type> |
5992 | 5992 | <mime-type type="text/html"> |
5993 | - <_comment>HTML document</_comment> | |
5993 | + <comment>HTML document</comment> | |
5994 | 5994 | <acronym>HTML</acronym> |
5995 | 5995 | <expanded-acronym>HyperText Markup Language</expanded-acronym> |
5996 | 5996 | <sub-class-of type="text/plain"/> |
@@ -6017,7 +6017,7 @@ command to generate the output files. | ||
6017 | 6017 | <glob pattern="*.htm"/> |
6018 | 6018 | </mime-type> |
6019 | 6019 | <mime-type type="text/cache-manifest"> |
6020 | - <_comment>Web application cache file</_comment> | |
6020 | + <comment>Web application cache file</comment> | |
6021 | 6021 | <sub-class-of type="text/plain"/> |
6022 | 6022 | <magic> |
6023 | 6023 | <match type="string" value="CACHE MANIFEST" offset="0"> |
@@ -6030,7 +6030,7 @@ command to generate the output files. | ||
6030 | 6030 | <glob pattern="*.manifest"/> |
6031 | 6031 | </mime-type> |
6032 | 6032 | <mime-type type="text/x-google-video-pointer"> |
6033 | - <_comment>Google Video Pointer shortcut</_comment> | |
6033 | + <comment>Google Video Pointer shortcut</comment> | |
6034 | 6034 | <magic priority="50"> |
6035 | 6035 | <match type="string" value="#.download.the.free.Google.Video.Player" offset="0"/> |
6036 | 6036 | <match type="string" value="# download the free Google Video Player" offset="0"/> |
@@ -6039,29 +6039,29 @@ command to generate the output files. | ||
6039 | 6039 | <alias type="text/google-video-pointer"/> |
6040 | 6040 | </mime-type> |
6041 | 6041 | <mime-type type="text/x-haskell"> |
6042 | - <_comment>Haskell source code</_comment> | |
6042 | + <comment>Haskell source code</comment> | |
6043 | 6043 | <sub-class-of type="text/plain"/> |
6044 | 6044 | <glob pattern="*.hs"/> |
6045 | 6045 | </mime-type> |
6046 | 6046 | <mime-type type="text/x-idl"> |
6047 | - <_comment>IDL document</_comment> | |
6047 | + <comment>IDL document</comment> | |
6048 | 6048 | <acronym>IDL</acronym> |
6049 | 6049 | <expanded-acronym>Interface Definition Language</expanded-acronym> |
6050 | 6050 | <sub-class-of type="text/plain"/> |
6051 | 6051 | <glob pattern="*.idl"/> |
6052 | 6052 | </mime-type> |
6053 | 6053 | <mime-type type="text/x-install"> |
6054 | - <_comment>installation instructions</_comment> | |
6054 | + <comment>installation instructions</comment> | |
6055 | 6055 | <sub-class-of type="text/plain"/> |
6056 | 6056 | <glob pattern="INSTALL"/> |
6057 | 6057 | </mime-type> |
6058 | 6058 | <mime-type type="text/x-java"> |
6059 | - <_comment>Java source code</_comment> | |
6059 | + <comment>Java source code</comment> | |
6060 | 6060 | <sub-class-of type="text/x-csrc"/> |
6061 | 6061 | <glob pattern="*.java"/> |
6062 | 6062 | </mime-type> |
6063 | 6063 | <mime-type type="text/x-ldif"> |
6064 | - <_comment>LDIF address book</_comment> | |
6064 | + <comment>LDIF address book</comment> | |
6065 | 6065 | <acronym>LDIF</acronym> |
6066 | 6066 | <expanded-acronym>LDAP Data Interchange Format</expanded-acronym> |
6067 | 6067 | <sub-class-of type="text/plain"/> |
@@ -6072,24 +6072,24 @@ command to generate the output files. | ||
6072 | 6072 | <glob pattern="*.ldif"/> |
6073 | 6073 | </mime-type> |
6074 | 6074 | <mime-type type="text/x-lilypond"> |
6075 | - <_comment>Lilypond music sheet</_comment> | |
6075 | + <comment>Lilypond music sheet</comment> | |
6076 | 6076 | <glob pattern="*.ly"/> |
6077 | 6077 | <sub-class-of type="text/plain"/> |
6078 | 6078 | </mime-type> |
6079 | 6079 | <mime-type type="text/x-literate-haskell"> |
6080 | - <_comment>LHS source code</_comment> | |
6080 | + <comment>LHS source code</comment> | |
6081 | 6081 | <acronym>LHS</acronym> |
6082 | 6082 | <expanded-acronym>Literate Haskell source code</expanded-acronym> |
6083 | 6083 | <sub-class-of type="text/plain"/> |
6084 | 6084 | <glob pattern="*.lhs"/> |
6085 | 6085 | </mime-type> |
6086 | 6086 | <mime-type type="text/x-log"> |
6087 | - <_comment>application log</_comment> | |
6087 | + <comment>application log</comment> | |
6088 | 6088 | <sub-class-of type="text/plain"/> |
6089 | 6089 | <glob pattern="*.log"/> |
6090 | 6090 | </mime-type> |
6091 | 6091 | <mime-type type="text/x-makefile"> |
6092 | - <_comment>Makefile build file</_comment> | |
6092 | + <comment>Makefile build file</comment> | |
6093 | 6093 | <sub-class-of type="text/plain"/> |
6094 | 6094 | <glob pattern="makefile"/> |
6095 | 6095 | <glob pattern="GNUmakefile"/> |
@@ -6102,7 +6102,7 @@ command to generate the output files. | ||
6102 | 6102 | </magic> |
6103 | 6103 | </mime-type> |
6104 | 6104 | <mime-type type="text/markdown"> |
6105 | - <_comment>Markdown document</_comment> | |
6105 | + <comment>Markdown document</comment> | |
6106 | 6106 | <sub-class-of type="text/plain"/> |
6107 | 6107 | <glob pattern="*.md"/> |
6108 | 6108 | <glob pattern="*.mkd"/> |
@@ -6110,14 +6110,14 @@ command to generate the output files. | ||
6110 | 6110 | <alias type="text/x-markdown"/> |
6111 | 6111 | </mime-type> |
6112 | 6112 | <mime-type type="text/x-moc"> |
6113 | - <_comment>Qt MOC file</_comment> | |
6113 | + <comment>Qt MOC file</comment> | |
6114 | 6114 | <acronym>Qt MOC</acronym> |
6115 | 6115 | <expanded-acronym>Qt Meta Object Compiler</expanded-acronym> |
6116 | 6116 | <sub-class-of type="text/plain"/> |
6117 | 6117 | <glob pattern="*.moc"/> |
6118 | 6118 | </mime-type> |
6119 | 6119 | <mime-type type="text/x-ms-regedit"> |
6120 | - <_comment>Windows Registry extract</_comment> | |
6120 | + <comment>Windows Registry extract</comment> | |
6121 | 6121 | <sub-class-of type="text/plain"/> |
6122 | 6122 | <magic priority="50"> |
6123 | 6123 | <match type="string" value="REGEDIT" offset="0"/> |
@@ -6127,14 +6127,14 @@ command to generate the output files. | ||
6127 | 6127 | <glob pattern="*.reg"/> |
6128 | 6128 | </mime-type> |
6129 | 6129 | <mime-type type="text/x-mof"> |
6130 | - <_comment>MOF file</_comment> | |
6130 | + <comment>MOF file</comment> | |
6131 | 6131 | <acronym>MOF</acronym> |
6132 | 6132 | <expanded-acronym>Windows Managed Object File</expanded-acronym> |
6133 | 6133 | <sub-class-of type="text/x-csrc"/> |
6134 | 6134 | <glob pattern="*.mof"/> |
6135 | 6135 | </mime-type> |
6136 | 6136 | <mime-type type="text/x-mup"> |
6137 | - <_comment>Mup musical composition document</_comment> | |
6137 | + <comment>Mup musical composition document</comment> | |
6138 | 6138 | <sub-class-of type="text/plain"/> |
6139 | 6139 | <magic priority="50"> |
6140 | 6140 | <match type="string" value="//!Mup" offset="0"/> |
@@ -6143,7 +6143,7 @@ command to generate the output files. | ||
6143 | 6143 | <glob pattern="*.not"/> |
6144 | 6144 | </mime-type> |
6145 | 6145 | <mime-type type="text/x-objcsrc"> |
6146 | - <_comment>Objective-C source code</_comment> | |
6146 | + <comment>Objective-C source code</comment> | |
6147 | 6147 | <sub-class-of type="text/x-csrc"/> |
6148 | 6148 | <magic priority="30"> |
6149 | 6149 | <match type="string" value="#import" offset="0"/> |
@@ -6151,19 +6151,19 @@ command to generate the output files. | ||
6151 | 6151 | <glob pattern="*.m"/> |
6152 | 6152 | </mime-type> |
6153 | 6153 | <mime-type type="text/x-ocaml"> |
6154 | - <_comment>OCaml source code</_comment> | |
6154 | + <comment>OCaml source code</comment> | |
6155 | 6155 | <glob pattern="*.ml"/> |
6156 | 6156 | <glob pattern="*.mli"/> |
6157 | 6157 | </mime-type> |
6158 | 6158 | <mime-type type="text/x-opencl-src"> |
6159 | - <_comment>OpenCL source code</_comment> | |
6159 | + <comment>OpenCL source code</comment> | |
6160 | 6160 | <acronym>OpenCL</acronym> |
6161 | 6161 | <expanded-acronym>Open Computing Language</expanded-acronym> |
6162 | 6162 | <sub-class-of type="text/x-csrc"/> |
6163 | 6163 | <glob pattern="*.cl"/> |
6164 | 6164 | </mime-type> |
6165 | 6165 | <mime-type type="text/x-matlab"> |
6166 | - <_comment>MATLAB file</_comment> | |
6166 | + <comment>MATLAB file</comment> | |
6167 | 6167 | <sub-class-of type="text/plain"/> |
6168 | 6168 | <magic priority="10"> |
6169 | 6169 | <match type="string" value="%" offset="0"/> |
@@ -6178,13 +6178,13 @@ command to generate the output files. | ||
6178 | 6178 | <alias type="text/x-octave"/> |
6179 | 6179 | </mime-type> |
6180 | 6180 | <mime-type type="text/x-meson"> |
6181 | - <_comment>Meson source code</_comment> | |
6181 | + <comment>Meson source code</comment> | |
6182 | 6182 | <glob pattern="meson.build"/> |
6183 | 6183 | <glob pattern="meson_options.txt"/> |
6184 | 6184 | <sub-class-of type="text/plain"/> |
6185 | 6185 | </mime-type> |
6186 | 6186 | <mime-type type="text/x-modelica"> |
6187 | - <_comment>Modelica model</_comment> | |
6187 | + <comment>Modelica model</comment> | |
6188 | 6188 | <sub-class-of type="text/plain"/> |
6189 | 6189 | <magic priority="10"> |
6190 | 6190 | <match type="string" value="//" offset="0"/> |
@@ -6204,13 +6204,13 @@ command to generate the output files. | ||
6204 | 6204 | <glob pattern="*.mo"/> |
6205 | 6205 | </mime-type> |
6206 | 6206 | <mime-type type="text/x-pascal"> |
6207 | - <_comment>Pascal source code</_comment> | |
6207 | + <comment>Pascal source code</comment> | |
6208 | 6208 | <sub-class-of type="text/plain"/> |
6209 | 6209 | <glob pattern="*.p"/> |
6210 | 6210 | <glob pattern="*.pas"/> |
6211 | 6211 | </mime-type> |
6212 | 6212 | <mime-type type="text/x-patch"> |
6213 | - <_comment>differences between files</_comment> | |
6213 | + <comment>differences between files</comment> | |
6214 | 6214 | <alias type="text/x-diff"/> |
6215 | 6215 | <sub-class-of type="text/plain"/> |
6216 | 6216 | <magic priority="50"> |
@@ -6229,19 +6229,19 @@ command to generate the output files. | ||
6229 | 6229 | <glob pattern="*.patch"/> |
6230 | 6230 | </mime-type> |
6231 | 6231 | <mime-type type="text/x-go"> |
6232 | - <_comment>Go source code</_comment> | |
6232 | + <comment>Go source code</comment> | |
6233 | 6233 | <sub-class-of type="text/plain"/> |
6234 | 6234 | <glob pattern="*.go"/> |
6235 | 6235 | </mime-type> |
6236 | 6236 | <mime-type type="text/x-scons"> |
6237 | - <_comment>SCons configuration file</_comment> | |
6237 | + <comment>SCons configuration file</comment> | |
6238 | 6238 | <sub-class-of type="text/x-python"/> |
6239 | 6239 | <glob pattern="SConstruct"/> |
6240 | 6240 | <glob pattern="SConscript"/> |
6241 | 6241 | <glob pattern="SConscript.*"/> |
6242 | 6242 | </mime-type> |
6243 | 6243 | <mime-type type="text/x-python3"> |
6244 | - <_comment>Python 3 script</_comment> | |
6244 | + <comment>Python 3 script</comment> | |
6245 | 6245 | <sub-class-of type='text/x-python'/> |
6246 | 6246 | <magic priority="60"><!-- higher priority than text/x-python --> |
6247 | 6247 | <match type="string" value="#!/bin/python3" offset="0"/> |
@@ -6260,7 +6260,7 @@ command to generate the output files. | ||
6260 | 6260 | <glob pattern="*.py3x" weight="60"/> |
6261 | 6261 | </mime-type> |
6262 | 6262 | <mime-type type="text/x-python"> |
6263 | - <_comment>Python script</_comment> | |
6263 | + <comment>Python script</comment> | |
6264 | 6264 | <sub-class-of type='application/x-executable'/> |
6265 | 6265 | <sub-class-of type="text/plain"/> |
6266 | 6266 | <magic priority="50"> |
@@ -6280,7 +6280,7 @@ command to generate the output files. | ||
6280 | 6280 | <glob pattern="*.wsgi" weight="60"/> |
6281 | 6281 | </mime-type> |
6282 | 6282 | <mime-type type="text/x-lua"> |
6283 | - <_comment>Lua script</_comment> | |
6283 | + <comment>Lua script</comment> | |
6284 | 6284 | <sub-class-of type='application/x-executable'/> |
6285 | 6285 | <sub-class-of type="text/plain"/> |
6286 | 6286 | <magic priority="50"> |
@@ -6292,17 +6292,17 @@ command to generate the output files. | ||
6292 | 6292 | <glob pattern="*.lua"/> |
6293 | 6293 | </mime-type> |
6294 | 6294 | <mime-type type="text/x-readme"> |
6295 | - <_comment>README document</_comment> | |
6295 | + <comment>README document</comment> | |
6296 | 6296 | <sub-class-of type="text/plain"/> |
6297 | 6297 | <glob weight="10" pattern="README*"/> |
6298 | 6298 | </mime-type> |
6299 | 6299 | <mime-type type="text/x-nfo"> |
6300 | - <_comment>NFO document</_comment> | |
6300 | + <comment>NFO document</comment> | |
6301 | 6301 | <sub-class-of type="text/x-readme"/> |
6302 | 6302 | <glob pattern="*.nfo"/> |
6303 | 6303 | </mime-type> |
6304 | 6304 | <mime-type type="text/x-rpm-spec"> |
6305 | - <_comment>RPM spec file</_comment> | |
6305 | + <comment>RPM spec file</comment> | |
6306 | 6306 | <acronym>RPM</acronym> |
6307 | 6307 | <expanded-acronym>Red Hat Package Manager</expanded-acronym> |
6308 | 6308 | <sub-class-of type="text/plain"/> |
@@ -6313,7 +6313,7 @@ command to generate the output files. | ||
6313 | 6313 | </magic> |
6314 | 6314 | </mime-type> |
6315 | 6315 | <mime-type type="text/x-sass"> |
6316 | - <_comment>Sass CSS pre-processor file</_comment> | |
6316 | + <comment>Sass CSS pre-processor file</comment> | |
6317 | 6317 | <acronym>Sass</acronym> |
6318 | 6318 | <expanded-acronym>Syntactically Awesome Style Sheets</expanded-acronym> |
6319 | 6319 | <sub-class-of type="text/plain"/> |
@@ -6321,18 +6321,18 @@ command to generate the output files. | ||
6321 | 6321 | <generic-icon name="text-x-generic"/> |
6322 | 6322 | </mime-type> |
6323 | 6323 | <mime-type type="text/x-scala"> |
6324 | - <_comment>Scala source code</_comment> | |
6324 | + <comment>Scala source code</comment> | |
6325 | 6325 | <sub-class-of type="text/plain"/> |
6326 | 6326 | <glob pattern="*.scala"/> |
6327 | 6327 | </mime-type> |
6328 | 6328 | <mime-type type="text/x-scheme"> |
6329 | - <_comment>Scheme source code</_comment> | |
6329 | + <comment>Scheme source code</comment> | |
6330 | 6330 | <sub-class-of type="text/plain"/> |
6331 | 6331 | <glob pattern="*.scm"/> |
6332 | 6332 | <glob pattern="*.ss"/> |
6333 | 6333 | </mime-type> |
6334 | 6334 | <mime-type type="text/x-scss"> |
6335 | - <_comment>SCSS pre-processor file</_comment> | |
6335 | + <comment>SCSS pre-processor file</comment> | |
6336 | 6336 | <acronym>SCSS</acronym> |
6337 | 6337 | <expanded-acronym>Sassy CSS</expanded-acronym> |
6338 | 6338 | <sub-class-of type="text/plain"/> |
@@ -6340,24 +6340,24 @@ command to generate the output files. | ||
6340 | 6340 | <generic-icon name="text-x-generic"/> |
6341 | 6341 | </mime-type> |
6342 | 6342 | <mime-type type="text/x-setext"> |
6343 | - <_comment>Setext document</_comment> | |
6343 | + <comment>Setext document</comment> | |
6344 | 6344 | <sub-class-of type="text/plain"/> |
6345 | 6345 | <glob pattern="*.etx"/> |
6346 | 6346 | </mime-type> |
6347 | 6347 | <mime-type type="application/sql"> |
6348 | - <_comment>SQL code</_comment> | |
6348 | + <comment>SQL code</comment> | |
6349 | 6349 | <sub-class-of type="text/plain"/> |
6350 | 6350 | <glob pattern="*.sql"/> |
6351 | 6351 | <alias type="text/x-sql"/> |
6352 | 6352 | </mime-type> |
6353 | 6353 | <mime-type type="text/x-tcl"> |
6354 | - <_comment>Tcl script</_comment> | |
6354 | + <comment>Tcl script</comment> | |
6355 | 6355 | <sub-class-of type="text/plain"/> |
6356 | 6356 | <glob pattern="*.tcl"/> |
6357 | 6357 | <glob pattern="*.tk"/> |
6358 | 6358 | </mime-type> |
6359 | 6359 | <mime-type type="text/x-tex"> |
6360 | - <_comment>TeX document</_comment> | |
6360 | + <comment>TeX document</comment> | |
6361 | 6361 | <sub-class-of type="text/plain"/> |
6362 | 6362 | <alias type="application/x-tex"/> |
6363 | 6363 | <glob pattern="*.tex"/> |
@@ -6375,44 +6375,44 @@ command to generate the output files. | ||
6375 | 6375 | </magic> |
6376 | 6376 | </mime-type> |
6377 | 6377 | <mime-type type="text/x-texinfo"> |
6378 | - <_comment>TeXInfo document</_comment> | |
6378 | + <comment>TeXInfo document</comment> | |
6379 | 6379 | <sub-class-of type="text/plain"/> |
6380 | 6380 | <glob pattern="*.texi"/> |
6381 | 6381 | <glob pattern="*.texinfo"/> |
6382 | 6382 | </mime-type> |
6383 | 6383 | <mime-type type="text/x-troff-me"> |
6384 | - <_comment>Troff ME input document</_comment> | |
6384 | + <comment>Troff ME input document</comment> | |
6385 | 6385 | <sub-class-of type="text/plain"/> |
6386 | 6386 | <glob pattern="*.me"/> |
6387 | 6387 | </mime-type> |
6388 | 6388 | <mime-type type="text/x-troff-mm"> |
6389 | - <_comment>Troff MM input document</_comment> | |
6389 | + <comment>Troff MM input document</comment> | |
6390 | 6390 | <sub-class-of type="text/plain"/> |
6391 | 6391 | <glob pattern="*.mm"/> |
6392 | 6392 | </mime-type> |
6393 | 6393 | <mime-type type="text/x-troff-ms"> |
6394 | - <_comment>Troff MS input document</_comment> | |
6394 | + <comment>Troff MS input document</comment> | |
6395 | 6395 | <sub-class-of type="text/plain"/> |
6396 | 6396 | <glob pattern="*.ms"/> |
6397 | 6397 | </mime-type> |
6398 | 6398 | <mime-type type="text/x-twig"> |
6399 | - <_comment>Twig template</_comment> | |
6399 | + <comment>Twig template</comment> | |
6400 | 6400 | <sub-class-of type="text/plain"/> |
6401 | 6401 | <glob pattern="*.twig"/> |
6402 | 6402 | <generic-icon name="text-x-generic-template"/> |
6403 | 6403 | </mime-type> |
6404 | 6404 | <mime-type type="text/x-uil"> |
6405 | - <_comment>X-Motif UIL table</_comment> | |
6405 | + <comment>X-Motif UIL table</comment> | |
6406 | 6406 | <sub-class-of type="text/plain"/> |
6407 | 6407 | <glob pattern="*.uil"/> |
6408 | 6408 | </mime-type> |
6409 | 6409 | <mime-type type="text/x-uri"> |
6410 | - <_comment>resource location</_comment> | |
6410 | + <comment>resource location</comment> | |
6411 | 6411 | <sub-class-of type="text/plain"/> |
6412 | 6412 | <!-- Note: text/uri-list is reserved by the XDND protocol! --> |
6413 | 6413 | </mime-type> |
6414 | 6414 | <mime-type type="text/x-uuencode"> |
6415 | - <_comment>uuencoded file</_comment> | |
6415 | + <comment>uuencoded file</comment> | |
6416 | 6416 | <sub-class-of type="text/plain"/> |
6417 | 6417 | <glob pattern="*.uue"/> |
6418 | 6418 | <magic priority="50"> |
@@ -6421,7 +6421,7 @@ command to generate the output files. | ||
6421 | 6421 | <alias type="zz-application/zz-winassoc-uu"/> |
6422 | 6422 | </mime-type> |
6423 | 6423 | <mime-type type="text/x-xmi"> |
6424 | - <_comment>XMI file</_comment> | |
6424 | + <comment>XMI file</comment> | |
6425 | 6425 | <acronym>XMI</acronym> |
6426 | 6426 | <expanded-acronym>XML Metadata Interchange</expanded-acronym> |
6427 | 6427 | <sub-class-of type="application/xml"/> |
@@ -6430,7 +6430,7 @@ command to generate the output files. | ||
6430 | 6430 | <root-XML namespaceURI="http://schema.omg.org/spec/XMI/2.1" localName="XMI"/> |
6431 | 6431 | </mime-type> |
6432 | 6432 | <mime-type type="text/x-xslfo"> |
6433 | - <_comment>XSL FO file</_comment> | |
6433 | + <comment>XSL FO file</comment> | |
6434 | 6434 | <acronym>XSL FO</acronym> |
6435 | 6435 | <expanded-acronym>XSL Formatting Objects</expanded-acronym> |
6436 | 6436 | <sub-class-of type="application/xml"/> |
@@ -6439,7 +6439,7 @@ command to generate the output files. | ||
6439 | 6439 | <root-XML namespaceURI="http://www.w3.org/1999/XSL/Format" localName="root"/> |
6440 | 6440 | </mime-type> |
6441 | 6441 | <mime-type type="text/x-iptables"> |
6442 | - <_comment>iptables configuration file</_comment> | |
6442 | + <comment>iptables configuration file</comment> | |
6443 | 6443 | <sub-class-of type="text/plain"/> |
6444 | 6444 | <magic priority="50"> |
6445 | 6445 | <match type="string" value="/etc/sysconfig/iptables" offset="0:256"/> |
@@ -6464,7 +6464,7 @@ command to generate the output files. | ||
6464 | 6464 | <glob pattern="*.iptables"/> |
6465 | 6465 | </mime-type> |
6466 | 6466 | <mime-type type="text/x-dbus-service"> |
6467 | - <_comment>D-Bus service file</_comment> | |
6467 | + <comment>D-Bus service file</comment> | |
6468 | 6468 | <sub-class-of type="text/plain"/> |
6469 | 6469 | <magic priority="50"> |
6470 | 6470 | <match type="string" value="\n[D-BUS Service]\n" offset="0:256"/> |
@@ -6473,7 +6473,7 @@ command to generate the output files. | ||
6473 | 6473 | <glob pattern="*.service"/> |
6474 | 6474 | </mime-type> |
6475 | 6475 | <mime-type type="text/x-systemd-unit"> |
6476 | - <_comment>systemd unit file</_comment> | |
6476 | + <comment>systemd unit file</comment> | |
6477 | 6477 | <sub-class-of type="text/plain"/> |
6478 | 6478 | <magic priority="50"> |
6479 | 6479 | <!-- Matches part-way through the file. --> |
@@ -6517,7 +6517,7 @@ command to generate the output files. | ||
6517 | 6517 | <glob pattern="*.timer"/> |
6518 | 6518 | </mime-type> |
6519 | 6519 | <mime-type type="application/xslt+xml"> |
6520 | - <_comment>XSLT stylesheet</_comment> | |
6520 | + <comment>XSLT stylesheet</comment> | |
6521 | 6521 | <acronym>XSLT</acronym> |
6522 | 6522 | <expanded-acronym>eXtensible Stylesheet Language Transformation</expanded-acronym> |
6523 | 6523 | <generic-icon name="text-x-generic"/> |
@@ -6530,21 +6530,21 @@ command to generate the output files. | ||
6530 | 6530 | <sub-class-of type="application/xml"/> |
6531 | 6531 | </mime-type> |
6532 | 6532 | <mime-type type="text/x-maven+xml"> |
6533 | - <_comment>Maven description file</_comment> | |
6533 | + <comment>Maven description file</comment> | |
6534 | 6534 | <generic-icon name="text-x-generic"/> |
6535 | 6535 | <glob pattern="pom.xml"/> |
6536 | 6536 | <glob pattern="settings.xml"/> |
6537 | 6537 | <sub-class-of type="application/xml"/> |
6538 | 6538 | </mime-type> |
6539 | 6539 | <mime-type type="text/xmcd"> |
6540 | - <_comment>XMCD CD database</_comment> | |
6540 | + <comment>XMCD CD database</comment> | |
6541 | 6541 | <sub-class-of type="text/plain"/> |
6542 | 6542 | <magic priority="50"> |
6543 | 6543 | <match type="string" value="# xmcd" offset="0"/> |
6544 | 6544 | </magic> |
6545 | 6545 | </mime-type> |
6546 | 6546 | <mime-type type="application/xml"> |
6547 | - <_comment>XML document</_comment> | |
6547 | + <comment>XML document</comment> | |
6548 | 6548 | <acronym>XML</acronym> |
6549 | 6549 | <expanded-acronym>eXtensible Markup Language</expanded-acronym> |
6550 | 6550 | <sub-class-of type="text/plain"/> |
@@ -6560,7 +6560,7 @@ command to generate the output files. | ||
6560 | 6560 | <alias type="text/xml"/> |
6561 | 6561 | </mime-type> |
6562 | 6562 | <mime-type type="application/xml-external-parsed-entity"> |
6563 | - <_comment>XML entities document</_comment> | |
6563 | + <comment>XML entities document</comment> | |
6564 | 6564 | <acronym>XML</acronym> |
6565 | 6565 | <expanded-acronym>eXtensible Markup Language</expanded-acronym> |
6566 | 6566 | <sub-class-of type="application/xml"/> |
@@ -6569,7 +6569,7 @@ command to generate the output files. | ||
6569 | 6569 | <alias type="text/xml-external-parsed-entity"/> |
6570 | 6570 | </mime-type> |
6571 | 6571 | <mime-type type="video/dv"> |
6572 | - <_comment>DV video</_comment> | |
6572 | + <comment>DV video</comment> | |
6573 | 6573 | <acronym>DV</acronym> |
6574 | 6574 | <expanded-acronym>Digital Video</expanded-acronym> |
6575 | 6575 | <magic priority="50"> |
@@ -6578,10 +6578,10 @@ command to generate the output files. | ||
6578 | 6578 | <glob pattern="*.dv"/> |
6579 | 6579 | </mime-type> |
6580 | 6580 | <mime-type type="video/isivideo"> |
6581 | - <_comment>ISI video</_comment> | |
6581 | + <comment>ISI video</comment> | |
6582 | 6582 | </mime-type> |
6583 | 6583 | <mime-type type="video/mp2t"> |
6584 | - <_comment>MPEG-2 transport stream</_comment> | |
6584 | + <comment>MPEG-2 transport stream</comment> | |
6585 | 6585 | <acronym>MPEG-2 TS</acronym> |
6586 | 6586 | <expanded-acronym>Moving Picture Experts Group 2 Transport Stream</expanded-acronym> |
6587 | 6587 | <magic priority="50"> |
@@ -6616,7 +6616,7 @@ command to generate the output files. | ||
6616 | 6616 | <glob pattern="*.bdmv"/> |
6617 | 6617 | </mime-type> |
6618 | 6618 | <mime-type type="video/mpeg"> |
6619 | - <_comment>MPEG video</_comment> | |
6619 | + <comment>MPEG video</comment> | |
6620 | 6620 | <acronym>MPEG</acronym> |
6621 | 6621 | <expanded-acronym>Moving Picture Experts Group</expanded-acronym> |
6622 | 6622 | <alias type="video/x-mpeg"/> |
@@ -6636,7 +6636,7 @@ command to generate the output files. | ||
6636 | 6636 | <glob pattern="[0-9][0-9][0-9].vdr"/> |
6637 | 6637 | </mime-type> |
6638 | 6638 | <mime-type type="video/vnd.mpegurl"> |
6639 | - <_comment>MPEG video (streamed)</_comment> | |
6639 | + <comment>MPEG video (streamed)</comment> | |
6640 | 6640 | <sub-class-of type="text/plain"/> |
6641 | 6641 | <alias type="video/x-mpegurl"/> |
6642 | 6642 | <magic priority="50"> |
@@ -6647,7 +6647,7 @@ command to generate the output files. | ||
6647 | 6647 | <glob pattern="*.mxu"/> |
6648 | 6648 | </mime-type> |
6649 | 6649 | <mime-type type="video/quicktime"> |
6650 | - <_comment>QuickTime video</_comment> | |
6650 | + <comment>QuickTime video</comment> | |
6651 | 6651 | <magic priority="50"> |
6652 | 6652 | <match type="string" value="mdat" offset="12"/> |
6653 | 6653 | <match type="string" value="mdat" offset="4"/> |
@@ -6660,7 +6660,7 @@ command to generate the output files. | ||
6660 | 6660 | <glob pattern="*.qtvr"/> |
6661 | 6661 | </mime-type> |
6662 | 6662 | <mime-type type="image/x-quicktime"> |
6663 | - <_comment>QuickTime image</_comment> | |
6663 | + <comment>QuickTime image</comment> | |
6664 | 6664 | <magic priority="50"> |
6665 | 6665 | <match type="string" value="idat" offset="4"/> |
6666 | 6666 | </magic> |
@@ -6668,7 +6668,7 @@ command to generate the output files. | ||
6668 | 6668 | <glob pattern="*.qif"/> |
6669 | 6669 | </mime-type> |
6670 | 6670 | <mime-type type="image/ktx"> |
6671 | - <_comment>Khronos texture image</_comment> | |
6671 | + <comment>Khronos texture image</comment> | |
6672 | 6672 | <magic priority="80"> |
6673 | 6673 | <match type="big32" value="0xAB4B5458" offset="0"> |
6674 | 6674 | <match type="big32" value="0x203131BB" offset="4"> |
@@ -6679,20 +6679,20 @@ command to generate the output files. | ||
6679 | 6679 | <glob pattern="*.ktx"/> |
6680 | 6680 | </mime-type> |
6681 | 6681 | <mime-type type="video/vnd.vivo"> |
6682 | - <_comment>Vivo video</_comment> | |
6682 | + <comment>Vivo video</comment> | |
6683 | 6683 | <alias type="video/vivo"/> |
6684 | 6684 | <glob pattern="*.viv"/> |
6685 | 6685 | <glob pattern="*.vivo"/> |
6686 | 6686 | </mime-type> |
6687 | 6687 | <mime-type type="video/wavelet"> |
6688 | - <_comment>Wavelet video</_comment> | |
6688 | + <comment>Wavelet video</comment> | |
6689 | 6689 | </mime-type> |
6690 | 6690 | <mime-type type="video/x-anim"> |
6691 | - <_comment>ANIM animation</_comment> | |
6691 | + <comment>ANIM animation</comment> | |
6692 | 6692 | <glob pattern="*.anim[1-9j]"/> |
6693 | 6693 | </mime-type> |
6694 | 6694 | <mime-type type="video/x-flic"> |
6695 | - <_comment>FLIC animation</_comment> | |
6695 | + <comment>FLIC animation</comment> | |
6696 | 6696 | <alias type="video/fli"/> |
6697 | 6697 | <alias type="video/x-fli"/> |
6698 | 6698 | <magic priority="50"> |
@@ -6703,7 +6703,7 @@ command to generate the output files. | ||
6703 | 6703 | <glob pattern="*.flc"/> |
6704 | 6704 | </mime-type> |
6705 | 6705 | <mime-type type="application/x-hwp"> |
6706 | - <_comment>Haansoft Hangul document</_comment> | |
6706 | + <comment>Haansoft Hangul document</comment> | |
6707 | 6707 | <generic-icon name="x-office-document"/> |
6708 | 6708 | <magic priority="50"> |
6709 | 6709 | <match type="string" value="HWP Document File" offset="0"/> |
@@ -6712,13 +6712,13 @@ command to generate the output files. | ||
6712 | 6712 | <alias type="application/vnd.haansoft-hwp"/> |
6713 | 6713 | </mime-type> |
6714 | 6714 | <mime-type type="application/x-hwt"> |
6715 | - <_comment>Haansoft Hangul document template</_comment> | |
6715 | + <comment>Haansoft Hangul document template</comment> | |
6716 | 6716 | <generic-icon name="x-office-document"/> |
6717 | 6717 | <glob pattern="*.hwt"/> |
6718 | 6718 | <alias type="application/vnd.haansoft-hwt"/> |
6719 | 6719 | </mime-type> |
6720 | 6720 | <mime-type type="video/x-mng"> |
6721 | - <_comment>MNG animation</_comment> | |
6721 | + <comment>MNG animation</comment> | |
6722 | 6722 | <acronym>MNG</acronym> |
6723 | 6723 | <expanded-acronym>Multiple-Image Network Graphics</expanded-acronym> |
6724 | 6724 | <magic priority="50"> |
@@ -6727,7 +6727,7 @@ command to generate the output files. | ||
6727 | 6727 | <glob pattern="*.mng"/> |
6728 | 6728 | </mime-type> |
6729 | 6729 | <mime-type type="application/vnd.ms-asf"> |
6730 | - <_comment>ASF video</_comment> | |
6730 | + <comment>ASF video</comment> | |
6731 | 6731 | <acronym>ASF</acronym> |
6732 | 6732 | <expanded-acronym>Advanced Streaming Format</expanded-acronym> |
6733 | 6733 | <alias type="video/x-ms-wm"/> |
@@ -6740,7 +6740,7 @@ command to generate the output files. | ||
6740 | 6740 | </magic> |
6741 | 6741 | </mime-type> |
6742 | 6742 | <mime-type type="application/x-netshow-channel"> |
6743 | - <_comment>Windows Media Station file</_comment> | |
6743 | + <comment>Windows Media Station file</comment> | |
6744 | 6744 | <sub-class-of type="application/vnd.ms-asf"/> |
6745 | 6745 | <generic-icon name="video-x-generic"/> |
6746 | 6746 | <glob pattern="*.nsc"/> |
@@ -6749,12 +6749,12 @@ command to generate the output files. | ||
6749 | 6749 | </magic> |
6750 | 6750 | </mime-type> |
6751 | 6751 | <mime-type type="video/x-ms-wmv"> |
6752 | - <_comment>Windows Media video</_comment> | |
6752 | + <comment>Windows Media video</comment> | |
6753 | 6753 | <sub-class-of type="application/vnd.ms-asf"/> |
6754 | 6754 | <glob pattern="*.wmv"/> |
6755 | 6755 | </mime-type> |
6756 | 6756 | <mime-type type="video/x-msvideo"> |
6757 | - <_comment>AVI video</_comment> | |
6757 | + <comment>AVI video</comment> | |
6758 | 6758 | <acronym>AVI</acronym> |
6759 | 6759 | <expanded-acronym>Audio Video Interleave</expanded-acronym> |
6760 | 6760 | <alias type="video/x-avi"/> |
@@ -6775,14 +6775,14 @@ command to generate the output files. | ||
6775 | 6775 | <glob pattern="*.divx"/> |
6776 | 6776 | </mime-type> |
6777 | 6777 | <mime-type type="video/x-nsv"> |
6778 | - <_comment>NullSoft video</_comment> | |
6778 | + <comment>NullSoft video</comment> | |
6779 | 6779 | <magic priority="50"> |
6780 | 6780 | <match type="string" value="NSVf" offset="0"/> |
6781 | 6781 | </magic> |
6782 | 6782 | <glob pattern="*.nsv"/> |
6783 | 6783 | </mime-type> |
6784 | 6784 | <mime-type type="application/sdp"> |
6785 | - <_comment>SDP multicast stream file</_comment> | |
6785 | + <comment>SDP multicast stream file</comment> | |
6786 | 6786 | <acronym>SDP</acronym> |
6787 | 6787 | <expanded-acronym>Session Description Protocol</expanded-acronym> |
6788 | 6788 | <sub-class-of type="text/plain"/> |
@@ -6797,14 +6797,14 @@ command to generate the output files. | ||
6797 | 6797 | <glob pattern="*.sdp"/> |
6798 | 6798 | </mime-type> |
6799 | 6799 | <mime-type type="video/x-sgi-movie"> |
6800 | - <_comment>SGI video</_comment> | |
6800 | + <comment>SGI video</comment> | |
6801 | 6801 | <magic priority="50"> |
6802 | 6802 | <match type="string" value="MOVI" offset="0"/> |
6803 | 6803 | </magic> |
6804 | 6804 | <glob pattern="*.movie"/> |
6805 | 6805 | </mime-type> |
6806 | 6806 | <mime-type type="application/vnd.emusic-emusic_package"> |
6807 | - <_comment>eMusic download package</_comment> | |
6807 | + <comment>eMusic download package</comment> | |
6808 | 6808 | <generic-icon name="package-x-generic"/> |
6809 | 6809 | <magic priority="50"> |
6810 | 6810 | <match type="string" value="nF7YLao" offset="0"/> |
@@ -6812,7 +6812,7 @@ command to generate the output files. | ||
6812 | 6812 | <glob pattern="*.emp"/> |
6813 | 6813 | </mime-type> |
6814 | 6814 | <mime-type type="application/vnd.google-earth.kml+xml"> |
6815 | - <_comment>KML geographic data</_comment> | |
6815 | + <comment>KML geographic data</comment> | |
6816 | 6816 | <acronym>KML</acronym> |
6817 | 6817 | <expanded-acronym>Keyhole Markup Language</expanded-acronym> |
6818 | 6818 | <sub-class-of type="application/xml"/> |
@@ -6820,21 +6820,21 @@ command to generate the output files. | ||
6820 | 6820 | <root-XML namespaceURI="http://www.opengis.net/kml/2.2" localName="kml"/> |
6821 | 6821 | </mime-type> |
6822 | 6822 | <mime-type type="application/vnd.google-earth.kmz"> |
6823 | - <_comment>KML geographic compressed data</_comment> | |
6823 | + <comment>KML geographic compressed data</comment> | |
6824 | 6824 | <acronym>KML</acronym> |
6825 | 6825 | <expanded-acronym>Keyhole Markup Language</expanded-acronym> |
6826 | 6826 | <sub-class-of type="application/zip"/> |
6827 | 6827 | <glob pattern="*.kmz"/> |
6828 | 6828 | </mime-type> |
6829 | 6829 | <mime-type type="application/geo+json"> |
6830 | - <_comment>GeoJSON geospatial data</_comment> | |
6830 | + <comment>GeoJSON geospatial data</comment> | |
6831 | 6831 | <sub-class-of type="application/json"/> |
6832 | 6832 | <glob pattern="*.geojson"/> |
6833 | 6833 | <glob pattern="*.geo.json"/> |
6834 | 6834 | <alias type="application/vnd.geo+json"/> |
6835 | 6835 | </mime-type> |
6836 | 6836 | <mime-type type="application/gpx+xml"> |
6837 | - <_comment>GPX geographic data</_comment> | |
6837 | + <comment>GPX geographic data</comment> | |
6838 | 6838 | <acronym>GPX</acronym> |
6839 | 6839 | <expanded-acronym>GPS Exchange Format</expanded-acronym> |
6840 | 6840 | <sub-class-of type="application/xml"/> |
@@ -6846,7 +6846,7 @@ command to generate the output files. | ||
6846 | 6846 | <root-XML namespaceURI="http://www.topografix.com/GPX/1/1" localName="gpx"/> |
6847 | 6847 | </mime-type> |
6848 | 6848 | <mime-type type="application/x-ica"> |
6849 | - <_comment>Citrix ICA settings file</_comment> | |
6849 | + <comment>Citrix ICA settings file</comment> | |
6850 | 6850 | <acronym>ICA</acronym> |
6851 | 6851 | <expanded-acronym>Independent Computing Architecture</expanded-acronym> |
6852 | 6852 | <sub-class-of type="text/plain"/> |
@@ -6854,7 +6854,7 @@ command to generate the output files. | ||
6854 | 6854 | <glob pattern="*.ica"/> |
6855 | 6855 | </mime-type> |
6856 | 6856 | <mime-type type="application/vnd.mozilla.xul+xml"> |
6857 | - <_comment>XUL interface document</_comment> | |
6857 | + <comment>XUL interface document</comment> | |
6858 | 6858 | <acronym>XUL</acronym> |
6859 | 6859 | <expanded-acronym>XML User interface markup Language</expanded-acronym> |
6860 | 6860 | <sub-class-of type="application/xml"/> |
@@ -6863,60 +6863,60 @@ command to generate the output files. | ||
6863 | 6863 | <glob pattern="*.xul"/> |
6864 | 6864 | </mime-type> |
6865 | 6865 | <mime-type type="application/x-xpinstall"> |
6866 | - <_comment>XPInstall installer module</_comment> | |
6866 | + <comment>XPInstall installer module</comment> | |
6867 | 6867 | <sub-class-of type="application/zip"/> |
6868 | 6868 | <glob pattern="*.xpi"/> |
6869 | 6869 | </mime-type> |
6870 | 6870 | <mime-type type="application/vnd.openxmlformats-officedocument.wordprocessingml.document"> |
6871 | - <_comment>Word 2007 document</_comment> | |
6871 | + <comment>Word 2007 document</comment> | |
6872 | 6872 | <glob pattern="*.docx"/> |
6873 | 6873 | <sub-class-of type="application/zip"/> |
6874 | 6874 | <generic-icon name="x-office-document"/> |
6875 | 6875 | </mime-type> |
6876 | 6876 | <mime-type type="application/vnd.openxmlformats-officedocument.wordprocessingml.template"> |
6877 | - <_comment>Word 2007 document template</_comment> | |
6877 | + <comment>Word 2007 document template</comment> | |
6878 | 6878 | <glob pattern="*.dotx"/> |
6879 | 6879 | <sub-class-of type="application/zip"/> |
6880 | 6880 | <generic-icon name="x-office-document"/> |
6881 | 6881 | </mime-type> |
6882 | 6882 | <mime-type type="application/vnd.openxmlformats-officedocument.presentationml.presentation"> |
6883 | - <_comment>PowerPoint 2007 presentation</_comment> | |
6883 | + <comment>PowerPoint 2007 presentation</comment> | |
6884 | 6884 | <glob pattern="*.pptx"/> |
6885 | 6885 | <sub-class-of type="application/zip"/> |
6886 | 6886 | <generic-icon name="x-office-presentation"/> |
6887 | 6887 | </mime-type> |
6888 | 6888 | <mime-type type="application/vnd.openxmlformats-officedocument.presentationml.slide"> |
6889 | - <_comment>PowerPoint 2007 slide</_comment> | |
6889 | + <comment>PowerPoint 2007 slide</comment> | |
6890 | 6890 | <glob pattern="*.sldx"/> |
6891 | 6891 | <sub-class-of type="application/zip"/> |
6892 | 6892 | <generic-icon name="x-office-presentation"/> |
6893 | 6893 | </mime-type> |
6894 | 6894 | <mime-type type="application/vnd.openxmlformats-officedocument.presentationml.slideshow"> |
6895 | - <_comment>PowerPoint 2007 show</_comment> | |
6895 | + <comment>PowerPoint 2007 show</comment> | |
6896 | 6896 | <glob pattern="*.ppsx"/> |
6897 | 6897 | <sub-class-of type="application/zip"/> |
6898 | 6898 | <generic-icon name="x-office-presentation"/> |
6899 | 6899 | </mime-type> |
6900 | 6900 | <mime-type type="application/vnd.openxmlformats-officedocument.presentationml.template"> |
6901 | - <_comment>PowerPoint 2007 presentation template</_comment> | |
6901 | + <comment>PowerPoint 2007 presentation template</comment> | |
6902 | 6902 | <glob pattern="*.potx"/> |
6903 | 6903 | <sub-class-of type="application/zip"/> |
6904 | 6904 | <generic-icon name="x-office-presentation"/> |
6905 | 6905 | </mime-type> |
6906 | 6906 | <mime-type type="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"> |
6907 | - <_comment>Excel 2007 spreadsheet</_comment> | |
6907 | + <comment>Excel 2007 spreadsheet</comment> | |
6908 | 6908 | <glob pattern="*.xlsx"/> |
6909 | 6909 | <sub-class-of type="application/zip"/> |
6910 | 6910 | <generic-icon name="x-office-spreadsheet"/> |
6911 | 6911 | </mime-type> |
6912 | 6912 | <mime-type type="application/vnd.openxmlformats-officedocument.spreadsheetml.template"> |
6913 | - <_comment>Excel 2007 spreadsheet template</_comment> | |
6913 | + <comment>Excel 2007 spreadsheet template</comment> | |
6914 | 6914 | <glob pattern="*.xltx"/> |
6915 | 6915 | <sub-class-of type="application/zip"/> |
6916 | 6916 | <generic-icon name="x-office-spreadsheet"/> |
6917 | 6917 | </mime-type> |
6918 | 6918 | <mime-type type="application/x-t602"> |
6919 | - <_comment>T602 document</_comment> | |
6919 | + <comment>T602 document</comment> | |
6920 | 6920 | <generic-icon name="x-office-document"/> |
6921 | 6921 | <magic priority="50"> |
6922 | 6922 | <match offset="0" type="string" value="@CT 0" /> |
@@ -6926,7 +6926,7 @@ command to generate the output files. | ||
6926 | 6926 | <glob pattern="*.602" /> |
6927 | 6927 | </mime-type> |
6928 | 6928 | <mime-type type="application/x-cisco-vpn-settings"> |
6929 | - <_comment>Cisco VPN settings</_comment> | |
6929 | + <comment>Cisco VPN settings</comment> | |
6930 | 6930 | <generic-icon name="text-x-generic"/> |
6931 | 6931 | <magic priority="50"> |
6932 | 6932 | <match type="string" value="[main]" offset="0"> |
@@ -6936,7 +6936,7 @@ command to generate the output files. | ||
6936 | 6936 | <glob pattern="*.pcf"/> |
6937 | 6937 | </mime-type> |
6938 | 6938 | <mime-type type="application/vnd.iccprofile"> |
6939 | - <_comment>ICC profile</_comment> | |
6939 | + <comment>ICC profile</comment> | |
6940 | 6940 | <magic priority="50"> |
6941 | 6941 | <match type="string" value="acsp" offset="36"/> |
6942 | 6942 | </magic> |
@@ -6944,7 +6944,7 @@ command to generate the output files. | ||
6944 | 6944 | <glob pattern="*.icm"/> |
6945 | 6945 | </mime-type> |
6946 | 6946 | <mime-type type="application/x-it87"> |
6947 | - <_comment>IT 8.7 color calibration file</_comment> | |
6947 | + <comment>IT 8.7 color calibration file</comment> | |
6948 | 6948 | <magic priority="50"> |
6949 | 6949 | <match type="string" value="IT8.7" offset="0"/> |
6950 | 6950 | </magic> |
@@ -6953,7 +6953,7 @@ command to generate the output files. | ||
6953 | 6953 | <glob pattern="*.it87"/> |
6954 | 6954 | </mime-type> |
6955 | 6955 | <mime-type type="application/x-ccmx"> |
6956 | - <_comment>CCMX color correction file</_comment> | |
6956 | + <comment>CCMX color correction file</comment> | |
6957 | 6957 | <magic priority="50"> |
6958 | 6958 | <match type="string" value="CCMX" offset="0"/> |
6959 | 6959 | </magic> |
@@ -6962,7 +6962,7 @@ command to generate the output files. | ||
6962 | 6962 | <glob pattern="*.ccmx"/> |
6963 | 6963 | </mime-type> |
6964 | 6964 | <mime-type type="application/winhlp"> |
6965 | - <_comment>WinHelp help file</_comment> | |
6965 | + <comment>WinHelp help file</comment> | |
6966 | 6966 | <magic priority="50"> |
6967 | 6967 | <match type="little32" value="0x00035f3f" offset="0"/> |
6968 | 6968 | </magic> |
@@ -6970,7 +6970,7 @@ command to generate the output files. | ||
6970 | 6970 | <alias type="zz-application/zz-winassoc-hlp" /> |
6971 | 6971 | </mime-type> |
6972 | 6972 | <mime-type type="application/x-bsdiff"> |
6973 | - <_comment>binary differences between files</_comment> | |
6973 | + <comment>binary differences between files</comment> | |
6974 | 6974 | <magic> |
6975 | 6975 | <match type="string" value="BSDIFF40" offset="0"/> |
6976 | 6976 | <match type="string" value="BSDIFN40" offset="0"/> |
@@ -6981,7 +6981,7 @@ command to generate the output files. | ||
6981 | 6981 | <!-- Tree content-types --> |
6982 | 6982 | <mime-type type="x-content/image-dcf"> |
6983 | 6983 | <!-- http://en.wikipedia.org/wiki/Design_rule_for_Camera_File_system --> |
6984 | - <_comment>digital photos</_comment> | |
6984 | + <comment>digital photos</comment> | |
6985 | 6985 | <treemagic> |
6986 | 6986 | <treematch path="dcim" type="directory" non-empty="true"/> |
6987 | 6987 | </treemagic> |
@@ -6991,7 +6991,7 @@ command to generate the output files. | ||
6991 | 6991 | <!-- TRANSLATORS: This is a brand-name, not a generic term. Please see |
6992 | 6992 | http://en.wikipedia.org/wiki/Video_CD |
6993 | 6993 | http://www.herongyang.com/CD-DVD/VCD-Movie-File-Directory-Structure.html --> |
6994 | - <_comment>Video CD</_comment> | |
6994 | + <comment>Video CD</comment> | |
6995 | 6995 | <treemagic> |
6996 | 6996 | <treematch path="mpegav/AVSEQ01.DAT" type="file" /> |
6997 | 6997 | </treemagic> |
@@ -7001,7 +7001,7 @@ command to generate the output files. | ||
7001 | 7001 | <!-- TRANSLATORS: This is a brand-name, not a generic term. Please see |
7002 | 7002 | http://en.wikipedia.org/wiki/Super_Video_CD |
7003 | 7003 | http://everything2.com/index.pl?node_id=1009222 --> |
7004 | - <_comment>Super Video CD</_comment> | |
7004 | + <comment>Super Video CD</comment> | |
7005 | 7005 | <treemagic> |
7006 | 7006 | <treematch path="MPEG2/AVSEQ01.MPG" type="file" /> |
7007 | 7007 | </treemagic> |
@@ -7009,7 +7009,7 @@ command to generate the output files. | ||
7009 | 7009 | |
7010 | 7010 | <mime-type type="x-content/video-dvd"> |
7011 | 7011 | <!-- http://en.wikipedia.org/wiki/DVD-Video --> |
7012 | - <_comment>video DVD</_comment> | |
7012 | + <comment>video DVD</comment> | |
7013 | 7013 | <treemagic> |
7014 | 7014 | <treematch path="VIDEO_TS/VIDEO_TS.IFO" type="file" /> |
7015 | 7015 | <treematch path="VIDEO_TS/VIDEO_TS.IFO;1" type="file" /> |
@@ -7020,32 +7020,32 @@ command to generate the output files. | ||
7020 | 7020 | |
7021 | 7021 | <mime-type type="x-content/audio-cdda"> |
7022 | 7022 | <!-- http://en.wikipedia.org/wiki/Red_Book_(audio_CD_standard) --> |
7023 | - <_comment>audio CD</_comment> | |
7023 | + <comment>audio CD</comment> | |
7024 | 7024 | </mime-type> |
7025 | 7025 | |
7026 | 7026 | <mime-type type="x-content/blank-cd"> |
7027 | 7027 | <!-- http://en.wikipedia.org/wiki/Compact_Disc --> |
7028 | - <_comment>blank CD disc</_comment> | |
7028 | + <comment>blank CD disc</comment> | |
7029 | 7029 | </mime-type> |
7030 | 7030 | |
7031 | 7031 | <mime-type type="x-content/blank-dvd"> |
7032 | 7032 | <!-- http://en.wikipedia.org/wiki/DVD --> |
7033 | - <_comment>blank DVD disc</_comment> | |
7033 | + <comment>blank DVD disc</comment> | |
7034 | 7034 | </mime-type> |
7035 | 7035 | |
7036 | 7036 | <mime-type type="x-content/blank-bd"> |
7037 | 7037 | <!-- http://en.wikipedia.org/wiki/Blu-ray_Disc --> |
7038 | - <_comment>blank Blu-ray disc</_comment> | |
7038 | + <comment>blank Blu-ray disc</comment> | |
7039 | 7039 | </mime-type> |
7040 | 7040 | |
7041 | 7041 | <mime-type type="x-content/blank-hddvd"> |
7042 | 7042 | <!-- http://en.wikipedia.org/wiki/HD_DVD --> |
7043 | - <_comment>blank HD DVD disc</_comment> | |
7043 | + <comment>blank HD DVD disc</comment> | |
7044 | 7044 | </mime-type> |
7045 | 7045 | |
7046 | 7046 | <mime-type type="x-content/audio-dvd"> |
7047 | 7047 | <!-- http://en.wikipedia.org/wiki/DVD-Audio --> |
7048 | - <_comment>audio DVD</_comment> | |
7048 | + <comment>audio DVD</comment> | |
7049 | 7049 | <treemagic> |
7050 | 7050 | <treematch path="AUDIO_TS/AUDIO_TS.IFO" type="file" /> |
7051 | 7051 | <treematch path="AUDIO_TS/AUDIO_TS.IFO;1" type="file" /> |
@@ -7055,7 +7055,7 @@ command to generate the output files. | ||
7055 | 7055 | <mime-type type="x-content/video-bluray"> |
7056 | 7056 | <!-- http://en.wikipedia.org/wiki/Blu-ray_Disc |
7057 | 7057 | http://www.blu-raydisc.com/Section-13470/Section-13890/Index.html --> |
7058 | - <_comment>Blu-ray video disc</_comment> | |
7058 | + <comment>Blu-ray video disc</comment> | |
7059 | 7059 | <treemagic> |
7060 | 7060 | <treematch path="BDAV" type="directory" non-empty="true"/> |
7061 | 7061 | <treematch path="BDMV" type="directory" non-empty="true"/> |
@@ -7065,7 +7065,7 @@ command to generate the output files. | ||
7065 | 7065 | <mime-type type="x-content/video-hddvd"> |
7066 | 7066 | <!-- http://en.wikipedia.org/wiki/HD_DVD |
7067 | 7067 | http://www.dvdafteredit.com/wiki/The_HVDVD_TS_Folder --> |
7068 | - <_comment>HD DVD video disc</_comment> | |
7068 | + <comment>HD DVD video disc</comment> | |
7069 | 7069 | <treemagic> |
7070 | 7070 | <treematch path="HVDVD_TS/HV000I01.IFO" type="file" /> |
7071 | 7071 | <treematch path="HVDVD_TS/HV001I01.IFO" type="file" /> |
@@ -7075,7 +7075,7 @@ command to generate the output files. | ||
7075 | 7075 | |
7076 | 7076 | <mime-type type="x-content/ebook-reader"> |
7077 | 7077 | <!-- see fd.o hal spec --> |
7078 | - <_comment>e-book reader</_comment> | |
7078 | + <comment>e-book reader</comment> | |
7079 | 7079 | <treemagic> |
7080 | 7080 | <treematch path=".kobo" type="directory" non-empty="true"/> |
7081 | 7081 | <treematch path="system/com.amazon.ebook.booklet.reader" non-empty="false"/> |
@@ -7086,7 +7086,7 @@ command to generate the output files. | ||
7086 | 7086 | <!-- TRANSLATORS: This is a brand-name, not a generic term. Please see |
7087 | 7087 | http://en.wikipedia.org/wiki/Picture_CD |
7088 | 7088 | http://www.re.org/kristin/picturecd.html --> |
7089 | - <_comment>Picture CD</_comment> | |
7089 | + <comment>Picture CD</comment> | |
7090 | 7090 | <treemagic> |
7091 | 7091 | <treematch path="PICTURES" type="directory" non-empty="true" match-case="true"/> |
7092 | 7092 | </treemagic> |
@@ -7094,12 +7094,12 @@ command to generate the output files. | ||
7094 | 7094 | |
7095 | 7095 | <mime-type type="x-content/audio-player"> |
7096 | 7096 | <!-- see fd.o hal spec --> |
7097 | - <_comment>portable audio player</_comment> | |
7097 | + <comment>portable audio player</comment> | |
7098 | 7098 | </mime-type> |
7099 | 7099 | |
7100 | 7100 | <mime-type type="x-content/ostree-repository"> |
7101 | 7101 | <!-- https://github.com/ostreedev/ostree/blob/master/man/ostree-create-usb.xml --> |
7102 | - <_comment>OSTree software updates</_comment> | |
7102 | + <comment>OSTree software updates</comment> | |
7103 | 7103 | <treemagic> |
7104 | 7104 | <treematch path=".ostree" type="directory" non-empty="true" match-case="true" /> |
7105 | 7105 | <treematch path="ostree/repo" type="directory" non-empty="true" match-case="true" /> |
@@ -7110,13 +7110,13 @@ command to generate the output files. | ||
7110 | 7110 | <mime-type type="x-content/software"> |
7111 | 7111 | <!-- http://standards.freedesktop.org/autostart-spec/autostart-spec-latest.html |
7112 | 7112 | http://bugzilla.gnome.org/show_bug.cgi?id=509823#c3 --> |
7113 | - <_comment>software</_comment> | |
7113 | + <comment>software</comment> | |
7114 | 7114 | </mime-type> |
7115 | 7115 | |
7116 | 7116 | <mime-type type="x-content/unix-software"> |
7117 | 7117 | <!-- http://standards.freedesktop.org/autostart-spec/autostart-spec-latest.html |
7118 | 7118 | http://bugzilla.gnome.org/show_bug.cgi?id=509823#c3 --> |
7119 | - <_comment>UNIX software</_comment> | |
7119 | + <comment>UNIX software</comment> | |
7120 | 7120 | <sub-class-of type="x-content/software"/> |
7121 | 7121 | <treemagic> |
7122 | 7122 | <treematch path=".autorun" type="file" match-case="true" /> |
@@ -7128,7 +7128,7 @@ command to generate the output files. | ||
7128 | 7128 | <mime-type type="x-content/win32-software"> |
7129 | 7129 | <!-- http://standards.freedesktop.org/autostart-spec/autostart-spec-latest.html |
7130 | 7130 | http://bugzilla.gnome.org/show_bug.cgi?id=509823#c3 --> |
7131 | - <_comment>Windows software</_comment> | |
7131 | + <comment>Windows software</comment> | |
7132 | 7132 | <sub-class-of type="x-content/software"/> |
7133 | 7133 | <treemagic> |
7134 | 7134 | <treematch path="autorun.exe" type="file" executable="true" /> |
@@ -7137,7 +7137,7 @@ command to generate the output files. | ||
7137 | 7137 | </mime-type> |
7138 | 7138 | |
7139 | 7139 | <mime-type type="application/trig"> |
7140 | - <_comment>TriG RDF document</_comment> | |
7140 | + <comment>TriG RDF document</comment> | |
7141 | 7141 | <acronym>TriG</acronym> |
7142 | 7142 | <expanded-acronym>TriG RDF Graph Triple Language</expanded-acronym> |
7143 | 7143 | <sub-class-of type="text/plain"/> |
@@ -7146,7 +7146,7 @@ command to generate the output files. | ||
7146 | 7146 | </mime-type> |
7147 | 7147 | |
7148 | 7148 | <mime-type type="application/x-iwork-keynote-sffkey"> |
7149 | - <_comment>Apple Keynote 5 presentation</_comment> | |
7149 | + <comment>Apple Keynote 5 presentation</comment> | |
7150 | 7150 | <sub-class-of type="application/zip"/> |
7151 | 7151 | <generic-icon name="x-office-presentation"/> |
7152 | 7152 | <magic priority="70"> |
@@ -7159,7 +7159,7 @@ command to generate the output files. | ||
7159 | 7159 | </mime-type> |
7160 | 7160 | |
7161 | 7161 | <mime-type type="application/x-pagemaker"> |
7162 | - <_comment>Adobe PageMaker document</_comment> | |
7162 | + <comment>Adobe PageMaker document</comment> | |
7163 | 7163 | <sub-class-of type="application/x-ole-storage"/> |
7164 | 7164 | <generic-icon name="x-office-document"/> |
7165 | 7165 | <glob pattern="*.p65"/> |
@@ -7169,7 +7169,7 @@ command to generate the output files. | ||
7169 | 7169 | </mime-type> |
7170 | 7170 | |
7171 | 7171 | <mime-type type="application/x-doom-wad"> |
7172 | - <_comment>Doom WAD file</_comment> | |
7172 | + <comment>Doom WAD file</comment> | |
7173 | 7173 | <acronym>WAD</acronym> |
7174 | 7174 | <expanded-acronym>Where's All the Data</expanded-acronym> |
7175 | 7175 | <generic-icon name="package-x-generic"/> |
@@ -7181,7 +7181,7 @@ command to generate the output files. | ||
7181 | 7181 | </mime-type> |
7182 | 7182 | |
7183 | 7183 | <mime-type type="application/x-amiga-disk-format"> |
7184 | - <_comment>Amiga disk image</_comment> | |
7184 | + <comment>Amiga disk image</comment> | |
7185 | 7185 | <magic priority="50"> |
7186 | 7186 | <match type="string" value="DOS\x00" offset="0"/> |
7187 | 7187 | </magic> |
@@ -7189,7 +7189,7 @@ command to generate the output files. | ||
7189 | 7189 | </mime-type> |
7190 | 7190 | |
7191 | 7191 | <mime-type type="application/vnd.flatpak"> |
7192 | - <_comment>Flatpak application bundle</_comment> | |
7192 | + <comment>Flatpak application bundle</comment> | |
7193 | 7193 | <generic-icon name="package-x-generic"/> |
7194 | 7194 | <magic priority="50"> |
7195 | 7195 | <match type="string" value="xdg-app\x00\x01\x00\x89\xe5" offset="0"/> |
@@ -7201,7 +7201,7 @@ command to generate the output files. | ||
7201 | 7201 | </mime-type> |
7202 | 7202 | |
7203 | 7203 | <mime-type type="application/vnd.flatpak.repo"> |
7204 | - <_comment>Flatpak repository description</_comment> | |
7204 | + <comment>Flatpak repository description</comment> | |
7205 | 7205 | <generic-icon name="package-x-generic"/> |
7206 | 7206 | <sub-class-of type="text/plain"/> |
7207 | 7207 | <magic priority="50"> |
@@ -7211,7 +7211,7 @@ command to generate the output files. | ||
7211 | 7211 | </mime-type> |
7212 | 7212 | |
7213 | 7213 | <mime-type type="application/vnd.flatpak.ref"> |
7214 | - <_comment>Flatpak repository reference</_comment> | |
7214 | + <comment>Flatpak repository reference</comment> | |
7215 | 7215 | <generic-icon name="package-x-generic"/> |
7216 | 7216 | <sub-class-of type="text/plain"/> |
7217 | 7217 | <magic priority="50"> |
@@ -7221,7 +7221,7 @@ command to generate the output files. | ||
7221 | 7221 | </mime-type> |
7222 | 7222 | |
7223 | 7223 | <mime-type type="application/vnd.squashfs"> |
7224 | - <_comment>Squashfs filesystem image</_comment> | |
7224 | + <comment>Squashfs filesystem image</comment> | |
7225 | 7225 | <magic priority="50"> |
7226 | 7226 | <match type="string" value="sqsh" offset="0"/> |
7227 | 7227 | <match type="string" value="hsqs" offset="0"/> |
@@ -7231,7 +7231,7 @@ command to generate the output files. | ||
7231 | 7231 | |
7232 | 7232 | <!-- AppImage application bundle (Type 2) --> |
7233 | 7233 | <mime-type type="application/vnd.appimage"> |
7234 | - <_comment>AppImage application bundle</_comment> | |
7234 | + <comment>AppImage application bundle</comment> | |
7235 | 7235 | <sub-class-of type="application/x-executable"/> |
7236 | 7236 | <sub-class-of type="application/vnd.squashfs"/> |
7237 | 7237 | <generic-icon name="application-x-executable"/> |
@@ -7248,14 +7248,14 @@ command to generate the output files. | ||
7248 | 7248 | </mime-type> |
7249 | 7249 | |
7250 | 7250 | <mime-type type="application/vnd.snap"> |
7251 | - <_comment>Snap package</_comment> | |
7251 | + <comment>Snap package</comment> | |
7252 | 7252 | <glob pattern="*.snap"/> |
7253 | 7253 | <sub-class-of type="application/vnd.squashfs"/> |
7254 | 7254 | </mime-type> |
7255 | 7255 | |
7256 | 7256 | <!-- 3D models and GCODEs --> |
7257 | 7257 | <mime-type type="model/stl"> |
7258 | - <_comment>STL 3D model</_comment> | |
7258 | + <comment>STL 3D model</comment> | |
7259 | 7259 | <acronym>STL</acronym> |
7260 | 7260 | <expanded-acronym>StereoLithography</expanded-acronym> |
7261 | 7261 | <magic priority="50"> |
@@ -7268,14 +7268,14 @@ command to generate the output files. | ||
7268 | 7268 | </mime-type> |
7269 | 7269 | |
7270 | 7270 | <mime-type type="text/x.gcode"> |
7271 | - <_comment>G-code file</_comment> | |
7271 | + <comment>G-code file</comment> | |
7272 | 7272 | <sub-class-of type="text/plain"/> |
7273 | 7273 | <generic-icon name="text-x-generic"/> |
7274 | 7274 | <glob pattern="*.gcode"/> |
7275 | 7275 | </mime-type> |
7276 | 7276 | |
7277 | 7277 | <mime-type type="application/x-fds-disk"> |
7278 | - <_comment>Nintendo FDS disk image</_comment> | |
7278 | + <comment>Nintendo FDS disk image</comment> | |
7279 | 7279 | <acronym>FDS</acronym> |
7280 | 7280 | <expanded-acronym>Famicom Disk System</expanded-acronym> |
7281 | 7281 | <glob pattern="*.fds"/> |
@@ -0,0 +1,6 @@ | ||
1 | +<its:rules version="2.0" | |
2 | + xmlns:its="http://www.w3.org/2005/11/its" | |
3 | + xmlns:mi="http://www.freedesktop.org/standards/shared-mime-info"> | |
4 | + <its:translateRule translate="no" selector="//mi:expanded-acronym"/> | |
5 | + <its:translateRule translate="no" selector="//mi:acronym"/> | |
6 | +</its:rules> |
@@ -0,0 +1,78 @@ | ||
1 | +# Makefile variables for PO directory in any package using GNU gettext. | |
2 | + | |
3 | +# Usually the message domain is the same as the package name. | |
4 | +DOMAIN = $(PACKAGE) | |
5 | + | |
6 | +# These two variables depend on the location of this directory. | |
7 | +subdir = po | |
8 | +top_builddir = .. | |
9 | + | |
10 | +# These options get passed to xgettext. | |
11 | +XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ | |
12 | + | |
13 | +# This is the copyright holder that gets inserted into the header of the | |
14 | +# $(DOMAIN).pot file. Set this to the copyright holder of the surrounding | |
15 | +# package. (Note that the msgstr strings, extracted from the package's | |
16 | +# sources, belong to the copyright holder of the package.) Translators are | |
17 | +# expected to transfer the copyright for their translations to this person | |
18 | +# or entity, or to disclaim their copyright. The empty string stands for | |
19 | +# the public domain; in this case the translators are expected to disclaim | |
20 | +# their copyright. | |
21 | +COPYRIGHT_HOLDER = Free Software Foundation, Inc. | |
22 | + | |
23 | +# This tells whether or not to prepend "GNU " prefix to the package | |
24 | +# name that gets inserted into the header of the $(DOMAIN).pot file. | |
25 | +# Possible values are "yes", "no", or empty. If it is empty, try to | |
26 | +# detect it automatically by scanning the files in $(top_srcdir) for | |
27 | +# "GNU packagename" string. | |
28 | +PACKAGE_GNU = | |
29 | + | |
30 | +# This is the email address or URL to which the translators shall report | |
31 | +# bugs in the untranslated strings: | |
32 | +# - Strings which are not entire sentences, see the maintainer guidelines | |
33 | +# in the GNU gettext documentation, section 'Preparing Strings'. | |
34 | +# - Strings which use unclear terms or require additional context to be | |
35 | +# understood. | |
36 | +# - Strings which make invalid assumptions about notation of date, time or | |
37 | +# money. | |
38 | +# - Pluralisation problems. | |
39 | +# - Incorrect English spelling. | |
40 | +# - Incorrect formatting. | |
41 | +# It can be your email address, or a mailing list address where translators | |
42 | +# can write to without being subscribed, or the URL of a web page through | |
43 | +# which the translators can contact you. | |
44 | +MSGID_BUGS_ADDRESS = https://gitlab.freedesktop.org/xdg/shared-mime-info/issues | |
45 | + | |
46 | +# This is the list of locale categories, beyond LC_MESSAGES, for which the | |
47 | +# message catalogs shall be used. It is usually empty. | |
48 | +EXTRA_LOCALE_CATEGORIES = | |
49 | + | |
50 | +# This tells whether the $(DOMAIN).pot file contains messages with an 'msgctxt' | |
51 | +# context. Possible values are "yes" and "no". Set this to yes if the | |
52 | +# package uses functions taking also a message context, like pgettext(), or | |
53 | +# if in $(XGETTEXT_OPTIONS) you define keywords with a context argument. | |
54 | +USE_MSGCTXT = no | |
55 | + | |
56 | +# These options get passed to msgmerge. | |
57 | +# Useful options are in particular: | |
58 | +# --previous to keep previous msgids of translated messages, | |
59 | +# --quiet to reduce the verbosity. | |
60 | +MSGMERGE_OPTIONS = | |
61 | + | |
62 | +# These options get passed to msginit. | |
63 | +# If you want to disable line wrapping when writing PO files, add | |
64 | +# --no-wrap to MSGMERGE_OPTIONS, XGETTEXT_OPTIONS, and | |
65 | +# MSGINIT_OPTIONS. | |
66 | +MSGINIT_OPTIONS = | |
67 | + | |
68 | +# This tells whether or not to regenerate a PO file when $(DOMAIN).pot | |
69 | +# has changed. Possible values are "yes" and "no". Set this to no if | |
70 | +# the POT file is checked in the repository and the version control | |
71 | +# program ignores timestamps. | |
72 | +PO_DEPENDS_ON_POT = yes | |
73 | + | |
74 | +# This tells whether or not to forcibly update $(DOMAIN).pot and | |
75 | +# regenerate PO files on "make dist". Possible values are "yes" and | |
76 | +# "no". Set this to no if the POT file and PO files are maintained | |
77 | +# externally. | |
78 | +DIST_DEPENDS_ON_UPDATE_PO = no |
@@ -1 +1 @@ | ||
1 | -freedesktop.org.xml.in | |
1 | +shared-mime-info.pot |